tax_class.php (1223B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'Tax Classes'; 4 5 // Text 6 $_['text_success'] = 'Success: You have modified tax classes!'; 7 $_['text_list'] = 'Tax Class List'; 8 $_['text_add'] = 'Add Tax Class'; 9 $_['text_edit'] = 'Edit Tax Class'; 10 $_['text_tax_class'] = 'Tax Class'; 11 $_['text_tax_rate'] = 'Tax Rates'; 12 $_['text_shipping'] = 'Shipping Address'; 13 $_['text_payment'] = 'Payment Address'; 14 $_['text_store'] = 'Store Address'; 15 16 // Column 17 $_['column_title'] = 'Tax Class Title'; 18 $_['column_action'] = 'Action'; 19 20 // Entry 21 $_['entry_title'] = 'Tax Class Title'; 22 $_['entry_description'] = 'Description'; 23 $_['entry_rate'] = 'Tax Rate'; 24 $_['entry_based'] = 'Based On'; 25 $_['entry_geo_zone'] = 'Geo Zone'; 26 $_['entry_priority'] = 'Priority'; 27 28 // Error 29 $_['error_permission'] = 'Warning: You do not have permission to modify tax classes!'; 30 $_['error_title'] = 'Tax Class Title must be between 3 and 32 characters!'; 31 $_['error_description'] = 'Description must be between 3 and 255 characters!'; 32 $_['error_product'] = 'Warning: This tax class cannot be deleted as it is currently assigned to %s products!';