shop.balmet.com

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

cart.php (2228B)


      1 <?php
      2 // Heading
      3 $_['heading_title']            = 'Shopping Cart';
      4 
      5 // Text
      6 $_['text_success']             = 'Success: You have added <a href="%s">%s</a> to your <a href="%s">shopping cart</a>!';
      7 $_['text_remove']              = 'Success: You have modified your shopping cart!';
      8 $_['text_login']               = 'Attention: You must <a href="%s">login</a> or <a href="%s">create an account</a> to view prices!';
      9 $_['text_items']               = '%s item(s) - %s';
     10 $_['text_points']              = 'Reward Points: %s';
     11 $_['text_next']                = 'What would you like to do next?';
     12 $_['text_next_choice']         = 'Choose if you have a discount code or reward points you want to use or would like to estimate your delivery cost.';
     13 $_['text_empty']               = 'Your shopping cart is empty!';
     14 $_['text_day']                 = 'day';
     15 $_['text_week']                = 'week';
     16 $_['text_semi_month']          = 'half-month';
     17 $_['text_month']               = 'month';
     18 $_['text_year']                = 'year';
     19 $_['text_trial']               = '%s every %s %s for %s payments then ';
     20 $_['text_recurring']           = '%s every %s %s';
     21 $_['text_payment_cancel']      = 'until cancelled';
     22 $_['text_recurring_item']      = 'Recurring Item';
     23 $_['text_payment_recurring']   = 'Payment Profile';
     24 $_['text_trial_description']   = '%s every %d %s(s) for %d payment(s) then';
     25 $_['text_payment_description'] = '%s every %d %s(s) for %d payment(s)';
     26 $_['text_payment_cancel']      = '%s every %d %s(s) until canceled';
     27 
     28 // Column
     29 $_['column_image']             = 'Image';
     30 $_['column_name']              = 'Product Name';
     31 $_['column_model']             = 'Model';
     32 $_['column_quantity']          = 'Quantity';
     33 $_['column_price']             = 'Unit Price';
     34 $_['column_total']             = 'Total';
     35 
     36 // Error
     37 $_['error_stock']              = 'Products marked with *** are not available in the desired quantity or not in stock!';
     38 $_['error_minimum']            = 'Minimum order amount for %s is %s!';
     39 $_['error_required']           = '%s required!';
     40 $_['error_product']            = 'Warning: There are no products in your cart!';
     41 $_['error_recurring_required'] = 'Please select a payment recurring!';