yllar
2006-12-16 77c28206a14b5bee3f3091f10cffd531bce5649c
commit | author | age
e66f5b 1 <?php
T 2
3 /*
4  +-----------------------------------------------------------------------+
5  | language/en_GB/messages.inc                                           |
6  |                                                                       |
7  | Language file of the RoundCube Webmail client                         |
8  | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
9  | Licensed under the GNU GPL                                            |
10  |                                                                       |
11  +-----------------------------------------------------------------------+
12  | Author: Weiran Zhang (weiran@weiran.co.uk)                            |
13  +-----------------------------------------------------------------------+
14
15  $Id$
16
17 */
18
19 $messages = array();
20
21 $messages['loginfailed']  = 'Login failed';
22
23 $messages['cookiesdisabled'] = 'Your browser does not accept cookies';
24
25 $messages['sessionerror'] = 'Your session is invalid or expired';
26
27 $messages['imaperror'] = 'Connection to IMAP server failed';
28
29 $messages['nomessagesfound'] = 'No messages found in this mailbox';
30
31 $messages['loggedout'] = 'You have successfully terminated the session. Good bye!';
32
33 $messages['mailboxempty'] = 'Mailbox is empty';
34
e1a3f0 35 $messages['loading'] = 'Loading...';
S 36
e66f5b 37 $messages['loadingdata'] = 'Loading data...';
T 38
c8c1e0 39 $messages['checkingmail'] = 'Checking for new messages...';
S 40
e66f5b 41 $messages['messagesent'] = 'Message sent successfully';
T 42
1966c5 43 $messages['savingmessage'] = 'Saving message...';
S 44
45 $messages['messagesaved'] = 'Message saved to Drafts';
46
e66f5b 47 $messages['successfullysaved'] = 'Successfully saved';
T 48
49 $messages['addedsuccessfully'] = 'Contact added successfully to address book';
50
51 $messages['contactexists'] = 'A contact with this e-mail address already exists';
52
53 $messages['blockedimages'] = 'To protect your privacy, remote images are blocked in this message.';
54
55 $messages['encryptedmessage'] = 'This is an encrypted message and can not be displayed. Sorry!';
56
57 $messages['nocontactsfound'] = 'No contacts found';
58
59 $messages['sendingfailed'] = 'Failed to send message';
60
61 $messages['errorsaving'] = 'An error occured while saving';
62
63 $messages['errormoving'] = 'Could not move the message';
64
65 $messages['errordeleting'] = 'Could not delete the message';
66
c9d09b 67 $messages['deletecontactconfirm']  = 'Do you really want to delete the selected contact(s)?';
T 68
69 $messages['deletefolderconfirm']  = 'Do you really want to delete this folder?';
70
71 $messages['formincomplete'] = 'The form was not completely filled out';
72
73 $messages['noemailwarning'] = 'Please enter a valid email address';
74
75 $messages['nonamewarning']  = 'Please enter a name';
76
77 $messages['nopagesizewarning'] = 'Please enter a page size';
78
79 $messages['norecipientwarning'] = 'Please enter at least one recipient';
80
81 $messages['nosubjectwarning']  = 'The "Subject" field is empty. Would you like to enter one now?';
82
83 $messages['nobodywarning'] = 'Send this message without text?';
84
85 $messages['notsentwarning'] = 'Message has not been sent. Do you want to discard your message?';
86
87 $messages['noldapserver'] = 'Please select an ldap server to search';
88
89 $messages['nocontactsreturned'] = 'No contacts were found';
90
91 $messages['nosearchname'] = 'Please enter a contact name or email address';
e66f5b 92
f9c107 93 $messages['searchsuccessful'] = '$nr messages found';
T 94
95 $messages['searchnomatch'] = 'Search returned no matches';
96
97 $messages['searching'] = 'Searching...';
98
99 $messages['checking'] = 'Checking...';
100
101 $messages['nospellerrors'] = 'No spelling errors found';
102
103 $messages['folderdeleted'] = 'Folder successfully deleted';
104
105
e1a3f0 106 ?>