modulemanager.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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', "Moduł ID");
  25. define('OGP_LANG_module_name', "Nazwa modułu");
  26. define('OGP_LANG_module_folder', "Moduł Folder");
  27. define('OGP_LANG_module_version', "Wersja modułu");
  28. define('OGP_LANG_db_version', "Wersja DB");
  29. define('OGP_LANG_modules_available_for_install', "Dostępne są następujące moduły do instalacji");
  30. define('OGP_LANG_install', "Instalacja");
  31. define('OGP_LANG_uninstall', "Odinstaluj");
  32. define('OGP_LANG_modules', "Moduły");
  33. define('OGP_LANG_update_modules', "Aktualizuj Moduły");
  34. define('OGP_LANG_no_installed_modules', "Nie znaleziono zainstalowanych modułów.");
  35. define('OGP_LANG_not_complete', "Funkcja instalacji / deinstalacji nie jest kompletna i może nie działać prawidłowo.
  36. UWAGA: Utrata danych może nastąpić w bazie OGP!");
  37. define('OGP_LANG_core_mods_installed', "Zainstalowane Moduły podstawowe:");
  38. define('OGP_LANG_custom_mods_installed', "Zainstalowane moduły niestandardowe:");
  39. define('OGP_LANG_installing_module', "Instalowanie modułu '%s'");
  40. define('OGP_LANG_successfully_installed_module', "Został zainstalowany moduł %s.");
  41. define('OGP_LANG_failed_to_install_module', "Nie można zainstalować moduł %s.");
  42. define('OGP_LANG_adding_module', "Dodanie modułu o nazwie '%s'.");
  43. define('OGP_LANG_module_already_installed', "Moduł o nazwie '%s' jest już zainstalowany.");
  44. define('OGP_LANG_uninstalling_module', "Odinstalowanie modułu '%s'");
  45. define('OGP_LANG_successfully_uninstalled_module', "Moduł został odinstalowany %s.");
  46. define('OGP_LANG_failed_to_uninstall_module', "Nie udało się odinstalować moduł %s.");
  47. define('OGP_LANG_module_file_missing', "brakuje katalogu module.php plik.");
  48. define('OGP_LANG_module_file_missing_info', "brakuje wymaganych informacji.");
  49. define('OGP_LANG_query_failed', "Nie można wykonać zapytania");
  50. define('OGP_LANG_query_failed_2', "do bazy danych.");
  51. define('OGP_LANG_failed_del_db', "Nie udało się usunąć modułu z bazy danych.");
  52. define('OGP_LANG_updated_module', "Aktualizowanie modułu: '%s'.");
  53. define('OGP_LANG_updating_modules', "Aktualizacja Modułów");
  54. define('OGP_LANG_updating_finished', "Aktualizacja zakończona");
  55. define('OGP_LANG_prereqs_missing', "Prerequisites of %s must be installed on the server before %s can be installed.");
  56. ?>