If you like my work, please consider a donation. No donation necessary to get rid of this, bottom of config.inc.php and change "enable_custombox" to false. Thank you and have a great day. ☠
10 | 11 |18 | 19 | This line is included from a HTML file! 20 | 21 |
-------------------------------------------------------------------------------- /custom_includes/intro.html: -------------------------------------------------------------------------------- 1 | Got Money? -------------------------------------------------------------------------------- /custom_includes/paypal.html: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | -------------------------------------------------------------------------------- /lib/CPU_usage.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /lib/Memory.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/OS.php: -------------------------------------------------------------------------------- 1 | "; 3 | 4 | function os_info($uagent) 5 | { 6 | // the order of this array is important 7 | global $uagent; 8 | $oses = array( 9 | 'Win311' => 'Win16', 10 | 'Win95' => '(Windows 95)|(Win95)|(Windows_95)', 11 | 'WinME' => '(Windows 98)|(Win 9x 4.90)|(Windows ME)', 12 | 'Win98' => '(Windows 98)|(Win98)', 13 | 'Win2000' => '(Windows NT 5.0)|(Windows 2000)', 14 | 'WinXP' => '(Windows NT 5.1)|(Windows XP)', 15 | 'WinServer2003' => '(Windows NT 5.2)', 16 | 'WinVista' => '(Windows NT 6.0)', 17 | 'Windows 7' => '(Windows NT 6.1)', 18 | 'Windows 8' => '(Windows NT 6.2)', 19 | 'Windows 10' => '(Windows NT 10.0)', 20 | 'WinNT' => '(Windows NT 4.0)|(WinNT4.0)|(WinNT)|(Windows NT)', 21 | 'OpenBSD' => 'OpenBSD', 22 | 'SunOS' => 'SunOS', 23 | 'Ubuntu' => 'Ubuntu', 24 | 'Android' => 'Android', 25 | 'Debian' => 'Debian', 26 | 'Linux' => '(Linux)|(X11)', 27 | 'iPhone' => 'iPhone', 28 | 'iPad' => 'iPad', 29 | 'MacOS' => '(Mac_PowerPC)|(Macintosh)', 30 | 'QNX' => 'QNX', 31 | 'BeOS' => 'BeOS', 32 | 'OS2' => 'OS/2', 33 | 'SearchBot' => '(nuhk)|(Googlebot)|(Yammybot)|(Openbot)|(Slurp)|(MSNBot)|(Ask Jeeves/Teoma)|(ia_archiver)' 34 | ); 35 | $uagent = strtolower($uagent ? $uagent : $_SERVER['HTTP_USER_AGENT']); 36 | foreach ($oses as $os => $pattern) 37 | if (preg_match('/' . $pattern . '/i', $uagent)) 38 | return $os; 39 | return 'Unknown'; 40 | } 41 | ?> -------------------------------------------------------------------------------- /lib/get_sub_mbox.php: -------------------------------------------------------------------------------- 1 | add('title', ' ● ' . rcube_utils::rep_specialchars_output($this->gettext('drafts') . ' ' . rcube_utils::rep_specialchars_output($this->gettext('folder') . ':'))); 9 | $table->add('value', $boxes[$i] . ' ' . rcube_utils::rep_specialchars_output($this->gettext('unread') . ' - ' . $boxes[$i] . ' ' . rcube_utils::rep_specialchars_output($this->gettext('total') . ' - ' . round($imap->folder_size('INBOX.Drafts')/ 1024),2) . ' ' . rcube_utils::rep_specialchars_output($this->gettext('KB')))); 10 | } 11 | } 12 | ?> -------------------------------------------------------------------------------- /lib/getip.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /lib/listplugins.php: -------------------------------------------------------------------------------- 1 | plugins->active_plugins); 12 | $plugin_info = []; 13 | 14 | foreach ($plugins as $name) { 15 | if ($info = $rcmail->plugins->get_info($name)) { 16 | $plugin_info[$name] = $info; 17 | } 18 | } 19 | 20 | // load info from required plugins, too 21 | foreach ($plugin_info as $name => $info) { 22 | if (!empty($info['require']) && is_array($info['require'])) { 23 | foreach ($info['require'] as $req_name) { 24 | if (!isset($plugin_info[$req_name]) && ($req_info = $rcmail->plugins->get_info($req_name))) { 25 | $plugin_info[$req_name] = $req_info; 26 | } 27 | } 28 | } 29 | } 30 | 31 | if (empty($plugin_info)) { 32 | return ''; 33 | } 34 | 35 | ksort($plugin_info, SORT_LOCALE_STRING); 36 | 37 | $table = new html_table($attrib); 38 | 39 | // add table header 40 | $table->add_header('name', $rcmail->gettext('plugin')); 41 | $table->add_header('version', $rcmail->gettext('version')); 42 | $table->add_header('license', $rcmail->gettext('license')); 43 | $table->add_header('source', $rcmail->gettext('source')); 44 | 45 | foreach ($plugin_info as $name => $data) { 46 | $uri = !empty($data['src_uri']) ? $data['src_uri'] : ($data['uri'] ?? ''); 47 | if ($uri && stripos($uri, 'http') !== 0) { 48 | $uri = 'http://' . $uri; 49 | } 50 | 51 | if ($uri) { 52 | $uri = html::a([ 53 | 'target' => '_blank', 54 | 'href' => rcube::Q($uri) 55 | ], 56 | rcube::Q($rcmail->gettext('download')) 57 | ); 58 | } 59 | 60 | $license = isset($data['license']) ? $data['license'] : ''; 61 | 62 | if (!empty($data['license_uri'])) { 63 | $license = html::a([ 64 | 'target' => '_blank', 65 | 'href' => rcube::Q($data['license_uri']) 66 | ], 67 | rcube::Q($data['license']) 68 | ); 69 | } 70 | else { 71 | $license = rcube::Q($license); 72 | } 73 | 74 | $table->add_row(); 75 | $table->add('name', rcube::Q(!empty($data['name']) ? $data['name'] : $name)); 76 | $table->add('version', !empty($data['version']) ? rcube::Q($data['version']) : ''); 77 | $table->add('license', $license); 78 | $table->add('source', $uri); 79 | } 80 | 81 | return $table->show(); 82 | } 83 | ?> 84 | -------------------------------------------------------------------------------- /lib/mail_count.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localization/ar.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'معلومات المستخدم'; 19 | $labels['account_details'] = 'Account Details'; 20 | $labels['accountdetails'] = 'Account Details'; 21 | $labels['created'] = 'Created'; 22 | $labels['lastlogin'] = 'أخر تسجيل دخول'; 23 | $labels['defaultidentity'] = 'الهوية الافتراضية'; 24 | $labels['emailaddress'] = 'Email Address'; 25 | $labels['account'] = 'Account Details'; 26 | $labels['storagequota'] = 'Storage Space'; 27 | $labels['usedstorage'] = 'Used storage'; 28 | $labels['pluginname'] = 'Account Information'; 29 | $labels['plugindescription'] = 'Displays basic account information such as IMAP, POP & SMTP server protocols, default Identity, user’s CalDAV & CardDAV URLs and other details.'; 30 | $labels['accountinformation'] = 'Account Details'; 31 | $labels['encryption'] = 'Encryption'; 32 | $labels['port'] = 'Port'; 33 | $labels['auth'] = 'Authentication'; 34 | $labels['yes'] = 'Yes'; 35 | $labels['no'] = 'No'; 36 | $labels['back'] = 'Back'; 37 | $labels['userinfo'] = 'User Info'; 38 | $labels['description'] = 'Get detailed information about your account.'; 39 | $labels['default'] = 'Default'; 40 | $labels['clients'] = 'Recommended clients which support %s protocol'; 41 | $labels['tutorial'] = 'Tutorial '; 42 | $labels['copiedtoclipboard'] = 'Copied to clipboard'; 43 | $labels['copytoclipboard'] = 'Copy to clipboard'; 44 | $labels['calendars'] = 'Calendars'; 45 | $labels['addressbooks'] = 'Address Books'; 46 | $labels['mailbox'] = 'Mailbox'; 47 | $labels['account_details'] = 'Account Details'; 48 | $labels['webmail'] = 'Webmail'; 49 | $labels['url'] = 'URL'; 50 | ?> -------------------------------------------------------------------------------- /localization/ar_SA.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'معلومات المستخدم'; 19 | $labels['created'] = 'أُنشئ في'; 20 | $labels['lastlogin'] = 'آخر دخول'; 21 | $labels['defaultidentity'] = 'الهوية الافتراضية'; 22 | ?> -------------------------------------------------------------------------------- /localization/ast.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Información d\'usuariu'; 19 | $labels['created'] = 'Creáu'; 20 | $labels['lastlogin'] = 'Aniciu de sesión caberu'; 21 | $labels['defaultidentity'] = 'Identidá por defeutu'; 22 | ?> -------------------------------------------------------------------------------- /localization/az_AZ.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Məlumat'; 19 | $labels['created'] = 'Yaradılma tarixi'; 20 | $labels['lastlogin'] = 'Sonuncu giriş'; 21 | $labels['defaultidentity'] = 'Default profil'; 22 | ?> -------------------------------------------------------------------------------- /localization/be_BE.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Асабістыя звесткі'; 19 | $labels['created'] = 'Створаны'; 20 | $labels['lastlogin'] = 'Апошні ўваход'; 21 | $labels['defaultidentity'] = 'Стандартная тоеснасць'; 22 | ?> -------------------------------------------------------------------------------- /localization/bg_BG.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Потребителска информация'; 19 | $labels['created'] = 'Създаден'; 20 | $labels['lastlogin'] = 'Последен вход'; 21 | $labels['defaultidentity'] = 'Самоличност по подразбиране'; 22 | ?> -------------------------------------------------------------------------------- /localization/br.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Titouroù an arveriad'; 19 | $labels['created'] = 'Krouet'; 20 | $labels['lastlogin'] = 'Kennask diwezhañ'; 21 | $labels['defaultidentity'] = 'Identelezh dre ziouer'; 22 | ?> -------------------------------------------------------------------------------- /localization/bs_BA.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Korisničke informacije'; 19 | $labels['created'] = 'Kreirano'; 20 | $labels['lastlogin'] = 'Zadnja prijava'; 21 | $labels['defaultidentity'] = 'Glavni identitet'; 22 | ?> -------------------------------------------------------------------------------- /localization/ca_ES.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informació de l\'usuari'; 19 | $labels['created'] = 'Creat'; 20 | $labels['lastlogin'] = 'Última connexió'; 21 | $labels['defaultidentity'] = 'Identitat per defecte'; 22 | ?> -------------------------------------------------------------------------------- /localization/cs_CZ.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Uživatel'; 19 | $labels['created'] = 'Vytvořen'; 20 | $labels['lastlogin'] = 'Naspoledy přihlášen'; 21 | $labels['defaultidentity'] = 'Výchozí identita'; 22 | ?> -------------------------------------------------------------------------------- /localization/cy_GB.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Gwybodaeth defnyddiwr'; 19 | $labels['created'] = 'Crëwyd'; 20 | $labels['lastlogin'] = 'Mewngofnodiad diwethaf'; 21 | $labels['defaultidentity'] = 'Personoliaeth arferol'; 22 | ?> -------------------------------------------------------------------------------- /localization/da_DK.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Brugerinfo'; 19 | $labels['created'] = 'Oprettet'; 20 | $labels['lastlogin'] = 'Sidste login'; 21 | $labels['defaultidentity'] = 'Standardidentitet'; 22 | ?> -------------------------------------------------------------------------------- /localization/de_CH.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Benutzerinfo'; 19 | $labels['created'] = 'Erstellt'; 20 | $labels['lastlogin'] = 'Letztes Login'; 21 | $labels['defaultidentity'] = 'Standard-Absender'; 22 | ?> -------------------------------------------------------------------------------- /localization/de_DE.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Benutzerinformation'; 19 | $labels['created'] = 'Angelegt'; 20 | $labels['lastlogin'] = 'Letzte Anmeldung'; 21 | $labels['defaultidentity'] = 'Standardidentität'; 22 | ?> -------------------------------------------------------------------------------- /localization/el_GR.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Πληροφορίες χρήστη '; 19 | $labels['created'] = 'Δημιουργηθηκε'; 20 | $labels['lastlogin'] = 'Τελευταια συνδεση'; 21 | $labels['defaultidentity'] = 'Προκαθορισμένη ταυτότητα'; 22 | ?> -------------------------------------------------------------------------------- /localization/en_CA.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'User info'; 19 | $labels['created'] = 'Created'; 20 | $labels['lastlogin'] = 'Last Login'; 21 | $labels['defaultidentity'] = 'Default Identity'; 22 | ?> -------------------------------------------------------------------------------- /localization/en_US.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Account Details plugin | 8 | | | 9 | +-----------------------------------------------------------------------+ 10 | 11 | */ 12 | 13 | $labels = array(); 14 | $labels['addressbook'] = 'Contacts'; 15 | $labels['account_details'] = 'Account Details'; 16 | $labels['account_details_title'] = 'Account Details Plugin'; 17 | $labels['and'] = 'and'; 18 | $labels['android'] = 'Android'; 19 | $labels['archive'] = 'Archive'; 20 | $labels['auth'] = 'Authentication'; 21 | $labels['authrequired'] = 'Authentication Required'; 22 | $labels['back'] = 'Back'; 23 | $labels['browser-user-agent'] = 'User Agent'; 24 | $labels['caldav'] = 'CalDAV'; 25 | $labels['caldavsync'] = 'CalDAV-sync'; 26 | $labels['calendars'] = 'Calendars'; 27 | $labels['carddav'] = 'CardDAV'; 28 | $labels['carddavsync'] = 'CardDAV-sync'; 29 | $labels['clear_trash'] = 'Empty Trash'; 30 | $labels['clients'] = 'Recommended clients which support %s protocol'; 31 | $labels['contactadmin'] = 'Send an email to Webmail Administrator'; 32 | $labels['contacteditor'] = 'Contact Editor'; 33 | $labels['copiedtoclipboard'] = 'Copied to clipboard'; 34 | $labels['copytoclipboard'] = 'Copy to clipboard'; 35 | $labels['cpu'] = 'CPU Load'; 36 | $labels['created'] = 'Created'; 37 | $labels['currver'] = 'Current Version Installed'; 38 | $labels['days'] = 'Day(s),'; 39 | $labels['description'] = 'Get detailed information about your account.'; 40 | $labels['default'] = 'Default'; 41 | $labels['defaultidentity'] = 'Name'; 42 | $labels['details'] = 'Details'; 43 | $labels['downloadupdate'] = 'Download Latest Version of Roundcube'; 44 | $labels['emailaddress'] = 'Email Address'; 45 | $labels['encryption'] = 'Encryption'; 46 | $labels['htmlserver'] = 'HTML Server'; 47 | $labels['hostname'] = 'Hostname'; 48 | $labels['hours'] = 'Hour(s),'; 49 | $labels['imap'] = 'Incoming IMAP'; 50 | $labels['imap-ssl'] = 'Incoming IMAP-SSL'; 51 | $labels['ipaddress'] = 'Current IP Address'; 52 | $labels['iphone'] = 'iPhone'; 53 | $labels['is_available'] = 'is the latest version available for '; 54 | $labels['latestversion'] = 'Latest Version Online'; 55 | $labels['licenseagreement'] = 'Read the License Agreement'; 56 | $labels['lightning'] = 'Lightning'; 57 | $labels['mailboxdetails'] = 'User Mailbox Details'; 58 | $labels['minutes'] = 'Minute(s) and'; 59 | $labels['memory'] = 'Memory'; 60 | $labels['os'] = 'Operating System'; 61 | $labels['php_version'] = 'PHP Version'; 62 | $labels['pluginname'] = 'Account Details'; 63 | $labels['plugindescription'] = 'Displays basic account information such as IMAP, POP & SMTP server protocols, default Identity, user’s CalDAV & CardDAV URLs and other details.'; 64 | $labels['pop'] = 'Incoming POP'; 65 | $labels['pop-ssl'] = 'Incoming POP-SSL'; 66 | $labels['port'] = 'Port'; 67 | $labels['portnumbers'] = 'Port Numbers'; 68 | $labels['portnumbersencrypted'] = 'Encrypted Connection'; 69 | $labels['portnumbersregular'] = 'Unencrypted Connection'; 70 | $labels['rc_version'] = 'Current Roundcube Version'; 71 | $labels['rcdetails'] = 'Roundcube Details'; 72 | $labels['recommended'] = 'SSL Recommended'; 73 | $labels['resolution'] = 'Screen Resolution'; 74 | $labels['roundcube'] = 'Roundcube'; 75 | $labels['seconds'] = 'Second(s)'; 76 | $labels['serverinformation'] = 'Server Information'; 77 | $labels['serverlocation'] = 'Server Location'; 78 | $labels['servermemory'] = 'Server Memory'; 79 | $labels['smtp'] = 'Outgoing SMTP'; 80 | $labels['smtp-ssl'] = 'Outgoing SMTP-SSL'; 81 | $labels['sogoconn'] = 'SOGO Connector'; 82 | $labels['spaauthsupported'] = ' SPA password encryption supported'; 83 | $labels['storagequota'] = 'Total Storage'; 84 | $labels['supporturl'] = 'Link to your Mail Providers Support Page'; 85 | $labels['thunderbird'] = 'Thunderbird'; 86 | $labels['total'] = 'Total'; 87 | $labels['tutorial'] = 'Tutorial '; 88 | $labels['uptime'] = 'Uptime'; 89 | $labels['usystem'] = 'User System Details'; 90 | $labels['url'] = 'URL'; 91 | $labels['usedstorage'] = 'Used Storage'; 92 | $labels['userdet'] = 'User Details'; 93 | $labels['userinfo'] = 'User Info'; 94 | $labels['userid'] = 'System User ID'; 95 | $labels['used'] = 'Used'; 96 | $labels['webbrowser'] = 'Web Browser'; 97 | $labels['webmail'] = 'Webmail'; 98 | $labels['webmailsystem'] = 'Webmail system'; 99 | $labels['web_url'] = 'Webmail URL'; 100 | $labels['web_url_alt'] = 'URL to access your Webmail'; 101 | 102 | // %s will be excanged with the appropiate "SMTP after *" below 103 | $labels['openrelaylocal'] = 'Permitted to send when on same network as server'; 104 | $labels['authrequired_local'] = 'Authentication required, except when on the same network as server'; 105 | $labels['authrequired_local_smtpafter'] = 'Authentication or %s required, except when on the same network as server'; 106 | $labels['authrequired_smtpafter'] = 'Authentication or %s required'; 107 | 108 | // "SMTP after *" are to some extent known technical terminologies. 109 | // For some languages it will probably be correct to not translate "after" 110 | $labels['smtpafterpop'] = 'SMTP after POP'; 111 | $labels['smtpafterimap'] = 'SMTP after IMAP'; 112 | $labels['smtpafterpopimap'] = 'SMTP after POP/IMAP'; 113 | 114 | ?> 115 | -------------------------------------------------------------------------------- /localization/eo.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informoj pri uzanto'; 19 | $labels['created'] = 'Kreita'; 20 | $labels['lastlogin'] = 'Lasta ensaluto'; 21 | $labels['defaultidentity'] = 'Apriora idento'; 22 | ?> -------------------------------------------------------------------------------- /localization/es_419.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Información de usuario'; 19 | $labels['created'] = 'Creado'; 20 | $labels['lastlogin'] = 'Último login'; 21 | $labels['defaultidentity'] = 'Identidad predetermidada'; 22 | ?> -------------------------------------------------------------------------------- /localization/es_AR.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Información de usuario'; 19 | $labels['created'] = 'Creado'; 20 | $labels['lastlogin'] = 'Ultimo ingreso'; 21 | $labels['defaultidentity'] = 'Identidad por defecto'; 22 | ?> -------------------------------------------------------------------------------- /localization/es_ES.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Información de usuario'; 19 | $labels['created'] = 'Creado'; 20 | $labels['lastlogin'] = 'Último Ingreso'; 21 | $labels['defaultidentity'] = 'Identidad predeterminada'; 22 | ?> -------------------------------------------------------------------------------- /localization/et_EE.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Kasutaja info'; 19 | $labels['created'] = 'Loodud'; 20 | $labels['lastlogin'] = 'Viimane logimine'; 21 | $labels['defaultidentity'] = 'Vaikeidentiteet'; 22 | ?> -------------------------------------------------------------------------------- /localization/eu_ES.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Erabiltzailearen informazioa'; 19 | $labels['created'] = 'Sortua'; 20 | $labels['lastlogin'] = 'Azken saioa'; 21 | $labels['defaultidentity'] = 'Lehenetsitako identitatea'; 22 | ?> -------------------------------------------------------------------------------- /localization/fa_AF.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'اطلاعات کاربر'; 19 | $labels['created'] = 'ایجاد شد'; 20 | $labels['lastlogin'] = 'آخرین ورود'; 21 | $labels['defaultidentity'] = 'هویت پیش فرض'; 22 | ?> -------------------------------------------------------------------------------- /localization/fa_IR.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'اطلاعات کاربر'; 19 | $labels['created'] = 'ایجاد شده'; 20 | $labels['lastlogin'] = 'آخرین ورود'; 21 | $labels['defaultidentity'] = 'شناسه پیشفرض'; 22 | ?> -------------------------------------------------------------------------------- /localization/fi_FI.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Käyttäjätiedot'; 19 | $labels['created'] = 'Luotu'; 20 | $labels['lastlogin'] = 'Viimeisin kirjautuminen'; 21 | $labels['defaultidentity'] = 'Oletushenkilöys'; 22 | ?> -------------------------------------------------------------------------------- /localization/fo_FO.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Brúkara upplýsing'; 19 | $labels['created'] = 'Stovnaður'; 20 | $labels['lastlogin'] = 'Seinast innritaður'; 21 | $labels['defaultidentity'] = 'Sjálvsett samleiki'; 22 | ?> -------------------------------------------------------------------------------- /localization/fr_FR.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Infos utilisateur'; 19 | $labels['created'] = 'Créé'; 20 | $labels['lastlogin'] = 'Dernière connexion'; 21 | $labels['defaultidentity'] = 'Identité par défaut'; 22 | ?> -------------------------------------------------------------------------------- /localization/fy_NL.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Brûkersynformaasje'; 19 | ?> -------------------------------------------------------------------------------- /localization/gl_ES.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Información de persoa usuaria'; 19 | $labels['created'] = 'Creado'; 20 | $labels['lastlogin'] = 'Última conexión'; 21 | $labels['defaultidentity'] = 'Identidade predeterminada'; 22 | ?> -------------------------------------------------------------------------------- /localization/he_IL.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'פרטי המשתמש'; 19 | $labels['created'] = 'נוצר'; 20 | $labels['lastlogin'] = 'הכמיסה האחרונה למערכת'; 21 | $labels['defaultidentity'] = 'זהות ברירת מחדל'; 22 | ?> -------------------------------------------------------------------------------- /localization/hr_HR.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informacije o korisniku'; 19 | $labels['created'] = 'Stvoreno'; 20 | $labels['lastlogin'] = 'Zadnja prijava (login)'; 21 | $labels['defaultidentity'] = 'Preddefinirani identitet'; 22 | ?> -------------------------------------------------------------------------------- /localization/hu_HU.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Felhasználói információ'; 19 | $labels['created'] = 'Létrehozva'; 20 | $labels['lastlogin'] = 'Utolsó bejelentkezés'; 21 | $labels['defaultidentity'] = 'Alapértelmezett azonosító'; 22 | ?> -------------------------------------------------------------------------------- /localization/hy_AM.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Օգտվողի տվյալներ'; 19 | $labels['created'] = 'Ստեղծված'; 20 | $labels['lastlogin'] = 'Վերջին մուտքը`'; 21 | $labels['defaultidentity'] = 'Լռելյալ ինքնությունն'; 22 | ?> -------------------------------------------------------------------------------- /localization/ia.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Information de usator'; 19 | $labels['created'] = 'Create'; 20 | $labels['lastlogin'] = 'Ultime session'; 21 | $labels['defaultidentity'] = 'Identitate predefinite'; 22 | ?> -------------------------------------------------------------------------------- /localization/id_ID.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informasi pengguna'; 19 | $labels['created'] = 'Telah dibuat'; 20 | $labels['lastlogin'] = 'Masuk Terakhir'; 21 | $labels['defaultidentity'] = 'Identitas Standar'; 22 | ?> -------------------------------------------------------------------------------- /localization/it_IT.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informazioni utente'; 19 | $labels['created'] = 'Creato'; 20 | $labels['lastlogin'] = 'Ultimo Login'; 21 | $labels['defaultidentity'] = 'Identità predefinita'; 22 | ?> -------------------------------------------------------------------------------- /localization/ja_JP.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'ユーザー情報'; 19 | $labels['created'] = '作成日時'; 20 | $labels['lastlogin'] = '最後のログイン'; 21 | $labels['defaultidentity'] = '既定の識別情報'; 22 | ?> -------------------------------------------------------------------------------- /localization/km_KH.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'ព័ត៌មានអ្នកប្រើ'; 19 | $labels['created'] = 'បានបង្កើត'; 20 | $labels['lastlogin'] = 'ចូលចុងក្រោយ'; 21 | $labels['defaultidentity'] = 'អត្តសញ្ញាណលំនាំដើម'; 22 | ?> -------------------------------------------------------------------------------- /localization/ko_KR.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = '사용자 정보'; 19 | $labels['created'] = '생성함'; 20 | $labels['lastlogin'] = '마지막 로그인'; 21 | $labels['defaultidentity'] = '기본 신원'; 22 | ?> -------------------------------------------------------------------------------- /localization/ku.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'nawnişani bakar henar'; 19 | $labels['created'] = 'Hat afirandin'; 20 | $labels['lastlogin'] = 'axrin hatna jurawa'; 21 | $labels['defaultidentity'] = 'Nasnameya Pêşsalixbûyî'; 22 | ?> -------------------------------------------------------------------------------- /localization/ku_IQ.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'زانیاری بەکارهێنەر'; 19 | $labels['created'] = 'دروستکرا'; 20 | $labels['lastlogin'] = 'دوایین چوونەژوورەوە'; 21 | $labels['defaultidentity'] = 'ناسنامەی بنەڕەتی'; 22 | ?> -------------------------------------------------------------------------------- /localization/lb_LU.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Benotzer-Info'; 19 | $labels['created'] = 'Erstallt'; 20 | $labels['lastlogin'] = 'Leschte Login'; 21 | $labels['defaultidentity'] = 'Standard-Identitéit'; 22 | ?> -------------------------------------------------------------------------------- /localization/lt_LT.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informacija apie naudotoją'; 19 | $labels['created'] = 'Sukurtas'; 20 | $labels['lastlogin'] = 'Paskutinį kartą prisijungė'; 21 | $labels['defaultidentity'] = 'Numatytoji tapatybė'; 22 | ?> -------------------------------------------------------------------------------- /localization/lv_LV.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informācija par lietotāju'; 19 | $labels['created'] = 'Izveidots'; 20 | $labels['lastlogin'] = 'Pēdējā pieteikšanās'; 21 | $labels['defaultidentity'] = 'Noklusētā identitāte'; 22 | ?> -------------------------------------------------------------------------------- /localization/ml_IN.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'ഉപയോക്താവിന്റെ വിവരം'; 19 | $labels['created'] = 'നിര്മ്മിച്ചു'; 20 | $labels['lastlogin'] = 'അവസാന പ്രവേശനം'; 21 | $labels['defaultidentity'] = 'സാധാരണ വ്യക്തിത്വം'; 22 | ?> -------------------------------------------------------------------------------- /localization/mn_MN.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Хэрэглэгчийн мэдээлэл'; 19 | $labels['created'] = 'Үүссэн'; 20 | $labels['lastlogin'] = 'Сүүлчийн нэвтрэлт'; 21 | $labels['defaultidentity'] = 'Үндсэн мэдээлэл'; 22 | ?> -------------------------------------------------------------------------------- /localization/mr_IN.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'वापरकर्त्याची माहिती'; 19 | $labels['created'] = 'निर्माण केलेले'; 20 | ?> -------------------------------------------------------------------------------- /localization/nb_NO.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Brukerinformasjon'; 19 | $labels['created'] = 'Opprettet'; 20 | $labels['lastlogin'] = 'Sist logget inn'; 21 | $labels['defaultidentity'] = 'Standard identitet'; 22 | ?> -------------------------------------------------------------------------------- /localization/nl_BE.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Gebruikersinformatie'; 19 | $labels['created'] = 'Aangemaakt'; 20 | $labels['lastlogin'] = 'Laatste aanmelding'; 21 | $labels['defaultidentity'] = 'Standaard identiteit'; 22 | ?> -------------------------------------------------------------------------------- /localization/nl_NL.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | 19 | $labels = array(); 20 | $labels['account'] = 'Account User Data'; 21 | $labels['account_details'] = 'Account Data'; 22 | $labels['accountinformation'] = 'Account Data'; 23 | $labels['and'] = 'en'; 24 | $labels['auth'] = 'Authenticatie'; 25 | $labels['addressbooks'] = 'Adresboeken'; 26 | $labels['archive'] = 'Archiefmap'; 27 | $labels['authrequired'] = 'Authenticatie nodig'; 28 | $labels['back'] = 'Terug'; 29 | $labels['calendars'] = 'Kalendars'; 30 | $labels['clients'] = 'Aanbevolen klanten die %s protocol ondersteunen'; 31 | $labels['copiedtoclipboard'] = 'Gekopieerd naar het klembord'; 32 | $labels['copytoclipboard'] = 'Kopieer naar klembord'; 33 | $labels['created'] = 'Aangemaakt'; 34 | $labels['description'] = 'Krijg gedetailleerde informatie over uw account.'; 35 | $labels['default'] = 'Standaard'; 36 | $labels['defaultidentity'] = 'Naam'; 37 | $labels['drafts'] = 'Concepten Folder'; 38 | $labels['emailaddress'] = 'E-mailadres'; 39 | $labels['enable_support'] = 'ondersteuning URL'; 40 | $labels['encryption'] = 'Encryptie'; 41 | $labels['hostname'] = 'Hostname'; 42 | $labels['imap'] = 'Inkomende IMAP'; 43 | $labels['imap-ssl'] = 'Inkomende IMAP-SSL'; 44 | $labels['inbox'] = 'Inbox'; 45 | $labels['ipaddress'] = 'Huidige IP-adres'; 46 | $labels['junk'] = 'Junk Folder'; 47 | $labels['lastlogin'] = 'Laatste aanmelding'; 48 | $labels['location'] = 'Server Location'; 49 | $labels['mailbox'] = 'Mailbox Details'; 50 | $labels['no'] = 'Nee'; 51 | $labels['php_version'] = 'PHP Version'; 52 | $labels['pluginname'] = 'Account Details'; 53 | $labels['plugindescription'] = 'Geeft elementaire accountgegevens, zoals IMAP, POP en SMTP-server protocollen, standaard Identity, CalDAV & CardDAV URLs en andere gegevens van de gebruiker.'; 54 | $labels['pop'] = 'Inkomende POP'; 55 | $labels['pop-ssl'] = 'Inkomende POP-SSL'; 56 | $labels['port'] = 'Port'; 57 | $labels['portnumbers'] = 'Port numbers'; 58 | $labels['portnumbersencrypted'] = 'versleutelde verbinding met de mailserver'; 59 | $labels['portnumbersregular'] = 'regelmatige verbinding met de mailserver'; 60 | $labels['rc_version'] = 'Roundcube Version'; 61 | $labels['recommended'] = 'SSL Aanbevolen'; 62 | $labels['sent'] = 'Verzonden Folder'; 63 | $labels['serverinfo'] = 'Server Details'; 64 | $labels['serverinformation'] = 'Server Informatie'; 65 | $labels['server'] = 'Server'; 66 | $labels['size'] = 'K'; 67 | $labels['smtp'] = 'Uitgaande SMTP'; 68 | $labels['smtp-ssl'] = 'Uitgaande SMTP-SSL'; 69 | $labels['spaauthsupported'] = ' SPA wachtwoord-encryptie ondersteund'; 70 | $labels['storagequota'] = 'Opslagruimte'; 71 | $labels['trash'] = 'Trash Folder'; 72 | $labels['total'] = 'Totaal'; 73 | $labels['tutorial'] = 'Tutorial '; 74 | $labels['unread'] = 'Ongelezen'; 75 | $labels['url'] = 'URL'; 76 | $labels['usedstorage'] = 'Tweedehands opslag'; 77 | $labels['yes'] = 'Ja'; 78 | $labels['userinfo'] = 'Gebruikersinformatie'; 79 | $labels['userid'] = 'System User ID'; 80 | $labels['username'] = 'Gebruikersnaam'; 81 | $labels['webmail'] = 'Webmail'; 82 | $labels['webmailsystem'] = 'Webmail Systeem'; 83 | $labels['web_url'] = 'Webmail URL'; 84 | 85 | 86 | // %s will be excanged with the appropiate "SMTP after *" below 87 | $labels['openrelaylocal'] = 'Toegestaan wanneer op hetzelfde netwerk als server te sturen'; 88 | $labels['authrequired_local'] = 'Verificatie vereist, behalve wanneer op hetzelfde netwerk als server'; 89 | $labels['authrequired_local_smtpafter'] = 'Authenticatie of %s is vereist, behalve wanneer op hetzelfde netwerk als server'; 90 | $labels['authrequired_smtpafter'] = 'Authenticatie of %s is vereist'; 91 | 92 | // "SMTP after *" are to some extent known technical terminologies. 93 | // For some languages it will probably be correct to not translate "after" 94 | $labels['smtpafterpop'] = 'SMTP na POP'; 95 | $labels['smtpafterimap'] = 'SMTP na IMAP'; 96 | $labels['smtpafterpopimap'] = 'SMTP na POP/IMAP'; 97 | 98 | ?> 99 | -------------------------------------------------------------------------------- /localization/nn_NO.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Brukarinfo'; 19 | $labels['created'] = 'Laga'; 20 | $labels['lastlogin'] = 'Sist logga inn'; 21 | $labels['defaultidentity'] = 'Standardidentitet'; 22 | ?> -------------------------------------------------------------------------------- /localization/pl_PL.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informacje'; 19 | $labels['created'] = 'Utworzony'; 20 | $labels['lastlogin'] = 'Ostatnie logowanie'; 21 | $labels['defaultidentity'] = 'Domyślna tożsamość'; 22 | ?> -------------------------------------------------------------------------------- /localization/pt_BR.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informações do usuário'; 19 | $labels['created'] = 'Criado'; 20 | $labels['lastlogin'] = 'Último Login'; 21 | $labels['defaultidentity'] = 'Identidade Padrão'; 22 | ?> -------------------------------------------------------------------------------- /localization/pt_PT.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informação do utilizador'; 19 | $labels['created'] = 'Criado'; 20 | $labels['lastlogin'] = 'Último acesso'; 21 | $labels['defaultidentity'] = 'Identidade pré-definida'; 22 | ?> -------------------------------------------------------------------------------- /localization/ro_RO.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informații utilizator'; 19 | $labels['created'] = 'Data creării'; 20 | $labels['lastlogin'] = 'Ultima autentificare'; 21 | $labels['defaultidentity'] = 'Identitate principală'; 22 | ?> -------------------------------------------------------------------------------- /localization/ru_RU.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Информация'; 19 | $labels['created'] = 'Создан'; 20 | $labels['lastlogin'] = 'Последний вход'; 21 | $labels['defaultidentity'] = 'Профиль по умолчанию'; 22 | ?> -------------------------------------------------------------------------------- /localization/sk_SK.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informácie o používateľovi'; 19 | $labels['created'] = 'Vytvorené'; 20 | $labels['lastlogin'] = 'Posledné prihlásenie'; 21 | $labels['defaultidentity'] = 'Predvolená identita'; 22 | ?> -------------------------------------------------------------------------------- /localization/sl_SI.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Podatki o uporabniku'; 19 | $labels['created'] = 'Ustvarjen'; 20 | $labels['lastlogin'] = 'Zadnja prijava'; 21 | $labels['defaultidentity'] = 'Privzeta identiteta'; 22 | ?> -------------------------------------------------------------------------------- /localization/sq_AL.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Informacionet e përdoruesit'; 19 | $labels['created'] = 'Krijuar'; 20 | $labels['lastlogin'] = 'Hyrja e fundit'; 21 | ?> -------------------------------------------------------------------------------- /localization/sr_CS.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Подаци о кориснику'; 19 | $labels['created'] = 'Направљено'; 20 | $labels['lastlogin'] = 'Последња пријава'; 21 | $labels['defaultidentity'] = 'подразумевани идентитет'; 22 | ?> -------------------------------------------------------------------------------- /localization/sv_SE.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Användarinfo'; 19 | $labels['created'] = 'Skapad'; 20 | $labels['lastlogin'] = 'Senast inloggad'; 21 | $labels['defaultidentity'] = 'Standardidentitet'; 22 | ?> -------------------------------------------------------------------------------- /localization/ti.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'ሓብሬታ በዓል ዋና '; 19 | $labels['created'] = 'እዋን ፍጥረት'; 20 | $labels['lastlogin'] = 'እዋን እታው'; 21 | $labels['defaultidentity'] = 'ዘይተለወጠ መለለይ መንነት'; 22 | ?> -------------------------------------------------------------------------------- /localization/tr_TR.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Kullanıcı bilgisi'; 19 | $labels['created'] = 'Oluşturuldu'; 20 | $labels['lastlogin'] = 'Son Giriş'; 21 | $labels['defaultidentity'] = 'Öntanımlı kimlik'; 22 | ?> -------------------------------------------------------------------------------- /localization/uk_UA.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Інформація'; 19 | $labels['created'] = 'Створено'; 20 | $labels['lastlogin'] = 'Останнє входження'; 21 | $labels['defaultidentity'] = 'Профіль за замовчуванням'; 22 | ?> -------------------------------------------------------------------------------- /localization/vi_VN.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = 'Thông tin người dùng'; 19 | $labels['created'] = 'Được tạo'; 20 | $labels['lastlogin'] = 'Lần đăng nhập cuối'; 21 | $labels['defaultidentity'] = 'Nhận diện mặc định'; 22 | ?> -------------------------------------------------------------------------------- /localization/zh_CN.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = '用户信息'; 19 | $labels['created'] = '创建于'; 20 | $labels['lastlogin'] = '最近登录'; 21 | $labels['defaultidentity'] = '默认身份'; 22 | ?> -------------------------------------------------------------------------------- /localization/zh_TW.inc: -------------------------------------------------------------------------------- 1 | .inc | 6 | | | 7 | | Localization file of the Roundcube Webmail Userinfo plugin | 8 | | Copyright (C) 2012-2013, The Roundcube Dev Team | 9 | | | 10 | | Licensed under the GNU General Public License version 3 or | 11 | | any later version with exceptions for skins & plugins. | 12 | | See the README file for a full license statement. | 13 | | | 14 | +-----------------------------------------------------------------------+ 15 | 16 | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ 17 | */ 18 | $labels['userinfo'] = '使用者資訊'; 19 | $labels['created'] = '建立時間'; 20 | $labels['lastlogin'] = '上次登入'; 21 | $labels['defaultidentity'] = '預設身份'; 22 | ?> -------------------------------------------------------------------------------- /rc_latest.txt: -------------------------------------------------------------------------------- 1 | Setup a Cron Job to check latest version - curl https://api.github.com/repos/roundcube/roundcubemail/releases | grep tag_name | grep -o "[0-9].[0-9].[0-9]\{1,\}" | sort -n | tail -1 > /path_to_roundcube/plugins/account_details/rc_latest.txt 2 | -------------------------------------------------------------------------------- /skins/autumn-larry/account_details.css: -------------------------------------------------------------------------------- 1 | /* 2 | Account Details Info CSS file 3 | default CSS last updated in version 2009-09-26 4 | */ 5 | 6 | body.scroller { 7 | overflow: auto; 8 | } 9 | 10 | div.settingsbox-account_details { 11 | /* Expand the width of the box instead of breaking lines */ 12 | margin: 0 15px 15px 0; 13 | } 14 | 15 | div.settingsbox-account_details-custom { 16 | /* Expand the width of the box instead of breaking lines */ 17 | position:absolute; 18 | bottom:0; 19 | } 20 | 21 | div.settingsbox-account_details div.boxcontent { 22 | padding: 1px; 23 | } 24 | 25 | div.settingsbox-account_details-custom div.boxcontent { 26 | padding: 1px 1px; 27 | bottom:0; 28 | } 29 | 30 | table.account_details { 31 | margin: 0; 32 | padding: 0px 0px 0px 0px; 33 | width: 100%; 34 | } 35 | 36 | 37 | table.account_details td { 38 | width: auto; 39 | 40 | } 41 | 42 | 43 | table.account_details td.header { 44 | font-weight: bold; 45 | padding-top: 0px; 46 | 47 | } 48 | 49 | table.account_details td.headerfirst { 50 | font-weight: bold; 51 | 52 | } 53 | 54 | table.account_details td.title { 55 | padding-right: 10px; 56 | 57 | } 58 | 59 | table.account_details td.categorynote { 60 | font-style: italic; 61 | } 62 | 63 | span.fieldnote-parentheses { 64 | /* style notes about field value - parentheses versions */ 65 | } 66 | 67 | span.fieldnote-newline { 68 | /* style notes about field value - newline versions */ 69 | display: block; 70 | margin-top: 2px; 71 | } 72 | 73 | td.top_bold { 74 | font-weight: bold; 75 | vertical-align: top; 76 | } 77 | 78 | td.top { 79 | vertical-align: top; 80 | padding-right: 10px; 81 | } 82 | 83 | td.bottom_bold { 84 | font-weight: bold; 85 | vertical-align: bottom; 86 | } 87 | 88 | 89 | td.paypal { 90 | text-align: right; 91 | } 92 | 93 | table.account_details-list { 94 | margin: 0; 95 | padding: 0px 0 1px 0; 96 | width: auto; 97 | text-align: left; 98 | } 99 | 100 | 101 | table.account_details-list td { 102 | padding: 0 25px 0px 0; 103 | /* background: #eee; */ 104 | 105 | } 106 | 107 | 108 | table.account_details-list td.header { 109 | padding-top: px; 110 | 111 | } 112 | 113 | table.account_details-list td.headerfirst { 114 | 115 | } 116 | 117 | table.account_details-list td.title { 118 | padding-right: 10px; 119 | 120 | } 121 | 122 | table.account_details-list td.categorynote { 123 | font-style: italic; 124 | } 125 | 126 | tutorial { 127 | background-color: yellow; 128 | } 129 | 130 | input.account_details, 131 | textarea.account_details, 132 | select.account_details, 133 | button.account_details { 134 | font-family: inherit; 135 | font-size: inherit; 136 | vertical-align: middle; 137 | } 138 | 139 | input.account_details[type="text"], 140 | input.account_details[type="password"], 141 | textarea.account_details { 142 | -webkit-transition: all 0.90s ease-in-out; 143 | -moz-transition: all 0.90s ease-in-out; 144 | -ms-transition: all 0.90s ease-in-out; 145 | -o-transition: all 0.90s ease-in-out; 146 | margin: 1px 1px 2px 0px; 147 | padding: 4px; 148 | border: 1px solid #661705; 149 | border-radius: 4px; 150 | box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.1); 151 | -webkit-box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.1); 152 | } 153 | 154 | input.account_details[type="text"]:focus, 155 | input.account_details[type="password"]:focus, 156 | input.button.account_details:focus, 157 | textarea.account_details:focus { 158 | border-color: #661705; 159 | box-shadow: 0 0 5px 2px rgba(102, 23, 5, 0.9); 160 | -webkit-box-shadow: 0 0 5px 2px rgba(102, 23, 5, 0.9); 161 | outline: none; 162 | } 163 | 164 | input.account_details[type="text"]:required, 165 | input.account_details[type="password"]:required { 166 | border-color: #4787b1; 167 | } 168 | 169 | input.placeholder.account_details, 170 | textarea.placeholder.account_details { 171 | color: #aaa; 172 | } 173 | 174 | #settings-sections .account_details a { 175 | background-image: url(images/account_details.png); 176 | background-repeat: no-repeat; 177 | background-position: 7px -23px; 178 | } 179 | 180 | #settings-sections .account_details.selected a { 181 | background-image: url(images/account_details.png); 182 | background-repeat: no-repeat; 183 | background-position: 7px 1px; 184 | } 185 | 186 | 187 | /* 188 | 189 | 190 | input.account_details[type=text], textarea.account_details { 191 | -webkit-transition: all 0.90s ease-in-out; 192 | -moz-transition: all 0.90s ease-in-out; 193 | -ms-transition: all 0.90s ease-in-out; 194 | -o-transition: all 0.90s ease-in-out; 195 | outline: none; 196 | padding: 3px 0px 3px 3px; 197 | margin: 1px 1px 2px 0px; 198 | border: 1px solid #DDDDDD; 199 | } 200 | 201 | input.account_details[type=text]:focus, textarea.account_details:focus { 202 | box-shadow: 0 0 15px rgba(71, 135, 177, 1); 203 | padding: 3px 0px 3px 3px; 204 | margin: 1px 1px 2px 0px; 205 | border: 1px solid rgba(71, 135, 177, 1); 206 | } 207 | */ 208 | -------------------------------------------------------------------------------- /skins/autumn-larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | -------------------------------------------------------------------------------- /skins/autumn-larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/autumn-larry/images/account_details.png -------------------------------------------------------------------------------- /skins/autumn-larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/autumn-larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/autumn-larry/templates/account_details.html: -------------------------------------------------------------------------------- 1 |