33 lines
1.5 KiB
PHP
Executable File
33 lines
1.5 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* @package languageDefines
|
|
* @copyright Copyright 2003-2006 Zen Cart Development Team
|
|
* @copyright Portions Copyright 2003 osCommerce
|
|
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
|
|
* @version $Id: checkout_shipping.php 3027 2006-02-13 17:15:51Z drbyte $
|
|
*/
|
|
|
|
define('NAVBAR_TITLE_1', 'Checkout');
|
|
define('NAVBAR_TITLE_2', 'Shipping Method');
|
|
|
|
define('HEADING_TITLE', 'Step 1 of 3 - Delivery Information');
|
|
|
|
define('TABLE_HEADING_SHIPPING_ADDRESS', 'Shipping Address');
|
|
define('TEXT_CHOOSE_SHIPPING_DESTINATION', 'Your order will be shipped to the address at the left or you may change the shipping address by clicking the <em>Change Address</em> button.');
|
|
define('TITLE_SHIPPING_ADDRESS', 'Shipping Information:');
|
|
|
|
define('TABLE_HEADING_SHIPPING_METHOD', 'Shipping Method:');
|
|
define('TEXT_CHOOSE_SHIPPING_METHOD', 'Please select the preferred shipping method to use on this order.');
|
|
define('TITLE_PLEASE_SELECT', 'Please Select');
|
|
define('TEXT_ENTER_SHIPPING_INFORMATION', 'This is currently the only shipping method available to use on this order.');
|
|
|
|
define('TABLE_HEADING_COMMENTS', 'Special Instructions or Comments About Your Order');
|
|
|
|
define('TITLE_CONTINUE_CHECKOUT_PROCEDURE', 'Continue to Step 2');
|
|
define('TEXT_CONTINUE_CHECKOUT_PROCEDURE', '- choose your payment method.');
|
|
|
|
// when free shipping for orders over $XX.00 is active
|
|
define('FREE_SHIPPING_TITLE', 'Free Shipping');
|
|
define('FREE_SHIPPING_DESCRIPTION', 'Free shipping for orders over %s');
|
|
?>
|