modulemanager.php 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2018 The OGP Development Team
  6. *
  7. * http://www.opengamepanel.org/
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. *
  23. */
  24. define('OGP_LANG_module_id', "Модуль ID");
  25. define('OGP_LANG_module_name', "Название модуля");
  26. define('OGP_LANG_module_folder', "Папка модуля");
  27. define('OGP_LANG_module_version', "Версия модуля");
  28. define('OGP_LANG_db_version', "Версия БД");
  29. define('OGP_LANG_modules_available_for_install', "Данные модули доступны для установки:");
  30. define('OGP_LANG_install', "Установить");
  31. define('OGP_LANG_uninstall', "Удалить");
  32. define('OGP_LANG_modules', "Модули");
  33. define('OGP_LANG_update_modules', "Обновить модули");
  34. define('OGP_LANG_no_installed_modules', "Установленных модулей не найдено");
  35. define('OGP_LANG_not_complete', "Удаление/Установка была не полностью завершена и может работать не корректно. ВНИМАНИЕ: данные из базы данных могут быть утеряны!");
  36. define('OGP_LANG_core_mods_installed', "Установленные базовые модули:");
  37. define('OGP_LANG_custom_mods_installed', "Установленные пользовательские модули:");
  38. define('OGP_LANG_installing_module', "Установка модуля... '%s'");
  39. define('OGP_LANG_successfully_installed_module', "Модуль установлен корректно %s.");
  40. define('OGP_LANG_failed_to_install_module', "Не удалось установить модуль %s.");
  41. define('OGP_LANG_adding_module', "Добавление модуля: '%s'.");
  42. define('OGP_LANG_module_already_installed', "Модуль: '%s' уже установлен.");
  43. define('OGP_LANG_uninstalling_module', "Удаление модуля '%s'");
  44. define('OGP_LANG_successfully_uninstalled_module', "Модуль успешно удален %s.");
  45. define('OGP_LANG_failed_to_uninstall_module', "Не удалось удалить модуль %s.");
  46. define('OGP_LANG_module_file_missing', "в каталоге отсутствует файл module.php.");
  47. define('OGP_LANG_module_file_missing_info', "отсутствует необходимая информация.");
  48. define('OGP_LANG_query_failed', "Не удалось выполнить запрос");
  49. define('OGP_LANG_query_failed_2', "в базу данных.");
  50. define('OGP_LANG_failed_del_db', "Не удалось удалить модуль из базы данных.");
  51. define('OGP_LANG_updated_module', "Модуль обовлён: '%s'.");
  52. define('OGP_LANG_updating_modules', "Обновление модулей");
  53. define('OGP_LANG_updating_finished', "Обновление завершено");
  54. define('OGP_LANG_prereqs_missing', "Необходимые требования для %sдолжны быть установлены на сервер до того, как %s может быть установлен.");
  55. ?>