modulemanager.php 2.5 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', "Moduł ID");
  25. define('module_name', "Nazwa modułu");
  26. define('module_folder', "Moduł Folder");
  27. define('module_version', "Wersja modułu");
  28. define('db_version', "DB Version");
  29. define('modules_available_for_install', "Dostępne są następujące moduły do instalacji");
  30. define('install', "Instalacja");
  31. define('modules', "Moduły");
  32. define('update_modules', "Update Modules");
  33. define('no_installed_modules', "Nie znaleziono zainstalowanych modułów.");
  34. define('not_complete', "The delete/install feature is not complete and might not work properly. WARNING: Data from ogp database might be lost!");
  35. define('core_mods_installed', "Core Modules Installed:");
  36. define('custom_mods_installed', "Custom Modules Installed:");
  37. define('installing_module', "Installing module '%s'");
  38. define('successfully_installed_module', "Został zainstalowany moduł %s.");
  39. define('failed_to_install_module', "Nie można zainstalować moduł %s.");
  40. define('adding_module', "Adding module called '%s'.");
  41. define('module_already_installed', "Module called '%s' is already installed.");
  42. define('uninstalling_module', "Uninstalling module '%s'");
  43. define('successfully_uninstalled_module', "Moduł został odinstalowany %s.");
  44. define('failed_to_uninstall_module', "Nie udało się odinstalować moduł %s.");
  45. define('module_file_missing', "directory is missing the module.php file.");
  46. define('module_file_missing_info', "is missing the required information.");
  47. define('query_failed', "Failed to execute query");
  48. define('query_failed_2', "to database.");
  49. define('failed_del_db', "Failed to delete module from database.");
  50. define('updated_module', "Updated module: '%s'.");
  51. define('updating_modules', "Updating Modules");
  52. define('updating_finished', "Updating Finished");
  53. ?>