19 lines
746 B
PHP
19 lines
746 B
PHP
<?php
|
|
// Heading
|
|
$_['heading_title'] = 'Shipping Method';
|
|
|
|
// Text
|
|
$_['text_shipping_method'] = 'Shipping method options';
|
|
$_['text_shipping'] = 'Please select the preferred shipping method to use for this order.';
|
|
$_['text_success'] = 'Success: You have changed shipping method!';
|
|
|
|
// Entry
|
|
$_['entry_shipping_method'] = 'Choose shipping method...';
|
|
|
|
// Error
|
|
$_['error_customer'] = 'Customer required!';
|
|
$_['error_payment_address'] = 'Payment address required!';
|
|
$_['error_shipping_address'] = 'Shipping address required!';
|
|
$_['error_shipping_method'] = 'Shipping method required!';
|
|
$_['error_no_shipping'] = 'No Shipping options are available. Please <a href="%s">contact us</a> for assistance!';
|