Added default language pack (en-gb)
This commit is contained in:
41
catalog/checkout/cart.php
Normal file
41
catalog/checkout/cart.php
Normal file
@ -0,0 +1,41 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Shopping Cart';
|
||||
|
||||
// Text
|
||||
$_['text_success'] = 'Success: You have added <a href="%s">%s</a> to your <a href="%s">shopping cart</a>!';
|
||||
$_['text_remove'] = 'Success: You have modified your shopping cart!';
|
||||
$_['text_login'] = 'Attention: You must <a href="%s">login</a> or <a href="%s">create an account</a> to view prices!';
|
||||
$_['text_items'] = '%s item(s) - %s';
|
||||
$_['text_points'] = 'Reward Points: %s';
|
||||
$_['text_next'] = 'What would you like to do next?';
|
||||
$_['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.';
|
||||
$_['text_empty'] = 'Your shopping cart is empty!';
|
||||
$_['text_day'] = 'day';
|
||||
$_['text_week'] = 'week';
|
||||
$_['text_semi_month'] = 'half-month';
|
||||
$_['text_month'] = 'month';
|
||||
$_['text_year'] = 'year';
|
||||
$_['text_trial'] = '%s every %s %s for %s payments then ';
|
||||
$_['text_recurring'] = '%s every %s %s';
|
||||
$_['text_payment_cancel'] = 'until cancelled';
|
||||
$_['text_recurring_item'] = 'Recurring Item';
|
||||
$_['text_payment_recurring'] = 'Payment Profile';
|
||||
$_['text_trial_description'] = '%s every %d %s(s) for %d payment(s) then';
|
||||
$_['text_payment_description'] = '%s every %d %s(s) for %d payment(s)';
|
||||
$_['text_payment_cancel'] = '%s every %d %s(s) until canceled';
|
||||
|
||||
// Column
|
||||
$_['column_image'] = 'Image';
|
||||
$_['column_name'] = 'Product Name';
|
||||
$_['column_model'] = 'Model';
|
||||
$_['column_quantity'] = 'Quantity';
|
||||
$_['column_price'] = 'Unit Price';
|
||||
$_['column_total'] = 'Total';
|
||||
|
||||
// Error
|
||||
$_['error_stock'] = 'Products marked with *** are not available in the desired quantity or not in stock!';
|
||||
$_['error_minimum'] = 'Minimum order amount for %s is %s!';
|
||||
$_['error_required'] = '%s required!';
|
||||
$_['error_product'] = 'Warning: There are no products in your cart!';
|
||||
$_['error_recurring_required'] = 'Please select a payment recurring!';
|
93
catalog/checkout/checkout.php
Normal file
93
catalog/checkout/checkout.php
Normal file
@ -0,0 +1,93 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Checkout';
|
||||
|
||||
// Text
|
||||
$_['text_cart'] = 'Shopping Cart';
|
||||
$_['text_checkout_option'] = 'Step %s: Checkout Options';
|
||||
$_['text_checkout_account'] = 'Step %s: Account & Billing Details';
|
||||
$_['text_checkout_payment_address'] = 'Step %s: Billing Details';
|
||||
$_['text_checkout_shipping_address'] = 'Step %s: Delivery Details';
|
||||
$_['text_checkout_shipping_method'] = 'Step %s: Delivery Method';
|
||||
$_['text_checkout_payment_method'] = 'Step %s: Payment Method';
|
||||
$_['text_checkout_confirm'] = 'Step %s: Confirm Order';
|
||||
$_['text_modify'] = 'Modify »';
|
||||
$_['text_new_customer'] = 'New Customer';
|
||||
$_['text_returning_customer'] = 'Returning Customer';
|
||||
$_['text_checkout'] = 'Checkout Options:';
|
||||
$_['text_i_am_returning_customer'] = 'I am a returning customer';
|
||||
$_['text_register'] = 'Register Account';
|
||||
$_['text_guest'] = 'Guest Checkout';
|
||||
$_['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.';
|
||||
$_['text_forgotten'] = 'Forgotten Password';
|
||||
$_['text_your_details'] = 'Your Personal Details';
|
||||
$_['text_your_address'] = 'Your Address';
|
||||
$_['text_your_password'] = 'Your Password';
|
||||
$_['text_agree'] = 'I have read and agree to the <a href="%s" class="agree"><b>%s</b></a>';
|
||||
$_['text_address_new'] = 'I want to use a new address';
|
||||
$_['text_address_existing'] = 'I want to use an existing address';
|
||||
$_['text_shipping_method'] = 'Please select the preferred shipping method to use on this order.';
|
||||
$_['text_payment_method'] = 'Please select the preferred payment method to use on this order.';
|
||||
$_['text_comments'] = 'Add Comments About Your Order';
|
||||
$_['text_recurring_item'] = 'Recurring Item';
|
||||
$_['text_payment_recurring'] = 'Payment Profile';
|
||||
$_['text_trial_description'] = '%s every %d %s(s) for %d payment(s) then';
|
||||
$_['text_payment_description'] = '%s every %d %s(s) for %d payment(s)';
|
||||
$_['text_payment_cancel'] = '%s every %d %s(s) until canceled';
|
||||
$_['text_day'] = 'day';
|
||||
$_['text_week'] = 'week';
|
||||
$_['text_semi_month'] = 'half-month';
|
||||
$_['text_month'] = 'month';
|
||||
$_['text_year'] = 'year';
|
||||
|
||||
// Column
|
||||
$_['column_name'] = 'Product Name';
|
||||
$_['column_model'] = 'Model';
|
||||
$_['column_quantity'] = 'Quantity';
|
||||
$_['column_price'] = 'Unit Price';
|
||||
$_['column_total'] = 'Total';
|
||||
|
||||
// Entry
|
||||
$_['entry_email_address'] = 'E-Mail Address';
|
||||
$_['entry_email'] = 'E-Mail';
|
||||
$_['entry_password'] = 'Password';
|
||||
$_['entry_confirm'] = 'Password Confirm';
|
||||
$_['entry_firstname'] = 'First Name';
|
||||
$_['entry_lastname'] = 'Last Name';
|
||||
$_['entry_telephone'] = 'Telephone';
|
||||
$_['entry_address'] = 'Choose Address';
|
||||
$_['entry_company'] = 'Company';
|
||||
$_['entry_customer_group'] = 'Customer Group';
|
||||
$_['entry_address_1'] = 'Address 1';
|
||||
$_['entry_address_2'] = 'Address 2';
|
||||
$_['entry_postcode'] = 'Post Code';
|
||||
$_['entry_city'] = 'City';
|
||||
$_['entry_country'] = 'Country';
|
||||
$_['entry_zone'] = 'Region / State';
|
||||
$_['entry_newsletter'] = 'I wish to subscribe to the %s newsletter.';
|
||||
$_['entry_shipping'] = 'My delivery and billing addresses are the same.';
|
||||
|
||||
// Error
|
||||
$_['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>.';
|
||||
$_['error_login'] = 'Warning: No match for E-Mail Address and/or Password.';
|
||||
$_['error_attempts'] = 'Warning: Your account has exceeded allowed number of login attempts. Please try again in 1 hour.';
|
||||
$_['error_approved'] = 'Warning: Your account requires approval before you can login.';
|
||||
$_['error_exists'] = 'Warning: E-Mail Address is already registered!';
|
||||
$_['error_firstname'] = 'First Name must be between 1 and 32 characters!';
|
||||
$_['error_lastname'] = 'Last Name must be between 1 and 32 characters!';
|
||||
$_['error_email'] = 'E-Mail address does not appear to be valid!';
|
||||
$_['error_telephone'] = 'Telephone must be between 3 and 32 characters!';
|
||||
$_['error_password'] = 'Password must be between 4 and 20 characters!';
|
||||
$_['error_confirm'] = 'Password confirmation does not match password!';
|
||||
$_['error_address_1'] = 'Address 1 must be between 3 and 128 characters!';
|
||||
$_['error_city'] = 'City must be between 2 and 128 characters!';
|
||||
$_['error_postcode'] = 'Postcode must be between 2 and 10 characters!';
|
||||
$_['error_country'] = 'Please select a country!';
|
||||
$_['error_zone'] = 'Please select a region / state!';
|
||||
$_['error_agree'] = 'Warning: You must agree to the %s!';
|
||||
$_['error_address'] = 'Warning: You must select address!';
|
||||
$_['error_shipping'] = 'Warning: Shipping method required!';
|
||||
$_['error_no_shipping'] = 'Warning: No Shipping options are available. Please <a href="%s">contact us</a> for assistance!';
|
||||
$_['error_payment'] = 'Warning: Payment method required!';
|
||||
$_['error_no_payment'] = 'Warning: No Payment options are available. Please <a href="%s">contact us</a> for assistance!';
|
||||
$_['error_custom_field'] = '%s required!';
|
20
catalog/checkout/failure.php
Normal file
20
catalog/checkout/failure.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Failed Payment!';
|
||||
|
||||
// Text
|
||||
$_['text_basket'] = 'Shopping Cart';
|
||||
$_['text_checkout'] = 'Checkout';
|
||||
$_['text_failure'] = 'Failed Payment';
|
||||
$_['text_message'] = '<p>There was a problem processing your payment and the order did not complete.</p>
|
||||
|
||||
<p>Possible reasons are:</p>
|
||||
<ul>
|
||||
<li>Insufficient funds</li>
|
||||
<li>Verification failed</li>
|
||||
</ul>
|
||||
|
||||
<p>Please try to order again using a different payment method.</p>
|
||||
|
||||
<p>If the problem persists please <a href="%s">contact us</a> with the details of the order you are trying to place.</p>
|
||||
';
|
10
catalog/checkout/success.php
Normal file
10
catalog/checkout/success.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Your order has been placed!';
|
||||
|
||||
// Text
|
||||
$_['text_basket'] = 'Shopping Cart';
|
||||
$_['text_checkout'] = 'Checkout';
|
||||
$_['text_success'] = 'Success';
|
||||
$_['text_customer'] = '<p>Your order has been successfully processed!</p><p>You can view your order history by going to the <a href="%s">my account</a> page and by clicking on <a href="%s">history</a>.</p><p>If your purchase has an associated download, you can go to the account <a href="%s">downloads</a> page to view them.</p><p>Please direct any questions you have to the <a href="%s">store owner</a>.</p><p>Thanks for shopping with us online!</p>';
|
||||
$_['text_guest'] = '<p>Your order has been successfully processed!</p><p>Please direct any questions you have to the <a href="%s">store owner</a>.</p><p>Thanks for shopping with us online!</p>';
|
Reference in New Issue
Block a user