Agent-Logs-Url: https://github.com/GameServerPanel/GSP/sessions/9909a053-0a66-4453-a844-d3b80d727b27 Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com>
56 lines
3.5 KiB
PHP
56 lines
3.5 KiB
PHP
<?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('LANG_module_id', "Модуль ID");
|
||
define('LANG_module_name', "Название модуля");
|
||
define('LANG_module_folder', "Папка модуля");
|
||
define('LANG_module_version', "Версия модуля");
|
||
define('LANG_db_version', "Версия БД");
|
||
define('LANG_modules_available_for_install', "Данные модули доступны для установки:");
|
||
define('LANG_install', "Установить");
|
||
define('LANG_uninstall', "Удалить");
|
||
define('LANG_modules', "Модули");
|
||
define('LANG_update_modules', "Обновить модули");
|
||
define('LANG_no_installed_modules', "Установленных модулей не найдено");
|
||
define('LANG_not_complete', "Удаление/Установка была не полностью завершена и может работать не корректно. ВНИМАНИЕ: данные из базы данных могут быть утеряны!");
|
||
define('LANG_core_mods_installed', "Установленные базовые модули:");
|
||
define('LANG_custom_mods_installed', "Установленные пользовательские модули:");
|
||
define('LANG_installing_module', "Установка модуля... '%s'");
|
||
define('LANG_successfully_installed_module', "Модуль установлен корректно %s.");
|
||
define('LANG_failed_to_install_module', "Не удалось установить модуль %s.");
|
||
define('LANG_adding_module', "Добавление модуля: '%s'.");
|
||
define('LANG_module_already_installed', "Модуль: '%s' уже установлен.");
|
||
define('LANG_uninstalling_module', "Удаление модуля '%s'");
|
||
define('LANG_successfully_uninstalled_module', "Модуль успешно удален %s.");
|
||
define('LANG_failed_to_uninstall_module', "Не удалось удалить модуль %s.");
|
||
define('LANG_module_file_missing', "в каталоге отсутствует файл module.php.");
|
||
define('LANG_module_file_missing_info', "отсутствует необходимая информация.");
|
||
define('LANG_query_failed', "Не удалось выполнить запрос");
|
||
define('LANG_query_failed_2', "в базу данных.");
|
||
define('LANG_failed_del_db', "Не удалось удалить модуль из базы данных.");
|
||
define('LANG_updated_module', "Модуль обовлён: '%s'.");
|
||
define('LANG_updating_modules', "Обновление модулей");
|
||
define('LANG_updating_finished', "Обновление завершено");
|
||
define('LANG_prereqs_missing', "Необходимые требования для %sдолжны быть установлены на сервер до того, как %s может быть установлен.");
|
||
?>
|