104 lines
4.5 KiB
PHP
104 lines
4.5 KiB
PHP
<?php
|
|
// Heading
|
|
$_['heading_title'] = 'Customers';
|
|
|
|
// Text
|
|
$_['text_success'] = 'Success: You have modified customers!';
|
|
$_['text_list'] = 'Customer List';
|
|
$_['text_add'] = 'Add Customer';
|
|
$_['text_edit'] = 'Edit Customer';
|
|
$_['text_default'] = 'Default';
|
|
$_['text_store'] = 'Store';
|
|
$_['text_customer'] = 'Customer Details';
|
|
$_['text_password'] = 'Password';
|
|
$_['text_other'] = 'Other';
|
|
$_['text_balance'] = 'Balance';
|
|
$_['text_address'] = 'Address';
|
|
$_['text_payment_method'] = 'Payment Methods';
|
|
$_['text_history'] = 'History';
|
|
$_['text_history_add'] = 'Add History';
|
|
$_['text_transaction'] = 'Transactions';
|
|
$_['text_transaction_add'] = 'Add Transaction';
|
|
$_['text_reward'] = 'Reward Points';
|
|
$_['text_reward_add'] = 'Add Reward Points';
|
|
$_['text_ip'] = 'IP';
|
|
$_['text_option'] = 'Options';
|
|
$_['text_login'] = 'Login into Store';
|
|
$_['text_unlock'] = 'Unlock Account';
|
|
$_['text_filter'] = 'Filter';
|
|
|
|
// Column
|
|
$_['column_name'] = 'Customer Name';
|
|
$_['column_email'] = 'E-Mail';
|
|
$_['column_customer_group'] = 'Customer Group';
|
|
$_['column_status'] = 'Status';
|
|
$_['column_date_added'] = 'Date Added';
|
|
$_['column_comment'] = 'Comment';
|
|
$_['column_description'] = 'Description';
|
|
$_['column_amount'] = 'Amount';
|
|
$_['column_points'] = 'Points';
|
|
$_['column_ip'] = 'IP';
|
|
$_['column_account'] = 'Accounts';
|
|
$_['column_store'] = 'Store';
|
|
$_['column_country'] = 'Country';
|
|
$_['column_payment_method'] = 'Payment Name';
|
|
$_['column_image'] = 'Image';
|
|
$_['column_type'] = 'Type';
|
|
$_['column_date_expire'] = 'Date Expires';
|
|
$_['column_action'] = 'Action';
|
|
|
|
// Entry
|
|
$_['entry_store'] = 'Store';
|
|
$_['entry_customer_group'] = 'Customer Group';
|
|
$_['entry_firstname'] = 'First Name';
|
|
$_['entry_lastname'] = 'Last Name';
|
|
$_['entry_email'] = 'E-Mail';
|
|
$_['entry_telephone'] = 'Telephone';
|
|
$_['entry_newsletter'] = 'Newsletter';
|
|
$_['entry_status'] = 'Status';
|
|
$_['entry_safe'] = 'Safe';
|
|
$_['entry_password'] = 'Password';
|
|
$_['entry_confirm'] = 'Confirm';
|
|
$_['entry_company'] = 'Company';
|
|
$_['entry_address_1'] = 'Address 1';
|
|
$_['entry_address_2'] = 'Address 2';
|
|
$_['entry_city'] = 'City';
|
|
$_['entry_postcode'] = 'Postcode';
|
|
$_['entry_country'] = 'Country';
|
|
$_['entry_zone'] = 'Region / State';
|
|
$_['entry_default'] = 'Default';
|
|
$_['entry_comment'] = 'Comment';
|
|
$_['entry_description'] = 'Description';
|
|
$_['entry_amount'] = 'Amount';
|
|
$_['entry_points'] = 'Points';
|
|
$_['entry_name'] = 'Customer Name';
|
|
$_['entry_ip'] = 'IP';
|
|
$_['entry_date_from'] = 'Date From';
|
|
$_['entry_date_to'] = 'Date To';
|
|
|
|
// Button
|
|
$_['button_order'] = 'Orders';
|
|
|
|
// Help
|
|
$_['help_safe'] = 'Set to true to avoid this customer from being caught by the anti-fraud system';
|
|
$_['help_points'] = 'Use minus to remove points';
|
|
|
|
// Error
|
|
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
|
|
$_['error_permission'] = 'Warning: You do not have permission to modify customers!';
|
|
$_['error_customer'] = 'Warning: Customer does not exist!';
|
|
$_['error_exists'] = 'Warning: E-Mail Address is already registered!';
|
|
$_['error_address'] = 'Warning: Address does not exist!';
|
|
$_['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 and password confirmation do not match!';
|
|
$_['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 for this country!';
|
|
$_['error_country'] = 'Please select a country!';
|
|
$_['error_zone'] = 'Please select a region / state!';
|
|
$_['error_custom_field'] = '%s required!';
|
|
$_['error_regex'] = '%s is not a valid input!'; |