install.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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_install_lang', "选择您偏好的语言");
  25. define('OGP_LANG_install_welcome', "欢迎使用 Open Game Panel 安装程序");
  26. define('OGP_LANG_file_permission_check', "检查所需文件权限");
  27. define('OGP_LANG_OK', "确定");
  28. define('OGP_LANG_write_permission_required', "需要写入权限");
  29. define('OGP_LANG_execute_permission_required', "需要执行权限");
  30. define('OGP_LANG_create_an_empty_file', "创建一个空文件。");
  31. define('OGP_LANG_found', "已找到");
  32. define('OGP_LANG_not_found', "未找到");
  33. define('OGP_LANG_pear_xxtea_info', "OGP 使用需要 Pear Crypt_XXTEA。在大多数 Linux 发行版中,可以使用以下 Pear 命令安装此模块 'pear install Crypt_XXTEA-beta'。");
  34. define('OGP_LANG_refresh', "刷新");
  35. define('OGP_LANG_checking_required_modules', "检查所需模块");
  36. define('OGP_LANG_checking_optional_modules', "检查可选模块");
  37. define('OGP_LANG_database_type', "数据库类型");
  38. define('OGP_LANG_database_settings', "数据库访问设置");
  39. define('OGP_LANG_database_hostname', "数据库主机名");
  40. define('OGP_LANG_database_username', "数据库用户名");
  41. define('OGP_LANG_database_password', "数据库密码");
  42. define('OGP_LANG_database_name', "数据库名称");
  43. define('OGP_LANG_database_prefix', "数据库前缀");
  44. define('OGP_LANG_next', "下一步");
  45. define('OGP_LANG_encryption_key', "加密密钥(代理)");
  46. define('OGP_LANG_agent_port', "端口(代理)");
  47. define('OGP_LANG_unable_to_write_config', "无法写入配置文件。请重新检查写入权限。");
  48. define('OGP_LANG_admin_login_details', "管理员登录详情");
  49. define('OGP_LANG_config_written', "配置文件已成功创建。");
  50. define('OGP_LANG_database_created', "数据库表已成功创建。");
  51. define('OGP_LANG_admin_login_details_info', "现在我们为您的 Open Game Panel 创建管理员用户。");
  52. define('OGP_LANG_username', "用户名");
  53. define('OGP_LANG_repeat_password', "重复密码");
  54. define('OGP_LANG_email', "电子邮件地址");
  55. define('OGP_LANG_back', "返回");
  56. define('OGP_LANG_database_setup_failure', "无法创建数据库。请重新检查您的数据库配置。");
  57. define('OGP_LANG_php_version_check', "检查 PHP 版本");
  58. define('OGP_LANG_invalid_username', "您输入了无效的用户名。");
  59. define('OGP_LANG_password_too_short', "您的密码太短。它必须至少 '%d' 个字符长。");
  60. define('OGP_LANG_password_contains_invalid_characters', "您的密码包含无效字符。");
  61. define('OGP_LANG_invalid_email_address', "您输入了无效的电子邮件地址。");
  62. define('OGP_LANG_setup_complete', "设置已成功完成。Open Game Panel 现在已准备好使用。");
  63. define('OGP_LANG_remove_install_and_secure_config', "您应该从服务器上删除 install.php 并将您的 includes/config.inc.php 的权限改回 644,以确保安全。");
  64. define('OGP_LANG_go_to_panel', "点击这里登录您的 OGP。");
  65. define('OGP_LANG_unable_to_resolve', "如果您无法解决此问题,请访问 OGP 网站 ");
  66. define('OGP_LANG_slogan', "开源的一员!");
  67. define('OGP_LANG_default_welcome_title_message', "欢迎!<b style='font-size:12px; font-weight:normal;'>您可以在 '<a href='?m=settings&p=themes'>主题设置</a>' 下的 '<a href='?m=administration&p=main'>管理</a>' 标签中更改此标题。</b>");
  68. ?>