update.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2017 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('curl_needed', "Для отображения этой страницы требуется модуль PHP curl.");
  26. define('no_access', "У вас не достаточно прав для отображения этой страницы.");
  27. define('dwl_update', "Загрузка обновления...");
  28. define('dwl_complete', "Загрузка завершена");
  29. define('install_update', "Установка обновления...");
  30. define('update_complete', "Обновление установлено");
  31. define('ignored_files', "%s ignored files.");
  32. define('not_updated_files_blacklisted', "Not updated/installed files (Blacklisted):<br>%s");
  33. define('latest_version', "Последняя версия");
  34. define('panel_version', "Версия панели");
  35. define('update_now', "Обновить сейчас");
  36. define('the_panel_is_up_to_date', "The Panel is up-to-date.");
  37. define('files_overwritten', "%s files overwritten");
  38. define('files_not_overwritten', "%s files NOT overwritten due to blacklist");
  39. define('can_not_update_non_writable_files', "Can not update because the following files/folders are not writable");
  40. define('dwl_failed', "The download link is not available: \"%s\".<br>Try again later.");
  41. define('temp_folder_not_writable', "The download can not be placed, because Apache does not have write permision at the system temporary folder(%s).");
  42. define('base_dir_not_writable', "The Panel can not update, because Apache does not have write permission on \"%s\" folder.");
  43. define('new_files', "%s new files.");
  44. define('updated_files', "Updated files:<br>%s");
  45. define('select_mirror', "Select mirror");
  46. define('view_changes', "View changes");
  47. define('get_x_revison_messages_may_take_some_time', "Get %s revison messages may take some time.");
  48. define('updating_modules', "Обновление модулей");
  49. define('updating_finished', "Обновление завершено");
  50. define('updated_module', "Модуль обовлён: '%s'.");
  51. define('blacklist_files', "Blacklist files");
  52. define('blacklist_files_info', "All marked files will not be updated.");
  53. define('save_to_blacklist', "Save to blacklist");
  54. define('no_new_updates', "Обновлений не обнаружено.");
  55. define('module_file_missing', "directory is missing the module.php file.");
  56. define('query_failed', "Failed to execute query");
  57. define('query_failed_2', "to database.");
  58. define('missing_zip_extension', "The php-zip extension is not loaded. Please enable it to use the update module.");
  59. ?>