50 lines
2.6 KiB
PHP
Executable File
50 lines
2.6 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: featured.php 1105 2005-04-04 22:05:35Z birdbrain $
|
|
//
|
|
|
|
define('HEADING_TITLE', 'Featured Products');
|
|
|
|
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_FEATURED_PRODUCT', 'Product:');
|
|
define('TEXT_FEATURED_EXPIRES_DATE', 'Expiry Date:');
|
|
define('TEXT_FEATURED_AVAILABLE_DATE', 'Available Date:');
|
|
|
|
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_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_FEATURED', 'Delete Featured');
|
|
define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete the featured product?');
|
|
?>
|