├── .gitattributes ├── .gitignore ├── CHANGELOG ├── LICENSE ├── README.md ├── account_details.js ├── account_details.min.js ├── account_details.php ├── composer.json ├── config.inc.php.dist ├── custom_includes ├── donate.html ├── example_box_1.html ├── example_field_1.html ├── intro.html └── paypal.html ├── lib ├── Browser.php ├── CPU_usage.php ├── Memory.php ├── OS.php ├── domain_age.php ├── get_sub_mbox.php ├── getip.php ├── listplugins.php └── mail_count.php ├── localization ├── ar.inc ├── ar_SA.inc ├── ast.inc ├── az_AZ.inc ├── be_BE.inc ├── bg_BG.inc ├── br.inc ├── bs_BA.inc ├── ca_ES.inc ├── cs_CZ.inc ├── cy_GB.inc ├── da_DK.inc ├── de_CH.inc ├── de_DE.inc ├── el_GR.inc ├── en_CA.inc ├── en_GB.inc ├── en_US.inc ├── eo.inc ├── es_419.inc ├── es_AR.inc ├── es_ES.inc ├── et_EE.inc ├── eu_ES.inc ├── fa_AF.inc ├── fa_IR.inc ├── fi_FI.inc ├── fo_FO.inc ├── fr_FR.inc ├── fy_NL.inc ├── gl_ES.inc ├── he_IL.inc ├── hr_HR.inc ├── hu_HU.inc ├── hy_AM.inc ├── ia.inc ├── id_ID.inc ├── it_IT.inc ├── ja_JP.inc ├── km_KH.inc ├── ko_KR.inc ├── ku.inc ├── ku_IQ.inc ├── lb_LU.inc ├── lt_LT.inc ├── lv_LV.inc ├── ml_IN.inc ├── mn_MN.inc ├── mr_IN.inc ├── nb_NO.inc ├── nl_BE.inc ├── nl_NL.inc ├── nn_NO.inc ├── pl_PL.inc ├── pt_BR.inc ├── pt_PT.inc ├── ro_RO.inc ├── ru_RU.inc ├── sk_SK.inc ├── sl_SI.inc ├── sq_AL.inc ├── sr_CS.inc ├── sv_SE.inc ├── ti.inc ├── tr_TR.inc ├── uk_UA.inc ├── vi_VN.inc ├── zh_CN.inc └── zh_TW.inc ├── rc_latest.txt ├── skins ├── autumn-larry │ ├── account_details.css │ ├── ie6.css │ ├── images │ │ ├── account_details.png │ │ └── clipboard.png │ └── templates │ │ ├── account_details.html │ │ ├── frame.html │ │ └── moreuserinfo.html ├── black-larry │ ├── account_details.css │ ├── ie6.css │ ├── images │ │ ├── account_details.png │ │ └── clipboard.png │ └── templates │ │ ├── frame.html │ │ └── moreuserinfo.html ├── blue-larry │ ├── account_details.css │ ├── account_details.less │ ├── ie6.css │ ├── images │ │ ├── account_details.png │ │ └── clipboard.png │ └── templates │ │ ├── account_details.html │ │ ├── frame.html │ │ └── moreuserinfo.html ├── classic │ ├── account_details.css │ ├── ie6.css │ ├── images │ │ ├── clipboard.png │ │ ├── user.gif │ │ └── user.png │ └── templates │ │ ├── frame.html │ │ └── moreuserinfo.html ├── elastic │ ├── account_details.css │ └── account_details.less ├── green-larry │ ├── account_details.css │ ├── ie6.css │ ├── images │ │ ├── account_details.png │ │ └── clipboard.png │ └── templates │ │ ├── frame.html │ │ └── moreuserinfo.html ├── grey-larry │ ├── account_details.css │ ├── ie6.css │ ├── images │ │ ├── account_details.png │ │ └── clipboard.png │ └── templates │ │ ├── frame.html │ │ └── moreuserinfo.html ├── larry │ ├── account_details.css │ ├── ie6.css │ ├── images │ │ ├── account_details.png │ │ └── clipboard.png │ └── templates │ │ ├── frame.html │ │ └── moreuserinfo.html ├── pink-larry │ ├── account_details.css │ ├── ie6.css │ ├── images │ │ ├── account_details.png │ │ └── clipboard.png │ └── templates │ │ ├── account_details.html │ │ ├── frame.html │ │ └── moreuserinfo.html ├── plata-larry │ ├── account_details.css │ ├── ie6.css │ ├── images │ │ ├── account_details.png │ │ └── clipboard.png │ └── templates │ │ ├── frame.html │ │ └── moreuserinfo.html ├── summer-larry │ ├── account_details.css │ ├── ie6.css │ ├── images │ │ ├── account_details.png │ │ └── clipboard.png │ └── templates │ │ ├── account_details.html │ │ ├── frame.html │ │ └── moreuserinfo.html ├── teal-larry │ ├── account_details.css │ ├── ie6.css │ ├── images │ │ ├── account_details.png │ │ └── clipboard.png │ └── templates │ │ ├── account_details.html │ │ ├── frame.html │ │ └── moreuserinfo.html └── violet-larry │ ├── account_details.css │ ├── ie6.css │ ├── images │ ├── account_details.png │ └── clipboard.png │ └── templates │ ├── account_details.html │ ├── frame.html │ └── moreuserinfo.html └── tests ├── Userinfo.php └── ad-screenshot1.png /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | 49 | # Files that I don't want sneaking past me 50 | config.inc.php 51 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | May 23, 2017 Ver 3.2 2 | * Code Changes. Proper Settings Tab. 3 | 4 | May 22, 2017 Ver 3.1 5 | * Updated US Language file. 6 | 7 | May 22, 2017 Ver 3.0 8 | * CSS Changes - Added Settings Tab Icon. 9 | * Added version checking for latest release of Roundcube Mail 10 | 11 | May 10, 2017 Ver 2.3 12 | * TYPO. 13 | 14 | May 09, 2017 Ver 2.2 15 | * Improved translation possibilities. 16 | 17 | May 09, 2017 Ver 2.1 18 | * Added mailto link to admin email. 19 | * Improved select text for dav link input box. 20 | 21 | Apr 18, 2017 Ver 2.0 22 | * Code Cleanup 23 | * Added selectable input box for dav links. 24 | 25 | Oct 30, 2016 Ver 1.1.1 26 | * Added Plugin Info 27 | 28 | Oct 28, 2016 Ver 1.1.0 29 | * Fixed: All mailboxes gets checked for Unread and Total Count. 30 | 31 | 32 | Oct 26, 2016 Ver 1.0.0 33 | 34 | Initial Release 35 | 36 | Features: 37 | * User Details 38 | ** System User ID: 1 39 | ** Edentity Name 40 | ** Email Address 41 | ** Account Create Date 42 | ** Last Login 43 | ** Total Storage 44 | ** Used Storage 45 | ** Current IP Address 46 | ** Support URL 47 | 48 | * User System Details 49 | ** Operating System 50 | ** Screen Resolution 51 | ** Web Browser: 52 | ** Version 53 | ** User Agent 54 | 55 | * Mailbox Details: 56 | ** Inbox 57 | ** Drafts Folder 58 | ** Sent Folder 59 | ** Trash Folder 60 | ** Junk Folder 61 | ** Archive Folder 62 | 63 | * Server Details 64 | ** Server Location 65 | ** Server OS 66 | ** Server Memory 67 | ** Server CPU Load 68 | ** Server Uptime 69 | ** PHP Version 70 | ** Webmail URL 71 | ** Roundcube Version 72 | ** Outgoing SMTP 73 | ** Incoming IMAP 74 | 75 | 76 | * Calendar URL's 77 | 78 | * Address Books 79 | 80 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Account Details for Roundcube Plugin 2 | 3 | Adds tab in Setting for more user info. 4 | * Identities 5 | * email address 6 | * storage space quota 7 | * Operating System 8 | * Web Browser 9 | * Video Resolution 10 | * Mailbox Stats 11 | * Server URL, port and other useful info 12 | * CalDAV URL;s 13 | * CardDAV URL's 14 | * and more 15 | 16 | You can enable/disable certain things via the config.inc.php 17 | 18 | **Installation** 19 | 20 | Upload contents to '/roundcube_location/plugins/account_details/'. 21 | 22 | Enable plugin via config.inc.php with 23 | 24 | $config['plugins'] = array('account_details'); 25 | 26 | Make an hourly cronjob with your web credentials as follows for Roundcube Version Checking: 27 | 28 | `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` 29 | 30 | 31 | Enjoy! 32 | 33 | :moneybag: **Donations** :moneybag: 34 | 35 | If you use this plugin and would like to show your appreciation by buying me a cup of coffee, I surely would appreciate it. A regular cup of Joe is sufficient, but a Starbucks Coffee would be better ... \ 36 | Zelle (Zelle is integrated within many major banks Mobile Apps by default) - Just send to texxasrulez at yahoo dot com \ 37 | No Zelle in your banks mobile app, no problem, just click [Paypal](https://paypal.me/texxasrulez?locale.x=en_US) and I can make a Starbucks run ... 38 | 39 | I appreciate the interest in this plugin and hope all the best ... 40 | 41 | **Screenshot** 42 | ----------- 43 | With All Details enabled 44 | 45 | ![Alt text](/tests/ad-screenshot1.png?raw=true "Account Details Screenshot") 46 | -------------------------------------------------------------------------------- /account_details.js: -------------------------------------------------------------------------------- 1 | /* Show user-info plugin script */ 2 | 3 | if (window.rcmail) { 4 | rcmail.addEventListener('init', function() { 5 | // 6 | var tab = $('').attr('id', 'settingstabpluginaccount_details').addClass('tablink'); 7 | 8 | $('').attr('href', rcmail.env.comm_path + '&_action=plugin.account_details') 9 | .text(rcmail.get_label('account_details', 'account_details')) 10 | .click(function(e) { return rcmail.command('plugin.account_details', '', this, e); }) 11 | .appendTo(tab); 12 | 13 | // add button and register command 14 | rcmail.add_element(tab, 'tabs'); 15 | rcmail.register_command('plugin.account_details', function() { rcmail.goto_url('plugin.account_details') }, true); 16 | }) 17 | } 18 | -------------------------------------------------------------------------------- /account_details.min.js: -------------------------------------------------------------------------------- 1 | window.rcmail&&rcmail.addEventListener("init",function(){var a=$("").attr("id","settingstabpluginaccount_details").addClass("tablink");$("").attr("href",rcmail.env.comm_path+"&_action=plugin.account_details").text(rcmail.get_label("account_details","account_details")).click(function(a){return rcmail.command("plugin.account_details","",this,a)}).appendTo(a),rcmail.add_element(a,"tabs"),rcmail.register_command("plugin.account_details",function(){rcmail.goto_url("plugin.account_details")},!0)}); -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "texxasrulez/account_details", 3 | "type": "roundcube-plugin", 4 | "description": "Display additional information for the current user and much more.", 5 | "homepage": "https://github.com/texxasrulez/Account-Details-for-Roundcube", 6 | "license": "GPL-3.0", 7 | "version": "3.4", 8 | "authors": [ 9 | { 10 | "name": "Gene Hawkins", 11 | "email": "texxasrulez@yahoo.com", 12 | "role": "Lead" 13 | } 14 | ], 15 | "repositories": [ 16 | { 17 | "type": "composer", 18 | "url": "https://plugins.roundcube.net" 19 | } 20 | ], 21 | "require": { 22 | "php": ">=7.1.0", 23 | "roundcube/plugin-installer": ">=0.1.4" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /custom_includes/donate.html: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |
9 |

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 |
PayPal - The safer, easier way to pay online! 12 | 13 | -------------------------------------------------------------------------------- /custom_includes/example_box_1.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_includes/example_field_1.html: -------------------------------------------------------------------------------- 1 | 16 | 17 |

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 |
3 | 4 | 6 | 7 | 8 |
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 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /skins/autumn-larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/autumn-larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 12 | 13 | 14 | 15 |
 » 
