custom_field.php (2219B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'Custom Fields'; 4 5 // Text 6 $_['text_success'] = 'Success: You have modified custom fields!'; 7 $_['text_list'] = 'Custom Field List'; 8 $_['text_add'] = 'Add Custom Field'; 9 $_['text_edit'] = 'Edit Custom Field'; 10 $_['text_choose'] = 'Choose'; 11 $_['text_select'] = 'Select'; 12 $_['text_radio'] = 'Radio'; 13 $_['text_checkbox'] = 'Checkbox'; 14 $_['text_input'] = 'Input'; 15 $_['text_text'] = 'Text'; 16 $_['text_textarea'] = 'Textarea'; 17 $_['text_file'] = 'File'; 18 $_['text_date'] = 'Date'; 19 $_['text_datetime'] = 'Date & Time'; 20 $_['text_time'] = 'Time'; 21 $_['text_account'] = 'Account'; 22 $_['text_address'] = 'Address'; 23 $_['text_affiliate'] = 'Affiliate'; 24 $_['text_regex'] = 'Regex'; 25 $_['text_custom_field'] = 'Custom Field'; 26 $_['text_value'] = 'Custom Field Values'; 27 28 // Column 29 $_['column_name'] = 'Custom Field Name'; 30 $_['column_location'] = 'Location'; 31 $_['column_type'] = 'Type'; 32 $_['column_sort_order'] = 'Sort Order'; 33 $_['column_action'] = 'Action'; 34 35 // Entry 36 $_['entry_name'] = 'Custom Field Name'; 37 $_['entry_location'] = 'Location'; 38 $_['entry_type'] = 'Type'; 39 $_['entry_value'] = 'Value'; 40 $_['entry_validation'] = 'Validation'; 41 $_['entry_custom_value'] = 'Custom Field Value Name'; 42 $_['entry_customer_group'] = 'Customer Group'; 43 $_['entry_required'] = 'Required'; 44 $_['entry_status'] = 'Status'; 45 $_['entry_sort_order'] = 'Sort Order'; 46 47 // Help 48 $_['help_regex'] = 'Use regex. E.g: /[a-zA-Z0-9_-]/'; 49 $_['help_sort_order'] = 'Use minus to count backwards from the last field in the set.'; 50 51 // Error 52 $_['error_permission'] = 'Warning: You do not have permission to modify custom fields!'; 53 $_['error_name'] = 'Custom Field Name must be between 1 and 128 characters!'; 54 $_['error_type'] = 'Warning: Custom Field Values required!'; 55 $_['error_custom_value'] = 'Custom Value Name must be between 1 and 128 characters!';