1
0

Added default language pack (en-gb)

This commit is contained in:
Christer Waren
2020-02-12 23:25:39 +02:00
parent 27b4234c0f
commit 704d608ff8
465 changed files with 15946 additions and 0 deletions

View File

@ -0,0 +1,26 @@
<?php
// Heading
$_['heading_title'] = 'My Account';
// Text
$_['text_account'] = 'Account';
$_['text_my_account'] = 'My Account';
$_['text_my_orders'] = 'My Orders';
$_['text_my_affiliate'] = 'My Affiliate Account';
$_['text_my_newsletter'] = 'Newsletter';
$_['text_edit'] = 'Edit your account information';
$_['text_password'] = 'Change your password';
$_['text_address'] = 'Modify your address book entries';
$_['text_credit_card'] = 'Manage Stored Credit Cards';
$_['text_wishlist'] = 'Modify your wish list';
$_['text_order'] = 'View your order history';
$_['text_download'] = 'Downloads';
$_['text_reward'] = 'Your Reward Points';
$_['text_return'] = 'View your return requests';
$_['text_transaction'] = 'Your Transactions';
$_['text_newsletter'] = 'Subscribe / unsubscribe to newsletter';
$_['text_recurring'] = 'Recurring payments';
$_['text_transactions'] = 'Transactions';
$_['text_affiliate_add'] = 'Register for an affiliate account';
$_['text_affiliate_edit'] = 'Edit your affiliate information';
$_['text_tracking'] = 'Custom Affiliate Tracking Code';

View File