16 |
17 |
18 | 19 | 20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /skins/black-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 0px 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: 0px; 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 #000; 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: #000; 159 | box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.9); 160 | -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 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 1px; 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 -23px; 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/black-larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | -------------------------------------------------------------------------------- /skins/black-larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/black-larry/images/account_details.png -------------------------------------------------------------------------------- /skins/black-larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/black-larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/black-larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/black-larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /skins/blue-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 0px 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: 0px; 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 #152e3f; 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: #152e3f; 159 | box-shadow: 0 0 5px 2px rgba(21, 46, 63, 0.9); 160 | -webkit-box-shadow: 0 0 5px 2px rgba(21, 46, 63, 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/blue-larry/account_details.less: -------------------------------------------------------------------------------- 1 | @import "../common"; 2 | -------------------------------------------------------------------------------- /skins/blue-larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | -------------------------------------------------------------------------------- /skins/blue-larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/blue-larry/images/account_details.png -------------------------------------------------------------------------------- /skins/blue-larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/blue-larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/blue-larry/templates/account_details.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /skins/blue-larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/blue-larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /skins/classic/account_details.css: -------------------------------------------------------------------------------- 1 | #showusername 2 | { 3 | position: absolute; 4 | top: 65px; 5 | left: 20px; 6 | } 7 | 8 | #showusername a 9 | { 10 | font-size: 11px; 11 | color: #666666; 12 | padding-top: 2px; 13 | padding-bottom: 2px; 14 | padding-left: 25px; 15 | text-decoration: none; 16 | background: url('images/user.png') 5px 1px no-repeat; 17 | } 18 | 19 | #showusername a:hover 20 | { 21 | color: #333333; 22 | } 23 | -------------------------------------------------------------------------------- /skins/classic/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | -------------------------------------------------------------------------------- /skins/classic/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/classic/images/clipboard.png -------------------------------------------------------------------------------- /skins/classic/images/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/classic/images/user.gif -------------------------------------------------------------------------------- /skins/classic/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/classic/images/user.png -------------------------------------------------------------------------------- /skins/classic/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 8 | 9 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 |
29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /skins/classic/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 12 | 13 | 14 | 15 |
 » 
