⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 english.php

📁 每个RFC 3261信息头有一个相应的存取标识. 但是,许多信息头拥有同样的形式。 例如。To和From的信息头都是由显示名和一个URI组成。 To和From信息头用来管理与处理NameAddr实例的
💻 PHP
📖 第 1 页 / 共 2 页
字号:
<?php/*  $Id: english.php,v 1.114 2003/07/09 18:13:39 dgw_ Exp $  osCommerce, Open Source E-Commerce Solutions  http://www.oscommerce.com  Copyright (c) 2003 osCommerce  Released under the GNU General Public License*/// look in your $PATH_LOCALE/locale directory for available locales// or type locale -a on the server.// Examples:// on RedHat try 'en_US'// on FreeBSD try 'en_US.ISO_8859-1'// on Windows try 'en', or 'English'@setlocale(LC_TIME, 'en_US.ISO_8859-1');define('DATE_FORMAT_SHORT', '%m/%d/%Y');  // this is used for strftime()define('DATE_FORMAT_LONG', '%A %d %B, %Y'); // this is used for strftime()define('DATE_FORMAT', 'm/d/Y'); // this is used for date()define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S');////// Return date in raw format// $date should be in format mm/dd/yyyy// raw date is in format YYYYMMDD, or DDMMYYYYfunction tep_date_raw($date, $reverse = false) {  if ($reverse) {    return substr($date, 3, 2) . substr($date, 0, 2) . substr($date, 6, 4);  } else {    return substr($date, 6, 4) . substr($date, 0, 2) . substr($date, 3, 2);  }}// if USE_DEFAULT_LANGUAGE_CURRENCY is true, use the following currency, instead of the applications default currency (used when changing language)define('LANGUAGE_CURRENCY', 'USD');// Global entries for the <html> tagdefine('HTML_PARAMS','dir="LTR" lang="en"');// charset for web pages and emailsdefine('CHARSET', 'iso-8859-1');// page titledefine('TITLE', 'osCommerce');// header text in includes/header.phpdefine('HEADER_TITLE_CREATE_ACCOUNT', 'Create an Account');define('HEADER_TITLE_MY_ACCOUNT', 'My Account');define('HEADER_TITLE_CART_CONTENTS', 'Cart Contents');define('HEADER_TITLE_CHECKOUT', 'Checkout');define('HEADER_TITLE_TOP', 'Top');define('HEADER_TITLE_CATALOG', 'Catalog');define('HEADER_TITLE_LOGOFF', 'Log Off');define('HEADER_TITLE_LOGIN', 'Log In');// footer text in includes/footer.phpdefine('FOOTER_TEXT_REQUESTS_SINCE', 'requests since');// text for genderdefine('MALE', 'Male');define('FEMALE', 'Female');define('MALE_ADDRESS', 'Mr.');define('FEMALE_ADDRESS', 'Ms.');// text for date of birth exampledefine('DOB_FORMAT_STRING', 'mm/dd/yyyy');// categories box text in includes/boxes/categories.phpdefine('BOX_HEADING_CATEGORIES', 'Categories');// manufacturers box text in includes/boxes/manufacturers.phpdefine('BOX_HEADING_MANUFACTURERS', 'Manufacturers');// whats_new box text in includes/boxes/whats_new.phpdefine('BOX_HEADING_WHATS_NEW', 'What\'s New?');// quick_find box text in includes/boxes/quick_find.phpdefine('BOX_HEADING_SEARCH', 'Quick Find');define('BOX_SEARCH_TEXT', 'Use keywords to find the product you are looking for.');define('BOX_SEARCH_ADVANCED_SEARCH', 'Advanced Search');// specials box text in includes/boxes/specials.phpdefine('BOX_HEADING_SPECIALS', 'Specials');// reviews box text in includes/boxes/reviews.phpdefine('BOX_HEADING_REVIEWS', 'Reviews');define('BOX_REVIEWS_WRITE_REVIEW', 'Write a review on this product!');define('BOX_REVIEWS_NO_REVIEWS', 'There are currently no product reviews');define('BOX_REVIEWS_TEXT_OF_5_STARS', '%s of 5 Stars!');// shopping_cart box text in includes/boxes/shopping_cart.phpdefine('BOX_HEADING_SHOPPING_CART', 'Shopping Cart');define('BOX_SHOPPING_CART_EMPTY', '0 items');// order_history box text in includes/boxes/order_history.phpdefine('BOX_HEADING_CUSTOMER_ORDERS', 'Order History');// best_sellers box text in includes/boxes/best_sellers.phpdefine('BOX_HEADING_BESTSELLERS', 'Bestsellers');define('BOX_HEADING_BESTSELLERS_IN', 'Bestsellers in<br>&nbsp;&nbsp;');// notifications box text in includes/boxes/products_notifications.phpdefine('BOX_HEADING_NOTIFICATIONS', 'Notifications');define('BOX_NOTIFICATIONS_NOTIFY', 'Notify me of updates to <b>%s</b>');define('BOX_NOTIFICATIONS_NOTIFY_REMOVE', 'Do not notify me of updates to <b>%s</b>');// manufacturer box textdefine('BOX_HEADING_MANUFACTURER_INFO', 'Manufacturer Info');define('BOX_MANUFACTURER_INFO_HOMEPAGE', '%s Homepage');define('BOX_MANUFACTURER_INFO_OTHER_PRODUCTS', 'Other products');// languages box text in includes/boxes/languages.phpdefine('BOX_HEADING_LANGUAGES', 'Languages');// currencies box text in includes/boxes/currencies.phpdefine('BOX_HEADING_CURRENCIES', 'Currencies');// information box text in includes/boxes/information.phpdefine('BOX_HEADING_INFORMATION', 'Information');define('BOX_INFORMATION_PRIVACY', 'Privacy Notice');define('BOX_INFORMATION_CONDITIONS', 'Conditions of Use');define('BOX_INFORMATION_SHIPPING', 'Shipping & Returns');define('BOX_INFORMATION_CONTACT', 'Contact Us');// tell a friend box text in includes/boxes/tell_a_friend.phpdefine('BOX_HEADING_TELL_A_FRIEND', 'Tell A Friend');define('BOX_TELL_A_FRIEND_TEXT', 'Tell someone you know about this product.');// checkout procedure textdefine('CHECKOUT_BAR_DELIVERY', 'Delivery Information');define('CHECKOUT_BAR_PAYMENT', 'Payment Information');define('CHECKOUT_BAR_CONFIRMATION', 'Confirmation');define('CHECKOUT_BAR_FINISHED', 'Finished!');// pull down default textdefine('PULL_DOWN_DEFAULT', 'Please Select');define('TYPE_BELOW', 'Type Below');// javascript messagesdefine('JS_ERROR', 'Errors have occured during the process of your form.\n\nPlease make the following corrections:\n\n');define('JS_REVIEW_TEXT', '* The \'Review Text\' must have at least ' . REVIEW_TEXT_MIN_LENGTH . ' characters.\n');define('JS_REVIEW_RATING', '* You must rate the product for your review.\n');define('JS_ERROR_NO_PAYMENT_MODULE_SELECTED', '* Please select a payment method for your order.\n');define('JS_ERROR_SUBMITTED', 'This form has already been submitted. Please press Ok and wait for this process to be completed.');define('ERROR_NO_PAYMENT_MODULE_SELECTED', 'Please select a payment method for your order.');define('CATEGORY_COMPANY', 'Company Details');define('CATEGORY_PERSONAL', 'Your Personal Details');define('CATEGORY_ADDRESS', 'Your Address');define('CATEGORY_CONTACT', 'Your Contact Information');define('CATEGORY_OPTIONS', 'Options');define('CATEGORY_PASSWORD', 'Your Password');define('ENTRY_COMPANY', 'Company Name:');define('ENTRY_COMPANY_ERROR', '');define('ENTRY_COMPANY_TEXT', '');define('ENTRY_GENDER', 'Gender:');define('ENTRY_GENDER_ERROR', 'Please select your Gender.');define('ENTRY_GENDER_TEXT', '*');define('ENTRY_FIRST_NAME', 'First Name:');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -