voucher.php (1895B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'Gift Vouchers'; 4 5 // Text 6 $_['text_success'] = 'Success: You have modified vouchers!'; 7 $_['text_list'] = 'Gift Voucher List'; 8 $_['text_add'] = 'Add Gift Voucher'; 9 $_['text_edit'] = 'Edit Gift Voucher'; 10 $_['text_sent'] = 'Success: Gift Voucher e-mail has been sent!'; 11 12 // Column 13 $_['column_name'] = 'Voucher Name'; 14 $_['column_code'] = 'Code'; 15 $_['column_from'] = 'From'; 16 $_['column_to'] = 'To'; 17 $_['column_theme'] = 'Theme'; 18 $_['column_amount'] = 'Amount'; 19 $_['column_status'] = 'Status'; 20 $_['column_order_id'] = 'Order ID'; 21 $_['column_customer'] = 'Customer'; 22 $_['column_date_added'] = 'Date Added'; 23 $_['column_action'] = 'Action'; 24 25 // Entry 26 $_['entry_code'] = 'Code'; 27 $_['entry_from_name'] = 'From Name'; 28 $_['entry_from_email'] = 'From E-Mail'; 29 $_['entry_to_name'] = 'To Name'; 30 $_['entry_to_email'] = 'To E-Mail'; 31 $_['entry_theme'] = 'Theme'; 32 $_['entry_message'] = 'Message'; 33 $_['entry_amount'] = 'Amount'; 34 $_['entry_status'] = 'Status'; 35 36 // Help 37 $_['help_code'] = 'The code the customer enters to activate the voucher.'; 38 39 // Error 40 $_['error_permission'] = 'Warning: You do not have permission to modify vouchers!'; 41 $_['error_exists'] = 'Warning: Voucher code is already in use!'; 42 $_['error_code'] = 'Code must be between 3 and 10 characters!'; 43 $_['error_to_name'] = 'Recipient\'s Name must be between 1 and 64 characters!'; 44 $_['error_from_name'] = 'Your Name must be between 1 and 64 characters!'; 45 $_['error_email'] = 'E-Mail Address does not appear to be valid!'; 46 $_['error_amount'] = 'Amount must be greater than or equal to 1!'; 47 $_['error_order'] = 'Warning: This voucher cannot be deleted as it is part of an <a href="%s">order</a>!';