[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 源代码 create_account.php

Zen Cart 源代码 create_account.php




下载文件

文件名: create_account.php
文件类型: PHP文件
文件大小: 3.12 KiB
MD5: d59d4a5570ac4ca9e01202d33852029e

create_account.php - 关闭高亮
  1. <?php
  2. /**
  3.  * @package languageDefines
  4.  * @copyright Copyright 2003-2010 Zen Cart Development Team
  5.  * @copyright Portions Copyright 2003 osCommerce
  6.  * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
  7.  * @version $Id: create_account.php 15405 2010-02-03 06:29:33Z drbyte $
  8.  * @Simplified Chinese version   http://www.zen-cart.cn
  9.  */
  10.  
  11. define('NAVBAR_TITLE', '建立帐号');
  12.  
  13. define('HEADING_TITLE', '我的帐号');
  14.  
  15. define('TEXT_ORIGIN_LOGIN', '<strong class="note">提示:</strong>如果您已有帐号,请点<a href="%s">这里</a>登录。');
  16.  
  17. // greeting salutation
  18. define('EMAIL_SUBJECT', '欢迎光临' . STORE_NAME);
  19. define('EMAIL_GREET_MR', '亲爱的%s先生,' . "\n\n");
  20. define('EMAIL_GREET_MS', '亲爱的%s女士,' . "\n\n");
  21. define('EMAIL_GREET_NONE', '亲爱的%s' . "\n\n");
  22.  
  23. // First line of the greeting
  24. define('EMAIL_WELCOME', '欢迎光临<strong>' . STORE_NAME . '</strong>。');
  25. define('EMAIL_SEPARATOR', '--------------------');
  26. define('EMAIL_COUPON_INCENTIVE_HEADER', '恭喜! 为了您下次在这里购物更加超值,下面是专门为您准备的优惠券!' . "\n\n");
  27. // 您的优惠券详情将在以下加入
  28. define('EMAIL_COUPON_REDEEM', '要使用优惠券,在结帐时输入' . TEXT_GV_REDEEM . '代码:<strong>%s</strong>' . "\n\n");
  29. define('TEXT_COUPON_HELP_DATE', '<p>优惠券有效期为%s至%s</p>');
  30.  
  31. define('EMAIL_GV_INCENTIVE_HEADER', '多谢惠顾,我们给您发了' . TEXT_GV_NAME . '作为%s!' . "\n");
  32. define('EMAIL_GV_REDEEM', '本' . TEXT_GV_NAME . ' ' . TEXT_GV_REDEEM . '是:%s' . "\n\n" . '您结帐时输入' . TEXT_GV_REDEEM . ',然后在商店里选择。');
  33. define('EMAIL_GV_LINK', '或者现在就可以按照下面的链接兑现:' . "\n");
  34. // GV link will automatically be included before this line
  35.  
  36. define('EMAIL_GV_LINK_OTHER', TEXT_GV_NAME . '加到您的帐号后,可以自己使用或者发给朋友!' . "\n\n");
  37.  
  38. define('EMAIL_TEXT', '您可以使用我们提供的<strong>各项服务</strong>,服务包括:' . "\n\n<ul>" . '<li><strong>订单记录</strong> - 查看您的所有订单。' . "\n\n" . '<li><strong>永久购物车</strong> - 您在线购物车中的商品,一直保存到您删除它们或者结帐完成。' . "\n\n" . '<li><strong>地址簿</strong> - 我们可以发货到您的帐单地址或者您另外输入的送货地址!这很适合给您的朋友送生日礼物。' . "\n\n" . '<li><strong>商品评论</strong> - 和我们的其它客户分享您对某商品的看法。' . "\n\n</ul>");
  39. define('EMAIL_CONTACT', '如果需要帮助,请发电子邮件到:<a href="mailto:' . STORE_OWNER_EMAIL_ADDRESS . '">'. STORE_OWNER_EMAIL_ADDRESS ." </a>\n\n");
  40. define('EMAIL_GV_CLOSURE', "\n" . '谢谢,' . "\n\n" . STORE_OWNER . "\n商店管理员\n\n". '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'.HTTP_SERVER . DIR_WS_CATALOG ."</a>\n\n");
  41.  
  42. // email disclaimer - this disclaimer is seperate from all other email disclaimers
  43. define('EMAIL_DISCLAIMER_NEW_CUSTOMER', '该电子邮件地址是您或某位客户给我们的. 如果您没有登记帐号, 或者您错误接收了该邮件, 请发邮件到%s');
  44.  


cron