diff options
Diffstat (limited to 'public/admin/language/en-gb/sale/voucher.php')
-rw-r--r-- | public/admin/language/en-gb/sale/voucher.php | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/public/admin/language/en-gb/sale/voucher.php b/public/admin/language/en-gb/sale/voucher.php new file mode 100644 index 0000000..619849e --- /dev/null +++ b/public/admin/language/en-gb/sale/voucher.php @@ -0,0 +1,47 @@ +<?php +// Heading +$_['heading_title'] = 'Gift Vouchers'; + +// Text +$_['text_success'] = 'Success: You have modified vouchers!'; +$_['text_list'] = 'Gift Voucher List'; +$_['text_add'] = 'Add Gift Voucher'; +$_['text_edit'] = 'Edit Gift Voucher'; +$_['text_sent'] = 'Success: Gift Voucher e-mail has been sent!'; + +// Column +$_['column_name'] = 'Voucher Name'; +$_['column_code'] = 'Code'; +$_['column_from'] = 'From'; +$_['column_to'] = 'To'; +$_['column_theme'] = 'Theme'; +$_['column_amount'] = 'Amount'; +$_['column_status'] = 'Status'; +$_['column_order_id'] = 'Order ID'; +$_['column_customer'] = 'Customer'; +$_['column_date_added'] = 'Date Added'; +$_['column_action'] = 'Action'; + +// Entry +$_['entry_code'] = 'Code'; +$_['entry_from_name'] = 'From Name'; +$_['entry_from_email'] = 'From E-Mail'; +$_['entry_to_name'] = 'To Name'; +$_['entry_to_email'] = 'To E-Mail'; +$_['entry_theme'] = 'Theme'; +$_['entry_message'] = 'Message'; +$_['entry_amount'] = 'Amount'; +$_['entry_status'] = 'Status'; + +// Help +$_['help_code'] = 'The code the customer enters to activate the voucher.'; + +// Error +$_['error_permission'] = 'Warning: You do not have permission to modify vouchers!'; +$_['error_exists'] = 'Warning: Voucher code is already in use!'; +$_['error_code'] = 'Code must be between 3 and 10 characters!'; +$_['error_to_name'] = 'Recipient\'s Name must be between 1 and 64 characters!'; +$_['error_from_name'] = 'Your Name must be between 1 and 64 characters!'; +$_['error_email'] = 'E-Mail Address does not appear to be valid!'; +$_['error_amount'] = 'Amount must be greater than or equal to 1!'; +$_['error_order'] = 'Warning: This voucher cannot be deleted as it is part of an <a href="%s">order</a>!';
\ No newline at end of file |