Viewing file: compose.inc.php (5.19 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
############################################################################
# DWmail
# - Language Pack Extension for version: 4.0
# - Language: English (GB)
# - Copyright (c) 2004-2006: Dominion Web Design
# - Website: http://www.dominion-web.com
# - Based on: DWmail English Language Pack, Copyright (c) 2003-2006
# Dominion Web Design
############################################################################
#
# The contents of this file are subject to the DWmail License version
# 2.2 ('License'). You may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.dominion-web.com/products/dwmail/license.php
#
# Software distributed under the License is distributed on an "AS IS" basis,
# without warranty of any kind, either express or implied.
#
# DWmail is Copyright (c) 2003-2006 Dominion Web Design.
# All rights reserved.
#
# This software may not be redistributed outside the terms of the
# license agreement.
#
############################################################################
# Installation:
# To add this language pack to the selectable list in DWmail add the
# following code to config.inc.php
#
# $AvailLangs['en']['charset'] = 'iso-8859-1';
# $AvailLangs['en']['desc'] = 'English';
# $AvailLangs['en']['spell']['enable'] = 0;
# $AvailLangs['en']['spell']['charset'] = 'ISO8859-1';
# $AvailLangs['en']['locale'] = 'en_GB';
############################################################################
*/
// Compose, reply and forwarding messages
$lang['SCompose']['Title'] = 'Compose Message';
$lang['SCompose']['Reply'] = 'Reply';
$lang['SCompose']['Forward'] = 'Forward';
$lang['SCompose']['To'] = 'To';
$lang['SCompose']['From'] = 'From';
$lang['SCompose']['Cc'] = 'Cc';
$lang['SCompose']['Bcc'] = 'Bcc';
$lang['SCompose']['ReplyTo'] = 'Reply-To';
$lang['SCompose']['Subject'] = 'Subject';
$lang['SCompose']['Body'] = 'Message';
$lang['SCompose']['Sent'] = 'Sent';
$lang['SCompose']['Mode'] = 'Mode';
$lang['SCompose']['DefBcc'] = 'Blind Carbon Copy';
$lang['SCompose']['DefCc'] = 'Carbon Copy';
$lang['SCompose']['Options'] = 'Options';
$lang['SCompose']['PriorityDesc'] = 'Priority';
$lang['SCompose']['ReadReceipt'] = 'Request read receipt';
$lang['SCompose']['ReadReceiptDesc'] = 'be notified when the recipient reads the message';
$lang['SCompose']['SaveMessage'] = 'Save a copy';
$lang['SCompose']['SaveMessageDesc'] = 'Save a copy to the sent mail folder';
$lang['SCompose']['SaveAddresses'] = 'Add contacts to address book';
$lang['SCompose']['SaveAddressesDesc'] = 'Automatically add all recipients of this email to your address book after you sending';
$lang['SCompose']['AddressBook'] = 'Select an address from your addressbook';
$lang['SCompose']['ComposeMode'] = 'Compose Mode';
$lang['SCompose']['ComposeWYSIWYG'] = 'Rich Text Editor';
$lang['SCompose']['ComposeHTML'] = 'HTML';
$lang['SCompose']['ComposePlain'] = 'Plain Text';
$lang['SCompose']['Back'] = 'Back to message';
$lang['SCompose']['SendButton'] = 'Send Message';
$lang['SCompose']['DraftButton'] = 'Save as Draft';
$lang['SCompose']['SpellCheckButton'] = 'Spell Check';
$lang['SCompose']['SpellCorrectButton'] = 'Correct Spelling';
$lang['SCompose']['Success'] = 'Email sent successfully';
$lang['SCompose']['SpellCheck'] = 'Spell Check';
$lang['SCompose']['SpellNoErrors'] = 'Spelling Check is complete, no errors found';
$lang['SCompose']['SpellNotInDictionary'] = 'was not found';
$lang['SCompose']['SpellKeepAs'] = 'keep as: ';
$lang['SCompose']['SpellReplaceWith'] = 'replace with: ';
$lang['SCompose']['SpellEnterOwn'] = 'or enter your own word';
$lang['SCompose']['Attachments'] = 'Attachments';
$lang['SCompose']['FWDAttachments'] = 'Forwarded Attachments';
$lang['SCompose']['EmbedAttachments'] = 'Embedded Attachments';
$lang['SCompose']['AttachmentRemove'] = 'Untick to remove<br />and click \'update attachments\'';
$lang['SCompose']['ComposeOriginal'] = 'Original Message';
$lang['SCompose']['UpdateAttachments'] = 'Update attachments';
$lang['SCompose']['AttachFile'] = 'Attach File';
$lang['SCompose']['ManageAttachments'] = 'Manage attachments';
$lang['SCompose']['CancelButton'] = 'Cancel';
$lang['SCompose']['RemoveButton'] = 'Remove';
$lang['SCompose']['UploadButton'] = 'Upload';
$lang['SCompose']['UploadFile'] = 'Attach a file from your computer';
$lang['SCompose']['UploadURL'] = 'Attach a file from a URL';
$lang['SCompose']['UploadWait'] = 'Attachment uploading, please wait...';
$lang['SCompose']['FileDenied'] = 'Sorry this type of file is now allowed to be attached to this email';
$lang['SCompose']['Priority'] = array(1 => "High", 2 => "Normal", 3 => "Low");
$lang['SCompose']['NoRecipients'] = 'Error: Sorry you have not entered any recipients';
$lang['SCompose']['RecipientMaximum'] = 'Error: Sorry the administrator has set a maximum recipient number of [recipientmaximum] per email message';
$lang['SCompose']['FloodFilter'] = 'Error: Sorry you can only send one email in any [floodfilter] second period';
$lang['SCompose']['AutoSave'] = 'Now auto-saving message to drafts';
$lang['SCompose']['AutoSaveComplete'] = 'Message saved to drafts';
?>
|