| | |
| | | <?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 | |
| | | | Localization file of the Roundcube Webmail client | |
| | | | Copyright (C) 2005-2012, 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['savingmessage'] = 'Saving message...'; |
| | | $messages['messagesaved'] = 'Message saved to Drafts.'; |
| | | $messages['successfullysaved'] = 'Successfully saved.'; |
| | | $messages['savingresponse'] = 'Saving response text...'; |
| | | $messages['deleteresponseconfirm'] = 'Do you really want to delete this response text?'; |
| | | $messages['addedsuccessfully'] = 'Contact added successfully to address book.'; |
| | | $messages['contactexists'] = 'A contact with the same e-mail address already exists.'; |
| | | $messages['contactnameexists'] = 'A contact with the same name already exists.'; |
| | |
| | | $messages['contactsearchonly'] = 'Enter some search terms to find contacts'; |
| | | $messages['sendingfailed'] = 'Failed to send message.'; |
| | | $messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message.'; |
| | | $messages['errorsavingsent'] = 'An error occured while saving sent message.'; |
| | | $messages['errorsaving'] = 'An error occured while saving.'; |
| | | $messages['errorsavingsent'] = 'An error occurred while saving sent message.'; |
| | | $messages['errorsaving'] = 'An error occurred while saving.'; |
| | | $messages['errormoving'] = 'Could not move the message(s).'; |
| | | $messages['errorcopying'] = 'Could not copy the message(s).'; |
| | | $messages['errordeleting'] = 'Could not delete the message(s).'; |
| | |
| | | $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['opnotpermitted'] = 'Operation not permitted!'; |
| | |
| | | $messages['emailformaterror'] = 'Invalid e-mail address: $email'; |
| | | $messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; |
| | | $messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; |
| | | $messages['internalerror'] = 'An internal error occured. Please try again.'; |
| | | $messages['internalerror'] = 'An internal error occurred. Please try again.'; |
| | | $messages['contactdelerror'] = 'Could not delete contact(s).'; |
| | | $messages['contactdeleted'] = 'Contact(s) deleted successfully.'; |
| | | $messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; |
| | |
| | | $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.'; |
| | | |
| | | ?> |