register.php 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2018 The OGP Development Team
  6. *
  7. * http://www.opengamepanel.org/
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. *
  23. */
  24. define('OGP_LANG_login_name', "用户名");
  25. define('OGP_LANG_users_fname', "名字");
  26. define('OGP_LANG_users_lname', "姓氏");
  27. define('OGP_LANG_users_passwd', "密码");
  28. define('OGP_LANG_users_cpasswd', "确认密码");
  29. define('OGP_LANG_passwd_len', "密码长度必须超过6个字符");
  30. define('OGP_LANG_err_password', "密码不能为空");
  31. define('OGP_LANG_err_confirm_password', "确认密码字段不能为空");
  32. define('OGP_LANG_err_password_mismatch', "密码不匹配");
  33. define('OGP_LANG_phone_number', "电话号码");
  34. define('OGP_LANG_users_email', "电子邮件");
  35. define('OGP_LANG_register_a_new_user', "注册新用户");
  36. define('OGP_LANG_password_mismatch', "密码不一致");
  37. define('OGP_LANG_confirm_password', "确认密码");
  38. define('OGP_LANG_successfull', "成功");
  39. define('OGP_LANG_click_here', "点击这里");
  40. define('OGP_LANG_to_login', "登录");
  41. define('OGP_LANG_registered_on', "注册时间:%s。");
  42. define('OGP_LANG_register_message', "你好,<br><br>你的Open Game Panel账户已创建,现在你可以<a href='%s' target='_blank'>登录</a>。<br><br>用户名:%s<br><br>请记得经常更换密码,并且第一次登录时更换密码。<br><br>请不要回复此邮件!<br><br>______________________________<br>OGP邮件系统");
  43. define('OGP_LANG_err_captcha', "验证码不匹配。");
  44. define('OGP_LANG_err_login_name', "用户名为空或已被使用。");
  45. define('OGP_LANG_err_first_name', "请输入你的名字。");
  46. define('OGP_LANG_err_last_name', "未输入姓氏。");
  47. define('OGP_LANG_err_phone_number', "电话号码为空。");
  48. define('OGP_LANG_err_email_address', "电子邮件地址为空或不正确。");
  49. define('OGP_LANG_err_email_address_already_in_use_by', "电子邮件地址已被<b>%s</b>使用。");
  50. define('OGP_LANG_user_registration', "用户注册");
  51. define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "你的账户详情已通过电子邮件发送给<b>%s</b>。");
  52. define('OGP_LANG_account_created', "你的账户已创建。");
  53. define('OGP_LANG_subject', "%s :: 账户信息");
  54. ?>