source: subversion/trunk/roundcubemail/program/localization/en_US/messages.inc @ 2616

Last change on this file since 2616 was 2616, checked in by alec, 4 years ago
  • add 'Deleted' to search filter
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.1 KB
Line 
1<?php
2
3/*
4
5 +-----------------------------------------------------------------------+
6 | language/en_US/messages.inc                                           |
7 |                                                                       |
8 | Language file of the RoundCube Webmail client                         |
9 | Copyright (C) 2005-2009, RoundCube Dev. - Switzerland                 |
10 | Licensed under the GNU GPL                                            |
11 |                                                                       |
12 +-----------------------------------------------------------------------+
13 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
14 +-----------------------------------------------------------------------+
15
16 @version $Id$
17
18*/
19
20$messages = array();
21$messages['loginfailed']  = 'Login failed';
22$messages['cookiesdisabled'] = 'Your browser does not accept cookies';
23$messages['sessionerror'] = 'Your session is invalid or expired';
24$messages['imaperror'] = 'Connection to IMAP server failed';
25$messages['servererror'] = 'Server Error!';
26$messages['nomessagesfound'] = 'No messages found in this mailbox';
27$messages['loggedout'] = 'You have successfully terminated the session. Good bye!';
28$messages['mailboxempty'] = 'Mailbox is empty';
29$messages['loading'] = 'Loading...';
30$messages['loadingdata'] = 'Loading data...';
31$messages['checkingmail'] = 'Checking for new messages...';
32$messages['sendingmessage'] = 'Sending message...';
33$messages['messagesent'] = 'Message sent successfully';
34$messages['savingmessage'] = 'Saving message...';
35$messages['messagesaved'] = 'Message saved to Drafts';
36$messages['successfullysaved'] = 'Successfully saved';
37$messages['addedsuccessfully'] = 'Contact added successfully to address book';
38$messages['contactexists'] = 'A contact with this e-mail address already exists';
39$messages['blockedimages'] = 'To protect your privacy, remote images are blocked in this message.';
40$messages['encryptedmessage'] = 'This is an encrypted message and can not be displayed. Sorry!';
41$messages['nocontactsfound'] = 'No contacts found';
42$messages['contactnotfound'] = 'The requested contact was not found';
43$messages['sendingfailed'] = 'Failed to send message';
44$messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message';
45$messages['errorsavingsent'] = 'An error occured while saving sent message';
46$messages['errorsaving'] = 'An error occured while saving';
47$messages['errormoving'] = 'Could not move the message';
48$messages['errordeleting'] = 'Could not delete the message';
49$messages['errormarking'] = 'Could not mark the message';
50$messages['deletecontactconfirm']  = 'Do you really want to delete the selected contact(s)?';
51$messages['deletemessagesconfirm'] = 'Do you really want to delete the selected message(s)?';
52$messages['deletefolderconfirm']  = 'Do you really want to delete this folder?';
53$messages['purgefolderconfirm']  = 'Do you really want to delete all messages in this folder?';
54$messages['foldercreating'] = 'Creating folder...';
55$messages['folderdeleting'] = 'Deleting folder...';
56$messages['folderrenaming'] = 'Renaming folder...';
57$messages['foldermoving'] = 'Moving folder...';
58$messages['formincomplete'] = 'The form was not completely filled out';
59$messages['noemailwarning'] = 'Please enter a valid email address';
60$messages['nonamewarning']  = 'Please enter a name';
61$messages['nopagesizewarning'] = 'Please enter a page size';
62$messages['nosenderwarning'] = 'Please enter sender e-mail address';
63$messages['norecipientwarning'] = 'Please enter at least one recipient';
64$messages['nosubjectwarning']  = 'The "Subject" field is empty. Would you like to enter one now?';
65$messages['nobodywarning'] = 'Send this message without text?';
66$messages['notsentwarning'] = 'Message has not been sent. Do you want to discard your message?';
67$messages['noldapserver'] = 'Please select an ldap server to search';
68$messages['nocontactsreturned'] = 'No contacts were found';
69$messages['nosearchname'] = 'Please enter a contact name or email address';
70$messages['searchsuccessful'] = '$nr messages found';
71$messages['searchnomatch'] = 'Search returned no matches';
72$messages['searching'] = 'Searching...';
73$messages['checking'] = 'Checking...';
74$messages['nospellerrors'] = 'No spelling errors found';
75$messages['folderdeleted'] = 'Folder successfully deleted';
76$messages['deletedsuccessfully'] = "Successfully deleted";
77$messages['converting'] = 'Removing formatting...';
78$messages['messageopenerror'] = 'Could not load message from server';
79$messages['fileuploaderror'] = 'File upload failed';
80$messages['filesizeerror'] = 'The uploaded file exceeds the maximum size of $size';
81$messages['copysuccess'] = 'Successfully copied $nr addresses';
82$messages['copyerror'] = 'Could not copy any addresses';
83$messages['sourceisreadonly'] = 'This address source is read only';
84$messages['errorsavingcontact'] = 'Could not save the contact address';
85$messages['movingmessage'] = 'Moving message...';
86$messages['receiptsent'] = 'Successfully sent a read receipt';
87$messages['errorsendingreceipt'] = 'Could not send the receipt';
88$messages['nodeletelastidentity'] = 'You cannot delete this identity, it\'s your last one.';
89$messages['addsubfolderhint'] = 'This folder will be created as subfolder of the currently selected one';
90$messages['forbiddencharacter'] = 'Folder name contains a forbidden character';
91$messages['selectimportfile'] = 'Please select a file to upload';
92$messages['addresswriterror'] = 'The selected address book is not writeable';
93$messages['importwait'] = 'Importing, please wait...';
94$messages['importerror'] = 'Import failed! The uploaded file is not a valid vCard file.';
95$messages['importconfirm'] = '<b>Successfully imported $inserted contacts, $skipped existing entries skipped</b>:<p><em>$names</em></p>';
96$messages['opnotpermitted'] = 'Operation not permitted!';
97$messages['nofromaddress'] = 'Missing e-mail address in selected identity';
98$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?';
99$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. <b>Your message can not be sent.</b>';
100
101?>
Note: See TracBrowser for help on using the repository browser.