43 lines
2.6 KiB
PHP
Executable File
43 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: popup_coupon_help.php 1969 2005-09-13 06:57:21Z drbyte $
|
|
//
|
|
|
|
define('HEADING_COUPON_HELP', 'Discount Coupon Help');
|
|
define('TEXT_CLOSE_WINDOW', 'Close Window [x]');
|
|
define('TEXT_COUPON_HELP_HEADER', 'Congratulations, you have redeemed a Discount Coupon.');
|
|
define('TEXT_COUPON_HELP_NAME', '<br /><br />Coupon Name : %s');
|
|
define('TEXT_COUPON_HELP_FIXED', '<br /><br />The coupon is worth %s discount against your order');
|
|
define('TEXT_COUPON_HELP_MINORDER', '<br /><br />You need to spend %s to use this coupon');
|
|
define('TEXT_COUPON_HELP_FREESHIP', '<br /><br />This coupon gives you free shipping on your order');
|
|
define('TEXT_COUPON_HELP_DESC', '<br /><br />Coupon Description : %s');
|
|
define('TEXT_COUPON_HELP_DATE', '<br /><br />The coupon is valid between %s and %s');
|
|
define('TEXT_COUPON_HELP_RESTRICT', '<br /><br />Product/Category Restrictions');
|
|
define('TEXT_COUPON_HELP_CATEGORIES', 'Category');
|
|
define('TEXT_COUPON_HELP_PRODUCTS', 'Product');
|
|
define('TEXT_ALLOW', 'Allow');
|
|
define('TEXT_DENY', 'Deny');
|
|
|
|
define('TEXT_ALLOWED', ' (Allowed)');
|
|
define('TEXT_DENIED', ' (Denied)');
|
|
|
|
// gift certificates cannot be purchased with Discount Coupons
|
|
define('TEXT_COUPON_GV_RESTRICTION','Discount Coupons may not be applied towards the purchase of ' . TEXT_GV_NAMES . '.');
|
|
?>
|