checkout.php (6230B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'Checkout'; 4 5 // Text 6 $_['text_cart'] = 'Shopping Cart'; 7 $_['text_checkout_option'] = 'Step %s: Checkout Options'; 8 $_['text_checkout_account'] = 'Step %s: Account & Billing Details'; 9 $_['text_checkout_payment_address'] = 'Step %s: Billing Details'; 10 $_['text_checkout_shipping_address'] = 'Step %s: Delivery Details'; 11 $_['text_checkout_shipping_method'] = 'Step %s: Delivery Method'; 12 $_['text_checkout_payment_method'] = 'Step %s: Payment Method'; 13 $_['text_checkout_confirm'] = 'Step %s: Confirm Order'; 14 $_['text_modify'] = 'Modify »'; 15 $_['text_new_customer'] = 'New Customer'; 16 $_['text_returning_customer'] = 'Returning Customer'; 17 $_['text_checkout'] = 'Checkout Options:'; 18 $_['text_i_am_returning_customer'] = 'I am a returning customer'; 19 $_['text_register'] = 'Register Account'; 20 $_['text_guest'] = 'Guest Checkout'; 21 $_['text_register_account'] = 'By creating an account you will be able to shop faster, be up to date on an order\'s status, and keep track of the orders you have previously made.'; 22 $_['text_forgotten'] = 'Forgotten Password'; 23 $_['text_your_details'] = 'Your Personal Details'; 24 $_['text_your_address'] = 'Your Address'; 25 $_['text_your_password'] = 'Your Password'; 26 $_['text_agree'] = 'I have read and agree to the <a href="%s" class="agree"><b>%s</b></a>'; 27 $_['text_address_new'] = 'I want to use a new address'; 28 $_['text_address_existing'] = 'I want to use an existing address'; 29 $_['text_shipping_method'] = 'Please select the preferred shipping method to use on this order.'; 30 $_['text_payment_method'] = 'Please select the preferred payment method to use on this order.'; 31 $_['text_comments'] = 'Add Comments About Your Order'; 32 $_['text_recurring_item'] = 'Recurring Item'; 33 $_['text_payment_recurring'] = 'Payment Profile'; 34 $_['text_trial_description'] = '%s every %d %s(s) for %d payment(s) then'; 35 $_['text_payment_description'] = '%s every %d %s(s) for %d payment(s)'; 36 $_['text_payment_cancel'] = '%s every %d %s(s) until canceled'; 37 $_['text_day'] = 'day'; 38 $_['text_week'] = 'week'; 39 $_['text_semi_month'] = 'half-month'; 40 $_['text_month'] = 'month'; 41 $_['text_year'] = 'year'; 42 43 // Column 44 $_['column_name'] = 'Product Name'; 45 $_['column_model'] = 'Model'; 46 $_['column_quantity'] = 'Quantity'; 47 $_['column_price'] = 'Unit Price'; 48 $_['column_total'] = 'Total'; 49 50 // Entry 51 $_['entry_email_address'] = 'E-Mail Address'; 52 $_['entry_email'] = 'E-Mail'; 53 $_['entry_password'] = 'Password'; 54 $_['entry_confirm'] = 'Password Confirm'; 55 $_['entry_firstname'] = 'First Name'; 56 $_['entry_lastname'] = 'Last Name'; 57 $_['entry_telephone'] = 'Telephone'; 58 $_['entry_address'] = 'Choose Address'; 59 $_['entry_company'] = 'Company'; 60 $_['entry_customer_group'] = 'Customer Group'; 61 $_['entry_address_1'] = 'Address 1'; 62 $_['entry_address_2'] = 'Address 2'; 63 $_['entry_postcode'] = 'Post Code'; 64 $_['entry_city'] = 'City'; 65 $_['entry_country'] = 'Country'; 66 $_['entry_zone'] = 'Region / State'; 67 $_['entry_newsletter'] = 'I wish to subscribe to the %s newsletter.'; 68 $_['entry_shipping'] = 'My delivery and billing addresses are the same.'; 69 70 // Error 71 $_['error_warning'] = 'There was a problem while trying to process your order! If the problem persists please try selecting a different payment method or you can contact the store owner by <a href="%s">clicking here</a>.'; 72 $_['error_login'] = 'Warning: No match for E-Mail Address and/or Password.'; 73 $_['error_attempts'] = 'Warning: Your account has exceeded allowed number of login attempts. Please try again in 1 hour.'; 74 $_['error_approved'] = 'Warning: Your account requires approval before you can login.'; 75 $_['error_exists'] = 'Warning: E-Mail Address is already registered!'; 76 $_['error_firstname'] = 'First Name must be between 1 and 32 characters!'; 77 $_['error_lastname'] = 'Last Name must be between 1 and 32 characters!'; 78 $_['error_email'] = 'E-Mail address does not appear to be valid!'; 79 $_['error_telephone'] = 'Telephone must be between 3 and 32 characters!'; 80 $_['error_password'] = 'Password must be between 4 and 20 characters!'; 81 $_['error_confirm'] = 'Password confirmation does not match password!'; 82 $_['error_address_1'] = 'Address 1 must be between 3 and 128 characters!'; 83 $_['error_city'] = 'City must be between 2 and 128 characters!'; 84 $_['error_postcode'] = 'Postcode must be between 2 and 10 characters!'; 85 $_['error_country'] = 'Please select a country!'; 86 $_['error_zone'] = 'Please select a region / state!'; 87 $_['error_agree'] = 'Warning: You must agree to the %s!'; 88 $_['error_address'] = 'Warning: You must select address!'; 89 $_['error_shipping'] = 'Warning: Shipping method required!'; 90 $_['error_no_shipping'] = 'Warning: No Shipping options are available. Please <a href="%s">contact us</a> for assistance!'; 91 $_['error_payment'] = 'Warning: Payment method required!'; 92 $_['error_no_payment'] = 'Warning: No Payment options are available. Please <a href="%s">contact us</a> for assistance!'; 93 $_['error_custom_field'] = '%s required!';