addonsmanager.php 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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_install_plugin', "Instaluj Plugin");
  25. define('OGP_LANG_install_mappack', "Instaluj MapPack");
  26. define('OGP_LANG_install_config', "Instaluj Config");
  27. define('OGP_LANG_game_name', "Nazwa Gry");
  28. define('OGP_LANG_directory', "Ścieżka katalogu");
  29. define('OGP_LANG_remote_server', "Serwer Zdalny");
  30. define('OGP_LANG_select_addon', "Wybierz Dodatki");
  31. define('OGP_LANG_install', "Instaluj");
  32. define('OGP_LANG_failed_to_start_file_download', "Nie można uruchomić pobrania pliku.");
  33. define('OGP_LANG_no_games_servers_available', "Brak serwerów na twoim koncie.");
  34. define('OGP_LANG_addon_installed_successfully', "Dodatek zainstalowany pomyślnie.");
  35. define('OGP_LANG_path', "Ścieżka");
  36. define('OGP_LANG_wait_while_decompressing', "Poczekaj, aż plik %s zostanie rozpakowany.");
  37. define('OGP_LANG_addon_name', "Nazwa Dodatku");
  38. define('OGP_LANG_url', "Adres");
  39. define('OGP_LANG_select_game_type', "Wybierz Typ Gry");
  40. define('OGP_LANG_plugin', "Wtyczka");
  41. define('OGP_LANG_mappack', "Paczka Map");
  42. define('OGP_LANG_config', "Config");
  43. define('OGP_LANG_type', "Typ Dodatku");
  44. define('OGP_LANG_game', "Gra");
  45. define('OGP_LANG_show_all_addons', "Pokaż wszystkie Dodatki");
  46. define('OGP_LANG_show_addons_for_selected_type', "Pokaż dodatki dla wybranych typów");
  47. define('OGP_LANG_show_addons_for_selected_game', "Pokaż dodatki dla wybranych gier");
  48. define('OGP_LANG_linux_games', "Gry Linux:");
  49. define('OGP_LANG_windows_games', "Gry Windows:");
  50. define('OGP_LANG_create_addon', "Stwórz Dodatek");
  51. define('OGP_LANG_addons_db', "Baza danych Dodatki");
  52. define('OGP_LANG_addon_has_been_created', "Dodatek %s został stworzony.");
  53. define('OGP_LANG_remove_addon', "Usuń dodatek");
  54. define('OGP_LANG_fill_the_url_address_to_a_compressed_file', "Proszę wypełnić adresu URL do pakowania pliku.");
  55. define('OGP_LANG_fill_the_addon_name', "Proszę wypełnić nazwę dodatku.");
  56. define('OGP_LANG_select_an_addon_type', "Proszę wybrać typ dodatku.");
  57. define('OGP_LANG_select_a_game_type', "Wybierz tryb gry.");
  58. define('OGP_LANG_edit_addon', "Edytuj Dodatek");
  59. define('OGP_LANG_post-script', "Skrypt po instalacji(bash)");
  60. define('OGP_LANG_replacements', "Zamienniki:");
  61. define('OGP_LANG_addon_name_info', "Wprowadź nazwę dla tego dodatku, to jest nazwa autora dodatku.");
  62. define('OGP_LANG_url_info', "Wpisz adres internetowy, który zawiera plik do pobrania,jeśli skompresowane w zip lub tar.gz zostaną rozpakowane w katalogu głównym serwera lub w ścieżce podanej poniżej.");
  63. define('OGP_LANG_path_info', "Ścieżka musi być w stosunku do folderu na serwerze i nie zawierać ukośników na początku lub na końcu, np: cstrike/cfg. Jeśli pozostanie puste będzie katalog root głównego serwera.");
  64. define('OGP_LANG_post-script_info', "Wprowadź kod BASH, zostanie wykonane jako skrypt, można używać zamienników tekstowych do dostosowania instalacji, zostaną one zastąpione przez dane z serwera, na którym można zainstalować dodatek. Skrypt rozpoczyna się od katalogu głównego serwera lub określonej ścieżce.");
  65. define('OGP_LANG_show_to_group', "Pokaż w grupie");
  66. define('OGP_LANG_all_groups', "Wszystkie grupy");
  67. define('OGP_LANG_show_addons_for_selected_group', "Pokaż dodatki dla wybranej grupy");
  68. define('OGP_LANG_group', "Grupa");
  69. ?>