16 |
17 |
18 | 19 | 20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /skins/elastic/account_details.css: -------------------------------------------------------------------------------- 1 | /* 2 | Account Details Info CSS file 3 | default CSS last updated in version 2009-09-26 4 | */ 5 | 6 | 7 | .listing.iconized li.quota > a:before { 8 | content: "\f2b9" 9 | } 10 | 11 | body. 12 | } 13 | 14 | div.settingsbox-account_details { 15 | /* Expand the width of the box instead of breaking lines */ 16 | margin: 0 15px 15px 0; 17 | overflow: auto; 18 | } 19 | 20 | div.settingsbox-account_details-custom { 21 | /* Expand the width of the box instead of breaking lines */ 22 | position:absolute; 23 | bottom:0; 24 | } 25 | 26 | div.settingsbox-account_details div.boxcontent { 27 | padding: 1px; 28 | } 29 | 30 | div.settingsbox-account_details-custom div.boxcontent { 31 | -webkit-column-span: all; /* Chrome, Safari, Opera */ 32 | column-span: all; 33 | width: 100%; 34 | padding: 1px 1px; 35 | bottom:0; 36 | } 37 | 38 | table.account_details { 39 | margin: 0; 40 | padding: 0px 0px 0px 0px; 41 | width: 100%; 42 | } 43 | 44 | 45 | table.account_details td { 46 | width: auto; 47 | 48 | } 49 | 50 | 51 | table.account_details td.header { 52 | font-weight: bold; 53 | padding-top: 0px; 54 | 55 | } 56 | 57 | table.account_details td.headerfirst { 58 | font-weight: bold; 59 | 60 | } 61 | 62 | table.account_details td.title { 63 | padding-right: 10px; 64 | 65 | } 66 | 67 | table.account_details td.categorynote { 68 | font-style: italic; 69 | } 70 | 71 | span.fieldnote-parentheses { 72 | /* style notes about field value - parentheses versions */ 73 | } 74 | 75 | span.fieldnote-newline { 76 | /* style notes about field value - newline versions */ 77 | display: block; 78 | margin-top: 2px; 79 | } 80 | 81 | td.top_bold { 82 | font-weight: bold; 83 | vertical-align: top; 84 | } 85 | 86 | td.top { 87 | vertical-align: top; 88 | padding-right: 10px; 89 | } 90 | 91 | td.bottom_bold { 92 | font-weight: bold; 93 | vertical-align: bottom; 94 | } 95 | 96 | 97 | td.paypal { 98 | text-align: right; 99 | } 100 | 101 | table.account_details-list { 102 | margin: 0; 103 | padding: 0px 0 0px 0; 104 | width: auto; 105 | text-align: left; 106 | } 107 | 108 | 109 | table.account_details-list td { 110 | padding: 0 25px 0px 0; 111 | /* background: #eee; */ 112 | 113 | } 114 | 115 | 116 | table.account_details-list td.header { 117 | padding-top: 0px; 118 | 119 | } 120 | 121 | table.account_details-list td.headerfirst { 122 | 123 | } 124 | 125 | table.account_details-list td.title { 126 | padding-right: 10px; 127 | 128 | } 129 | 130 | table.account_details-list td.categorynote { 131 | font-style: italic; 132 | } 133 | 134 | tutorial { 135 | background-color: yellow; 136 | } 137 | 138 | input.account_details, 139 | textarea.account_details, 140 | select.account_details, 141 | button.account_details { 142 | font-family: inherit; 143 | font-size: inherit; 144 | vertical-align: middle; 145 | } 146 | 147 | input.account_details[type="text"], 148 | input.account_details[type="password"], 149 | textarea.account_details { 150 | -webkit-transition: all 0.90s ease-in-out; 151 | -moz-transition: all 0.90s ease-in-out; 152 | -ms-transition: all 0.90s ease-in-out; 153 | -o-transition: all 0.90s ease-in-out; 154 | margin: 1px 1px 2px 0px; 155 | padding: 4px; 156 | border: 1px solid #152e3f; 157 | border-radius: 4px; 158 | box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.1); 159 | -webkit-box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.1); 160 | } 161 | 162 | input.account_details[type="text"]:focus, 163 | input.account_details[type="password"]:focus, 164 | input.button.account_details:focus, 165 | textarea.account_details:focus { 166 | border-color: #152e3f; 167 | box-shadow: 0 0 5px 2px rgba(21, 46, 63, 0.9); 168 | -webkit-box-shadow: 0 0 5px 2px rgba(21, 46, 63, 0.9); 169 | outline: none; 170 | } 171 | 172 | input.account_details[type="text"]:required, 173 | input.account_details[type="password"]:required { 174 | border-color: #4787b1; 175 | } 176 | 177 | input.placeholder.account_details, 178 | textarea.placeholder.account_details { 179 | color: #aaa; 180 | } 181 | 182 | .listing.iconized li.account_details > a:before { 183 | content: "\f2bb" 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/elastic/account_details.less: -------------------------------------------------------------------------------- 1 | @import "../common"; 2 | 3 | .listing.iconized li.@{plugin-name} > a:before { 4 | content: "\f2bb"; // fontawesome 5: percent 5 | } 6 | -------------------------------------------------------------------------------- /skins/green-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 #354616; 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: #354616; 159 | box-shadow: 0 0 5px 2px rgba(53, 70, 22, 0.9); 160 | -webkit-box-shadow: 0 0 5px 2px rgba(53, 70, 22, 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/green-larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | -------------------------------------------------------------------------------- /skins/green-larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/green-larry/images/account_details.png -------------------------------------------------------------------------------- /skins/green-larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/green-larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/green-larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 8 | 9 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 |
29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /skins/green-larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 12 | 13 | 14 | 15 |
 » 
16 |
17 |
18 | 19 | 20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /skins/grey-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 0px 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: 0px; 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 #152e3f; 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: #152e3f; 159 | box-shadow: 0 0 5px 2px rgba(21, 46, 63, 0.9); 160 | -webkit-box-shadow: 0 0 5px 2px rgba(21, 46, 63, 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 1px; 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 -23px; 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/grey-larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | -------------------------------------------------------------------------------- /skins/grey-larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/grey-larry/images/account_details.png -------------------------------------------------------------------------------- /skins/grey-larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/grey-larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/grey-larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/grey-larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /skins/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 0px 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: 0px; 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 #b2b2b2; 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: #4787b1; 159 | box-shadow: 0 0 5px 2px rgba(71,135,177, 0.9); 160 | -webkit-box-shadow: 0 0 5px 2px rgba(71,135,177, 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 1px; 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 -23px; 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/larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | -------------------------------------------------------------------------------- /skins/larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/larry/images/account_details.png -------------------------------------------------------------------------------- /skins/larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /skins/pink-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 #6e1f4a; 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: #6e1f4a; 159 | box-shadow: 0 0 5px 2px rgba(110, 31, 74, 0.9); 160 | -webkit-box-shadow: 0 0 5px 2px rgba(110, 31, 74, 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/pink-larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | -------------------------------------------------------------------------------- /skins/pink-larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/pink-larry/images/account_details.png -------------------------------------------------------------------------------- /skins/pink-larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/pink-larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/pink-larry/templates/account_details.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /skins/pink-larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/pink-larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /skins/plata-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 0px 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: 0px; 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 #152e3f; 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: #152e3f; 159 | box-shadow: 0 0 5px 2px rgba(21, 46, 63, 0.9); 160 | -webkit-box-shadow: 0 0 5px 2px rgba(21, 46, 63, 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 1px; 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 -23px; 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/plata-larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | -------------------------------------------------------------------------------- /skins/plata-larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/plata-larry/images/account_details.png -------------------------------------------------------------------------------- /skins/plata-larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/plata-larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/plata-larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/plata-larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /skins/summer-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 inherit; 149 | border-radius: 4px; 150 | box-shadow: inset 0 0 2px 1px inherit; 151 | -webkit-box-shadow: inset 0 0 2px 1px inherit; 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: inherit; 159 | box-shadow: 0 0 5px 2px inherit; 160 | -webkit-box-shadow: 0 0 5px 2px inherit; 161 | outline: none; 162 | } 163 | 164 | input.account_details[type="text"]:required, 165 | input.account_details[type="password"]:required { 166 | border-color: inherit; 167 | } 168 | 169 | input.placeholder.account_details, 170 | textarea.placeholder.account_details { 171 | color: inherit; 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/summer-larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | -------------------------------------------------------------------------------- /skins/summer-larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/summer-larry/images/account_details.png -------------------------------------------------------------------------------- /skins/summer-larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/summer-larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/summer-larry/templates/account_details.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /skins/summer-larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/summer-larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 12 | 13 | 14 | 15 |
 » 
16 |
17 |
18 | 19 | 20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /skins/teal-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 #0d4f54; 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: #4787b1; 159 | box-shadow: 0 0 5px 2px rgba(13,79,84, 0.9); 160 | -webkit-box-shadow: 0 0 5px 2px rgba(13,79,84, 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 1px; 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 -23px; 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/teal-larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | -------------------------------------------------------------------------------- /skins/teal-larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/teal-larry/images/account_details.png -------------------------------------------------------------------------------- /skins/teal-larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/teal-larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/teal-larry/templates/account_details.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /skins/teal-larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/teal-larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 12 | 13 | 14 | 15 |
 » 
16 |
17 |
18 | 19 | 20 |
21 |
22 | 23 | -------------------------------------------------------------------------------- /skins/violet-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 #3f1a67; 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: #3f1a67; 159 | box-shadow: 0 0 5px 2px rgba(63, 26, 103, 0.9); 160 | -webkit-box-shadow: 0 0 5px 2px rgba(63, 26, 103, 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/violet-larry/ie6.css: -------------------------------------------------------------------------------- 1 | #showusername a 2 | { 3 | background: url('images/user.gif') 5px 1px no-repeat; 4 | } 5 | -------------------------------------------------------------------------------- /skins/violet-larry/images/account_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/violet-larry/images/account_details.png -------------------------------------------------------------------------------- /skins/violet-larry/images/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/skins/violet-larry/images/clipboard.png -------------------------------------------------------------------------------- /skins/violet-larry/templates/account_details.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /skins/violet-larry/templates/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /skins/violet-larry/templates/moreuserinfo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <roundcube:object name="pagetitle" /> 5 | 6 | 7 | 14 | 15 | 16 |

 » 

17 |
18 |
19 | 20 | 21 |
22 |
23 | 24 | -------------------------------------------------------------------------------- /tests/Userinfo.php: -------------------------------------------------------------------------------- 1 | api); 18 | 19 | $this->assertInstanceOf('account_details', $plugin); 20 | $this->assertInstanceOf('rcube_plugin', $plugin); 21 | } 22 | } 23 | 24 | -------------------------------------------------------------------------------- /tests/ad-screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texxasrulez/account_details/ca4af404bc2419879fe1f8d57f6e63cbd51b12fa/tests/ad-screenshot1.png --------------------------------------------------------------------------------