[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
Zen Cart 源代码 shopping_cart.php

Zen Cart 源代码 shopping_cart.php




下载文件

文件名: shopping_cart.php
文件类型: PHP文件
文件大小: 2.71 KiB
MD5: 0c950721ce7be2d2c7a48e2f58c80f39

shopping_cart.php - 关闭高亮
  1. <?php
  2. //
  3. // +----------------------------------------------------------------------+
  4. // |zen-cart Open Source E-commerce                                       |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (c) 2003 The zen-cart developers                           |
  7. // |                                                                      |
  8. // | http://www.zen-cart.com/index.php                                    |
  9. // |                                                                      |
  10. // | Portions Copyright (c) 2003 osCommerce                               |
  11. // +----------------------------------------------------------------------+
  12. // | This source file is subject to version 2.0 of the GPL license,       |
  13. // | that is bundled with this package in the file LICENSE, and is        |
  14. // | available through the world-wide-web at the following url:           |
  15. // | http://www.zen-cart.com/license/2_0.txt.                             |
  16. // | If you did not receive a copy of the zen-cart license and are unable |
  17. // | to obtain it through the world-wide-web, please send a note to       |
  18. // | license@zen-cart.com so we can mail you a copy immediately.          |
  19. // +----------------------------------------------------------------------+
  20. // | Simplified Chinese version   http://www.zen-cart.cn                  |
  21. // +----------------------------------------------------------------------+
  22. // $Id: shopping_cart.php 290 2004-09-15 19:48:26Z wilt $
  23. //
  24.  
  25. define('NAVBAR_TITLE', '购物车');
  26. define('HEADING_TITLE', '购物车中的商品:');
  27. define('HEADING_TITLE_EMPTY', '您的购物车');
  28. define('TEXT_INFORMATION', '可以在这里输入有关购物车的说明。 (includes/languages/schinese/shopping_cart.php)');
  29. define('TABLE_HEADING_REMOVE', '删除');
  30. define('TABLE_HEADING_QUANTITY', '数量');
  31. define('TABLE_HEADING_MODEL', '型号');
  32. define('TABLE_HEADING_PRICE','单价');
  33. define('TEXT_CART_EMPTY', '您的购物车是空的.');
  34. define('SUB_TITLE_SUB_TOTAL', '小计:');
  35. define('SUB_TITLE_TOTAL', '总额:');
  36.  
  37. define('OUT_OF_STOCK_CANT_CHECKOUT', '标记为' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . '的商品缺货或库存不足。<br />请修改标记为(' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . ')的商品数量。谢谢!');
  38. define('OUT_OF_STOCK_CAN_CHECKOUT', '标记为' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . '的商品缺货。<br />缺货的商品将稍后发货。');
  39.  
  40. define('TEXT_TOTAL_ITEMS', '件数: ');
  41. define('TEXT_TOTAL_WEIGHT', '&nbsp;&nbsp;重量: ');
  42. define('TEXT_TOTAL_AMOUNT', '&nbsp;&nbsp;金额: ');
  43.  
  44. define('TEXT_VISITORS_CART', '<a href="javascript:session_win();">[帮助 (?)]</a>');
  45. define('TEXT_OPTION_DIVIDER', '&nbsp;-&nbsp;');
  46. ?>


cron