shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

coupon.php (2599B)


      1 <?php
      2 // Heading
      3 $_['heading_title']       = 'Coupons';
      4 
      5 // Text
      6 $_['text_success']        = 'Success: You have modified coupons!';
      7 $_['text_list']           = 'Coupon List';
      8 $_['text_add']            = 'Add Coupon';
      9 $_['text_edit']           = 'Edit Coupon';
     10 $_['text_percent']        = 'Percentage';
     11 $_['text_amount']         = 'Fixed Amount';
     12 $_['text_coupon']         = 'Coupon History';
     13 
     14 // Column
     15 $_['column_name']         = 'Coupon Name';
     16 $_['column_code']         = 'Code';
     17 $_['column_discount']     = 'Discount';
     18 $_['column_date_start']   = 'Date Start';
     19 $_['column_date_end']     = 'Date End';
     20 $_['column_status']       = 'Status';
     21 $_['column_order_id']     = 'Order ID';
     22 $_['column_customer']     = 'Customer';
     23 $_['column_amount']       = 'Amount';
     24 $_['column_date_added']   = 'Date Added';
     25 $_['column_action']       = 'Action';
     26 
     27 // Entry
     28 $_['entry_name']          = 'Coupon Name';
     29 $_['entry_code']          = 'Code';
     30 $_['entry_type']          = 'Type';
     31 $_['entry_discount']      = 'Discount';
     32 $_['entry_logged']        = 'Customer Login';
     33 $_['entry_shipping']      = 'Free Shipping';
     34 $_['entry_total']         = 'Total Amount';
     35 $_['entry_category']      = 'Category';
     36 $_['entry_product']       = 'Products';
     37 $_['entry_date_start']    = 'Date Start';
     38 $_['entry_date_end']      = 'Date End';
     39 $_['entry_uses_total']    = 'Uses Per Coupon';
     40 $_['entry_uses_customer'] = 'Uses Per Customer';
     41 $_['entry_status']        = 'Status';
     42 
     43 // Help
     44 $_['help_code']           = 'The code the customer enters to get the discount.';
     45 $_['help_type']           = 'Percentage or Fixed Amount.';
     46 $_['help_logged']         = 'Customer must be logged in to use the coupon.';
     47 $_['help_total']          = 'The total amount that must be reached before the coupon is valid.';
     48 $_['help_category']       = 'Choose all products under selected category.';
     49 $_['help_product']        = 'Choose specific products the coupon will apply to. Select no products to apply coupon to entire cart.';
     50 $_['help_uses_total']     = 'The maximum number of times the coupon can be used by any customer. Leave blank for unlimited';
     51 $_['help_uses_customer']  = 'The maximum number of times the coupon can be used by a single customer. Leave blank for unlimited';
     52 
     53 // Error
     54 $_['error_permission']    = 'Warning: You do not have permission to modify coupons!';
     55 $_['error_exists']        = 'Warning: Coupon code is already in use!';
     56 $_['error_name']          = 'Coupon Name must be between 3 and 128 characters!';
     57 $_['error_code']          = 'Code must be between 3 and 10 characters!';