update.php 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. include('litefm.php');
  25. define('curl_needed', "Ta strona wymaga modułu PHP curl.");
  26. define('no_access', "Potrzebujesz uprawnień administratora, aby uzyskać dostęp do tej strony.");
  27. define('dwl_update', "Pobieranie Aktualizacji...");
  28. define('dwl_complete', "Pobieranie zakończone.");
  29. define('install_update', "Instalowanie aktualizacji...");
  30. define('update_complete', "Aktualizacja zakonczona.");
  31. define('ignored_files', "%s ignored files.");
  32. define('not_updated_files_blacklisted', "Not updated/installed files (Blacklisted):<br>%s");
  33. define('latest_version', "Najnowsza wersja");
  34. define('panel_version', "Wersja panelu");
  35. define('update_now', "Aktualizuj Teraz");
  36. define('the_panel_is_up_to_date', "Brak nowych aktualizacji.");
  37. define('files_overwritten', "%s pliki nadpisane.");
  38. define('can_not_update_non_writable_files', "Nie można zaktualizować, ponieważ następujące pliki / foldery nie są zapisywalne.");
  39. define('dwl_failed', "Adres pobierania nie jest dostepny: \"%s\".<br> Spróbuj ponownie później.");
  40. define('temp_folder_not_writable', "The download can not be placed because Apache does not have write permision at the system temporary folder(%s).");
  41. define('base_dir_not_writable', "The panel can not update because Apache does not have write permision at folder \"%s\".");
  42. define('new_files', "%s nowych plików.");
  43. define('updated_files', "Zaktualizowane pliki:<br>%s");
  44. define('select_mirror', "Wybierz żródło");
  45. define('view_changes', "Pokaż zmiany");
  46. define('get_x_revison_messages_may_take_some_time', "Get %s revison messages may take some time.");
  47. define('updating_modules', "Aktualizacja modułów");
  48. define('updating_finished', "Aktualizacja zakończona");
  49. define('updated_module', "Zaktualizowany moduł: '%s'.");
  50. define('blacklist_files', "<b>Czarna Lista</b>");
  51. define('blacklist_files_info', "- wszystkie wybrane pliki nie zostaną zaktualizowane.");
  52. define('save_to_blacklist', "Zapisz na czarnej liście");
  53. define('no_new_updates', "Brak nowych aktualizacji");
  54. ?>