| | |
| | | <?php |
| | | |
| | | /* |
| | | |
| | | +-----------------------------------------------------------------------+ |
| | | | language/en_US/messages.inc | |
| | | | localization/<lang>/messages.inc | |
| | | | | |
| | | | Language file of the Roundcube Webmail client | |
| | | | Copyright (C) 2005-2010, The Roundcube Dev Team | |
| | | | Licensed under the GNU GPL | |
| | | | Localization file of the Roundcube Webmail client | |
| | | | Copyright (C) 2005-2013, The Roundcube Dev Team | |
| | | | | |
| | | | Licensed under the GNU General Public License version 3 or | |
| | | | any later version with exceptions for skins & plugins. | |
| | | | See the README file for a full license statement. | |
| | | | | |
| | | +-----------------------------------------------------------------------+ |
| | | | Author: Thomas Bruederli <roundcube@gmail.com> | |
| | | +-----------------------------------------------------------------------+ |
| | | |
| | | @version $Id$ |
| | | |
| | | For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ |
| | | */ |
| | | |
| | | $messages = array(); |
| | | $messages['errortitle'] = 'An error occurred!'; |
| | | $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['storageerror'] = 'Connection to storage server failed.'; |
| | | $messages['servererror'] = 'Server Error!'; |
| | | $messages['servererrormsg'] = 'Server Error: $msg'; |
| | | $messages['dberror'] = 'Database Error!'; |
| | | $messages['requesttimedout'] = 'Request timed out'; |
| | | $messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; |
| | | $messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; |
| | | $messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; |
| | | $messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; |
| | | $messages['invalidrequest'] = 'Invalid request! No data was saved.'; |
| | | $messages['invalidhost'] = 'Invalid server name.'; |
| | | $messages['nomessagesfound'] = 'No messages found in this mailbox.'; |
| | | $messages['loggedout'] = 'You have successfully terminated the session. Good bye!'; |
| | | $messages['mailboxempty'] = 'Mailbox is empty.'; |
| | | $messages['refreshing'] = 'Refreshing...'; |
| | | $messages['loading'] = 'Loading...'; |
| | | $messages['uploading'] = 'Uploading file...'; |
| | | $messages['uploadingmany'] = 'Uploading files...'; |
| | |
| | | $messages['messageopenerror'] = 'Could not load message from server.'; |
| | | $messages['fileuploaderror'] = 'File upload failed.'; |
| | | $messages['filesizeerror'] = 'The uploaded file exceeds the maximum size of $size.'; |
| | | $messages['copysuccess'] = 'Successfully copied $nr addresses.'; |
| | | $messages['copyerror'] = 'Could not copy any addresses.'; |
| | | $messages['copysuccess'] = 'Successfully copied $nr contacts.'; |
| | | $messages['movesuccess'] = 'Successfully moved $nr contacts.'; |
| | | $messages['copyerror'] = 'Could not copy any contacts.'; |
| | | $messages['moveerror'] = 'Could not move any contacts.'; |
| | | $messages['sourceisreadonly'] = 'This address source is read only.'; |
| | | $messages['errorsavingcontact'] = 'Could not save the contact address.'; |
| | | $messages['movingmessage'] = 'Moving message(s)...'; |
| | | $messages['copyingmessage'] = 'Copying message(s)...'; |
| | | $messages['copyingcontact'] = 'Copying contact(s)...'; |
| | | $messages['movingcontact'] = 'Moving contact(s)...'; |
| | | $messages['deletingmessage'] = 'Deleting message(s)...'; |
| | | $messages['markingmessage'] = 'Marking message(s)...'; |
| | | $messages['addingmember'] = 'Adding contact(s) to the group...'; |
| | |
| | | $messages['addresswriterror'] = 'The selected address book is not writeable.'; |
| | | $messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; |
| | | $messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; |
| | | $messages['nogroupassignmentschanged'] = 'No group assignments changed.'; |
| | | $messages['importwait'] = 'Importing, please wait...'; |
| | | $messages['importerror'] = 'Import failed! The uploaded file is not a valid vCard file.'; |
| | | $messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; |
| | | $messages['importconfirm'] = '<b>Successfully imported $inserted contacts</b>'; |
| | | $messages['importconfirmskipped'] = '<b>Skipped $skipped existing entries</b>'; |
| | | $messages['importmessagesuccess'] = 'Successfully imported $nr messages'; |
| | | $messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; |
| | | $messages['opnotpermitted'] = 'Operation not permitted!'; |
| | | $messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; |
| | | $messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; |
| | |
| | | $messages['mispellingsfound'] = 'Spelling errors detected in the message.'; |
| | | $messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; |
| | | $messages['messagetoobig'] = 'The message part is too big to process it.'; |
| | | $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.<br/><br/><em>Expected: $expected; found: $detected</em>'; |
| | | $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; |
| | | |
| | | ?> |