16 lines
974 B
PHP
16 lines
974 B
PHP
<?php
|
|
// Text
|
|
$_['text_success'] = 'Success: You have modified orders!';
|
|
|
|
// Error
|
|
$_['error_permission'] = 'Varoitus: You do not have permission to access the API!';
|
|
$_['error_customer'] = 'Varoitus: Customer details needs to be set!';
|
|
$_['error_payment_address'] = 'Varoitus: Payment address required!';
|
|
$_['error_payment_method'] = 'Varoitus: Payment method required!';
|
|
$_['error_no_payment'] = 'Varoitus: No Payment options are available!';
|
|
$_['error_shipping_address'] = 'Varoitus: Shipping address required!';
|
|
$_['error_shipping_method'] = 'Varoitus: Shipping method required!';
|
|
$_['error_no_shipping'] = 'Varoitus: No Shipping options are available!';
|
|
$_['error_stock'] = 'Varoitus: Products marked with *** are not available in the desired quantity or not in stock!';
|
|
$_['error_minimum'] = 'Varoitus: Minimum order amount for %s is %s!';
|
|
$_['error_not_found'] = 'Varoitus: Order could not be found!'; |