35 lines
1.4 KiB
PHP
35 lines
1.4 KiB
PHP
<?php
|
|
/*
|
|
$Id: specials.php,v 1.10 2002/03/16 15:07:21 project3000 Exp $
|
|
|
|
osCommerce, Open Source E-Commerce Solutions
|
|
http://www.oscommerce.com
|
|
|
|
Copyright (c) 2002 osCommerce
|
|
|
|
Released under the GNU General Public License
|
|
*/
|
|
|
|
define('HEADING_TITLE', 'Specials');
|
|
|
|
define('TABLE_HEADING_PRODUCTS', 'Products');
|
|
define('TABLE_HEADING_PRODUCTS_PRICE', 'Products Price');
|
|
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_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_PERCENTAGE', 'Percentage:');
|
|
define('TEXT_INFO_EXPIRES_DATE', 'Expires At:');
|
|
define('TEXT_INFO_STATUS_CHANGE', 'Status Change:');
|
|
|
|
define('TEXT_INFO_HEADING_DELETE_SPECIALS', 'Delete Special');
|
|
define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete the special products price?');
|
|
?>
|