zone.php (1443B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'Zones'; 4 5 // Text 6 $_['text_success'] = 'Success: You have modified zones!'; 7 $_['text_list'] = 'Zone List'; 8 $_['text_add'] = 'Add Zone'; 9 $_['text_edit'] = 'Edit Zone'; 10 11 // Column 12 $_['column_name'] = 'Zone Name'; 13 $_['column_code'] = 'Zone Code'; 14 $_['column_country'] = 'Country'; 15 $_['column_action'] = 'Action'; 16 17 // Entry 18 $_['entry_name'] = 'Zone Name'; 19 $_['entry_code'] = 'Zone Code'; 20 $_['entry_country'] = 'Country'; 21 $_['entry_status'] = 'Status'; 22 23 // Error 24 $_['error_permission'] = 'Warning: You do not have permission to modify zones!'; 25 $_['error_name'] = 'Zone Name must be between 1 and 128 characters!'; 26 $_['error_default'] = 'Warning: This zone cannot be deleted as it is currently assigned as the default store zone!'; 27 $_['error_store'] = 'Warning: This zone cannot be deleted as it is currently assigned to %s stores!'; 28 $_['error_address'] = 'Warning: This zone cannot be deleted as it is currently assigned to %s address book entries!'; 29 $_['error_affiliate'] = 'Warning: This zone cannot be deleted as it is currently assigned to %s affiliates!'; 30 $_['error_zone_to_geo_zone'] = 'Warning: This zone cannot be deleted as it is currently assigned to %s zones to geo zones!';