| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- /*
- *
- * OGP - Open Game Panel
- * Copyright (C) 2008 - 2016 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('module_id', "Модуль ID");
- define('module_name', "Название модуля");
- define('module_folder', "Папка модуля");
- define('module_version', "Версия модуля");
- define('db_version', "Версия БД");
- define('modules_available_for_install', "Данные модули доступны для установки:");
- define('install', "Установить");
- define('modules', "Модули");
- define('update_modules', "Обновить модули");
- define('no_installed_modules', "Установленных модулей не найдено");
- define('not_complete', "Удаление/Установка была не полностью завершена и может работать не корректно. ВНИМАНИЕ: данные из базы данных могут быть утеряны!");
- define('core_mods_installed', "Core Modules Installed:");
- define('custom_mods_installed', "Custom Modules Installed:");
- define('installing_module', "Установка модуля... '%s'");
- define('successfully_installed_module', "Модуль установлен корректно %s.");
- define('failed_to_install_module', "Не удалось установить модуль %s.");
- define('adding_module', "Добавление модуля: '%s'.");
- define('module_already_installed', "Модуль: '%s' уже установлен.");
- define('uninstalling_module', "Удаление модуля '%s'");
- define('successfully_uninstalled_module', "Модуль успешно удален %s.");
- define('failed_to_uninstall_module', "Не удалось удалить модуль %s.");
- define('module_file_missing', "в каталоге отсутствует файл module.php.");
- define('module_file_missing_info', "отсутствует необходимая информация.");
- define('query_failed', "Не удалось выполнить запрос");
- define('query_failed_2', "в базу данных.");
- define('failed_del_db', "Не удалось удалить модуль из базы данных.");
- define('updated_module', "Модуль обовлён: '%s'.");
- define('updating_modules', "Обновление модулей");
- define('updating_finished', "Обновление завершено");
- ?>
|