| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?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_module_id', "模块ID");
- define('OGP_LANG_module_name', "模块名称");
- define('OGP_LANG_module_folder', "模块文件夹");
- define('OGP_LANG_module_version', "模块版本");
- define('OGP_LANG_db_version', "数据库版本");
- define('OGP_LANG_modules_available_for_install', "可供安装的自定义模块:");
- define('OGP_LANG_install', "安装");
- define('OGP_LANG_uninstall', "卸载");
- define('OGP_LANG_modules', "模块");
- define('OGP_LANG_update_modules', "更新模块");
- define('OGP_LANG_no_installed_modules', "未找到已安装的模块。");
- define('OGP_LANG_not_complete', "安装/卸载功能未完成,可能无法正常工作。警告:可能会导致OGP数据库中的数据丢失!");
- define('OGP_LANG_core_mods_installed', "已安装的核心模块:");
- define('OGP_LANG_custom_mods_installed', "已安装的自定义模块:");
- define('OGP_LANG_installing_module', "正在安装模块 '%s'");
- define('OGP_LANG_successfully_installed_module', "成功安装模块 %s。");
- define('OGP_LANG_failed_to_install_module', "安装模块 %s 失败。");
- define('OGP_LANG_adding_module', "正在添加名为 '%s' 的模块。");
- define('OGP_LANG_module_already_installed', "名为 '%s' 的模块已经安装。");
- define('OGP_LANG_uninstalling_module', "正在卸载模块 '%s'");
- define('OGP_LANG_successfully_uninstalled_module', "成功卸载模块 %s。");
- define('OGP_LANG_failed_to_uninstall_module', "卸载模块 %s 失败。");
- define('OGP_LANG_module_file_missing', "目录缺少 module.php 文件。");
- define('OGP_LANG_module_file_missing_info', "缺少所需的信息。");
- define('OGP_LANG_query_failed', "执行查询失败");
- define('OGP_LANG_query_failed_2', "到数据库。");
- define('OGP_LANG_failed_del_db', "从数据库删除模块失败。");
- define('OGP_LANG_updated_module', "更新的模块:'%s'。");
- define('OGP_LANG_updating_modules', "正在更新模块");
- define('OGP_LANG_updating_finished', "更新完成");
- define('OGP_LANG_prereqs_missing', "%s 的先决条件必须在服务器上安装,然后才能安装 %s。");
- ?>
|