first commit
This commit is contained in:
37
catalog/language/en-gb/checkout/cart.php
Normal file
37
catalog/language/en-gb/checkout/cart.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?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_edit'] = 'Success: You have modified your shopping cart!';
|
||||
$_['text_remove'] = 'Success: You have removed an item from 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_no_results'] = 'Your shopping cart is empty!';
|
||||
$_['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_points'] = 'Reward Points';
|
||||
$_['text_subscription'] = 'Subscription';
|
||||
$_['text_subscription_trial'] = '%s every %d %s(s) for %d payment(s) then ';
|
||||
$_['text_subscription_duration'] = '%s every %d %s(s) for %d payment(s)';
|
||||
$_['text_subscription_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_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: Product could not be found!';
|
||||
$_['error_subscription'] = 'Please select a subscription plan!';
|
6
catalog/language/en-gb/checkout/checkout.php
Normal file
6
catalog/language/en-gb/checkout/checkout.php
Normal file
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Checkout';
|
||||
|
||||
// Text
|
||||
$_['text_cart'] = 'Shopping Cart';
|
19
catalog/language/en-gb/checkout/confirm.php
Normal file
19
catalog/language/en-gb/checkout/confirm.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
// Text
|
||||
$_['text_points'] = 'Reward Points';
|
||||
$_['text_subscription'] = 'Subscription';
|
||||
$_['text_subscription_trial'] = '%s every %d %s(s) for %d payment(s) then ';
|
||||
$_['text_subscription_duration'] = '%s every %d %s(s) for %d payment(s)';
|
||||
$_['text_subscription_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';
|
20
catalog/language/en-gb/checkout/failure.php
Normal file
20
catalog/language/en-gb/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>
|
||||
';
|
33
catalog/language/en-gb/checkout/payment_address.php
Normal file
33
catalog/language/en-gb/checkout/payment_address.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Payment Address';
|
||||
|
||||
// Text
|
||||
$_['text_address_new'] = 'I want to use a new address';
|
||||
$_['text_address_existing'] = 'I want to use an existing address';
|
||||
$_['text_success'] = 'Success: You have changed payment address!';
|
||||
|
||||
// Entry
|
||||
$_['entry_address'] = 'Choose Address';
|
||||
$_['entry_firstname'] = 'First Name';
|
||||
$_['entry_lastname'] = 'Last Name';
|
||||
$_['entry_company'] = 'Company';
|
||||
$_['entry_address_1'] = 'Address 1';
|
||||
$_['entry_address_2'] = 'Address 2';
|
||||
$_['entry_postcode'] = 'Post Code';
|
||||
$_['entry_city'] = 'City';
|
||||
$_['entry_country'] = 'Country';
|
||||
$_['entry_zone'] = 'Region / State';
|
||||
|
||||
// Error
|
||||
$_['error_customer'] = 'Customer required!';
|
||||
$_['error_address'] = 'Payment address could not be found!';
|
||||
$_['error_firstname'] = 'First Name must be between 1 and 32 characters!';
|
||||
$_['error_lastname'] = 'Last Name must be between 1 and 32 characters!';
|
||||
$_['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_custom_field'] = '%s required!';
|
||||
$_['error_regex'] = '%s is not a valid input!';
|
22
catalog/language/en-gb/checkout/payment_method.php
Normal file
22
catalog/language/en-gb/checkout/payment_method.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Payment Method';
|
||||
|
||||
// Text
|
||||
$_['text_payment_method'] = 'Payment method options';
|
||||
$_['text_payment'] = 'Please select the preferred payment method to use for this order.';
|
||||
$_['text_comments'] = 'Add Comments About Your Order';
|
||||
$_['text_agree'] = 'I have read and agree to the <a href="%s" class="modal-link"><b>%s</b></a>';
|
||||
$_['text_success'] = 'Success: You have changed payment method!';
|
||||
$_['text_comment'] = 'Success: Comment added!';
|
||||
|
||||
// Entry
|
||||
$_['entry_payment_method'] = 'Choose payment method...';
|
||||
|
||||
// Error
|
||||
$_['error_customer'] = 'Customer required!';
|
||||
$_['error_payment_address'] = 'Payment address required!';
|
||||
$_['error_shipping_address'] = 'Shipping address required!';
|
||||
$_['error_shipping_method'] = 'Shipping method required!';
|
||||
$_['error_payment_method'] = 'Payment method required!';
|
||||
$_['error_no_payment'] = 'No Payment options are available. Please <a href="%s">contact us</a> for assistance!';
|
53
catalog/language/en-gb/checkout/register.php
Normal file
53
catalog/language/en-gb/checkout/register.php
Normal file
@ -0,0 +1,53 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Your Personal Details';
|
||||
|
||||
// Text
|
||||
$_['text_login'] = 'If you already have an account with us, please login at the <a href="%s"><strong>login page</strong></a>.';
|
||||
$_['text_register'] = 'Register Account';
|
||||
$_['text_guest'] = 'Guest Checkout';
|
||||
$_['text_payment_address'] = 'Payment Address';
|
||||
$_['text_shipping_address'] = 'Shipping Address';
|
||||
$_['text_your_password'] = 'Your Password';
|
||||
$_['text_agree'] = 'I have read and agree to the <a href="%s" class="modal-link"><b>%s</b></a>';
|
||||
$_['text_success_add'] = 'Success: Your account has been created!';
|
||||
$_['text_success_guest'] = 'Success: Your guest account information has been saved!';
|
||||
$_['text_success_edit'] = 'Success: Your account has been successfully updated.';
|
||||
|
||||
// Entry
|
||||
$_['entry_customer_group'] = 'Account Type';
|
||||
$_['entry_firstname'] = 'First Name';
|
||||
$_['entry_lastname'] = 'Last Name';
|
||||
$_['entry_email'] = 'E-Mail';
|
||||
$_['entry_telephone'] = 'Telephone';
|
||||
$_['entry_password'] = 'Password';
|
||||
$_['entry_confirm'] = 'Password Confirm';
|
||||
$_['entry_company'] = 'Company';
|
||||
$_['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_match'] = 'My delivery and billing addresses are the same.';
|
||||
$_['entry_newsletter'] = 'I wish to subscribe to the %s newsletter.';
|
||||
|
||||
// Error
|
||||
$_['error_guest'] = 'Warning: Items in your shopping cart require you to register for an account!';
|
||||
$_['error_firstname'] = 'First Name must be between 1 and 32 characters!';
|
||||
$_['error_lastname'] = 'Last Name must be between 1 and 32 characters!';
|
||||
$_['error_customer_group'] = 'Customer Group does not appear to be valid!';
|
||||
$_['error_customer_approval'] = 'Warning: Your this customer group requires approval and cannot be used with guest account.';
|
||||
$_['error_email'] = 'E-Mail address does not appear to be valid!';
|
||||
$_['error_exists'] = 'Warning: E-Mail Address is already registered!';
|
||||
$_['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_custom_field'] = '%s required!';
|
||||
$_['error_regex'] = '%s is not a valid input!';
|
32
catalog/language/en-gb/checkout/shipping_address.php
Normal file
32
catalog/language/en-gb/checkout/shipping_address.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Shipping Address';
|
||||
|
||||
// Text
|
||||
$_['text_address_new'] = 'I want to use a new address';
|
||||
$_['text_address_existing'] = 'I want to use an existing address';
|
||||
$_['text_success'] = 'Success: You have changed shipping address!';
|
||||
|
||||
// Entry
|
||||
$_['entry_address'] = 'Choose Address';
|
||||
$_['entry_firstname'] = 'First Name';
|
||||
$_['entry_lastname'] = 'Last Name';
|
||||
$_['entry_company'] = 'Company';
|
||||
$_['entry_address_1'] = 'Address 1';
|
||||
$_['entry_address_2'] = 'Address 2';
|
||||
$_['entry_postcode'] = 'Post Code';
|
||||
$_['entry_city'] = 'City';
|
||||
$_['entry_country'] = 'Country';
|
||||
$_['entry_zone'] = 'Region / State';
|
||||
|
||||
// Error
|
||||
$_['error_address'] = 'Shipping address could not be found!';
|
||||
$_['error_firstname'] = 'First Name must be between 1 and 32 characters!';
|
||||
$_['error_lastname'] = 'Last Name must be between 1 and 32 characters!';
|
||||
$_['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_custom_field'] = '%s required!';
|
||||
$_['error_regex'] = '%s is not a valid input!';
|
18
catalog/language/en-gb/checkout/shipping_method.php
Normal file
18
catalog/language/en-gb/checkout/shipping_method.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Shipping Method';
|
||||
|
||||
// Text
|
||||
$_['text_shipping_method'] = 'Shipping method options';
|
||||
$_['text_shipping'] = 'Please select the preferred shipping method to use for this order.';
|
||||
$_['text_success'] = 'Success: You have changed shipping method!';
|
||||
|
||||
// Entry
|
||||
$_['entry_shipping_method'] = 'Choose shipping method...';
|
||||
|
||||
// Error
|
||||
$_['error_customer'] = 'Customer required!';
|
||||
$_['error_payment_address'] = 'Payment address required!';
|
||||
$_['error_shipping_address'] = 'Shipping address required!';
|
||||
$_['error_shipping_method'] = 'Shipping method required!';
|
||||
$_['error_no_shipping'] = 'No Shipping options are available. Please <a href="%s">contact us</a> for assistance!';
|
10
catalog/language/en-gb/checkout/success.php
Normal file
10
catalog/language/en-gb/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>';
|
34
catalog/language/en-gb/checkout/voucher.php
Normal file
34
catalog/language/en-gb/checkout/voucher.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Purchase a Gift Certificate';
|
||||
|
||||
// Text
|
||||
$_['text_account'] = 'Account';
|
||||
$_['text_voucher'] = 'Gift Certificate';
|
||||
$_['text_description'] = 'This gift certificate will be emailed to the recipient after your order has been paid for.';
|
||||
$_['text_agree'] = 'I understand that gift certificates are non-refundable';
|
||||
$_['text_message'] = '<p>Thank you for purchasing a gift certificate! Once you have completed your order your gift certificate recipient will be sent an e-mail with details how to redeem their gift certificate.</p>';
|
||||
$_['text_for'] = '%s Gift Certificate for %s';
|
||||
|
||||
// Entry
|
||||
$_['entry_to_name'] = 'Recipient\'s Name';
|
||||
$_['entry_to_email'] = 'Recipient\'s e-mail';
|
||||
$_['entry_from_name'] = 'Your Name';
|
||||
$_['entry_from_email'] = 'Your e-mail';
|
||||
$_['entry_theme'] = 'Gift Certificate Theme';
|
||||
$_['entry_message'] = 'Message';
|
||||
$_['entry_amount'] = 'Amount';
|
||||
|
||||
// Help
|
||||
$_['help_message'] = 'Optional';
|
||||
$_['help_amount'] = 'Value must be between %s and %s';
|
||||
|
||||
// Error
|
||||
$_['error_token'] = 'Warning: Voucher token invalid!';
|
||||
$_['error_voucher'] = 'Voucher could not be found!';
|
||||
$_['error_to_name'] = 'Recipient\'s Name must be between 1 and 64 characters!';
|
||||
$_['error_from_name'] = 'Your Name must be between 1 and 64 characters!';
|
||||
$_['error_email'] = 'E-Mail Address does not appear to be valid!';
|
||||
$_['error_theme'] = 'You must select a theme!';
|
||||
$_['error_amount'] = 'Amount must be between %s and %s!';
|
||||
$_['error_agree'] = 'Warning: You must agree that the gift certificates are non-refundable!';
|
Reference in New Issue
Block a user