| | |
| | | <?php |
| | | |
| | | /* |
| | | |
| | | +-----------------------------------------------------------------------+ |
| | | | language/en_GB/labels.inc | |
| | | | | |
| | | | Language file of the RoundCube Webmail client | |
| | | | Copyright (C) 2005, RoundQube Dev. - Switzerland | |
| | | | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland | |
| | | | Licensed under the GNU GPL | |
| | | | | |
| | | +-----------------------------------------------------------------------+ |
| | | | Author: Weiran Zhang (weiran@weiran.co.uk) | |
| | | +-----------------------------------------------------------------------+ |
| | | |
| | | $Id$ |
| | | @version $Id$ |
| | | |
| | | */ |
| | | |
| | | $labels = array(); |
| | | |
| | | // login page |
| | | $labels['welcome'] = 'Welcome to $product'; |
| | | $labels['username'] = 'Username'; |
| | | $labels['password'] = 'Password'; |
| | | $labels['server'] = 'Server'; |
| | |
| | | |
| | | // mailbox names |
| | | $labels['inbox'] = 'Inbox'; |
| | | $labels['drafts'] = 'Drafts'; |
| | | $labels['sent'] = 'Sent'; |
| | | $labels['trash'] = 'Deleted Items'; |
| | | $labels['drafts'] = 'Drafts'; |
| | |
| | | $labels['today'] = 'Today'; |
| | | |
| | | // toolbar buttons |
| | | $labels['checkmail'] = 'Check for new messages'; |
| | | $labels['writenewmessage'] = 'Create a new message'; |
| | | $labels['replytomessage'] = 'Reply to the message'; |
| | | $labels['replytoallmessage'] = 'Reply to sender and all recipients'; |
| | |
| | | |
| | | // message compose |
| | | $labels['compose'] = 'Compose a message'; |
| | | $labels['savemessage'] = 'Save this draft'; |
| | | $labels['sendmessage'] = 'Send the message now'; |
| | | $labels['addattachment'] = 'Attach a file'; |
| | | $labels['charset'] = 'Charset'; |
| | |
| | | $labels['delete'] = 'Delete'; |
| | | |
| | | $labels['newcontact'] = 'Create new contact card'; |
| | | $labels['addcontact'] = 'Add selected contact to your addressbook'; |
| | | $labels['deletecontact'] = 'Delete selected contacts'; |
| | | $labels['composeto'] = 'Compose mail to'; |
| | | $labels['contactsfromto'] = 'Contacts $from to $to of $count'; |
| | | $labels['print'] = 'Print'; |
| | | $labels['export'] = 'Export'; |
| | | |
| | | // LDAP search |
| | | $labels['ldapsearch'] = 'LDAP directory search'; |
| | | |
| | | $labels['ldappublicsearchname'] = 'Contact name'; |
| | | $labels['ldappublicsearchtype'] = 'Exact match?'; |
| | | $labels['ldappublicserverselect'] = 'Select servers'; |
| | | $labels['ldappublicsearchfield'] = 'Search on'; |
| | | $labels['ldappublicsearchform'] = 'Look for a contact'; |
| | | $labels['ldappublicsearch'] = 'Search'; |
| | | |
| | | // settings |
| | | $labels['settingsfor'] = 'Settings for'; |
| | |
| | | $labels['sortasc'] = 'Sort ascending'; |
| | | $labels['sortdesc'] = 'Sort descending'; |
| | | |
| | | ?> |
| | | ?> |