43 lines
No EOL
2.1 KiB
PHP
Executable file
43 lines
No EOL
2.1 KiB
PHP
Executable file
<?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.
|
||
*
|
||
*/
|
||
|
||
include 'update.php';
|
||
define('OGP_LANG_unable_download', "Невозможно загрузить %s.");
|
||
define('OGP_LANG_md5_failed', "Тест MD5 не удалось по %s, попробуйте еще раз.");
|
||
define('OGP_LANG_uninstall', "Отключить");
|
||
define('OGP_LANG_install', "Установить");
|
||
define('OGP_LANG_uptodate', "Актуальное");
|
||
define('OGP_LANG_update_available', "Доступно Обновление");
|
||
define('OGP_LANG_not_installed', "Не установлен");
|
||
define('OGP_LANG_installed', "Установлен");
|
||
define('OGP_LANG_download_update', "Скачать и Обновить");
|
||
define('OGP_LANG_are_you_sure', "Вы уверены");
|
||
define('OGP_LANG_uninstalling_module_dataloss', "Отключение модуля включает в себя потерю всех данных, связанных.");
|
||
define('OGP_LANG_remove_files_for', "Хотите удалить все файлы для");
|
||
define('OGP_LANG_confirm', "Подтвердите");
|
||
define('OGP_LANG_cancel', "Отменить");
|
||
define('OGP_LANG_extra_themes', "Дополнительные темы");
|
||
define('OGP_LANG_extra_modules', "Дополнительные модули");
|
||
define('OGP_LANG_search_for_updates', "Проверить наличие обновления");
|
||
?>
|