| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /*
- *
- * OGP - Open Game Panel
- * Copyright (C) 2008 - 2018 The OGP Development Team
- *
- * http://www.opengamepanel.org/
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- */
- define('OGP_LANG_login_name', "用户名");
- define('OGP_LANG_users_fname', "名字");
- define('OGP_LANG_users_lname', "姓氏");
- define('OGP_LANG_users_passwd', "密码");
- define('OGP_LANG_users_cpasswd', "确认密码");
- define('OGP_LANG_passwd_len', "密码长度必须超过6个字符");
- define('OGP_LANG_err_password', "密码不能为空");
- define('OGP_LANG_err_confirm_password', "确认密码字段不能为空");
- define('OGP_LANG_err_password_mismatch', "密码不匹配");
- define('OGP_LANG_phone_number', "电话号码");
- define('OGP_LANG_users_email', "电子邮件");
- define('OGP_LANG_register_a_new_user', "注册新用户");
- define('OGP_LANG_password_mismatch', "密码不一致");
- define('OGP_LANG_confirm_password', "确认密码");
- define('OGP_LANG_successfull', "成功");
- define('OGP_LANG_click_here', "点击这里");
- define('OGP_LANG_to_login', "登录");
- define('OGP_LANG_registered_on', "注册时间:%s。");
- 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邮件系统");
- define('OGP_LANG_err_captcha', "验证码不匹配。");
- define('OGP_LANG_err_login_name', "用户名为空或已被使用。");
- define('OGP_LANG_err_first_name', "请输入你的名字。");
- define('OGP_LANG_err_last_name', "未输入姓氏。");
- define('OGP_LANG_err_phone_number', "电话号码为空。");
- define('OGP_LANG_err_email_address', "电子邮件地址为空或不正确。");
- define('OGP_LANG_err_email_address_already_in_use_by', "电子邮件地址已被<b>%s</b>使用。");
- define('OGP_LANG_user_registration', "用户注册");
- define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "你的账户详情已通过电子邮件发送给<b>%s</b>。");
- define('OGP_LANG_account_created', "你的账户已创建。");
- define('OGP_LANG_subject', "%s :: 账户信息");
- ?>
|