Added default language pack (en-gb)
This commit is contained in:
55
admin/customer/custom_field.php
Normal file
55
admin/customer/custom_field.php
Normal file
@ -0,0 +1,55 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Custom Fields';
|
||||
|
||||
// Text
|
||||
$_['text_success'] = 'Success: You have modified custom fields!';
|
||||
$_['text_list'] = 'Custom Field List';
|
||||
$_['text_add'] = 'Add Custom Field';
|
||||
$_['text_edit'] = 'Edit Custom Field';
|
||||
$_['text_choose'] = 'Choose';
|
||||
$_['text_select'] = 'Select';
|
||||
$_['text_radio'] = 'Radio';
|
||||
$_['text_checkbox'] = 'Checkbox';
|
||||
$_['text_input'] = 'Input';
|
||||
$_['text_text'] = 'Text';
|
||||
$_['text_textarea'] = 'Textarea';
|
||||
$_['text_file'] = 'File';
|
||||
$_['text_date'] = 'Date';
|
||||
$_['text_datetime'] = 'Date & Time';
|
||||
$_['text_time'] = 'Time';
|
||||
$_['text_account'] = 'Account';
|
||||
$_['text_address'] = 'Address';
|
||||
$_['text_affiliate'] = 'Affiliate';
|
||||
$_['text_regex'] = 'Regex';
|
||||
$_['text_custom_field'] = 'Custom Field';
|
||||
$_['text_value'] = 'Custom Field Values';
|
||||
|
||||
// Column
|
||||
$_['column_name'] = 'Custom Field Name';
|
||||
$_['column_location'] = 'Location';
|
||||
$_['column_type'] = 'Type';
|
||||
$_['column_sort_order'] = 'Sort Order';
|
||||
$_['column_action'] = 'Action';
|
||||
|
||||
// Entry
|
||||
$_['entry_name'] = 'Custom Field Name';
|
||||
$_['entry_location'] = 'Location';
|
||||
$_['entry_type'] = 'Type';
|
||||
$_['entry_value'] = 'Value';
|
||||
$_['entry_validation'] = 'Validation';
|
||||
$_['entry_custom_value'] = 'Custom Field Value Name';
|
||||
$_['entry_customer_group'] = 'Customer Group';
|
||||
$_['entry_required'] = 'Required';
|
||||
$_['entry_status'] = 'Status';
|
||||
$_['entry_sort_order'] = 'Sort Order';
|
||||
|
||||
// Help
|
||||
$_['help_regex'] = 'Use regex. E.g: /[a-zA-Z0-9_-]/';
|
||||
$_['help_sort_order'] = 'Use minus to count backwards from the last field in the set.';
|
||||
|
||||
// Error
|
||||
$_['error_permission'] = 'Warning: You do not have permission to modify custom fields!';
|
||||
$_['error_name'] = 'Custom Field Name must be between 1 and 128 characters!';
|
||||
$_['error_type'] = 'Warning: Custom Field Values required!';
|
||||
$_['error_custom_value'] = 'Custom Value Name must be between 1 and 128 characters!';
|
114
admin/customer/customer.php
Normal file
114
admin/customer/customer.php
Normal file
@ -0,0 +1,114 @@
|
||||
<?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_account'] = 'Customer Details';
|
||||
$_['text_password'] = 'Password';
|
||||
$_['text_other'] = 'Other';
|
||||
$_['text_affiliate'] = 'Affiliate Details';
|
||||
$_['text_payment'] = 'Payment Details';
|
||||
$_['text_balance'] = 'Balance';
|
||||
$_['text_cheque'] = 'Cheque';
|
||||
$_['text_paypal'] = 'PayPal';
|
||||
$_['text_bank'] = 'Bank Transfer';
|
||||
$_['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';
|
||||
|
||||
// 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_total'] = 'Total Accounts';
|
||||
$_['column_action'] = 'Action';
|
||||
|
||||
// Entry
|
||||
$_['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_approved'] = 'Approved';
|
||||
$_['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 Address';
|
||||
$_['entry_affiliate'] = 'Affiliate';
|
||||
$_['entry_tracking'] = 'Tracking Code';
|
||||
$_['entry_website'] = 'Web Site';
|
||||
$_['entry_commission'] = 'Commission (%)';
|
||||
$_['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_comment'] = 'Comment';
|
||||
$_['entry_description'] = 'Description';
|
||||
$_['entry_amount'] = 'Amount';
|
||||
$_['entry_points'] = 'Points';
|
||||
$_['entry_name'] = 'Customer Name';
|
||||
$_['entry_ip'] = 'IP';
|
||||
$_['entry_date_added'] = 'Date Added';
|
||||
|
||||
// Help
|
||||
$_['help_safe'] = 'Set to true to avoid this customer from being caught by the anti-fraud system';
|
||||
$_['help_affiliate'] = 'Enable / Disable the customers ability to use the affiliate system.';
|
||||
$_['help_tracking'] = 'The tracking code that will be used to track referrals.';
|
||||
$_['help_commission'] = 'Percentage the affiliate receives on each order.';
|
||||
$_['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_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 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_tracking'] = 'Tracking Code required!';
|
||||
$_['error_tracking_exists'] = 'Tracking code is being used by another affiliate!';
|
||||
$_['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!';
|
28
admin/customer/customer_approval.php
Normal file
28
admin/customer/customer_approval.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Customer Approvals';
|
||||
|
||||
// Text
|
||||
$_['text_success'] = 'Success: You have modified customer approvals!';
|
||||
$_['text_list'] = 'Customer Approval List';
|
||||
$_['text_default'] = 'Default';
|
||||
$_['text_customer'] = 'Customer';
|
||||
$_['text_affiliate'] = 'Affiliate';
|
||||
|
||||
// Column
|
||||
$_['column_name'] = 'Customer Name';
|
||||
$_['column_email'] = 'E-Mail';
|
||||
$_['column_customer_group'] = 'Customer Group';
|
||||
$_['column_type'] = 'Type';
|
||||
$_['column_date_added'] = 'Date Added';
|
||||
$_['column_action'] = 'Action';
|
||||
|
||||
// Entry
|
||||
$_['entry_name'] = 'Customer Name';
|
||||
$_['entry_email'] = 'E-Mail';
|
||||
$_['entry_customer_group'] = 'Customer Group';
|
||||
$_['entry_type'] = 'Type';
|
||||
$_['entry_date_added'] = 'Date Added';
|
||||
|
||||
// Error
|
||||
$_['error_permission'] = 'Warning: You do not have permission to modify customer approvals!';
|
30
admin/customer/customer_group.php
Normal file
30
admin/customer/customer_group.php
Normal file
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Customer Groups';
|
||||
|
||||
// Text
|
||||
$_['text_success'] = 'Success: You have modified customer groups!';
|
||||
$_['text_list'] = 'Customer Group List';
|
||||
$_['text_add'] = 'Add Customer Group';
|
||||
$_['text_edit'] = 'Edit Customer Group';
|
||||
|
||||
// Column
|
||||
$_['column_name'] = 'Customer Group Name';
|
||||
$_['column_sort_order'] = 'Sort Order';
|
||||
$_['column_action'] = 'Action';
|
||||
|
||||
// Entry
|
||||
$_['entry_name'] = 'Customer Group Name';
|
||||
$_['entry_description'] = 'Description';
|
||||
$_['entry_approval'] = 'Approve New Customers';
|
||||
$_['entry_sort_order'] = 'Sort Order';
|
||||
|
||||
// Help
|
||||
$_['help_approval'] = 'Customers must be approved by an administrator before they can login.';
|
||||
|
||||
// Error
|
||||
$_['error_permission'] = 'Warning: You do not have permission to modify customer groups!';
|
||||
$_['error_name'] = 'Customer Group Name must be between 3 and 32 characters!';
|
||||
$_['error_default'] = 'Warning: This customer group cannot be deleted as it is currently assigned as the default store customer group!';
|
||||
$_['error_store'] = 'Warning: This customer group cannot be deleted as it is currently assigned to %s stores!';
|
||||
$_['error_customer'] = 'Warning: This customer group cannot be deleted as it is currently assigned to %s customers!';
|
Reference in New Issue
Block a user