60 lines
3.8 KiB
PHP
Executable File
60 lines
3.8 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: specials.php 3788 2006-06-17 17:08:48Z ajeh $
|
|
//
|
|
|
|
define('HEADING_TITLE', 'Specials');
|
|
|
|
define('TABLE_HEADING_PRODUCTS', 'Products');
|
|
define('TABLE_HEADING_PRODUCTS_MODEL','Model');
|
|
define('TABLE_HEADING_PRODUCTS_PRICE', 'Products Price/Special/Sale');
|
|
define('TABLE_HEADING_PRODUCTS_PERCENTAGE','Percentage');
|
|
define('TABLE_HEADING_AVAILABLE_DATE', 'Available');
|
|
define('TABLE_HEADING_EXPIRES_DATE','Expires');
|
|
define('TABLE_HEADING_STATUS', 'Status');
|
|
define('TABLE_HEADING_ACTION', 'Action');
|
|
|
|
define('TEXT_SPECIALS_PRODUCT', 'Product:');
|
|
define('TEXT_SPECIALS_SPECIAL_PRICE', 'Special Price:');
|
|
define('TEXT_SPECIALS_EXPIRES_DATE', 'Expiry Date:');
|
|
define('TEXT_SPECIALS_AVAILABLE_DATE', 'Available Date:');
|
|
define('TEXT_SPECIALS_PRICE_TIP', '<b>Specials Notes:</b><ul><li>You can enter a percentage to deduct in the Specials Price field, for example: <b>20%</b></li><li>If you enter a new price, the decimal separator must be a \'.\' (decimal-point), example: <b>49.99</b></li><li>Leave the expiry date empty for no expiration</li></ul>');
|
|
|
|
define('TEXT_INFO_DATE_ADDED', 'Date Added:');
|
|
define('TEXT_INFO_LAST_MODIFIED', 'Last Modified:');
|
|
define('TEXT_INFO_NEW_PRICE', 'New Price:');
|
|
define('TEXT_INFO_ORIGINAL_PRICE', 'Original Price:');
|
|
define('TEXT_INFO_DISPLAY_PRICE', 'Display Price:<br />');
|
|
define('TEXT_INFO_AVAILABLE_DATE', 'Available On:');
|
|
define('TEXT_INFO_EXPIRES_DATE', 'Expires At:');
|
|
define('TEXT_INFO_STATUS_CHANGE', 'Status Change:');
|
|
define('TEXT_IMAGE_NONEXISTENT', 'No Image Exists');
|
|
|
|
define('TEXT_INFO_HEADING_DELETE_SPECIALS', 'Delete Special');
|
|
define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete the special products price?');
|
|
|
|
define('SUCCESS_SPECIALS_PRE_ADD', 'Successful: Pre-Add of Special ... please update the price and dates ...');
|
|
define('WARNING_SPECIALS_PRE_ADD_EMPTY', 'Warning: No Product ID specified ... nothing was added ...');
|
|
define('WARNING_SPECIALS_PRE_ADD_DUPLICATE', 'Warning: Product ID already on Special ... nothing was added ...');
|
|
define('TEXT_INFO_HEADING_PRE_ADD_SPECIALS', 'Manually add new Special by Product ID');
|
|
define('TEXT_INFO_PRE_ADD_INTRO', 'On large databases, you may Manually Add a Special by the Product ID<br /><br />This is best used when the page takes too long to render and trying to select a Product from the dropdown becomes difficult due to too many Products from which to choose.');
|
|
define('TEXT_PRE_ADD_PRODUCTS_ID', 'Please enter the Product ID to be Pre-Added: ');
|
|
define('TEXT_INFO_MANUAL', 'Product ID to be Manually Added as a Special');
|
|
?>
|