modulemanager.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2016 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('module_id', "Модуль ID");
  25. define('module_name', "Название модуля");
  26. define('module_folder', "Папка модуля");
  27. define('module_version', "Версия модуля");
  28. define('db_version', "Версия БД");
  29. define('modules_available_for_install', "Данные модули доступны для установки:");
  30. define('install', "Установить");
  31. define('modules', "Модули");
  32. define('update_modules', "Обновить модули");
  33. define('no_installed_modules', "Установленных модулей не найдено");
  34. define('not_complete', "Удаление/Установка была не полностью завершена и может работать не корректно. ВНИМАНИЕ: данные из базы данных могут быть утеряны!");
  35. define('core_mods_installed', "Core Modules Installed:");
  36. define('custom_mods_installed', "Custom Modules Installed:");
  37. define('installing_module', "Установка модуля... '%s'");
  38. define('successfully_installed_module', "Модуль установлен корректно %s.");
  39. define('failed_to_install_module', "Не удалось установить модуль %s.");
  40. define('adding_module', "Добавление модуля: '%s'.");
  41. define('module_already_installed', "Модуль: '%s' уже установлен.");
  42. define('uninstalling_module', "Удаление модуля '%s'");
  43. define('successfully_uninstalled_module', "Модуль успешно удален %s.");
  44. define('failed_to_uninstall_module', "Не удалось удалить модуль %s.");
  45. define('module_file_missing', "в каталоге отсутствует файл module.php.");
  46. define('module_file_missing_info', "отсутствует необходимая информация.");
  47. define('query_failed', "Не удалось выполнить запрос");
  48. define('query_failed_2', "в базу данных.");
  49. define('failed_del_db', "Не удалось удалить модуль из базы данных.");
  50. define('updated_module', "Модуль обовлён: '%s'.");
  51. define('updating_modules', "Обновление модулей");
  52. define('updating_finished', "Обновление завершено");
  53. ?>