2020-02-12 21:25:39 +00:00
|
|
|
<?php
|
|
|
|
// Heading
|
|
|
|
$_['heading_title'] = 'Order Statuses';
|
|
|
|
|
|
|
|
// Text
|
|
|
|
$_['text_success'] = 'Success: You have modified order statuses!';
|
|
|
|
$_['text_list'] = 'Order Status List';
|
|
|
|
$_['text_add'] = 'Add Order Status';
|
|
|
|
$_['text_edit'] = 'Edit Order Status';
|
|
|
|
|
|
|
|
// Column
|
|
|
|
$_['column_name'] = 'Order Status Name';
|
|
|
|
$_['column_action'] = 'Action';
|
|
|
|
|
|
|
|
// Entry
|
|
|
|
$_['entry_name'] = 'Order Status Name';
|
|
|
|
|
|
|
|
// Error
|
2020-02-16 11:32:04 +00:00
|
|
|
$_['error_permission'] = 'Varoitus: You do not have permission to modify order statuses!';
|
2020-02-12 21:25:39 +00:00
|
|
|
$_['error_name'] = 'Order Status Name must be between 3 and 32 characters!';
|
2020-02-16 11:32:04 +00:00
|
|
|
$_['error_default'] = 'Varoitus: This order status cannot be deleted as it is currently assigned as the default store order status!';
|
|
|
|
$_['error_download'] = 'Varoitus: This order status cannot be deleted as it is currently assigned as the default download status!';
|
|
|
|
$_['error_store'] = 'Varoitus: This order status cannot be deleted as it is currently assigned to %s stores!';
|
|
|
|
$_['error_order'] = 'Varoitus: This order status cannot be deleted as it is currently assigned to %s orders!';
|