1
0

update.php 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. include('litefm.php');
  25. define('OGP_LANG_curl_needed', "Для отображения этой страницы требуется модуль PHP curl.");
  26. define('OGP_LANG_no_access', "У вас не достаточно прав для отображения этой страницы.");
  27. define('OGP_LANG_dwl_update', "Загрузка обновления...");
  28. define('OGP_LANG_dwl_complete', "Загрузка завершена");
  29. define('OGP_LANG_install_update', "Установка обновления...");
  30. define('OGP_LANG_update_complete', "Обновление установлено");
  31. define('OGP_LANG_ignored_files', "%s ignored file(s)");
  32. define('OGP_LANG_not_updated_files_blacklisted', "Файлы которые не будут обновляться (Черный список): <br>%s");
  33. define('OGP_LANG_latest_version', "Последняя версия");
  34. define('OGP_LANG_panel_version', "Версия панели");
  35. define('OGP_LANG_update_now', "Обновить сейчас");
  36. define('OGP_LANG_the_panel_is_up_to_date', "Панель обновлена!");
  37. define('OGP_LANG_files_overwritten', "Перезаписано файлов - %s");
  38. define('OGP_LANG_files_not_overwritten', "%sфайл НЕ перезаписан, так как он в черном списке");
  39. define('OGP_LANG_can_not_update_non_writable_files', "Не возможно выполнить Обновление так как файл/папка не доступны для записи");
  40. define('OGP_LANG_dwl_failed', "Ссылка для скачивания недоступна.: \"%s\".<br> Попробуйте позже. ");
  41. define('OGP_LANG_temp_folder_not_writable', "Не возможно выполнить загрузку сюда, потому что Apache не имеет права на запись во временную директорию(%s).");
  42. define('OGP_LANG_base_dir_not_writable', "Панель не обновлена, потому что Apache не имеет права на запись в папку \"%s\".");
  43. define('OGP_LANG_new_files', "Новых файлов %s");
  44. define('OGP_LANG_updated_files', "Обновленные файлы:<br>%s");
  45. define('OGP_LANG_select_mirror', "Выбор зеркала");
  46. define('OGP_LANG_view_changes', "Посмотреть изменения");
  47. define('OGP_LANG_updating_modules', "Обновление модулей");
  48. define('OGP_LANG_updating_finished', "Обновление завершено");
  49. define('OGP_LANG_updated_module', "Модуль обовлён: '%s'.");
  50. define('OGP_LANG_blacklist_files', "Черный список файлов");
  51. define('OGP_LANG_blacklist_files_info', "Все отмеченные файлы не будут обновляться.");
  52. define('OGP_LANG_save_to_blacklist', "Сохранить Черный список");
  53. define('OGP_LANG_no_new_updates', "Обновлений не обнаружено.");
  54. define('OGP_LANG_module_file_missing', "В каталоге отсутствует файл module.php.");
  55. define('OGP_LANG_query_failed', "Не удалось выполнить запрос");
  56. define('OGP_LANG_query_failed_2', "к Базе Данных.");
  57. define('OGP_LANG_missing_zip_extension', "Расширение php-zip не установлено. Пожалуйста включите его что бы использовать модуль обновления.");
  58. ?>