country.php (2051B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'Countries'; 4 5 // Text 6 $_['text_success'] = 'Success: You have modified countries!'; 7 $_['text_list'] = 'Country List'; 8 $_['text_add'] = 'Add Country'; 9 $_['text_edit'] = 'Edit Country'; 10 11 // Column 12 $_['column_name'] = 'Country Name'; 13 $_['column_iso_code_2'] = 'ISO Code (2)'; 14 $_['column_iso_code_3'] = 'ISO Code (3)'; 15 $_['column_action'] = 'Action'; 16 17 // Entry 18 $_['entry_name'] = 'Country Name'; 19 $_['entry_iso_code_2'] = 'ISO Code (2)'; 20 $_['entry_iso_code_3'] = 'ISO Code (3)'; 21 $_['entry_address_format'] = 'Address Format'; 22 $_['entry_postcode_required'] = 'Postcode Required'; 23 $_['entry_status'] = 'Status'; 24 25 // Help 26 $_['help_address_format'] = 'First Name = {firstname}<br />Last Name = {lastname}<br />Company = {company}<br />Address 1 = {address_1}<br />Address 2 = {address_2}<br />City = {city}<br />Postcode = {postcode}<br />Zone = {zone}<br />Zone Code = {zone_code}<br />Country = {country}'; 27 28 // Error 29 $_['error_permission'] = 'Warning: You do not have permission to modify countries!'; 30 $_['error_name'] = 'Country Name must be between 1 and 128 characters!'; 31 $_['error_default'] = 'Warning: This country cannot be deleted as it is currently assigned as the default store country!'; 32 $_['error_store'] = 'Warning: This country cannot be deleted as it is currently assigned to %s stores!'; 33 $_['error_address'] = 'Warning: This country cannot be deleted as it is currently assigned to %s address book entries!'; 34 $_['error_affiliate'] = 'Warning: This country cannot be deleted as it is currently assigned to %s affiliates!'; 35 $_['error_zone'] = 'Warning: This country cannot be deleted as it is currently assigned to %s zones!'; 36 $_['error_zone_to_geo_zone'] = 'Warning: This country cannot be deleted as it is currently assigned to %s zones to geo zones!';