|
ZenCart_Documentation
1.5.0
http://www.collinsharper.com
|
00001 <?php 00002 // 00003 // +----------------------------------------------------------------------+ 00004 // |zen-cart Open Source E-commerce | 00005 // +----------------------------------------------------------------------+ 00006 // | Copyright (c) 2003 The zen-cart developers | 00007 // | | 00008 // | http://www.zen-cart.com/index.php | 00009 // | | 00010 // | Portions Copyright (c) 2003 osCommerce | 00011 // +----------------------------------------------------------------------+ 00012 // | This source file is subject to version 2.0 of the GPL license, | 00013 // | that is bundled with this package in the file LICENSE, and is | 00014 // | available through the world-wide-web at the following url: | 00015 // | http://www.zen-cart.com/license/2_0.txt. | 00016 // | If you did not receive a copy of the zen-cart license and are unable | 00017 // | to obtain it through the world-wide-web, please send a note to | 00018 // | [email protected] so we can mail you a copy immediately. | 00019 // +----------------------------------------------------------------------+ 00020 // $Id: coupon_admin.php 5758 2007-02-08 01:39:34Z ajeh $ 00021 // 00022 00023 define('TOP_BAR_TITLE', 'Statistics'); 00024 define('HEADING_TITLE', 'Discount Coupons'); 00025 define('HEADING_TITLE_STATUS', 'Status : '); 00026 define('TEXT_CUSTOMER', 'Customer:'); 00027 define('TEXT_COUPON', 'Coupon Name:'); 00028 define('TEXT_COUPON_ALL', 'All Coupons'); 00029 define('TEXT_COUPON_ACTIVE', 'Active Coupons'); 00030 define('TEXT_COUPON_INACTIVE', 'Inactive Coupons'); 00031 define('TEXT_SUBJECT', 'Subject:'); 00032 define('TEXT_UNLIMITED', 'Unlimited'); 00033 define('TEXT_FROM', 'From:'); 00034 define('TEXT_FREE_SHIPPING', 'Free Shipping'); 00035 define('TEXT_MESSAGE', 'Message:'); 00036 define('TEXT_RICH_TEXT_MESSAGE','Rich-Text Message:'); 00037 define('TEXT_SELECT_CUSTOMER', 'Select Customer'); 00038 define('TEXT_ALL_CUSTOMERS', 'All Customers'); 00039 define('TEXT_NEWSLETTER_CUSTOMERS', 'To All Newsletter Subscribers'); 00040 define('TEXT_CONFIRM_DELETE', 'Are you sure you want to delete this Coupon?'); 00041 define('TEXT_SEE_RESTRICT', 'Restrictions Apply'); 00042 00043 define('TEXT_COUPON_ANNOUNCE','We\'re pleased to offer you a Store Coupon'); 00044 00045 define('TEXT_TO_REDEEM', 'You can redeem this coupon during checkout. Just enter the code in the box provided, and click on the redeem button.'); 00046 define('TEXT_IN_CASE', ' in case you have any problems. '); 00047 define('TEXT_VOUCHER_IS', 'The coupon code is '); 00048 define('TEXT_REMEMBER', 'Don\'t lose the coupon code, make sure to keep the code safe so you can benefit from this special offer.'); 00049 define('TEXT_VISIT', 'Visit us at %s'); 00050 define('TEXT_ENTER_CODE', ' and enter the code '); 00051 define('TEXT_COUPON_HELP_DATE', '<p><p>The coupon is valid between %s and %s</p></p>'); 00052 define('HTML_COUPON_HELP_DATE', '<p><p>The coupon is valid between %s and %s</p></p>'); 00053 00054 define('TABLE_HEADING_ACTION', 'Action'); 00055 00056 define('CUSTOMER_ID', 'Customer ID'); 00057 define('CUSTOMER_NAME', 'Customer Name'); 00058 define('REDEEM_DATE', 'Date Redeemed'); 00059 define('IP_ADDRESS', 'IP Address'); 00060 00061 define('TEXT_REDEMPTIONS', 'Redemptions'); 00062 define('TEXT_REDEMPTIONS_TOTAL', 'In Total'); 00063 define('TEXT_REDEMPTIONS_CUSTOMER', 'For this Customer'); 00064 define('TEXT_NO_FREE_SHIPPING', 'No Free Shipping'); 00065 00066 define('NOTICE_EMAIL_SENT_TO', 'Notice: Email sent to: %s'); 00067 define('ERROR_NO_CUSTOMER_SELECTED', 'Error: No customer has been selected.'); 00068 define('ERROR_NO_SUBJECT', 'Error: No subject has been entered.'); 00069 00070 define('COUPON_NAME', 'Coupon Name'); 00071 //define('COUPON_VALUE', 'Coupon Value'); 00072 define('COUPON_AMOUNT', 'Coupon Amount'); 00073 define('COUPON_CODE', 'Coupon Code'); 00074 define('COUPON_STARTDATE', 'Start Date'); 00075 define('COUPON_FINISHDATE', 'End Date'); 00076 define('COUPON_FREE_SHIP', 'Free Shipping'); 00077 define('COUPON_DESC', 'Coupon Description <br />(Customer can see)'); 00078 define('COUPON_MIN_ORDER', 'Coupon Minimum Order'); 00079 define('COUPON_USES_COUPON', 'Uses per Coupon'); 00080 define('COUPON_USES_USER', 'Uses per Customer'); 00081 define('COUPON_PRODUCTS', 'Valid Product List'); 00082 define('COUPON_CATEGORIES', 'Valid Categories List'); 00083 define('VOUCHER_NUMBER_USED', 'Number Used'); 00084 define('DATE_CREATED', 'Date Created'); 00085 define('DATE_MODIFIED', 'Date Modified'); 00086 define('TEXT_HEADING_NEW_COUPON', 'Create New Coupon'); 00087 define('TEXT_NEW_INTRO', 'Please fill out the following information for the new coupon.<br />'); 00088 define('COUPON_ZONE_RESTRICTION', 'Coupon Zone Restriction: '); 00089 define('TEXT_COUPON_ZONE_RESTRICTION', 'Coupon Zone Restriction are optional.'); 00090 00091 define('ERROR_NO_COUPON_AMOUNT', 'No coupon amount entered'); 00092 define('ERROR_NO_COUPON_NAME', 'No coupon name entered '); 00093 define('ERROR_COUPON_EXISTS', 'A coupon with that code already exists'); 00094 00095 00096 define('COUPON_NAME_HELP', 'A short name for the coupon'); 00097 define('COUPON_AMOUNT_HELP', 'The value of the discount for the coupon, either fixed or add a % on the end for a percentage discount.'); 00098 define('COUPON_CODE_HELP', 'You can enter your own code here, or leave blank for an auto generated one.'); 00099 define('COUPON_STARTDATE_HELP', 'The date the coupon will be valid from'); 00100 define('COUPON_FINISHDATE_HELP', 'The date the coupon expires'); 00101 define('COUPON_FREE_SHIP_HELP', 'The coupon gives free shipping on an order. Note. This overrides the coupon_amount figure but respects the minimum order value'); 00102 define('COUPON_DESC_HELP', 'A description of the coupon for the customer'); 00103 define('COUPON_MIN_ORDER_HELP', 'The minimum order value before the coupon is valid'); 00104 define('COUPON_USES_COUPON_HELP', 'The maximum number of times the coupon can be used, leave blank if you want no limit.'); 00105 define('COUPON_USES_USER_HELP', 'Number of times a user can use the coupon, leave blank for no limit.'); 00106 define('COUPON_PRODUCTS_HELP', 'A comma separated list of product_ids that this coupon can be used with. Leave blank for no restrictions.'); 00107 define('COUPON_CATEGORIES_HELP', 'A comma separated list of cpaths that this coupon can be used with, leave blank for no restrictions.'); 00108 define('COUPON_BUTTON_PREVIEW', 'Preview'); 00109 define('COUPON_BUTTON_CONFIRM', 'Confirm'); 00110 define('COUPON_BUTTON_BACK', 'Back'); 00111 00112 define('COUPON_ACTIVE', 'Status'); 00113 define('COUPON_START_DATE', 'Starts'); 00114 define('COUPON_EXPIRE_DATE', 'Expires'); 00115 00116 define('ERROR_DISCOUNT_COUPON_WELCOME', 'Discount Coupon CANNOT be deactivated. This Discount Coupon is the Welcome Discount Coupon<br /><br />Change the Welcome Discount Coupon before trying to delete it. See Admin->Configuration->GV Coupons'); 00117 define('SUCCESS_COUPON_DISABLED', 'Success! Discount Coupon was set to Inactive ...'); 00118 define('TEXT_COUPON_NEW', 'Use NEW Discount Coupon Code:'); 00119 define('ERROR_DISCOUNT_COUPON_DUPLICATE', 'WARNING! Duplicate Coupon exists ... Copy cancelled for Coupon Code: '); 00120 define('TEXT_CONFIRM_COPY', 'Are you sure you want to Copy this Discount Coupon to another Discount Coupon?'); 00121 define('SUCCESS_COUPON_DUPLICATE', 'Success! Discount Coupon was duplicated ...<br /><br />Be sure to check Coupon Name and Dates ...'); 00122 ?>