@ -0,0 +1,37 @@
<?php
// Heading
$_['heading_title'] = 'Address Book';
// Text
$_['text_account'] = 'Account';
$_['text_address_book'] = 'Address Book Entries';
$_['text_address_add'] = 'Add Address';
$_['text_address_edit'] = 'Edit Address';
$_['text_add'] = 'Your address has been successfully added';
$_['text_edit'] = 'Your address has been successfully updated';
$_['text_delete'] = 'Your address has been successfully deleted';
$_['text_empty'] = 'You have no addresses in your account.';
// Entry
$_['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';
$_['entry_default'] = 'Default Address';
// Error
$_['error_delete'] = 'Warning: You must have at least one address!';
$_['error_default'] = 'Warning: You can not delete your default address!';
$_['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 must be between 3 and 128 characters!';
$_['error_postcode'] = 'Postcode must be between 2 and 10 characters!';
$_['error_city'] = 'City must be between 2 and 128 characters!';
$_['error_country'] = 'Please select a country!';
$_['error_zone'] = 'Please select a region / state!';
$_['error_custom_field'] = '%s required!';

View File

@ -0,0 +1,35 @@
<?php
// Heading
$_['heading_title'] = 'Your Affiliate Information';
// Text
$_['text_account'] = 'Account';
$_['text_affiliate'] = 'Affiliate';
$_['text_my_affiliate'] = 'My Affiliate Account';
$_['text_payment'] = 'Payment Information';
$_['text_cheque'] = 'Cheque';
$_['text_paypal'] = 'PayPal';
$_['text_bank'] = 'Bank Transfer';
$_['text_success'] = 'Success: Your account has been successfully updated.';
$_['text_agree'] = 'I have read and agree to the <a href="%s" class="agree"><b>%s</b></a>';
// Entry
$_['entry_company'] = 'Company';
$_['entry_website'] = 'Web Site';
$_['entry_tax'] = 'Tax ID';
$_['entry_payment'] = 'Payment Method';
$_['entry_cheque'] = 'Cheque Payee Name';
$_['entry_paypal'] = 'PayPal Email Account';
$_['entry_bank_name'] = 'Bank Name';
$_['entry_bank_branch_number'] = 'ABA/BSB number (Branch Number)';
$_['entry_bank_swift_code'] = 'SWIFT Code';
$_['entry_bank_account_name'] = 'Account Name';
$_['entry_bank_account_number'] = 'Account Number';
// Error
$_['error_agree'] = 'Warning: You must agree to the %s!';
$_['error_cheque'] = 'Cheque Payee Name required!';
$_['error_paypal'] = 'PayPal Email Address does not appear to be valid!';
$_['error_bank_account_name'] = 'Account Name required!';
$_['error_bank_account_number'] = 'Account Number required!';
$_['error_custom_field'] = '%s required!';

View File

@ -0,0 +1,14 @@
<?php
// Heading
$_['heading_title'] = 'Account Downloads';
// Text
$_['text_account'] = 'Account';
$_['text_downloads'] = 'Downloads';
$_['text_empty'] = 'You have not made any previous downloadable orders!';
// Column
$_['column_order_id'] = 'Order ID';
$_['column_name'] = 'Name';
$_['column_size'] = 'Size';
$_['column_date_added'] = 'Date Added';

23
catalog/account/edit.php Normal file
View File

@ -0,0 +1,23 @@
<?php
// Heading
$_['heading_title'] = 'My Account Information';
// Text
$_['text_account'] = 'Account';
$_['text_edit'] = 'Edit Information';
$_['text_your_details'] = 'Your Personal Details';
$_['text_success'] = 'Success: Your account has been successfully updated.';
// Entry
$_['entry_firstname'] = 'First Name';
$_['entry_lastname'] = 'Last Name';
$_['entry_email'] = 'E-Mail';
$_['entry_telephone'] = 'Telephone';
// Error
$_['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_custom_field'] = '%s required!';

View File

@ -0,0 +1,21 @@
<?php
// Heading
$_['heading_title'] = 'Forgot Your Password?';
// Text
$_['text_account'] = 'Account';
$_['text_forgotten'] = 'Forgotten Password';
$_['text_your_email'] = 'Your E-Mail Address';
$_['text_email'] = 'Enter the e-mail address associated with your account. Click submit to have a password reset link e-mailed to you.';
$_['text_success'] = 'An email with a confirmation link has been sent your email address.';
// Entry
$_['entry_email'] = 'E-Mail Address';
$_['entry_password'] = 'New Password';
$_['entry_confirm'] = 'Confirm';
// Error
$_['error_email'] = 'Warning: The E-Mail Address was not found in our records, please try again!';
$_['error_approved'] = 'Warning: Your account requires approval before you can login.';
$_['error_password'] = 'Password must be between 4 and 20 characters!';
$_['error_confirm'] = 'Password and password confirmation do not match!';

22
catalog/account/login.php Normal file
View File

@ -0,0 +1,22 @@
<?php
// Heading
$_['heading_title'] = 'Account Login';
// Text
$_['text_account'] = 'Account';
$_['text_login'] = 'Login';
$_['text_new_customer'] = 'New Customer';
$_['text_register'] = 'Register Account';
$_['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_returning_customer'] = 'Returning Customer';
$_['text_i_am_returning_customer'] = 'I am a returning customer';
$_['text_forgotten'] = 'Forgotten Password';
// Entry
$_['entry_email'] = 'E-Mail Address';
$_['entry_password'] = 'Password';
// Error
$_['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.';

View File

@ -0,0 +1,8 @@
<?php
// Heading
$_['heading_title'] = 'Account Logout';
// Text
$_['text_message'] = '<p>You have been logged off your account. It is now safe to leave the computer.</p><p>Your shopping cart has been saved, the items inside it will be restored whenever you log back into your account.</p>';
$_['text_account'] = 'Account';
$_['text_logout'] = 'Logout';

View File

@ -0,0 +1,11 @@
<?php
// Heading
$_['heading_title'] = 'Newsletter Subscription';
// Text
$_['text_account'] = 'Account';
$_['text_newsletter'] = 'Newsletter';
$_['text_success'] = 'Success: Your newsletter subscription has been successfully updated!';
// Entry
$_['entry_newsletter'] = 'Subscribe';

37
catalog/account/order.php Normal file
View File

@ -0,0 +1,37 @@
<?php
// Heading
$_['heading_title'] = 'Order History';
// Text
$_['text_account'] = 'Account';
$_['text_order'] = 'Order Information';
$_['text_order_detail'] = 'Order Details';
$_['text_invoice_no'] = 'Invoice No.:';
$_['text_order_id'] = 'Order ID:';
$_['text_date_added'] = 'Date Added:';
$_['text_shipping_address'] = 'Shipping Address';
$_['text_shipping_method'] = 'Shipping Method:';
$_['text_payment_address'] = 'Payment Address';
$_['text_payment_method'] = 'Payment Method:';
$_['text_comment'] = 'Order Comments';
$_['text_history'] = 'Order History';
$_['text_success'] = 'Success: You have added <a href="%s">%s</a> to your <a href="%s">shopping cart</a>!';
$_['text_empty'] = 'You have not made any previous orders!';
$_['text_error'] = 'The order you requested could not be found!';
// Column
$_['column_order_id'] = 'Order ID';
$_['column_customer'] = 'Customer';
$_['column_product'] = 'No. of Products';
$_['column_name'] = 'Product Name';
$_['column_model'] = 'Model';
$_['column_quantity'] = 'Quantity';
$_['column_price'] = 'Price';
$_['column_total'] = 'Total';
$_['column_action'] = 'Action';
$_['column_date_added'] = 'Date Added';
$_['column_status'] = 'Status';
$_['column_comment'] = 'Comment';
// Error
$_['error_reorder'] = '%s is not currently available to be reordered.';

View File

@ -0,0 +1,16 @@
<?php
// Heading
$_['heading_title'] = 'Change Password';
// Text
$_['text_account'] = 'Account';
$_['text_password'] = 'Your Password';
$_['text_success'] = 'Success: Your password has been successfully updated.';
// Entry
$_['entry_password'] = 'Password';
$_['entry_confirm'] = 'Password Confirm';
// Error
$_['error_password'] = 'Password must be between 4 and 20 characters!';
$_['error_confirm'] = 'Password confirmation does not match password!';

View File

@ -0,0 +1,52 @@
<?php
// Heading
$_['heading_title'] = 'Recurring Payments';
// Text
$_['text_account'] = 'Account';
$_['text_recurring'] = 'Recurring Payment Information';
$_['text_recurring_detail'] = 'Recurring Payment Details';
$_['text_order_recurring_id'] = 'Recurring ID:';
$_['text_date_added'] = 'Date Added:';
$_['text_status'] = 'Status:';
$_['text_payment_method'] = 'Payment Method:';
$_['text_order_id'] = 'Order ID:';
$_['text_product'] = 'Product:';
$_['text_quantity'] = 'Quantity:';
$_['text_description'] = 'Description';
$_['text_reference'] = 'Reference';
$_['text_transaction'] = 'Transactions';
$_['text_status_1'] = 'Active';
$_['text_status_2'] = 'Inactive';
$_['text_status_3'] = 'Cancelled';
$_['text_status_4'] = 'Suspended';
$_['text_status_5'] = 'Expired';
$_['text_status_6'] = 'Pending';
$_['text_transaction_date_added'] = 'Created';
$_['text_transaction_payment'] = 'Payment';
$_['text_transaction_outstanding_payment'] = 'Outstanding payment';
$_['text_transaction_skipped'] = 'Payment skipped';
$_['text_transaction_failed'] = 'Payment failed';
$_['text_transaction_cancelled'] = 'Cancelled';
$_['text_transaction_suspended'] = 'Suspended';
$_['text_transaction_suspended_failed'] = 'Suspended from failed payment';
$_['text_transaction_outstanding_failed'] = 'Outstanding payment failed';
$_['text_transaction_expired'] = 'Expired';
$_['text_empty'] = 'No recurring payments found!';
$_['text_error'] = 'The recurring order you requested could not be found!';
$_['text_cancelled'] = 'Recurring payment has been cancelled';
// Column
$_['column_date_added'] = 'Date Added';
$_['column_type'] = 'Type';
$_['column_amount'] = 'Amount';
$_['column_status'] = 'Status';
$_['column_product'] = 'Product';
$_['column_order_recurring_id'] = 'Recurring ID';
// Error
$_['error_not_cancelled'] = 'Error: %s';
$_['error_not_found'] = 'Could not cancel recurring';
// Button
$_['button_return'] = 'Return';

View File

@ -0,0 +1,33 @@
<?php
// Heading
$_['heading_title'] = 'Register Account';
// Text
$_['text_account'] = 'Account';
$_['text_register'] = 'Register';
$_['text_account_already'] = 'If you already have an account with us, please login at the <a href="%s">login page</a>.';
$_['text_your_details'] = 'Your Personal Details';
$_['text_newsletter'] = 'Newsletter';
$_['text_your_password'] = 'Your Password';
$_['text_agree'] = 'I have read and agree to the <a href="%s" class="agree"><b>%s</b></a>';
// Entry
$_['entry_customer_group'] = 'Customer Group';
$_['entry_firstname'] = 'First Name';
$_['entry_lastname'] = 'Last Name';
$_['entry_email'] = 'E-Mail';
$_['entry_telephone'] = 'Telephone';
$_['entry_newsletter'] = 'Subscribe';
$_['entry_password'] = 'Password';
$_['entry_confirm'] = 'Password Confirm';
// Error
$_['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_custom_field'] = '%s required!';
$_['error_password'] = 'Password must be between 4 and 20 characters!';
$_['error_confirm'] = 'Password confirmation does not match password!';
$_['error_agree'] = 'Warning: You must agree to the %s!';

17
catalog/account/reset.php Normal file
View File

@ -0,0 +1,17 @@
<?php
// Heading
$_['heading_title'] = 'Reset your password';
// Text
$_['text_account'] = 'Account';
$_['text_password'] = 'Enter the new password you wish to use.';
$_['text_success'] = 'Success: Your password has been successfully updated.';
// Entry
$_['entry_password'] = 'Password';
$_['entry_confirm'] = 'Confirm';
// Error
$_['error_password'] = 'Password must be between 4 and 20 characters!';
$_['error_confirm'] = 'Password and password confirmation do not match!';
$_['error_code'] = 'Password reset code is invalid or was used previously!';

View File

@ -0,0 +1,63 @@
<?php
// Heading
$_['heading_title'] = 'Product Returns';
// Text
$_['text_account'] = 'Account';
$_['text_return'] = 'Return Information';
$_['text_return_detail'] = 'Return Details';
$_['text_description'] = 'Please complete the form below to request an RMA number.';
$_['text_order'] = 'Order Information';
$_['text_product'] = 'Product Information';
$_['text_reason'] = 'Reason for Return';
$_['text_message'] = '<p>Thank you for submitting your return request. Your request has been sent to the relevant department for processing.</p><p> You will be notified via e-mail as to the status of your request.</p>';
$_['text_return_id'] = 'Return ID:';
$_['text_order_id'] = 'Order ID:';
$_['text_date_ordered'] = 'Order Date:';
$_['text_status'] = 'Status:';
$_['text_date_added'] = 'Date Added:';
$_['text_comment'] = 'Return Comments';
$_['text_history'] = 'Return History';
$_['text_empty'] = 'You have not made any previous returns!';
$_['text_agree'] = 'I have read and agree to the <a href="%s" class="agree"><b>%s</b></a>';
// Column
$_['column_return_id'] = 'Return ID';
$_['column_order_id'] = 'Order ID';
$_['column_status'] = 'Status';
$_['column_date_added'] = 'Date Added';
$_['column_customer'] = 'Customer';
$_['column_product'] = 'Product Name';
$_['column_model'] = 'Model';
$_['column_quantity'] = 'Quantity';
$_['column_price'] = 'Price';
$_['column_opened'] = 'Opened';
$_['column_comment'] = 'Comment';
$_['column_reason'] = 'Reason';
$_['column_action'] = 'Action';
// Entry
$_['entry_order_id'] = 'Order ID';
$_['entry_date_ordered'] = 'Order Date';
$_['entry_firstname'] = 'First Name';
$_['entry_lastname'] = 'Last Name';
$_['entry_email'] = 'E-Mail';
$_['entry_telephone'] = 'Telephone';
$_['entry_product'] = 'Product Name';
$_['entry_model'] = 'Product Code';
$_['entry_quantity'] = 'Quantity';
$_['entry_reason'] = 'Reason for Return';
$_['entry_opened'] = 'Product is opened';
$_['entry_fault_detail'] = 'Faulty or other details';
// Error
$_['text_error'] = 'The returns you requested could not be found!';
$_['error_order_id'] = 'Order ID required!';
$_['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_product'] = 'Product Name must be greater than 3 and less than 255 characters!';
$_['error_model'] = 'Product Model must be greater than 3 and less than 64 characters!';
$_['error_reason'] = 'You must select a return product reason!';
$_['error_agree'] = 'Warning: You must agree to the %s!';

View File

@ -0,0 +1,14 @@
<?php
// Heading
$_['heading_title'] = 'Your Reward Points';
// Column
$_['column_date_added'] = 'Date Added';
$_['column_description'] = 'Description';
$_['column_points'] = 'Points';
// Text
$_['text_account'] = 'Account';
$_['text_reward'] = 'Reward Points';
$_['text_total'] = 'Your total number of reward points is:';
$_['text_empty'] = 'You do not have any reward points!';

View File

@ -0,0 +1,9 @@
<?php
// Heading
$_['heading_title'] = 'Your Account Has Been Created!';
// Text
$_['text_message'] = '<p>Congratulations! Your new account has been successfully created!</p> <p>You can now take advantage of member privileges to enhance your online shopping experience with us.</p> <p>If you have ANY questions about the operation of this online shop, please e-mail the store owner.</p> <p>A confirmation has been sent to the provided e-mail address. If you have not received it within the hour, please <a href="%s">contact us</a>.</p>';
$_['text_approval'] = '<p>Thank you for registering with %s!</p><p>You will be notified by e-mail once your account has been activated by the store owner.</p><p>If you have ANY questions about the operation of this online shop, please <a href="%s">contact the store owner</a>.</p>';
$_['text_account'] = 'Account';
$_['text_success'] = 'Success';

View File

@ -0,0 +1,15 @@
<?php
// Heading
$_['heading_title'] = 'Affiliate Tracking';
// Text
$_['text_account'] = 'Account';
$_['text_description'] = 'To make sure you get paid for referrals you send to us we need to track the referral by placing a tracking code in the URL\'s linking to us. You can use the tools below to generate links to the %s web site.';
// Entry
$_['entry_code'] = 'Your Tracking Code';
$_['entry_generator'] = 'Tracking Link Generator';
$_['entry_link'] = 'Tracking Link';
// Help
$_['help_generator'] = 'Type in the name of a product you would like to link to';

View File

@ -0,0 +1,14 @@
<?php
// Heading
$_['heading_title'] = 'Your Transactions';
// Column
$_['column_date_added'] = 'Date Added';
$_['column_description'] = 'Description';
$_['column_amount'] = 'Amount (%s)';
// Text
$_['text_account'] = 'Account';
$_['text_transaction'] = 'Your Transactions';
$_['text_total'] = 'Your current balance is:';
$_['text_empty'] = 'You do not have any transactions!';

View File

@ -0,0 +1,32 @@
<?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_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!';

View File

@ -0,0 +1,20 @@
<?php
// Heading
$_['heading_title'] = 'My Wish List';
// Text
$_['text_account'] = 'Account';
$_['text_instock'] = 'In Stock';
$_['text_wishlist'] = 'Wish List (%s)';
$_['text_login'] = 'You must <a href="%s">login</a> or <a href="%s">create an account</a> to save <a href="%s">%s</a> to your <a href="%s">wish list</a>!';
$_['text_success'] = 'Success: You have added <a href="%s">%s</a> to your <a href="%s">wish list</a>!';
$_['text_remove'] = 'Success: You have modified your wish list!';
$_['text_empty'] = 'Your wish list is empty.';
// Column
$_['column_image'] = 'Image';
$_['column_name'] = 'Product Name';
$_['column_model'] = 'Model';
$_['column_stock'] = 'Stock';
$_['column_price'] = 'Unit Price';
$_['column_action'] = 'Action';

View File

@ -0,0 +1,22 @@
<?php
// Heading
$_['heading_title'] = 'Affiliate Program';
// Text
$_['text_account'] = 'Account';
$_['text_login'] = 'Login';
$_['text_description'] = '<p>%s affiliate program is free and enables members to earn revenue by placing a link or links on their web site which advertises %s or specific products on it. Any sales made to customers who have clicked on those links will earn the affiliate commission. The standard commission rate is currently %s.</p><p>For more information, visit our FAQ page or see our Affiliate terms &amp; conditions.</p>';
$_['text_new_affiliate'] = 'New Affiliate';
$_['text_register_account'] = '<p>I am not currently an affiliate.</p><p>Click Continue below to create a new affiliate account. Please note that this is not connected in any way to your customer account.</p>';
$_['text_returning_affiliate'] = 'Affiliate Login';
$_['text_i_am_returning_affiliate'] = 'I am a returning affiliate.';
$_['text_forgotten'] = 'Forgotten Password';
// Entry
$_['entry_email'] = 'Affiliate E-Mail';
$_['entry_password'] = 'Password';
// Error
$_['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.';

View File

@ -0,0 +1,52 @@
<?php
// Heading
$_['heading_title'] = 'Affiliate Program';
// Text
$_['text_account'] = 'Account';
$_['text_register'] = 'Affiliate Register';
$_['text_account_already'] = 'If you already have an account with us, please login at the <a href="%s">login page</a>.';
$_['text_signup'] = 'To create an affiliate account, fill in the form below ensuring you complete all the required fields:';
$_['text_your_details'] = 'Your Personal Details';
$_['text_your_address'] = 'Your Address Details';
$_['text_your_affiliate'] = 'Your Affiliate Information';
$_['text_your_password'] = 'Your Password';
$_['text_cheque'] = 'Cheque';
$_['text_paypal'] = 'PayPal';
$_['text_bank'] = 'Bank Transfer';
$_['text_agree'] = 'I have read and agree to the <a href="%s" class="agree"><b>%s</b></a>';
// Entry
$_['entry_customer_group'] = 'Customer Group';
$_['entry_firstname'] = 'First Name';
$_['entry_lastname'] = 'Last Name';
$_['entry_email'] = 'E-Mail';
$_['entry_telephone'] = 'Telephone';
$_['entry_company'] = 'Company';
$_['entry_website'] = 'Web Site';
$_['entry_tax'] = 'Tax ID';
$_['entry_payment'] = 'Payment Method';
$_['entry_cheque'] = 'Cheque Payee Name';
$_['entry_paypal'] = 'PayPal Email Account';
$_['entry_bank_name'] = 'Bank Name';
$_['entry_bank_branch_number'] = 'ABA/BSB number (Branch Number)';
$_['entry_bank_swift_code'] = 'SWIFT Code';
$_['entry_bank_account_name'] = 'Account Name';
$_['entry_bank_account_number'] = 'Account Number';
$_['entry_password'] = 'Password';
$_['entry_confirm'] = 'Password Confirm';
// Error
$_['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_custom_field'] = '%s required!';
$_['error_cheque'] = 'Cheque Payee Name required!';
$_['error_paypal'] = 'PayPal Email Address does not appear to be valid!';
$_['error_bank_account_name'] = 'Account Name required!';
$_['error_bank_account_number'] = 'Account Number required!';
$_['error_password'] = 'Password must be between 4 and 20 characters!';
$_['error_confirm'] = 'Password confirmation does not match password!';
$_['error_agree'] = 'Warning: You must agree to the %s!';

View File

@ -0,0 +1,9 @@
<?php
// Heading
$_['heading_title'] = 'Your Affiliate Account Has Been Created!';
// Text
$_['text_message'] = '<p>Congratulations! Your new account has been successfully created!</p> <p>You are now a member of %s affiliates.</p> <p>If you have ANY questions about the operation of this affiliate system, please e-mail the store owner.</p> <p>A confirmation has been sent to the provided e-mail address. If you have not received it within the hour, please <a href="%s">contact us</a>.</p>';
$_['text_approval'] = '<p>Thank you for registering for an affiliate account with %s!</p><p>You will be notified by e-mail once your account has been activated by the store owner.</p><p>If you have ANY questions about the operation of this affiliate system, please <a href="%s">contact the store owner</a>.</p>';
$_['text_account'] = 'Account';
$_['text_success'] = 'Success';

10
catalog/api/cart.php Normal file
View File

@ -0,0 +1,10 @@
<?php
// Text
$_['text_success'] = 'Success: You have modified your shopping cart!';
// Error
$_['error_permission'] = 'Warning: You do not have permission to access the API!';
$_['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_store'] = 'Product can not be bought from the store you have choosen!';
$_['error_required'] = '%s required!';

7
catalog/api/coupon.php Normal file
View File

@ -0,0 +1,7 @@
<?php
// Text
$_['text_success'] = 'Success: Your coupon discount has been applied!';
// Error
$_['error_permission'] = 'Warning: You do not have permission to access the API!';
$_['error_coupon'] = 'Warning: Coupon is either invalid, expired or reached it\'s usage limit!';

7
catalog/api/currency.php Normal file
View File

@ -0,0 +1,7 @@
<?php
// Text
$_['text_success'] = 'Success: Your currency has been changed!';
// Error
$_['error_permission'] = 'Warning: You do not have permission to access the API!';
$_['error_currency'] = 'Warning: Currency code is invalid!';

12
catalog/api/customer.php Normal file
View File

@ -0,0 +1,12 @@
<?php
// Text
$_['text_success'] = 'You have successfully modified customers';
// Error
$_['error_permission'] = 'Warning: You do not have permission to access the API!';
$_['error_customer'] = 'You must select a customer!';
$_['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_custom_field'] = '%s required!';

7
catalog/api/login.php Normal file
View File

@ -0,0 +1,7 @@
<?php
// Text
$_['text_success'] = 'Success: API session successfully started!';
// Error
$_['error_key'] = 'Warning: Incorrect API Key!';
$_['error_ip'] = 'Warning: Your IP %s is not allowed to access this API!';

16
catalog/api/order.php Normal file
View File

@ -0,0 +1,16 @@
<?php
// Text
$_['text_success'] = 'Success: You have modified orders!';
// Error
$_['error_permission'] = 'Warning: You do not have permission to access the API!';
$_['error_customer'] = 'Warning: Customer details needs to be set!';
$_['error_payment_address'] = 'Warning: Payment address required!';
$_['error_payment_method'] = 'Warning: Payment method required!';
$_['error_no_payment'] = 'Warning: No Payment options are available!';
$_['error_shipping_address'] = 'Warning: Shipping address required!';
$_['error_shipping_method'] = 'Warning: Shipping method required!';
$_['error_no_shipping'] = 'Warning: No Shipping options are available!';
$_['error_stock'] = 'Warning: Products marked with *** are not available in the desired quantity or not in stock!';
$_['error_minimum'] = 'Warning: Minimum order amount for %s is %s!';
$_['error_not_found'] = 'Warning: Order could not be found!';

18
catalog/api/payment.php Normal file
View File

@ -0,0 +1,18 @@
<?php
// Text
$_['text_address'] = 'Success: Payment address has been set!';
$_['text_method'] = 'Success: Payment method has been set!';
// Error
$_['error_permission'] = 'Warning: You do not have permission to access the API!';
$_['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 3 and 128 characters!';
$_['error_postcode'] = 'Postcode must be between 2 and 10 characters for this country!';
$_['error_country'] = 'Please select a country!';
$_['error_zone'] = 'Please select a region / state!';
$_['error_custom_field'] = '%s required!';
$_['error_address'] = 'Warning: Payment address required!';
$_['error_method'] = 'Warning: Payment method required!';
$_['error_no_payment'] = 'Warning: No Payment options are available!';

9
catalog/api/reward.php Normal file
View File

@ -0,0 +1,9 @@
<?php
// Text
$_['text_success'] = 'Success: Your reward points discount has been applied!';
// Error
$_['error_permission'] = 'Warning: You do not have permission to access the API!';
$_['error_reward'] = 'Warning: Please enter the amount of reward points to use!';
$_['error_points'] = 'Warning: You don\'t have %s reward points!';
$_['error_maximum'] = 'Warning: The maximum number of points that can be applied is %s!';

18
catalog/api/shipping.php Normal file
View File

@ -0,0 +1,18 @@
<?php
// Text
$_['text_address'] = 'Success: Shipping address has been set!';
$_['text_method'] = 'Success: Shipping method has been set!';
// Error
$_['error_permission'] = 'Warning: You do not have permission to access the API!';
$_['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 3 and 128 characters!';
$_['error_postcode'] = 'Postcode must be between 2 and 10 characters for this country!';
$_['error_country'] = 'Please select a country!';
$_['error_zone'] = 'Please select a region / state!';
$_['error_custom_field'] = '%s required!';
$_['error_address'] = 'Warning: Shipping address required!';
$_['error_method'] = 'Warning: Shipping method required!';
$_['error_no_shipping'] = 'Warning: No Shipping options are available!';

14
catalog/api/voucher.php Normal file
View File

@ -0,0 +1,14 @@
<?php
// Text
$_['text_success'] = 'Success: Your gift voucher discount has been applied!';
$_['text_cart'] = 'Success: You have modified your shopping cart!';
$_['text_for'] = '%s Gift Certificate for %s';
// Error
$_['error_permission'] = 'Warning: You do not have permission to access the API!';
$_['error_voucher'] = 'Warning: Gift Voucher is either invalid or the balance has been used up!';
$_['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!';

41
catalog/checkout/cart.php Normal file
View 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!';

View 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 &amp; 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 &raquo;';
$_['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!';

View 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>
';

View 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>';

7
catalog/common/cart.php Normal file
View File

@ -0,0 +1,7 @@
<?php
// Text
$_['text_items'] = '%s item(s) - %s';
$_['text_empty'] = 'Your shopping cart is empty!';
$_['text_cart'] = 'View Cart';
$_['text_checkout'] = 'Checkout';
$_['text_recurring'] = 'Payment Profile';

View File

@ -0,0 +1,3 @@
<?php
// Text
$_['text_currency'] = 'Currency';

17
catalog/common/footer.php Normal file
View File

@ -0,0 +1,17 @@
<?php
// Text
$_['text_information'] = 'Information';
$_['text_service'] = 'Customer Service';
$_['text_extra'] = 'Extras';
$_['text_contact'] = 'Contact Us';
$_['text_return'] = 'Returns';
$_['text_sitemap'] = 'Site Map';
$_['text_manufacturer'] = 'Brands';
$_['text_voucher'] = 'Gift Certificates';
$_['text_affiliate'] = 'Affiliate';
$_['text_special'] = 'Specials';
$_['text_account'] = 'My Account';
$_['text_order'] = 'Order History';
$_['text_wishlist'] = 'Wish List';
$_['text_newsletter'] = 'Newsletter';
$_['text_powered'] = 'Powered By <a href="http://www.opencart.com">OpenCart</a><br /> %s &copy; %s';

16
catalog/common/header.php Normal file
View File

@ -0,0 +1,16 @@
<?php
// Text
$_['text_home'] = 'Home';
$_['text_wishlist'] = 'Wish List (%s)';
$_['text_shopping_cart'] = 'Shopping Cart';
$_['text_category'] = 'Categories';
$_['text_account'] = 'My Account';
$_['text_register'] = 'Register';
$_['text_login'] = 'Login';
$_['text_order'] = 'Order History';
$_['text_transaction'] = 'Transactions';
$_['text_download'] = 'Downloads';
$_['text_logout'] = 'Logout';
$_['text_checkout'] = 'Checkout';
$_['text_search'] = 'Search';
$_['text_all'] = 'Show All';

View File

@ -0,0 +1,3 @@
<?php
// Text
$_['text_language'] = 'Language';

View File

@ -0,0 +1,7 @@
<?php
// Heading
$_['heading_title'] = 'Maintenance';
// Text
$_['text_maintenance'] = 'Maintenance';
$_['text_message'] = '<h1 style="text-align:center;">We are currently performing some scheduled maintenance. <br/>We will be back as soon as possible. Please check back soon.</h1>';

3
catalog/common/menu.php Normal file
View File

@ -0,0 +1,3 @@
<?php
// Text
$_['text_all'] = 'Show All';

View File

@ -0,0 +1,3 @@
<?php
// Text
$_['text_search'] = 'Search';

View File

@ -0,0 +1,6 @@
<?php
// Heading
$_['heading_title'] = 'The page you requested cannot be found!';
// Text
$_['text_error'] = 'The page you requested cannot be found.';

View File

@ -0,0 +1,6 @@
<?php
// Text
$_['text_cron_email_message'] = '<p>This is an automated report of the latest CRON task performed by your Google Shopping extension.</p><p>%s</p>';
$_['text_cron_email_subject'] = 'CRON job report - Google Shopping on OpenCart';
$_['text_per_day'] = '$%s / day';

View File

@ -0,0 +1,9 @@
<?php
// Text
$_['text_captcha'] = 'Captcha';
// Entry
$_['entry_captcha'] = 'Enter the code in the box below';
// Error
$_['error_captcha'] = 'Verification code does not match the image!';

View File

@ -0,0 +1,9 @@
<?php
// Text
$_['text_captcha'] = 'Captcha';
// Entry
$_['entry_captcha'] = 'Please complete the captcha validation below';
// Error
$_['error_captcha'] = 'Verification is not correct!';

View File

@ -0,0 +1,31 @@
<?php
// Heading
$_['heading_title'] = 'Sagepay Direct Cards';
// Text
$_['text_empty'] = 'You have no saved cards';
$_['text_account'] = 'Account';
$_['text_card'] = 'SagePay Direct Card Management';
$_['text_fail_card'] = 'There was an issue removing your SagePay card, Please contact the shop administrator for help.';
$_['text_success_card'] = 'SagePay card successfully removed';
$_['text_success_add_card'] = 'SagePay card successfully added';
// Column
$_['column_type'] = 'Card Type';
$_['column_digits'] = 'Last Digits';
$_['column_expiry'] = 'Expiry';
// Entry
$_['entry_cc_owner'] = 'Card Owner';
$_['entry_cc_type'] = 'Card Type';
$_['entry_cc_number'] = 'Card Number';
$_['entry_cc_expire_date'] = 'Card Expiry Date';
$_['entry_cc_cvv2'] = 'Card Security Code (CVV2)';
$_['entry_cc_choice'] = 'Choose an Existing Card';
// Button
$_['button_add_card'] = 'Add Card';
$_['button_new_card'] = 'Add New Card';

View File

@ -0,0 +1,31 @@
<?php
// Heading
$_['heading_title'] = 'Sagepay Server Cards';
// Text
$_['text_empty'] = 'You have no saved cards';
$_['text_account'] = 'Account';
$_['text_card'] = 'SagePay Server Card Management';
$_['text_fail_card'] = 'There was an issue removing your SagePay card, Please contact the shop administrator for help.';
$_['text_success_card'] = 'SagePay card successfully removed';
$_['text_success_add_card'] = 'SagePay card successfully added';
// Column
$_['column_type'] = 'Card Type';
$_['column_digits'] = 'Last Digits';
$_['column_expiry'] = 'Expiry';
// Entry
$_['entry_cc_owner'] = 'Card Owner';
$_['entry_cc_type'] = 'Card Type';
$_['entry_cc_number'] = 'Card Number';
$_['entry_cc_expire_date'] = 'Card Expiry Date';
$_['entry_cc_cvv2'] = 'Card Security Code (CVV2)';
$_['entry_cc_choice'] = 'Choose an Existing Card';
// Button
$_['button_add_card'] = 'Add Card';
$_['button_new_card'] = 'Add New Card';

View File

@ -0,0 +1,11 @@
<?php
$_['heading_title'] = 'Square Credit Cards';
$_['text_account'] = 'Account';
$_['text_back'] = 'Back';
$_['text_delete'] = 'Delete';
$_['text_no_cards'] = 'There are no cards stored on our database.';
$_['text_card_ends_in'] = '%s card ending in &bull;&bull;&bull;&bull; &bull;&bull;&bull;&bull; &bull;&bull;&bull;&bull; %s';
$_['text_warning_card'] = 'Do you confirm you want to remove this card? You may add it again later on your next checkout.';
$_['text_success_card_delete'] = 'Success! This card has been removed.';

View File

@ -0,0 +1,21 @@
<?php
// Heading
$_['heading_title'] = 'Account';
// Text
$_['text_register'] = 'Register';
$_['text_login'] = 'Login';
$_['text_logout'] = 'Logout';
$_['text_forgotten'] = 'Forgotten Password';
$_['text_account'] = 'My Account';
$_['text_edit'] = 'Edit Account';
$_['text_password'] = 'Password';
$_['text_address'] = 'Address Book';
$_['text_wishlist'] = 'Wish List';
$_['text_order'] = 'Order History';
$_['text_download'] = 'Downloads';
$_['text_reward'] = 'Reward Points';
$_['text_return'] = 'Returns';
$_['text_transaction'] = 'Transactions';
$_['text_newsletter'] = 'Newsletter';
$_['text_recurring'] = 'Recurring payments';

View File

@ -0,0 +1,33 @@
<?php
// Heading
$_['heading_title'] = 'Login with Amazon';
// Text
$_['text_module'] = 'Modules';
$_['text_success'] = 'Success: You have modified module Login with Amazon!';
$_['text_content_top'] = 'Content Top';
$_['text_content_bottom'] = 'Content Bottom';
$_['text_column_left'] = 'Column Left';
$_['text_column_right'] = 'Column Right';
$_['text_lwa_button'] = 'Login with Amazon';
$_['text_login_button'] = 'Login';
$_['text_a_button'] = 'A';
$_['text_gold_button'] = 'Gold';
$_['text_darkgray_button'] = 'Dark Gray';
$_['text_lightgray_button'] = 'Light Gray';
$_['text_small_button'] = 'Small';
$_['text_medium_button'] = 'Medium';
$_['text_large_button'] = 'Large';
$_['text_x_large_button'] = 'X-Large';
//Entry
$_['entry_button_type'] = 'Button Type';
$_['entry_button_colour'] = 'Button Colour';
$_['entry_button_size'] = 'Button Size';
$_['entry_layout'] = 'Layout';
$_['entry_position'] = 'Position';
$_['entry_status'] = 'Status';
$_['entry_sort_order'] = 'Sort Order';
//Error
$_['error_permission'] = 'Warning: You do not have permission to modify module Login with Amazon!';

View File

@ -0,0 +1,33 @@
<?php
// Heading
$_['heading_title'] = 'Pay with Amazon';
// Text
$_['text_module'] = 'Modules';
$_['text_success'] = 'Success: You have modified module Pay with Amazon!';
$_['text_content_top'] = 'Content Top';
$_['text_content_bottom'] = 'Content Bottom';
$_['text_column_left'] = 'Column Left';
$_['text_column_right'] = 'Column Right';
$_['text_pwa_button'] = 'Pay with Amazon';
$_['text_pay_button'] = 'Pay';
$_['text_a_button'] = 'A';
$_['text_gold_button'] = 'Gold';
$_['text_darkgray_button'] = 'Dark Gray';
$_['text_lightgray_button'] = 'Light Gray';
$_['text_small_button'] = 'Small';
$_['text_medium_button'] = 'Medium';
$_['text_large_button'] = 'Large';
$_['text_x_large_button'] = 'X-Large';
//Entry
$_['entry_button_type'] = 'Button Type';
$_['entry_button_colour'] = 'Button Colour';
$_['entry_button_size'] = 'Button Size';
$_['entry_layout'] = 'Layout';
$_['entry_position'] = 'Position';
$_['entry_status'] = 'Status';
$_['entry_sort_order'] = 'Sort Order';
//Error
$_['error_permission'] = 'Warning: You do not have permission to modify module Pay with Amazon!';

View File

@ -0,0 +1,6 @@
<?php
// Heading
$_['heading_title'] = 'Bestsellers';
// Text
$_['text_tax'] = 'Ex Tax:';

View File

@ -0,0 +1,3 @@
<?php
// Heading
$_['heading_title'] = 'Categories';

View File

@ -0,0 +1,14 @@
<?php
// Calculator
$_['text_checkout_title'] = 'Pay in instalments';
$_['text_choose_plan'] = 'Choose your plan';
$_['text_choose_deposit'] = 'Choose your deposit';
$_['text_monthly_payments'] = 'monthly payments of';
$_['text_months'] = 'months';
$_['text_term'] = 'Term';
$_['text_deposit'] = 'Deposit';
$_['text_credit_amount'] = 'Cost of credit';
$_['text_amount_payable'] = 'Total payable';
$_['text_total_interest'] = 'Total interest APR';
$_['text_monthly_installment'] = 'Monthly installment';
$_['text_redirection'] = 'You will be redirected to Divido to complete this finance application when you confirm your order';

View File

@ -0,0 +1,3 @@
<?php
// Heading
$_['heading_title'] = 'On our eBay store';

View File

@ -0,0 +1,6 @@
<?php
// Heading
$_['heading_title'] = 'Featured';
// Text
$_['text_tax'] = 'Ex Tax:';

View File

@ -0,0 +1,3 @@
<?php
// Heading
$_['heading_title'] = 'Refine Search';

View File

@ -0,0 +1,3 @@
<?php
// Heading
$_['heading_title'] = 'Live Chat';

View File

@ -0,0 +1,7 @@
<?php
// Heading
$_['heading_title'] = 'Information';
// Text
$_['text_contact'] = 'Contact Us';
$_['text_sitemap'] = 'Site Map';

View File

@ -0,0 +1,6 @@
<?php
// Heading
$_['heading_title'] = 'Latest';
// Text
$_['text_tax'] = 'Ex Tax:';

View File

@ -0,0 +1,26 @@
<?php
// Heading
$_['heading_title'] = 'Lay-Buy Information';
// Text
$_['text_reference_info'] = 'Reference Information';
$_['text_laybuy_ref_no'] = 'Lay-Buy Reference ID:';
$_['text_paypal_profile_id'] = 'PayPal Profile ID:';
$_['text_payment_plan'] = 'Payment Plan';
$_['text_status'] = 'Status:';
$_['text_amount'] = 'Amount:';
$_['text_downpayment_percent'] = 'Down Payment Percent:';
$_['text_months'] = 'Months:';
$_['text_downpayment_amount'] = 'Down Payment Amount:';
$_['text_payment_amounts'] = 'Payment Amounts:';
$_['text_first_payment_due'] = 'First Payment Due:';
$_['text_last_payment_due'] = 'Last Payment Due:';
$_['text_downpayment'] = 'Down Payment';
$_['text_month'] = 'Month';
// Column
$_['column_instalment'] = 'Instalment';
$_['column_amount'] = 'Amount';
$_['column_date'] = 'Date';
$_['column_pp_trans_id'] = 'PayPal Transaction ID';
$_['column_status'] = 'Status';

View File

@ -0,0 +1,6 @@
<?php
// Heading
$_['heading_title'] = 'Specials';
// Text
$_['text_tax'] = 'Ex Tax:';

View File

@ -0,0 +1,7 @@
<?php
// Heading
$_['heading_title'] = 'Choose a Store';
// Text
$_['text_default'] = 'Default';
$_['text_store'] = 'Please choose the store you wish to visit.';

View File

@ -0,0 +1,11 @@
<?php
// Text
$_['text_paid_amazon'] = 'Paid on Amazon';
$_['text_total_shipping'] = 'Shipping';
$_['text_total_shipping_tax'] = 'Shipping tax';
$_['text_total_giftwrap'] = 'Gift wrap';
$_['text_total_giftwrap_tax'] = 'Gift wrap tax';
$_['text_total_sub'] = 'Sub-total';
$_['text_tax'] = 'Tax';
$_['text_total'] = 'Total';
$_['text_gift_message'] = 'Gift messages';

View File

@ -0,0 +1,11 @@
<?php
// Text
$_['text_paid_amazon'] = 'Paid on Amazon';
$_['text_total_shipping'] = 'Shipping';
$_['text_total_shipping_tax'] = 'Shipping tax';
$_['text_total_giftwrap'] = 'Gift wrap';
$_['text_total_giftwrap_tax'] = 'Gift wrap tax';
$_['text_total_sub'] = 'Sub-total';
$_['text_tax'] = 'Tax';
$_['text_total'] = 'Total';
$_['text_gift_message'] = 'Gift messages';

View File

@ -0,0 +1,9 @@
<?php
// Text
$_['text_total_shipping'] = 'Shipping';
$_['text_total_discount'] = 'Discount';
$_['text_total_tax'] = 'Tax';
$_['text_total_sub'] = 'Sub-total';
$_['text_total'] = 'Total';
$_['text_smp_id'] = 'Selling Manager sale ID: ';
$_['text_buyer'] = 'Buyer username: ';

View File

@ -0,0 +1,7 @@
<?php
// Text
$_['text_total_shipping'] = 'Shipping';
$_['text_total_discount'] = 'Discount';
$_['text_total_tax'] = 'Tax';
$_['text_total_sub'] = 'Sub-total';
$_['text_total'] = 'Total';

View File

@ -0,0 +1,3 @@
<?php
// Text
$_['text_title'] = 'Alipay';

View File

@ -0,0 +1,3 @@
<?php
// Text
$_['text_title'] = 'Alipay Cross';

View File

@ -0,0 +1,41 @@
<?php
$_['breadcrumb_cart'] = 'Shopping Cart';
$_['breadcrumb_payment'] = 'Payment';
$_['breadcrumb_shipping'] = 'Shipping';
$_['breadcrumb_summary'] = 'Summary';
$_['error_constraint_amount_not_set'] = 'The order failed due to a technical error, please select another payment method or contact our support.';
$_['error_constraint_payment_method_not_allowed'] = 'The selected payment method is not available for this transaction. Please select another one or add a new payment method to the wallet widget.';
$_['error_constraint_payment_plan_not_set'] = 'No payment instrument has been selected for this order, please try to refresh the page or add a new payment instrument in the wallet widget.';
$_['error_decline_amazon_rejected'] = 'Your payment could not be processed. Please try to place the order again using another payment method.';
$_['error_decline_invalid_payment_method'] = 'Your payment could not be processed, please follow the instructions in the payment method box.';
$_['error_decline_processing_failure'] = 'Your order could not be processed due to a system error. Please try to place the order again.';
$_['error_decline_transaction_timed_out'] = 'Your payment could not be processed. Please try to place the order again using another payment method.';
$_['error_login'] = 'Login failed';
$_['error_login_email'] = 'Login failed: %s account email address did not match Amazon account email address';
$_['error_minimum'] = 'Minimum order amount for Amazon Pay and Login with Amazon is %s!';
$_['error_no_shipping_methods'] = 'There are no shipping options to the selected address. Please select a different shipping address.';
$_['error_order_total_zero'] = 'Unfortunately, Amazon Pay does not accept orders with <strong>%s</strong> total amount. You may use the <strong>Standard Checkout</strong> instead.';
$_['error_payment_method'] = 'Please select a payment method';
$_['error_process_order'] = 'There was an error processing your order. Please contact the shop administrator for help.';
$_['error_session_expired'] = 'Your session has expired. Please sign in again by clicking on the Amazon Pay Button.';
$_['error_shipping'] = 'Please select a shipping method';
$_['error_shipping_address'] = 'Please select a delivery address';
$_['error_shipping_methods'] = 'There was an error retrieving your address from Amazon. Please contact the shop administrator for help.';
$_['heading_address'] = 'Please choose a delivery address';
$_['heading_confirm'] = 'Order summary';
$_['heading_payment'] = 'Please select a payment method';
$_['heading_title'] = 'Amazon Pay and Login with Amazon';
$_['text_amount_converted'] = 'Warning: The total paid amount will be converted into <strong>%s</strong> at a conversion rate of <strong>%s</strong>. The expected transaction amount will be <strong>%s</strong>.';
$_['text_back'] = 'Back';
$_['text_cart'] = 'Cart';
$_['text_confirm'] = 'Confirm';
$_['text_continue'] = 'Continue';
$_['text_continue_checkout'] = 'Continue Checkout Here';
$_['text_coupon'] = 'Coupon';
$_['text_enter_coupon'] = 'Enter your coupon code here.';
$_['text_lpa'] = 'Amazon Pay and Login with Amazon';
$_['text_must_apply_coupon'] = 'Please apply your coupon.';
$_['text_payment_success'] = 'Your order was successfully placed. Order details are below';
$_['text_success_title'] = 'Your order has been placed!';
$_['text_tax_other'] = 'Taxes / Other handling fees';

View File

@ -0,0 +1,10 @@
<?php
// Text
$_['text_title'] = 'Credit Card / Debit Card (Authorize.Net)';
$_['text_credit_card'] = 'Credit Card Details';
// Entry
$_['entry_cc_owner'] = 'Card Owner';
$_['entry_cc_number'] = 'Card Number';
$_['entry_cc_expire_date'] = 'Card Expiry Date';
$_['entry_cc_cvv2'] = 'Card Security Code (CVV2)';

View File

@ -0,0 +1,3 @@
<?php
// Text
$_['text_title'] = 'Credit Card / Debit Card (Authorize.Net)';

View File

@ -0,0 +1,6 @@
<?php
// Text
$_['text_title'] = 'Bank Transfer';
$_['text_instruction'] = 'Bank Transfer Instructions';
$_['text_description'] = 'Please transfer the total amount to the following bank account.';
$_['text_payment'] = 'Your order will not ship until we receive payment.';

View File

@ -0,0 +1,28 @@
<?php
// Text
$_['text_title'] = 'Credit Card / Debit Card (BluePay)';
$_['text_credit_card'] = 'Card Details';
$_['text_description'] = 'Items on %s Order No: %s';
$_['text_card_type'] = 'Card Type: ';
$_['text_card_name'] = 'Card Name: ';
$_['text_card_digits'] = 'Last Digits: ';
$_['text_card_expiry'] = 'Expiry: ';
$_['text_transaction_error'] = 'There was an error processing your transaction - ';
// Entry
$_['entry_card'] = 'New or Existing Card: ';
$_['entry_card_existing'] = 'Existing';
$_['entry_card_new'] = 'New';
$_['entry_card_save'] = 'Remember Card Details';
$_['entry_cc_owner'] = 'Card Owner';
$_['entry_cc_number'] = 'Card Number';
$_['entry_cc_start_date'] = 'Card Valid From Date';
$_['entry_cc_expire_date'] = 'Card Expiry Date';
$_['entry_cc_cvv2'] = 'Card Security Code (CVV2)';
$_['entry_cc_address'] = 'Street Address';
$_['entry_cc_city'] = 'City';
$_['entry_cc_state'] = 'State';
$_['entry_cc_zipcode'] = 'Zipcode';
$_['entry_cc_phone'] = 'Phone';
$_['entry_cc_email'] = 'Email';
$_['entry_cc_choice'] = 'Choose an Existing Card';

View File

@ -0,0 +1,30 @@
<?php
// Text
$_['text_title'] = 'Credit Card / Debit Card (BluePay)';
$_['text_credit_card'] = 'Card Details';
$_['text_description'] = 'Items on %s Order No: %s';
$_['text_card_type'] = 'Card Type: ';
$_['text_card_name'] = 'Card Name: ';
$_['text_card_digits'] = 'Last Digits: ';
$_['text_card_expiry'] = 'Expiry: ';
// Returned text
$_['text_transaction_error'] = 'There was an error processing your transaction - ';
// Entry
$_['entry_card'] = 'New or Existing Card: ';
$_['entry_card_existing'] = 'Existing';
$_['entry_card_new'] = 'New';
$_['entry_card_save'] = 'Remember Card Details';
$_['entry_cc_owner'] = 'Card Owner';
$_['entry_cc_number'] = 'Card Number';
$_['entry_cc_start_date'] = 'Card Valid From Date';
$_['entry_cc_expire_date'] = 'Card Expiry Date';
$_['entry_cc_cvv2'] = 'Card Security Code (CVV2)';
$_['entry_cc_address'] = 'Street Address';
$_['entry_cc_city'] = 'City';
$_['entry_cc_state'] = 'State';
$_['entry_cc_zipcode'] = 'Zipcode';
$_['entry_cc_phone'] = 'Phone';
$_['entry_cc_email'] = 'E-mail';
$_['entry_cc_choice'] = 'Choose an Existing Card';

View File

@ -0,0 +1,44 @@
<?php
// Text
$_['text_title'] = 'Credit Card / Debit Card';
$_['text_card_details'] = 'Card Details';
$_['text_echeck_details'] = 'eCheck Details';
$_['text_card'] = 'Card';
$_['text_echeck'] = 'eCheck';
$_['text_wait'] = 'Please wait!';
$_['text_confirm_delete'] = 'Are you sure you want to delete the card?';
$_['text_no_cards'] = 'No cards saved yet';
$_['text_select_card'] = 'Please select a card';
// Entry
$_['entry_method'] = 'Method';
$_['entry_card_new_or_old'] = 'New / Existing Card';
$_['entry_card_new'] = 'New';
$_['entry_card_old'] = 'Existing';
$_['entry_card_type'] = 'Card Type';
$_['entry_card_number'] = 'Card Number';
$_['entry_card_expiry'] = 'Expiry';
$_['entry_card_cvv2'] = 'CVV2';
$_['entry_card_save'] = 'Save Card';
$_['entry_card_choice'] = 'Choose Your Card';
$_['entry_account_number'] = 'Account Number';
$_['entry_routing_number'] = 'Routing Number';
// Button
$_['button_confirm'] = 'Confirm Order';
$_['button_delete'] = 'Delete Selected Card';
// Error
$_['error_card_number'] = 'Card Number must be between 1 and 19 characters!';
$_['error_card_type'] = 'Card Type is not a valid selection!';
$_['error_card_cvv2'] = 'CVV2 must be between 1 and 4 characters!';
$_['error_data_missing'] = 'Missing data!';
$_['error_not_logged_in'] = 'Not logged in!';
$_['error_no_order'] = 'No matching order!';
$_['error_no_post_data'] = 'No $_POST data';
$_['error_select_card'] = 'Please select a card!';
$_['error_no_card'] = 'No such card found!';
$_['error_no_echeck'] = 'eCheck is not supported!';
$_['error_account_number'] = 'Account Number must be between 1 and 19 characters!';
$_['error_routing_number'] = 'Routing Number must be between 1 and 9 characters!';
$_['error_not_enabled'] = 'Module not enabled';

View File

@ -0,0 +1,24 @@
<?php
// Text
$_['text_title'] = 'Credit Card / Debit Card (Cardinity)';
$_['text_payment_success'] = 'Payment success, details below';
$_['text_payment_failed'] = 'Payment failed, details below';
// Entry
$_['entry_holder'] = 'Card Holder Name';
$_['entry_pan'] = 'Card Number';
$_['entry_expires'] = 'Expires';
$_['entry_exp_month'] = 'Month';
$_['entry_exp_year'] = 'Year';
$_['entry_cvc'] = 'CVC';
// Error
$_['error_process_order'] = 'There was an error processing your order. Please contact the shop administrator for help.';
$_['error_invalid_currency'] = 'Please use a valid currency.';
$_['error_finalizing_payment'] = 'Error finalizing payment.';
$_['error_unknown_order_id'] = 'Could not find cardinity payment with this order_id.';
$_['error_invalid_hash'] = 'Invalid hash.';
$_['error_payment_declined'] = 'Payment was declined by issuing bank.';
// Button
$_['button_confirm'] = 'Pay Now';

View File

@ -0,0 +1,7 @@
<?php
// Text
$_['text_title'] = 'Cheque / Money Order';
$_['text_instruction'] = 'Cheque / Money Order Instructions';
$_['text_payable'] = 'Make Payable To: ';
$_['text_address'] = 'Send To: ';
$_['text_payment'] = 'Your order will not ship until we receive payment.';

View File

@ -0,0 +1,3 @@
<?php
// Text
$_['text_title'] = 'Cash On Delivery';

View File

@ -0,0 +1,17 @@
<?php
$_['text_checkout_title'] = 'Pay in instalments';
$_['text_choose_plan'] = 'Choose your plan';
$_['text_choose_deposit'] = 'Choose your deposit';
$_['text_monthly_payments'] = 'monthly payments of';
$_['text_months'] = 'months';
$_['text_term'] = 'Term';
$_['text_deposit'] = 'Deposit';
$_['text_credit_amount'] = 'Cost of credit';
$_['text_amount_payable'] = 'Total payable';
$_['text_total_interest'] = 'Total interest APR';
$_['text_monthly_installment'] = 'Monthly installment';
$_['text_redirection'] = 'You will be redirected to Divido to complete this finance application when you confirm your order';
$_['divido_checkout'] = 'Confirm and checkout with Divido';
$_['deposit_to_low'] = 'Deposit to low';
$_['credit_amount_to_low'] = 'Credit amount to low';
$_['no_country'] = 'Country not accepted';

View File

@ -0,0 +1,235 @@
<?php
// Text
$_['text_title'] = 'Pay with Credit Card (eWAY)';
$_['text_credit_card'] = 'Credit Card Details';
$_['text_testing'] = 'This payment gateway is currently being tested. Your credit card will not be charged.<br />If this is a real order, please use an alternate method of payment at this time.';
$_['text_basket'] = 'Basket';
$_['text_checkout'] = 'Checkout';
$_['text_success'] = 'Success';
$_['text_shipping'] = 'Shipping';
// Entry
$_['entry_cc_number'] = 'Card number';
$_['entry_cc_name'] = 'Cardholder name';
$_['entry_cc_expire_date'] = 'Card expiry date';
$_['entry_cc_cvv2'] = 'Card security code (CVV2)';
$_['button_pay'] = 'Pay now';
$_['text_card_accepted'] = 'Accepted cards: ';
$_['text_card_type_m'] = 'Mastercard';
$_['text_card_type_v'] = 'Visa (Credit/Debit/Electron/Delta)';
$_['text_card_type_c'] = 'Diners';
$_['text_card_type_a'] = 'American Express';
$_['text_card_type_j'] = 'JCB';
$_['text_card_type_pp'] = 'Paypal';
$_['text_card_type_mp'] = 'Masterpass';
$_['text_card_type_vm'] = 'Visa Checkout';
$_['text_type_help'] = 'After you click "Confirm Order" you will be redirected to ';
$_['text_transaction_failed'] = 'Sorry, your payment has been declined.';
// Help
$_['help_cvv'] = 'For Mastercard or Visa, this is the last three digits in the signature area on the back of your card.';
$_['help_cvv_amex'] = 'For American Express, it\'s the four digits on the front of the card';
// Validation Error codes
$_['text_card_message_Please check the API Key and Password'] = 'Please check the API Key and Password';
$_['text_card_message_V6000'] = 'Undefined Validation Error';
$_['text_card_message_V6001'] = 'Invalid Customer IP';
$_['text_card_message_V6002'] = 'Invalid DeviceID';
$_['text_card_message_V6011'] = 'Invalid Amount';
$_['text_card_message_V6012'] = 'Invalid Invoice Description';
$_['text_card_message_V6013'] = 'Invalid Invoice Number';
$_['text_card_message_V6014'] = 'Invalid Invoice Reference';
$_['text_card_message_V6015'] = 'Invalid Currency Code';
$_['text_card_message_V6016'] = 'Payment Required';
$_['text_card_message_V6017'] = 'Payment Currency Code Required';
$_['text_card_message_V6018'] = 'Unknown Payment Currency Code';
$_['text_card_message_V6021'] = 'Cardholder Name Required';
$_['text_card_message_V6022'] = 'Card Number Required';
$_['text_card_message_V6023'] = 'CVN Required';
$_['text_card_message_V6031'] = 'Invalid Card Number';
$_['text_card_message_V6032'] = 'Invalid CVN';
$_['text_card_message_V6033'] = 'Invalid Expiry Date';
$_['text_card_message_V6034'] = 'Invalid Issue Number';
$_['text_card_message_V6035'] = 'Invalid Start Date';
$_['text_card_message_V6036'] = 'Invalid Month';
$_['text_card_message_V6037'] = 'Invalid Year';
$_['text_card_message_V6040'] = 'Invalid Token Customer Id';
$_['text_card_message_V6041'] = 'Customer Required';
$_['text_card_message_V6042'] = 'Customer First Name Required';
$_['text_card_message_V6043'] = 'Customer Last Name Required';
$_['text_card_message_V6044'] = 'Customer Country Code Required';
$_['text_card_message_V6045'] = 'Customer Title Required';
$_['text_card_message_V6046'] = 'Token Customer ID Required';
$_['text_card_message_V6047'] = 'RedirectURL Required';
$_['text_card_message_V6051'] = 'Invalid First Name';
$_['text_card_message_V6052'] = 'Invalid Last Name';
$_['text_card_message_V6053'] = 'Invalid Country Code';
$_['text_card_message_V6054'] = 'Invalid Email';
$_['text_card_message_V6055'] = 'Invalid Phone';
$_['text_card_message_V6056'] = 'Invalid Mobile';
$_['text_card_message_V6057'] = 'Invalid Fax';
$_['text_card_message_V6058'] = 'Invalid Title';
$_['text_card_message_V6059'] = 'Redirect URL Invalid';
$_['text_card_message_V6060'] = 'Redirect URL Invalid';
$_['text_card_message_V6061'] = 'Invalid Reference';
$_['text_card_message_V6062'] = 'Invalid Company Name';
$_['text_card_message_V6063'] = 'Invalid Job Description';
$_['text_card_message_V6064'] = 'Invalid Street1';
$_['text_card_message_V6065'] = 'Invalid Street2';
$_['text_card_message_V6066'] = 'Invalid City';
$_['text_card_message_V6067'] = 'Invalid State';
$_['text_card_message_V6068'] = 'Invalid Postalcode';
$_['text_card_message_V6069'] = 'Invalid Email';
$_['text_card_message_V6070'] = 'Invalid Phone';
$_['text_card_message_V6071'] = 'Invalid Mobile';
$_['text_card_message_V6072'] = 'Invalid Comments';
$_['text_card_message_V6073'] = 'Invalid Fax';
$_['text_card_message_V6074'] = 'Invalid Url';
$_['text_card_message_V6075'] = 'Invalid Shipping Address First Name';
$_['text_card_message_V6076'] = 'Invalid Shipping Address Last Name';
$_['text_card_message_V6077'] = 'Invalid Shipping Address Street1';
$_['text_card_message_V6078'] = 'Invalid Shipping Address Street2';
$_['text_card_message_V6079'] = 'Invalid Shipping Address City';
$_['text_card_message_V6080'] = 'Invalid Shipping Address State';
$_['text_card_message_V6081'] = 'Invalid Shipping Address PostalCode';
$_['text_card_message_V6082'] = 'Invalid Shipping Address Email';
$_['text_card_message_V6083'] = 'Invalid Shipping Address Phone';
$_['text_card_message_V6084'] = 'Invalid Shipping Address Country';
$_['text_card_message_V6091'] = 'Unknown Country Code';
$_['text_card_message_V6100'] = 'Invalid Card Name';
$_['text_card_message_V6101'] = 'Invalid Card Expiry Month';
$_['text_card_message_V6102'] = 'Invalid Card Expiry Year';
$_['text_card_message_V6103'] = 'Invalid Card Start Month';
$_['text_card_message_V6104'] = 'Invalid Card Start Year';
$_['text_card_message_V6105'] = 'Invalid Card Issue Number';
$_['text_card_message_V6106'] = 'Invalid Card CVN';
$_['text_card_message_V6107'] = 'Invalid AccessCode';
$_['text_card_message_V6108'] = 'Invalid CustomerHostAddress';
$_['text_card_message_V6109'] = 'Invalid UserAgent';
$_['text_card_message_V6110'] = 'Invalid Card Number';
$_['text_card_message_V6111'] = 'Unauthorised API Access, Account Not PCI Certified';
$_['text_card_message_V6112'] = 'Redundant card details other than expiry year and month';
$_['text_card_message_V6113'] = 'Invalid transaction for refund';
$_['text_card_message_V6114'] = 'Gateway validation error';
$_['text_card_message_V6115'] = 'Invalid DirectRefundRequest, Transaction ID';
$_['text_card_message_V6116'] = 'Invalid card data on original TransactionID';
$_['text_card_message_V6124'] = 'Invalid Line Items. The line items have been provided however the totals do not match the TotalAmount field';
$_['text_card_message_V6125'] = 'Selected Payment Type not enabled';
$_['text_card_message_V6126'] = 'Invalid encrypted card number, decryption failed';
$_['text_card_message_V6127'] = 'Invalid encrypted cvn, decryption failed';
$_['text_card_message_V6128'] = 'Invalid Method for Payment Type';
$_['text_card_message_V6129'] = 'Transaction has not been authorised for Capture/Cancellation';
$_['text_card_message_V6130'] = 'Generic customer information error';
$_['text_card_message_V6131'] = 'Generic shipping information error';
$_['text_card_message_V6132'] = 'Transaction has already been completed or voided, operation not permitted';
$_['text_card_message_V6133'] = 'Checkout not available for Payment Type';
$_['text_card_message_V6134'] = 'Invalid Auth Transaction ID for Capture/Void';
$_['text_card_message_V6135'] = 'PayPal Error Processing Refund';
$_['text_card_message_V6140'] = 'Merchant account is suspended';
$_['text_card_message_V6141'] = 'Invalid PayPal account details or API signature';
$_['text_card_message_V6142'] = 'Authorise not available for Bank/Branch';
$_['text_card_message_V6150'] = 'Invalid Refund Amount';
$_['text_card_message_V6151'] = 'Refund amount greater than original transaction';
// Payment failure messages
$_['text_card_message_D4401'] = 'Refer to Issuer';
$_['text_card_message_D4402'] = 'Refer to Issuer, special';
$_['text_card_message_D4403'] = 'No Merchant';
$_['text_card_message_D4404'] = 'Pick Up Card';
$_['text_card_message_D4405'] = 'Do Not Honour';
$_['text_card_message_D4406'] = 'Error';
$_['text_card_message_D4407'] = 'Pick Up Card, Special';
$_['text_card_message_D4409'] = 'Request In Progress';
$_['text_card_message_D4412'] = 'Invalid Transaction';
$_['text_card_message_D4413'] = 'Invalid Amount';
$_['text_card_message_D4414'] = 'Invalid Card Number';
$_['text_card_message_D4415'] = 'No Issuer';
$_['text_card_message_D4419'] = 'Re-enter Last Transaction';
$_['text_card_message_D4421'] = 'No Method Taken';
$_['text_card_message_D4422'] = 'Suspected Malfunction';
$_['text_card_message_D4423'] = 'Unacceptable Transaction Fee';
$_['text_card_message_D4425'] = 'Unable to Locate Record On File';
$_['text_card_message_D4430'] = 'Format Error';
$_['text_card_message_D4431'] = 'Bank Not Supported By Switch';
$_['text_card_message_D4433'] = 'Expired Card, Capture';
$_['text_card_message_D4434'] = 'Suspected Fraud, Retain Card';
$_['text_card_message_D4435'] = 'Card Acceptor, Contact Acquirer, Retain Card';
$_['text_card_message_D4436'] = 'Restricted Card, Retain Card';
$_['text_card_message_D4437'] = 'Contact Acquirer Security Department, Retain Card';
$_['text_card_message_D4438'] = 'PIN Tries Exceeded, Capture';
$_['text_card_message_D4439'] = 'No Credit Account';
$_['text_card_message_D4440'] = 'Function Not Supported';
$_['text_card_message_D4441'] = 'Lost Card';
$_['text_card_message_D4442'] = 'No Universal Account';
$_['text_card_message_D4443'] = 'Stolen Card';
$_['text_card_message_D4444'] = 'No Investment Account';
$_['text_card_message_D4451'] = 'Insufficient Funds';
$_['text_card_message_D4452'] = 'No Cheque Account';
$_['text_card_message_D4453'] = 'No Savings Account';
$_['text_card_message_D4454'] = 'Expired Card';
$_['text_card_message_D4455'] = 'Incorrect PIN';
$_['text_card_message_D4456'] = 'No Card Record';
$_['text_card_message_D4457'] = 'Function Not Permitted to Cardholder';
$_['text_card_message_D4458'] = 'Function Not Permitted to Terminal';
$_['text_card_message_D4460'] = 'Acceptor Contact Acquirer';
$_['text_card_message_D4461'] = 'Exceeds Withdrawal Limit';
$_['text_card_message_D4462'] = 'Restricted Card';
$_['text_card_message_D4463'] = 'Security Violation';
$_['text_card_message_D4464'] = 'Original Amount Incorrect';
$_['text_card_message_D4466'] = 'Acceptor Contact Acquirer, Security';
$_['text_card_message_D4467'] = 'Capture Card';
$_['text_card_message_D4475'] = 'PIN Tries Exceeded';
$_['text_card_message_D4482'] = 'CVV Validation Error';
$_['text_card_message_D4490'] = 'Cutoff In Progress';
$_['text_card_message_D4491'] = 'Card Issuer Unavailable';
$_['text_card_message_D4492'] = 'Unable To Route Transaction';
$_['text_card_message_D4493'] = 'Cannot Complete, Violation Of The Law';
$_['text_card_message_D4494'] = 'Duplicate Transaction';
$_['text_card_message_D4496'] = 'System Error';
$_['text_card_message_D4497'] = 'MasterPass Error Failed';
$_['text_card_message_D4498'] = 'PayPal Create Transaction Error Failed';
$_['text_card_message_D4499'] = 'Invalid Transaction for Auth/Void';
$_['text_card_message_F7000'] = 'Undefined Fraud Error';
$_['text_card_message_F7001'] = 'Challenged Fraud';
$_['text_card_message_F7002'] = 'Country Match Fraud';
$_['text_card_message_F7003'] = 'High Risk Country Fraud';
$_['text_card_message_F7004'] = 'Anonymous Proxy Fraud';
$_['text_card_message_F7005'] = 'Transparent Proxy Fraud';
$_['text_card_message_F7006'] = 'Free Email Fraud';
$_['text_card_message_F7007'] = 'International Transaction Fraud';
$_['text_card_message_F7008'] = 'Risk Score Fraud';
$_['text_card_message_F7009'] = 'Denied Fraud';
$_['text_card_message_F7010'] = 'Denied by PayPal Fraud Rules';
$_['text_card_message_F9010'] = 'High Risk Billing Country';
$_['text_card_message_F9011'] = 'High Risk Credit Card Country';
$_['text_card_message_F9012'] = 'High Risk Customer IP Address';
$_['text_card_message_F9013'] = 'High Risk Email Address';
$_['text_card_message_F9014'] = 'High Risk Shipping Country';
$_['text_card_message_F9015'] = 'Multiple card numbers for single email address';
$_['text_card_message_F9016'] = 'Multiple card numbers for single location';
$_['text_card_message_F9017'] = 'Multiple email addresses for single card number';
$_['text_card_message_F9018'] = 'Multiple email addresses for single location';
$_['text_card_message_F9019'] = 'Multiple locations for single card number';
$_['text_card_message_F9020'] = 'Multiple locations for single email address';
$_['text_card_message_F9021'] = 'Suspicious Customer First Name';
$_['text_card_message_F9022'] = 'Suspicious Customer Last Name';
$_['text_card_message_F9023'] = 'Transaction Declined';
$_['text_card_message_F9024'] = 'Multiple transactions for same address with known credit card';
$_['text_card_message_F9025'] = 'Multiple transactions for same address with new credit card';
$_['text_card_message_F9026'] = 'Multiple transactions for same email with new credit card';
$_['text_card_message_F9027'] = 'Multiple transactions for same email with known credit card';
$_['text_card_message_F9028'] = 'Multiple transactions for new credit card';
$_['text_card_message_F9029'] = 'Multiple transactions for known credit card';
$_['text_card_message_F9030'] = 'Multiple transactions for same email address';
$_['text_card_message_F9031'] = 'Multiple transactions for same credit card';
$_['text_card_message_F9032'] = 'Invalid Customer Last Name';
$_['text_card_message_F9033'] = 'Invalid Billing Street';
$_['text_card_message_F9034'] = 'Invalid Shipping Street';
$_['text_card_message_F9037'] = 'Suspicious Customer Email Address';

View File

@ -0,0 +1,42 @@
<?php
// Heading
$_['text_title'] = 'Credit / Debit card (First Data)';
// Button
$_['button_confirm'] = 'Continue';
// Text
$_['text_new_card'] = 'New card';
$_['text_store_card'] = 'Remember my card details';
$_['text_address_response'] = 'Address verification: ';
$_['text_address_ppx'] = 'No address data provided or Address not checked by the Card Issuer';
$_['text_address_yyy'] = 'Card Issuer confirmed that street and postcode match with their records';
$_['text_address_yna'] = 'Card Issuer confirmed that street matches with their records but postcode does not match';
$_['text_address_nyz'] = 'Card Issuer confirmed that postcode matches with their records but street does not match';
$_['text_address_nnn'] = 'Both street and postcode do not match with the Card Issuer records';
$_['text_address_ypx'] = 'Card Issuer confirmed that street matches with their records. The Issuer did not check the postcode';
$_['text_address_pyx'] = 'Card Issuer confirmed that postcode matches with their records. The Issuer did not check the street';
$_['text_address_xxu'] = 'Card Issuer did not check the AVS information';
$_['text_card_code_verify'] = 'Security code: ';
$_['text_card_code_m'] = 'Card security code match';
$_['text_card_code_n'] = 'Card security code does not match';
$_['text_card_code_p'] = 'Not processed';
$_['text_card_code_s'] = 'Merchant has indicated that the card security code is not present on the card';
$_['text_card_code_u'] = 'Issuer is not certified and/or has not provided encryption keys';
$_['text_card_code_x'] = 'No response from the credit card association was received';
$_['text_card_code_blank'] = 'A blank response should indicate that no code was sent and that there was no indication that the code was not present on the card.';
$_['text_card_type_m'] = 'Mastercard';
$_['text_card_type_v'] = 'Visa (Credit/Debit/Electron/Delta)';
$_['text_card_type_c'] = 'Diners';
$_['text_card_type_a'] = 'American Express';
$_['text_card_type_ma'] = 'Maestro';
$_['text_card_type_mauk'] = 'Maestro UK/Solo';
$_['text_response_code_full'] = 'Approval code: ';
$_['text_response_code'] = 'Full response code: ';
$_['text_response_card'] = 'Card used: ';
$_['text_response_card_type'] = 'Card type: ';
$_['text_response_proc_code'] = 'Processor code: ';
$_['text_response_ref'] = 'Ref number: ';
// Error
$_['error_failed'] = 'Unable to process your payment, please try again';

View File

@ -0,0 +1,57 @@
<?php
// Text
$_['text_title'] = 'Credit or Debit Card';
$_['text_credit_card'] = 'Credit Card Details';
$_['text_wait'] = 'Please wait!';
// Entry
$_['entry_cc_number'] = 'Card number';
$_['entry_cc_name'] = 'Cardholder name';
$_['entry_cc_expire_date'] = 'Card expiry date';
$_['entry_cc_cvv2'] = 'Card security code (CVV2)';
// Help
$_['help_start_date'] = '(if available)';
$_['help_issue'] = '(for Maestro and Solo cards only)';
// Text
$_['text_result'] = 'Result: ';
$_['text_approval_code'] = 'Approval code: ';
$_['text_reference_number'] = 'Reference: ';
$_['text_card_number_ref'] = 'Card last 4 digits: xxxx ';
$_['text_card_brand'] = 'Card brand: ';
$_['text_response_code'] = 'Response code: ';
$_['text_fault'] = 'Fault message: ';
$_['text_error'] = 'Error message: ';
$_['text_avs'] = 'Address verification: ';
$_['text_address_ppx'] = 'No address data provided or Address not checked by the Card Issuer';
$_['text_address_yyy'] = 'Card Issuer confirmed that street and postcode match with their records';
$_['text_address_yna'] = 'Card Issuer confirmed that street matches with their records but postcode does not match';
$_['text_address_nyz'] = 'Card Issuer confirmed that postcode matches with their records but street does not match';
$_['text_address_nnn'] = 'Both street and postcode do not match with the Card Issuer records';
$_['text_address_ypx'] = 'Card Issuer confirmed that street matches with their records. The Issuer did not check the postcode';
$_['text_address_pyx'] = 'Card Issuer confirmed that postcode matches with their records. The Issuer did not check the street';
$_['text_address_xxu'] = 'Card Issuer did not check the AVS information';
$_['text_card_code_verify'] = 'Security code: ';
$_['text_card_code_m'] = 'Card security code match';
$_['text_card_code_n'] = 'Card security code does not match';
$_['text_card_code_p'] = 'Not processed';
$_['text_card_code_s'] = 'Merchant has indicated that the card security code is not present on the card';
$_['text_card_code_u'] = 'Issuer is not certified and/or has not provided encryption keys';
$_['text_card_code_x'] = 'No response from the credit card association was received';
$_['text_card_code_blank'] = 'A blank response should indicate that no code was sent and that there was no indication that the code was not present on the card.';
$_['text_card_accepted'] = 'Accepted cards: ';
$_['text_card_type_m'] = 'Mastercard';
$_['text_card_type_v'] = 'Visa (Credit/Debit/Electron/Delta)';
$_['text_card_type_c'] = 'Diners';
$_['text_card_type_a'] = 'American Express';
$_['text_card_type_ma'] = 'Maestro';
$_['text_card_new'] = 'New card';
$_['text_response_proc_code'] = 'Processor code: ';
$_['text_response_ref'] = 'Ref number: ';
// Error
$_['error_card_number'] = 'Please check your card number is valid';
$_['error_card_name'] = 'Please check the card holder name is valid';
$_['error_card_cvv'] = 'Please check the CVV2 is valid';
$_['error_failed'] = 'Unable to process your payment, please contact the merchant';

View File

@ -0,0 +1,3 @@
<?php
// Text
$_['text_title'] = 'Free Checkout';

View File

@ -0,0 +1,3 @@
<?php
// Text
$_['text_title'] = 'Credit / Debit Card / Paypal / Wallet (G2APay)';

View File

@ -0,0 +1,48 @@
<?php
// Heading
$_['text_title'] = 'Credit / Debit card (Globalpay)';
// Button
$_['button_confirm'] = 'Confirm';
// Entry
$_['entry_cc_type'] = 'Card Type';
// Text
$_['text_success'] = 'Your payment has been authorised.';
$_['text_decline'] = 'Your payment was unsuccessful';
$_['text_bank_error'] = 'There was an error processing your request with the bank.';
$_['text_generic_error'] = 'There was an error processing your request.';
$_['text_hash_failed'] = 'Hash check failed. Do not try your payment again as the payment status is unknown. Please contact the merchant.';
$_['text_link'] = 'Please click <a href="%s">here</a> to continue';
$_['text_select_card'] = 'Please select your card type';
$_['text_result'] = 'Auth result';
$_['text_message'] = 'Message';
$_['text_cvn_result'] = 'CVN result';
$_['text_avs_postcode'] = 'AVS postcode';
$_['text_avs_address'] = 'AVS address';
$_['text_eci'] = 'ECI (3D secure) result';
$_['text_tss'] = 'TSS result';
$_['text_order_ref'] = 'Order ref';
$_['text_timestamp'] = 'Timestamp';
$_['text_card_type'] = 'Card type';
$_['text_card_digits'] = 'Card number';
$_['text_card_exp'] = 'Card expire';
$_['text_card_name'] = 'Card name';
$_['text_3d_s1'] = 'Cardholder Not Enrolled, liability shift';
$_['text_3d_s2'] = 'Unable To Verify Enrolment, no liability shift';
$_['text_3d_s3'] = 'Invalid Response From Enrolment Server, no liability shift';
$_['text_3d_s4'] = 'Enrolled, But Invalid Response From ACS (Access Control Server), no liability shift';
$_['text_3d_s5'] = 'Successful Authentication, liability shift';
$_['text_3d_s6'] = 'Authentication Attempt Acknowledged, liability shift';
$_['text_3d_s7'] = 'Incorrect Password Entered, no liability shift';
$_['text_3d_s8'] = 'Authentication Unavailable, no liability shift';
$_['text_3d_s9'] = 'Invalid Response From ACS, no liability shift';
$_['text_3d_s10'] = 'RealMPI Fatal Error, no liability shift';
$_['text_3d_liability'] = 'No Liability Shift';
$_['text_card_visa'] = 'Visa';
$_['text_card_mc'] = 'Mastercard';
$_['text_card_amex'] = 'American Express';
$_['text_card_switch'] = 'Switch';
$_['text_card_laser'] = 'Laser';
$_['text_card_diners'] = 'Diners';

View File

@ -0,0 +1,55 @@
<?php
// Text
$_['text_title'] = 'Credit or Debit Card';
$_['text_credit_card'] = 'Credit Card Details';
$_['text_wait'] = 'Please wait!';
$_['text_result'] = 'Result';
$_['text_message'] = 'Message';
$_['text_cvn_result'] = 'CVN result';
$_['text_avs_postcode'] = 'AVS postcode';
$_['text_avs_address'] = 'AVS address';
$_['text_eci'] = 'ECI (3D secure) result';
$_['text_tss'] = 'TSS result';
$_['text_card_bank'] = 'Card issue bank';
$_['text_card_country'] = 'Card country';
$_['text_card_region'] = 'Card region';
$_['text_last_digits'] = 'Last 4 digits';
$_['text_order_ref'] = 'Order ref';
$_['text_timestamp'] = 'Timestamp';
$_['text_card_visa'] = 'Visa';
$_['text_card_mc'] = 'Mastercard';
$_['text_card_amex'] = 'American Express';
$_['text_card_switch'] = 'Switch';
$_['text_card_laser'] = 'Laser';
$_['text_card_diners'] = 'Diners';
$_['text_auth_code'] = 'Auth code';
$_['text_3d_s1'] = 'Cardholder Not Enrolled, liability shift';
$_['text_3d_s2'] = 'Unable To Verify Enrolment, no liability shift';
$_['text_3d_s3'] = 'Invalid Response From Enrolment Server, no liability shift';
$_['text_3d_s4'] = 'Enrolled, But Invalid Response From ACS (Access Control Server), no liability shift';
$_['text_3d_s5'] = 'Successful Authentication, liability shift';
$_['text_3d_s6'] = 'Authentication Attempt Acknowledged, liability shift';
$_['text_3d_s7'] = 'Incorrect Password Entered, no liability shift';
$_['text_3d_s8'] = 'Authentication Unavailable, no liability shift';
$_['text_3d_s9'] = 'Invalid Response From ACS, no liability shift';
$_['text_3d_s10'] = 'RealMPI Fatal Error, no liability shift';
// Entry
$_['entry_cc_type'] = 'Card type';
$_['entry_cc_number'] = 'Card number';
$_['entry_cc_name'] = 'Cardholder name';
$_['entry_cc_expire_date'] = 'Card expiry date';
$_['entry_cc_cvv2'] = 'Card security code (CVV2)';
$_['entry_cc_issue'] = 'Card issue number';
// Help
$_['help_start_date'] = '(if available)';
$_['help_issue'] = '(for Maestro and Solo cards only)';
// Error
$_['error_card_number'] = 'Please check your card number is valid';
$_['error_card_name'] = 'Please check the card holder name is valid';
$_['error_card_cvv'] = 'Please check the CVV2 is valid';
$_['error_3d_unable'] = 'Merchant requires 3D secure but unable to verify with your bank, please try later';
$_['error_3d_500_response_no_payment'] = 'An invalid response was received from the card processor, no payment has been taken';
$_['error_3d_unsuccessful'] = '3D secure authorisation failed';

View File

@ -0,0 +1,38 @@
<?php
// Text
$_['text_title'] = 'Klarna Account - Pay from %s/month';
$_['text_terms'] = '<span id="klarna_account_toc"></span><script type="text/javascript">var terms = new Klarna.Terms.Account({el: \'klarna_account_toc\', eid: \'%s\', country: \'%s\'});</script>';
$_['text_information'] = 'Klarna Account Information';
$_['text_additional'] = 'Klarna Account requires some additional information before they can proccess your order.';
$_['text_male'] = 'Male';
$_['text_female'] = 'Female';
$_['text_year'] = 'Year';
$_['text_month'] = 'Month';
$_['text_day'] = 'Day';
$_['text_payment_option'] = 'Payment options';
$_['text_single_payment'] = 'Single Payment';
$_['text_monthly_payment'] = '%s - %s per month';
$_['text_comment'] = 'Klarna\'s Invoice ID: %s' . "\n" . '%s/%s: %.4f';
// Entry
$_['entry_gender'] = 'Gender';
$_['entry_pno'] = 'Personal Number';
$_['entry_dob'] = 'Date of Birth';
$_['entry_phone_no'] = 'Phone number';
$_['entry_street'] = 'Street';
$_['entry_house_no'] = 'House No.';
$_['entry_house_ext'] = 'House Ext.';
$_['entry_company'] = 'Company Registration Number';
// Help
$_['help_pno'] = 'Please enter your Social Security number here.';
$_['help_phone_no'] = 'Please enter your phone number.';
$_['help_street'] = 'Please note that delivery can only take place to the registered address when paying with Klarna.';
$_['help_house_no'] = 'Please enter your house number.';
$_['help_house_ext'] = 'Please submit your house extension here. E.g. A, B, C, Red, Blue ect.';
$_['help_company'] = 'Please enter your Company\'s registration number';
// Error
$_['error_deu_terms'] = 'You must agree to Klarna\'s privacy policy (Datenschutz)';
$_['error_address_match'] = 'Billing and Shipping addresses must match if you want to use Klarna Payments';
$_['error_network'] = 'Error occurred while connecting to Klarna. Please try again later.';

View File

@ -0,0 +1,13 @@
<?php
// Heading
$_['heading_title'] = 'Klarna Checkout';
$_['heading_title_success'] = 'Your Klarna Checkout order has been placed!';
// Text
$_['text_title'] = 'Klarna Checkout';
$_['text_basket'] = 'Shopping Cart';
$_['text_checkout'] = 'Checkout';
$_['text_success'] = 'Success';
$_['text_choose_shipping_method'] = 'Choose shipping method';
$_['text_sales_tax'] = 'Sales Tax';
$_['text_newsletter'] = 'Subscribe to our newsletter';

View File

@ -0,0 +1,35 @@
<?php
// Text
$_['text_title'] = 'Klarna Invoice - Pay within 14 days';
$_['text_terms_fee'] = '<span id="klarna_invoice_toc"></span> (+%s)<script type="text/javascript">var terms = new Klarna.Terms.Invoice({el: \'klarna_invoice_toc\', eid: \'%s\', country: \'%s\', charge: %s});</script>';
$_['text_terms_no_fee'] = '<span id="klarna_invoice_toc"></span><script type="text/javascript">var terms = new Klarna.Terms.Invoice({el: \'klarna_invoice_toc\', eid: \'%s\', country: \'%s\'});</script>';
$_['text_additional'] = 'Klarna Invoice requires some additional information before they can proccess your order.';
$_['text_male'] = 'Male';
$_['text_female'] = 'Female';
$_['text_year'] = 'Year';
$_['text_month'] = 'Month';
$_['text_day'] = 'Day';
$_['text_comment'] = 'Klarna\'s Invoice ID: %s. ' . "\n" . '%s/%s: %.4f';
// Entry
$_['entry_gender'] = 'Gender';
$_['entry_pno'] = 'Personal Number';
$_['entry_dob'] = 'Date of Birth';
$_['entry_phone_no'] = 'Phone number';
$_['entry_street'] = 'Street';
$_['entry_house_no'] = 'House No.';
$_['entry_house_ext'] = 'House Ext.';
$_['entry_company'] = 'Company Registration Number';
// Help
$_['help_pno'] = 'Please enter your Social Security number here.';
$_['help_phone_no'] = 'Please enter your phone number.';
$_['help_street'] = 'Please note that delivery can only take place to the registered address when paying with Klarna.';
$_['help_house_no'] = 'Please enter your house number.';
$_['help_house_ext'] = 'Please submit your house extension here. E.g. A, B, C, Red, Blue ect.';
$_['help_company'] = 'Please enter your Company\'s registration number';
// Error
$_['error_deu_terms'] = 'You must agree to Klarna\'s privacy policy (Datenschutz)';
$_['error_address_match'] = 'Billing and Shipping addresses must match if you want to use Klarna Invoice';
$_['error_network'] = 'Error occurred while connecting to Klarna. Please try again later.';

View File

@ -0,0 +1,29 @@
<?php
// Heading
$_['heading_title'] = 'Please Choose Your Payment Plan';
// Text
$_['text_title'] = 'PUT IT ON LAY-BUY powered by PayPal';
$_['text_plan_preview'] = 'Plan Preview';
$_['text_payment'] = 'Payment';
$_['text_due_date'] = 'Due Date';
$_['text_amount'] = 'Amount';
$_['text_downpayment'] = 'Down Payment';
$_['text_today'] = 'Today';
$_['text_delivery_msg'] = 'Your goods/services will be delivered once your final payment has been received.';
$_['text_fee_msg'] = 'A 0.9% admin fee is payable to Lay-Buys.com.';
$_['text_month'] = 'Month';
$_['text_months'] = 'Months';
$_['text_status_1'] = 'Pending';
$_['text_status_5'] = 'Completed';
$_['text_status_7'] = 'Canceled';
$_['text_status_50'] = 'Revise Requested';
$_['text_status_51'] = 'Revised';
$_['text_comment'] = 'Updated by Lay-Buy';
// Entry
$_['entry_initial'] = 'Initial Payment';
$_['entry_months'] = 'Months';
// Button
$_['button_confirm'] = 'Confirm Order';

View File

@ -0,0 +1,3 @@
<?php
// Text
$_['text_title'] = 'Credit Card / Debit Card (LiqPay)';

View File

@ -0,0 +1,3 @@
<?php
// Text
$_['text_title'] = 'Credit Card / Debit Card (NOCHEX)';

View File

@ -0,0 +1,10 @@
<?php
// Text
$_['text_title'] = 'Credit Card / Debit Card (Paymate)';
$_['text_unable'] = 'Unable to locate or update your order status';
$_['text_declined'] = 'Payment was declined by Paymate';
$_['text_failed'] = 'Paymate Transaction Failed';
$_['text_failed_message'] = '<p>Unfortunately there was an error processing your Paymate transaction.</p><p><b>Warning: </b>%s</p><p>Please verify your Paymate account balance before attempting to re-process this order</p><p> If you believe this transaction has completed successfully, or is showing as a deduction in your Paymate account, please <a href="%s">Contact Us</a> with your order details.</p>';
$_['text_basket'] = 'Basket';
$_['text_checkout'] = 'Checkout';
$_['text_success'] = 'Success';

View File

@ -0,0 +1,11 @@
<?php
// Heading
$_['heading_title'] = 'Thank you for shopping with %s .... ';
// Text
$_['text_title'] = 'Credit Card / Debit Card (PayPoint)';
$_['text_response'] = 'Response from PayPoint:';
$_['text_success'] = '... your payment was successfully received.';
$_['text_success_wait'] = '<b><span style="color: #FF0000">Please wait...</span></b> whilst we finish processing your order.<br>If you are not automatically re-directed in 10 seconds, please click <a href="%s">here</a>.';
$_['text_failure'] = '... Your payment has been cancelled!';
$_['text_failure_wait'] = '<b><span style="color: #FF0000">Please wait...</span></b><br>If you are not automatically re-directed in 10 seconds, please click <a href="%s">here</a>.';

Some files were not shown because too many files have changed in this diff Show More