53 lines
3.1 KiB
PHP
Executable File
53 lines
3.1 KiB
PHP
Executable File
<?php
|
|
//
|
|
// +----------------------------------------------------------------------+
|
|
// |zen-cart Open Source E-commerce |
|
|
// +----------------------------------------------------------------------+
|
|
// | Copyright (c) 2003 The zen-cart developers |
|
|
// | |
|
|
// | http://www.zen-cart.com/index.php |
|
|
// | |
|
|
// | Portions Copyright (c) 2003 osCommerce |
|
|
// +----------------------------------------------------------------------+
|
|
// | This source file is subject to version 2.0 of the GPL license, |
|
|
// | that is bundled with this package in the file LICENSE, and is |
|
|
// | available through the world-wide-web at the following url: |
|
|
// | http://www.zen-cart.com/license/2_0.txt. |
|
|
// | If you did not receive a copy of the zen-cart license and are unable |
|
|
// | to obtain it through the world-wide-web, please send a note to |
|
|
// | license@zen-cart.com so we can mail you a copy immediately. |
|
|
// +----------------------------------------------------------------------+
|
|
// $Id: newsletters.php 3020 2006-02-13 04:24:58Z ajeh $
|
|
//
|
|
|
|
define('HEADING_TITLE', 'Newsletter and Product Notifications Manager');
|
|
|
|
define('TABLE_HEADING_NEWSLETTERS', 'Newsletters');
|
|
define('TABLE_HEADING_SIZE', 'Size');
|
|
define('TABLE_HEADING_MODULE', 'Module');
|
|
define('TABLE_HEADING_SENT', 'Sent');
|
|
define('TABLE_HEADING_STATUS', 'Status');
|
|
define('TABLE_HEADING_ACTION', 'Action');
|
|
|
|
define('TEXT_NEWSLETTER_MODULE', 'Module:');
|
|
define('TEXT_NEWSLETTER_TITLE', 'Subject:');
|
|
define('TEXT_NEWSLETTER_CONTENT', 'Text-Only <br />Content:');
|
|
define('TEXT_NEWSLETTER_CONTENT_HTML', 'Rich Text <br />Content:');
|
|
|
|
define('TEXT_NEWSLETTER_DATE_ADDED', 'Date Added:');
|
|
define('TEXT_NEWSLETTER_DATE_SENT', 'Date Sent:');
|
|
|
|
define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete this newsletter?');
|
|
|
|
define('TEXT_PLEASE_WAIT', 'Please wait .. sending emails ..<br /><br />Please do not interrupt this process!');
|
|
define('TEXT_FINISHED_SENDING_EMAILS', 'Finished sending e-mails!');
|
|
|
|
define('TEXT_AFTER_EMAIL_INSTRUCTIONS','%s emails processed. <br /><br />Watch your mail box ('.EMAIL_FROM.') for:<UL><LI>a) bounce-back messages</LI><LI>b) email addresses that are no longer good</LI><LI>c) removal requests.</LI></UL>Removals can be processed by editing Customer records in the Admin | Customers menu.');
|
|
|
|
define('ERROR_NEWSLETTER_TITLE', 'Error: Newsletter title required');
|
|
define('ERROR_NEWSLETTER_MODULE', 'Error: Newsletter module required');
|
|
define('ERROR_PLEASE_SELECT_AUDIENCE','Error: Please select an audience to receive this newsletter');
|
|
define('ERROR_REMOVE_UNLOCKED_NEWSLETTER', 'Error: Please lock the newsletter before deleting it.');
|
|
define('ERROR_EDIT_UNLOCKED_NEWSLETTER', 'Error: Please lock the newsletter before editing it.');
|
|
define('ERROR_SEND_UNLOCKED_NEWSLETTER', 'Error: Please lock the newsletter before sending it.');
|
|
?>
|