34 lines
2.5 KiB
PHP
Executable File
34 lines
2.5 KiB
PHP
Executable File
<?php
|
|
//
|
|
// +----------------------------------------------------------------------+
|
|
// |zen-cart Open Source E-commerce |
|
|
// +----------------------------------------------------------------------+
|
|
// | Copyright (c) 2003 The zen-cart developers |
|
|
// | |
|
|
// | http://www.zen-cart.com/index.php |
|
|
// | |
|
|
// | Portions Copyright (c) 2003 osCommerce |
|
|
// +----------------------------------------------------------------------+
|
|
// | This source file is subject to version 2.0 of the GPL license, |
|
|
// | that is bundled with this package in the file LICENSE, and is |
|
|
// | available through the world-wide-web at the following url: |
|
|
// | http://www.zen-cart.com/license/2_0.txt. |
|
|
// | If you did not receive a copy of the zen-cart license and are unable |
|
|
// | to obtain it through the world-wide-web, please send a note to |
|
|
// | license@zen-cart.com so we can mail you a copy immediately. |
|
|
// +----------------------------------------------------------------------+
|
|
// $Id: usps.php 2501 2005-12-02 05:24:31Z drbyte $
|
|
//
|
|
|
|
define('MODULE_SHIPPING_USPS_TEXT_TITLE', 'United States Postal Service');
|
|
define('MODULE_SHIPPING_USPS_TEXT_DESCRIPTION', 'United States Postal Service<br /><br />You will need to have registered an account with USPS at http://www.uspsprioritymail.com/et_regcert.html to use this module<br /><br />USPS expects you to <strong>use pounds as weight measure</strong> for your products.');
|
|
define('MODULE_SHIPPING_USPS_TEXT_OPT_PP', 'Parcel Post');
|
|
define('MODULE_SHIPPING_USPS_TEXT_OPT_PM', 'Priority Mail');
|
|
define('MODULE_SHIPPING_USPS_TEXT_OPT_EX', 'Express Mail');
|
|
define('MODULE_SHIPPING_USPS_TEXT_ERROR', 'Unable to find a USPS shipping quote suitable for your mailing address and the shipping methods we typically use.<br />If you prefer to use USPS as your shipping method, please contact us for assistance.');
|
|
define('MODULE_SHIPPING_USPS_TEXT_SERVER_ERROR', 'An error occurred in obtaining USPS shipping quotes.<br />If you prefer to use USPS as your shipping method, please contact the store owner.');
|
|
define('MODULE_SHIPPING_USPS_TEXT_DAY', 'day');
|
|
define('MODULE_SHIPPING_USPS_TEXT_DAYS', 'days');
|
|
define('MODULE_SHIPPING_USPS_TEXT_WEEKS', 'weeks');
|
|
?>
|