addonsmanager.php 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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_plugin', "安装插件");
  25. define('OGP_LANG_install_mappack', "安装地图包");
  26. define('OGP_LANG_install_config', "安装配置");
  27. define('OGP_LANG_game_name', "游戏名称");
  28. define('OGP_LANG_directory', "目录路径");
  29. define('OGP_LANG_remote_server', "远程服务器");
  30. define('OGP_LANG_select_addon', "选择插件");
  31. define('OGP_LANG_install', "安装");
  32. define('OGP_LANG_failed_to_start_file_download', "文件下载启动失败。");
  33. define('OGP_LANG_no_games_servers_available', "您的账户中没有可用的游戏服务器。");
  34. define('OGP_LANG_addon_installed_successfully', "插件安装成功");
  35. define('OGP_LANG_path', "路径");
  36. define('OGP_LANG_wait_while_decompressing', "等待文件 %s 解压缩。");
  37. define('OGP_LANG_addon_name', "插件名称");
  38. define('OGP_LANG_url', "URL");
  39. define('OGP_LANG_select_game_type', "选择游戏类型");
  40. define('OGP_LANG_plugin', "插件");
  41. define('OGP_LANG_mappack', "地图包");
  42. define('OGP_LANG_config', "配置");
  43. define('OGP_LANG_type', "插件类型");
  44. define('OGP_LANG_game', "游戏");
  45. define('OGP_LANG_show_all_addons', "显示所有插件");
  46. define('OGP_LANG_show_addons_for_selected_type', "根据所选类型显示插件");
  47. define('OGP_LANG_show_addons_for_selected_game', "根据所选游戏显示插件");
  48. define('OGP_LANG_linux_games', "Linux 游戏:");
  49. define('OGP_LANG_windows_games', "Windows 游戏:");
  50. define('OGP_LANG_create_addon', "创建插件");
  51. define('OGP_LANG_addons_db', "插件数据库");
  52. define('OGP_LANG_addon_has_been_created', "插件 %s 已被创建。");
  53. define('OGP_LANG_remove_addon', "移除插件");
  54. define('OGP_LANG_fill_the_url_address_to_a_compressed_file', "请填写压缩文件的 URL 地址。");
  55. define('OGP_LANG_fill_the_addon_name', "请填写插件包的名称。");
  56. define('OGP_LANG_select_an_addon_type', "请选择一个插件类型。");
  57. define('OGP_LANG_select_a_game_type', "请选择一个游戏类型。");
  58. define('OGP_LANG_edit_addon', "编辑插件");
  59. define('OGP_LANG_post-script', "安装后脚本(bash)");
  60. define('OGP_LANG_replacements', "替换项:");
  61. define('OGP_LANG_addon_name_info', "输入此插件的名称,这是用户看到的名称。");
  62. define('OGP_LANG_url_info', "输入包含要下载文件的网址,如果是 zip 或 tar.gz 格式,将在服务器的根目录或下面给出的路径中解压缩。");
  63. define('OGP_LANG_path_info', "路径必须相对于服务器文件夹,并且开头和结尾不包含斜杠,例如:cstrike/cfg。如果留空将使用服务器根路径。");
  64. define('OGP_LANG_post-script_info', "输入 Bash 语言代码,这将作为脚本执行,您可以使用文本替换来定制安装,它们将被替换为您在其中安装插件的服务器的数据。脚本将从服务器的根文件夹或指定的路径开始。");
  65. define('OGP_LANG_show_to_group', "显示给群组");
  66. define('OGP_LANG_all_groups', "所有群组");
  67. define('OGP_LANG_show_addons_for_selected_group', "为选定的群组显示插件");
  68. define('OGP_LANG_group', "群组");
  69. ?>