thomascube
2005-11-18 fbf77b4493f1b77c99751d8a86365c712ae3fb1b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
 
/*
 +-----------------------------------------------------------------------+
 | language/en/messages.inc                                              |
 |                                                                       |
 | Language file of the RoundCube Webmail client                         |
 | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
 | Licensed under the GNU GPL                                            |
 |                                                                       |
 +-----------------------------------------------------------------------+
 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
 +-----------------------------------------------------------------------+
 
 $Id$
 
*/
 
$messages = array();
 
$messages['loginfailed']  = 'Login failed';
 
$messages['cookiesdisabled'] = 'Your browser does not accept cookies';
 
$messages['sessionerror'] = 'Your session is invalid or expired';
 
$messages['imaperror'] = 'Connection to IMAP server failed';
 
$messages['nomessagesfound'] = 'No messages found in this mailbox';
 
$messages['loggedout'] = 'You have successfully terminated the session. Goody bye!';
 
$messages['mailboxempty'] = 'Mailbox is empty';
 
$messages['loading'] = 'Loading...';
 
$messages['loadingdata'] = 'Loading data...';
 
$messages['sendingmessage'] = 'Sending message...';
 
$messages['messagesent'] = 'Message sent successfully';
 
$messages['successfullysaved'] = 'Successfully saved';
 
$messages['addedsuccessfully'] = 'Contact added successfully to address book';
 
$messages['contactexists'] = 'A contact with this e-mail address already exists';
 
$messages['blockedimages'] = 'To protect your privacy, remote images are blocked in this message.';
 
$messages['encryptedmessage'] = 'This is an encrypted message and can not be displayed. Sorry!';
 
$messages['nocontactsfound'] = 'No contacts found';
 
$messages['sendingfailed'] = 'Failed to send message';
 
$messages['errorsaving'] = 'An error occured while saving';
 
$messages['errormoving'] = 'Could not move the message';
 
$messages['errordeleting'] = 'Could not delete the message';
 
$messages['errordeleting'] = 'Could not delete the message';
 
$messages['formincomplete']    = 'The form was not completely filled out';
 
$messages['noemailwarning']    = 'Please enter a valid email address';
 
$messages['nonamewarning']     = 'Please enter a name';
 
$messages['nopagesizewarning'] = 'Please enter a page size';
 
$messages['norecipientwarning'] = 'Please enter at least one recipient';
 
$messages['nosubjectwarning']  = 'The "Subject" field is empty. Would you like to enter one now?';
 
$messages['nobodywarning'] = 'Send this message without text?';
 
 
?>