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