subusers.php 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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_first_name', "名字");
  26. define('OGP_LANG_last_name', "姓氏");
  27. define('OGP_LANG_phone_number', "电话号码");
  28. define('OGP_LANG_email_address', "电子邮件");
  29. define('OGP_LANG_register_a_new_user', "注册新用户");
  30. define('OGP_LANG_password_mismatch', "密码不匹配。");
  31. define('OGP_LANG_confirm_password', "确认密码");
  32. define('OGP_LANG_subuser_password', "子用户密码");
  33. define('OGP_LANG_subuser_man', "子用户管理");
  34. define('OGP_LANG_successfull', "成功");
  35. define('OGP_LANG_click_here', "点击这里");
  36. define('OGP_LANG_to_login', "登录");
  37. define('OGP_LANG_registered_on', "注册时间");
  38. define('OGP_LANG_register_message', "你好,<br><br>你的Open Game Panel账户已创建,现在你可以使用以下账户信息登录:<br><br>用户名:%s<br>密码:%s<br><br>请记得经常更换密码,并且第一次登录时更换密码。<br><br>请不要回复此邮件!<br><br>______________________________<br>OGP邮件系统");
  39. define('OGP_LANG_err_password', "密码不能为空");
  40. define('OGP_LANG_err_confirm_password', "确认密码字段不能为空");
  41. define('OGP_LANG_err_password_mismatch', "密码不匹配");
  42. define('OGP_LANG_err_captcha', "验证码不匹配。");
  43. define('OGP_LANG_err_login_name', "用户名为空或已被使用。");
  44. define('OGP_LANG_err_first_name', "请输入你的名字。");
  45. define('OGP_LANG_err_last_name', "姓氏未输入。");
  46. define('OGP_LANG_err_phone_number', "电话号码为空。");
  47. define('OGP_LANG_err_email_address', "电子邮件地址为空或不正确。");
  48. define('OGP_LANG_err_users_parent', "子用户账户不能创建其他用户。");
  49. define('OGP_LANG_err_parent_user', "父用户ID必须引用一个有效的预先存在的用户。");
  50. define('OGP_LANG_err_email_address_already_in_use_by', "电子邮件地址已被<b>%s</b>使用。");
  51. define('OGP_LANG_user_registration', "用户注册");
  52. define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "你的账户详情已通过电子邮件发送给<b>%s</b>。");
  53. define('OGP_LANG_subject', "你好 %s, 欢迎来到 %s!");
  54. define('OGP_LANG_sub_user', "子用户");
  55. define('OGP_LANG_create_sub_user', "添加子用户");
  56. define('OGP_LANG_listdel_sub_user', "列出、修改子用户账户信息或删除子用户");
  57. define('OGP_LANG_delete_sub_user', "编辑/删除子用户");
  58. define('OGP_LANG_del_subuser_conf', "你确定要删除这个账户吗:");
  59. define('OGP_LANG_no_subusers', "尚未在你的账户下创建子用户!");
  60. define('OGP_LANG_subuser_deleted', "子用户%s已成功从数据库中删除!");
  61. define('OGP_LANG_subuser_added', "子用户%s已成功创建并添加到数据库!");
  62. define('OGP_LANG_your_subusers', "所拥有的子用户账户");
  63. ?>