Files
Ekdant-Online-Store/catalog/language/en-gb/checkout/register.php
2024-08-06 18:06:00 +05:45

54 lines
3.0 KiB
PHP

<?php
// Heading
$_['heading_title'] = 'Your Personal Details';
// Text
$_['text_login'] = 'If you already have an account with us, please login at the <a href="%s"><strong>login page</strong></a>.';
$_['text_register'] = 'Register Account';
$_['text_guest'] = 'Guest Checkout';
$_['text_payment_address'] = 'Payment Address';
$_['text_shipping_address'] = 'Shipping Address';
$_['text_your_password'] = 'Your Password';
$_['text_agree'] = 'I have read and agree to the <a href="%s" class="modal-link"><b>%s</b></a>';
$_['text_success_add'] = 'Success: Your account has been created!';
$_['text_success_guest'] = 'Success: Your guest account information has been saved!';
$_['text_success_edit'] = 'Success: Your account has been successfully updated.';
// Entry
$_['entry_customer_group'] = 'Account Type';
$_['entry_firstname'] = 'First Name';
$_['entry_lastname'] = 'Last Name';
$_['entry_email'] = 'E-Mail';
$_['entry_telephone'] = 'Telephone';
$_['entry_password'] = 'Password';
$_['entry_confirm'] = 'Password Confirm';
$_['entry_company'] = 'Company';
$_['entry_address_1'] = 'Address 1';
$_['entry_address_2'] = 'Address 2';
$_['entry_postcode'] = 'Post Code';
$_['entry_city'] = 'City';
$_['entry_country'] = 'Country';
$_['entry_zone'] = 'Region / State';
$_['entry_match'] = 'My delivery and billing addresses are the same.';
$_['entry_newsletter'] = 'I wish to subscribe to the %s newsletter.';
// Error
$_['error_guest'] = 'Warning: Items in your shopping cart require you to register for an account!';
$_['error_firstname'] = 'First Name must be between 1 and 32 characters!';
$_['error_lastname'] = 'Last Name must be between 1 and 32 characters!';
$_['error_customer_group'] = 'Customer Group does not appear to be valid!';
$_['error_customer_approval'] = 'Warning: Your this customer group requires approval and cannot be used with guest account.';
$_['error_email'] = 'E-Mail address does not appear to be valid!';
$_['error_exists'] = 'Warning: E-Mail Address is already registered!';
$_['error_telephone'] = 'Telephone must be between 3 and 32 characters!';
$_['error_password'] = 'Password must be between 4 and 20 characters!';
$_['error_confirm'] = 'Password confirmation does not match password!';
$_['error_address_1'] = 'Address 1 must be between 3 and 128 characters!';
$_['error_city'] = 'City must be between 2 and 128 characters!';
$_['error_postcode'] = 'Postcode must be between 2 and 10 characters!';
$_['error_country'] = 'Please select a country!';
$_['error_zone'] = 'Please select a region / state!';
$_['error_agree'] = 'Warning: You must agree to the %s!';
$_['error_custom_field'] = '%s required!';
$_['error_regex'] = '%s is not a valid input!';