2015-07-07 00:56:27 +00:00
/* RetroArch - A frontend for libretro.
2016-01-10 03:06:50 +00:00
* Copyright ( C ) 2011 - 2016 - Daniel De Matteis
2015-07-07 00:56:27 +00:00
*
* RetroArch is free software : you can redistribute it and / or modify it under the terms
* of the GNU General Public License as published by the Free Software Found -
* ation , either version 3 of the License , or ( at your option ) any later version .
*
* RetroArch is distributed in the hope that it will be useful , but WITHOUT ANY WARRANTY ;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE . See the GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License along with RetroArch .
* If not , see < http : //www.gnu.org/licenses/>.
*/
2016-06-19 22:31:13 +00:00
# include <stdint.h>
# include <string.h>
2015-07-07 00:56:27 +00:00
# include "../msg_hash.h"
2016-07-24 09:59:24 +00:00
int menu_hash_get_help_pl_enum ( enum msg_hash_enums msg , char * s , size_t len )
{
int ret = 0 ;
switch ( msg )
{
case MSG_UNKNOWN :
default :
ret = - 1 ;
break ;
}
return ret ;
}
2016-06-14 13:04:49 +00:00
const char * msg_hash_to_str_pl ( enum msg_hash_enums msg )
2015-07-07 00:56:27 +00:00
{
2016-06-14 13:04:49 +00:00
switch ( msg )
2015-07-07 00:56:27 +00:00
{
2015-07-07 22:16:38 +00:00
case MSG_PROGRAM :
return " RetroArch " ;
case MSG_MOVIE_RECORD_STOPPED :
return " Zatrzymano nagrywanie filmu. " ;
case MSG_MOVIE_PLAYBACK_ENDED :
2016-08-23 18:45:29 +00:00
return " ZakoÅ czono odtwarzanie filmu. " ;
2015-07-07 22:16:38 +00:00
case MSG_AUTOSAVE_FAILED :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ zainicjalizowaÄ automatycznego zapisu. " ;
2015-07-07 22:16:38 +00:00
case MSG_NETPLAY_FAILED_MOVIE_PLAYBACK_HAS_STARTED :
2016-08-23 18:45:29 +00:00
return " Odtwarzanie filmu w toku. Nie można rozpoczÄ
Ä gry sieciowej. " ;
2015-07-07 22:16:38 +00:00
case MSG_NETPLAY_FAILED :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ zainicjalizowaÄ gry sieciowej. " ;
2015-07-07 22:16:38 +00:00
case MSG_LIBRETRO_ABI_BREAK :
2016-08-23 18:45:29 +00:00
return " zostaŠskompilowany dla innej wersji libretro, różnej od obecnie używanej. " ;
2015-07-07 22:16:38 +00:00
case MSG_REWIND_INIT_FAILED_NO_SAVESTATES :
2016-08-23 18:45:29 +00:00
return " Implementacja nie wspiera zapisywania stanu. Przewijanie nie jest możliwe. " ;
2015-07-07 22:16:38 +00:00
case MSG_REWIND_INIT_FAILED_THREADED_AUDIO :
2016-08-23 18:45:29 +00:00
return " Implementacja używa osobnego wÄ
tku do przetwarzania dźwiÄ ku. Przewijanie nie jest możliwe. " ;
2015-07-07 22:16:38 +00:00
case MSG_REWIND_INIT_FAILED :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ zainicjalizowaÄ bufora przewijania. Przewijanie zostanie wyÅ Ä
czone. " ;
2015-07-07 22:16:38 +00:00
case MSG_REWIND_INIT :
return " Inicjalizowanie bufora przewijania o rozmiarze " ;
case MSG_CUSTOM_TIMING_GIVEN :
return " Wprowadzono niestandardowy timing " ;
case MSG_VIEWPORT_SIZE_CALCULATION_FAILED :
2016-08-23 18:45:29 +00:00
return " Obliczanie rozmiaru viewportu nie powiodÅ o siÄ ! Kontynuowanie z użyciem surowych danych. Prawdopodobnie nie bÄ dzie to dziaÅ aÅ o poprawnie... " ;
2015-07-07 22:16:38 +00:00
case MSG_HW_RENDERED_MUST_USE_POSTSHADED_RECORDING :
2016-08-23 18:45:29 +00:00
return " Ten rdzeÅ libretro używa renderowania sprzÄ towego. Konieczne jest użycie nagrywania wraz z zaaplikowanymi shaderami. " ;
2015-07-07 22:16:38 +00:00
case MSG_RECORDING_TO :
return " Nagrywanie do " ;
case MSG_DETECTED_VIEWPORT_OF :
return " Wykrywanie viewportu " ;
case MSG_TAKING_SCREENSHOT :
return " Zapisywanie zrzutu. " ;
case MSG_FAILED_TO_TAKE_SCREENSHOT :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ zapisaÄ zrzutu. " ;
2015-07-07 22:16:38 +00:00
case MSG_FAILED_TO_START_RECORDING :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ rozpoczÄ
Ä nagrywania. " ;
2015-07-07 22:16:38 +00:00
case MSG_RECORDING_TERMINATED_DUE_TO_RESIZE :
return " Przerwano nagrywanie z powodu zmiany rozmiaru. " ;
case MSG_USING_LIBRETRO_DUMMY_CORE_RECORDING_SKIPPED :
2016-08-23 18:45:29 +00:00
return " Atrapa rdzenia w użyciu. Pomijanie nagrywania. " ;
2015-07-07 00:56:27 +00:00
case MSG_UNKNOWN :
2015-07-07 22:16:38 +00:00
return " Nieznane " ;
case MSG_LOADING_CONTENT_FILE :
2016-08-23 18:45:29 +00:00
return " Wczytywanie pliku treÅ ci " ;
2015-07-07 00:56:27 +00:00
case MSG_RECEIVED :
2015-07-07 22:16:38 +00:00
return " otrzymano " ;
2015-07-07 00:56:27 +00:00
case MSG_UNRECOGNIZED_COMMAND :
2015-07-07 22:16:38 +00:00
return " Nieznana komenda " ;
2015-07-07 00:56:27 +00:00
case MSG_SENDING_COMMAND :
2016-08-23 18:45:29 +00:00
return " WysyÅ anie komendy " ;
2015-07-07 00:56:27 +00:00
case MSG_GOT_INVALID_DISK_INDEX :
2016-08-23 18:45:29 +00:00
return " Otrzymano nieprawidÅ owy indeks dysku. " ;
2015-07-07 00:56:27 +00:00
case MSG_FAILED_TO_REMOVE_DISK_FROM_TRAY :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ usunÄ
Ä dysku z tacki. " ;
2015-07-07 00:56:27 +00:00
case MSG_REMOVED_DISK_FROM_TRAY :
2016-08-23 18:45:29 +00:00
return " UsuniÄ to dysk z tacki. " ;
2015-07-07 00:56:27 +00:00
case MSG_VIRTUAL_DISK_TRAY :
2015-07-07 22:16:38 +00:00
return " wirtualna tacka. " ; /* this is funny */
2015-07-07 00:56:27 +00:00
case MSG_FAILED_TO :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ " ;
2015-07-07 00:56:27 +00:00
case MSG_TO :
2015-07-07 22:16:38 +00:00
return " do " ;
2015-07-07 00:56:27 +00:00
case MSG_SAVING_RAM_TYPE :
2015-07-07 22:16:38 +00:00
return " Zapisywanie typu RAM " ;
2015-07-07 00:56:27 +00:00
case MSG_SAVING_STATE :
2015-07-07 22:16:38 +00:00
return " Zapisywanie stanu " ;
2015-07-07 00:56:27 +00:00
case MSG_LOADING_STATE :
2015-07-07 22:16:38 +00:00
return " Wczytywanie stanu " ;
2015-07-07 00:56:27 +00:00
case MSG_FAILED_TO_LOAD_MOVIE_FILE :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ wczytaÄ pliku filmu " ;
2015-07-07 00:56:27 +00:00
case MSG_FAILED_TO_LOAD_CONTENT :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ wczytaÄ treÅ ci " ;
2015-07-07 00:56:27 +00:00
case MSG_COULD_NOT_READ_CONTENT_FILE :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ odczytaÄ pliku treÅ ci " ;
2015-07-07 00:56:27 +00:00
case MSG_GRAB_MOUSE_STATE :
2015-07-07 22:16:38 +00:00
return " Grab mouse state " ;
2015-07-07 00:56:27 +00:00
case MSG_PAUSED :
2015-07-07 22:16:38 +00:00
return " Wstrzymano. " ;
2015-07-07 00:56:27 +00:00
case MSG_UNPAUSED :
2015-07-07 22:16:38 +00:00
return " Wznowiono. " ;
2015-07-07 00:56:27 +00:00
case MSG_FAILED_TO_LOAD_OVERLAY :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ wczytaÄ nakÅ adki. " ;
2015-07-07 00:56:27 +00:00
case MSG_FAILED_TO_UNMUTE_AUDIO :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ przywróciÄ dźwiÄ ku. " ;
2015-07-07 00:56:27 +00:00
case MSG_AUDIO_MUTED :
2016-08-23 18:45:29 +00:00
return " Wyciszono dźwiÄ k. " ;
2015-07-07 00:56:27 +00:00
case MSG_AUDIO_UNMUTED :
2016-08-23 18:45:29 +00:00
return " Przywrócono dźwiÄ k. " ;
2015-07-07 00:56:27 +00:00
case MSG_RESET :
2015-07-07 22:16:38 +00:00
return " Reset " ;
2015-07-07 00:56:27 +00:00
case MSG_FAILED_TO_LOAD_STATE :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ wczytaÄ stanu z " ;
2015-07-07 00:56:27 +00:00
case MSG_FAILED_TO_SAVE_STATE_TO :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ zapisaÄ stanu do " ;
2015-07-07 00:56:27 +00:00
case MSG_FAILED_TO_SAVE_SRAM :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ zapisaÄ SRAM " ;
2015-07-07 00:56:27 +00:00
case MSG_STATE_SIZE :
2015-07-07 22:16:38 +00:00
return " Rozmiar stanu " ;
case MSG_FOUND_SHADER :
return " Znaleziono shader " ;
case MSG_SRAM_WILL_NOT_BE_SAVED :
return " SRAM nie zostanie zapisany. " ;
2015-07-07 00:56:27 +00:00
case MSG_BLOCKING_SRAM_OVERWRITE :
2015-07-07 22:16:38 +00:00
return " Blokowanie nadpisania SRAM " ;
2015-07-07 00:56:27 +00:00
case MSG_CORE_DOES_NOT_SUPPORT_SAVESTATES :
2016-08-23 18:45:29 +00:00
return " RdzeŠnie wspiera zapisów stanu. " ;
2015-07-07 00:56:27 +00:00
case MSG_SAVED_STATE_TO_SLOT :
2015-07-07 22:16:38 +00:00
return " Zapisano stan w slocie " ;
2015-07-07 00:56:27 +00:00
case MSG_SAVED_SUCCESSFULLY_TO :
2016-08-23 18:45:29 +00:00
return " PomyÅ lnie zapisano do " ;
2015-07-07 00:56:27 +00:00
case MSG_BYTES :
2016-08-23 18:45:29 +00:00
return " bajtów " ;
2015-07-07 00:56:27 +00:00
case MSG_CONFIG_DIRECTORY_NOT_SET :
2016-08-23 18:45:29 +00:00
return " Nie ustawiono katalogu konfiguracji. Nie można zapisaÄ nowej konfiguracji. " ;
2015-07-07 00:56:27 +00:00
case MSG_SKIPPING_SRAM_LOAD :
2015-07-07 22:16:38 +00:00
return " Pomijanie wczytywania SRAM. " ;
2015-07-07 00:56:27 +00:00
case MSG_APPENDED_DISK :
2015-07-07 22:16:38 +00:00
return " Dopisano do dysku " ;
2015-07-07 00:56:27 +00:00
case MSG_STARTING_MOVIE_PLAYBACK :
2015-07-07 22:16:38 +00:00
return " Rozpoczynanie odtwarzania filmu. " ;
2015-07-07 00:56:27 +00:00
case MSG_FAILED_TO_REMOVE_TEMPORARY_FILE :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ usunÄ
Ä pliku tymczasowego " ;
2015-07-07 00:56:27 +00:00
case MSG_REMOVING_TEMPORARY_CONTENT_FILE :
2016-08-23 18:45:29 +00:00
return " Usuwanie tymczasowego pliku treÅ ci " ;
2015-07-07 00:56:27 +00:00
case MSG_LOADED_STATE_FROM_SLOT :
2015-07-07 22:16:38 +00:00
return " Wczytano stan ze slotu " ;
2015-07-07 00:56:27 +00:00
case MSG_COULD_NOT_PROCESS_ZIP_FILE :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ przetworzyÄ pliku ZIP. " ;
2015-07-07 00:56:27 +00:00
case MSG_SCANNING_OF_DIRECTORY_FINISHED :
2016-08-23 18:45:29 +00:00
return " ZakoÅ czono skanowanie katalogu " ;
2015-07-07 00:56:27 +00:00
case MSG_SCANNING :
2015-07-07 22:16:38 +00:00
return " Skanowanie " ;
2015-07-07 00:56:27 +00:00
case MSG_REDIRECTING_CHEATFILE_TO :
2016-08-23 18:45:29 +00:00
return " Przekierowywanie pliku cheatów do " ;
2015-07-07 00:56:27 +00:00
case MSG_REDIRECTING_SAVEFILE_TO :
2015-07-07 22:16:38 +00:00
return " Przekierowywanie pliku zapisu do " ;
2015-07-07 00:56:27 +00:00
case MSG_REDIRECTING_SAVESTATE_TO :
2015-07-07 22:16:38 +00:00
return " Przekierowywanie zapisu stanu do " ;
2015-07-07 00:56:27 +00:00
case MSG_SHADER :
return " Shader " ;
case MSG_APPLYING_SHADER :
2015-07-07 22:16:38 +00:00
return " Aplikowanie shadera " ;
2015-07-07 00:56:27 +00:00
case MSG_FAILED_TO_APPLY_SHADER :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ zaaplikowaÄ shadera. " ;
2015-07-07 00:56:27 +00:00
case MSG_STARTING_MOVIE_RECORD_TO :
2015-07-07 22:16:38 +00:00
return " Rozpoczynanie zapisu filmu do " ;
2015-07-07 00:56:27 +00:00
case MSG_FAILED_TO_START_MOVIE_RECORD :
2016-08-23 18:45:29 +00:00
return " Nie udaÅ o siÄ rozpoczÄ
Ä nagrywania filmu. " ;
2015-07-07 00:56:27 +00:00
case MSG_STATE_SLOT :
2015-07-07 22:16:38 +00:00
return " Slot zapisu " ;
2015-07-07 00:56:27 +00:00
case MSG_RESTARTING_RECORDING_DUE_TO_DRIVER_REINIT :
2016-08-23 18:45:29 +00:00
return " Ponowne rozpoczÄ cie nagrywania z powodu reinicjalizacji kontrolera. " ;
2015-07-07 00:56:27 +00:00
case MSG_SLOW_MOTION :
2015-07-07 22:16:38 +00:00
return " Spowolnione tempo. " ;
2015-07-07 00:56:27 +00:00
case MSG_SLOW_MOTION_REWIND :
2015-07-07 22:16:38 +00:00
return " Przewijanie w spowolnionym tempie. " ;
2015-07-07 00:56:27 +00:00
case MSG_REWINDING :
2015-07-07 22:16:38 +00:00
return " Przewijanie. " ;
2015-07-07 00:56:27 +00:00
case MSG_REWIND_REACHED_END :
2016-08-23 18:45:29 +00:00
return " W buforze przewijania nie ma wiÄ cej danych. " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_OVERLAY_AUTOLOAD_PREFERRED :
2016-08-23 18:45:29 +00:00
return " Automatycznie wczytaj preferowan± nak³adkê " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_UPDATE_CORE_INFO_FILES :
return " Aktualizuj pliki informacji o rdzeniach " ;
case MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT :
2016-08-23 18:45:29 +00:00
return " Pobierz tre¶ci " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SCAN_THIS_DIRECTORY :
return " <Przeszukaj ten katalog> " ;
case MENU_ENUM_LABEL_VALUE_SCAN_FILE :
return " Skanuj plik " ;
case MENU_ENUM_LABEL_VALUE_SCAN_DIRECTORY :
return " Przeszukaj katalog " ;
case MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST :
2016-08-23 18:45:29 +00:00
return " Dodaj tre¶æ " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_INFORMATION_LIST :
return " Informacje " ;
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_PLAYER :
2016-08-23 18:45:29 +00:00
return " U¿yj wbudowanego odtwarzacza mediów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS :
return " Szybkie menu " ;
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CRC32 :
return " CRC32 " ;
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_MD5 :
return " MD5 " ;
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST :
2016-08-23 18:45:29 +00:00
return " Wczytaj tre¶æ " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE :
return " Wczytaj archiwum " ;
case MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE :
2016-08-23 18:45:29 +00:00
return " Otwórz archiwum " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_ASK_ARCHIVE :
return " Pytaj " ;
case MENU_ENUM_LABEL_VALUE_PRIVACY_SETTINGS :
2016-08-23 18:45:29 +00:00
return " Ustawienia prywatno¶ci " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_HORIZONTAL_MENU : /* Don't change. Breaks everything. (Would be: "Menu poziome") */
return " Horizontal Menu " ;
case MENU_ENUM_LABEL_VALUE_NO_SETTINGS_FOUND :
2016-08-23 18:45:29 +00:00
return " Nie znaleziono ustawieñ. " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_NO_PERFORMANCE_COUNTERS :
2016-08-23 18:45:29 +00:00
return " Brak liczników wydajno¶ci. " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS :
2016-08-23 18:45:29 +00:00
return " Ustawienia kontrolerów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_CONFIGURATION_SETTINGS :
return " Ustawienia konfiguracji " ;
case MENU_ENUM_LABEL_VALUE_CORE_SETTINGS :
return " Ustawienia rdzenia " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS :
return " Ustawienia wideo " ;
case MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS :
return " Ustawienia logowania " ;
case MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS :
return " Ustawienia zapisywania " ;
case MENU_ENUM_LABEL_VALUE_REWIND_SETTINGS :
return " Ustawienia przewijania " ;
case MENU_ENUM_LABEL_VALUE_SHADER :
return " Shader " ;
case MENU_ENUM_LABEL_VALUE_CHEAT :
return " Cheat " ;
case MENU_ENUM_LABEL_VALUE_USER :
2016-08-23 18:45:29 +00:00
return " U¿ytkownik " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SYSTEM_BGM_ENABLE :
2016-08-23 18:45:29 +00:00
return " W³±cz BGM systemu " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_RETROPAD :
return " RetroPad " ;
case MENU_ENUM_LABEL_VALUE_RETROKEYBOARD :
return " RetroKeyboard " ;
case MENU_ENUM_LABEL_VALUE_AUDIO_BLOCK_FRAMES :
return " Block Frames " ;
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_LABEL_SHOW :
2016-08-23 18:45:29 +00:00
return " Wy¶wietl opisy przycisków dla tego rdzenia " ; /* UPDATE/FIXME */
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_INPUT_DESCRIPTOR_HIDE_UNBOUND :
return " Ukryj nieprzypisane przyciski " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_ENABLE :
2016-08-23 18:45:29 +00:00
return " Wy¶wietlaj wiadomo¶ci OSD " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_PATH :
2016-08-23 18:45:29 +00:00
return " Czcionka wiadomo¶ci OSD " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_FONT_SIZE :
2016-08-23 18:45:29 +00:00
return " Rozmiar wiadomo¶ci OSD " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_X :
2016-08-23 18:45:29 +00:00
return " Wspó³rzêdna X dla wiadomo¶ci OSD " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_POS_Y :
2016-08-23 18:45:29 +00:00
return " Wspó³rzêdna Y dla wiadomo¶ci OSD " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER :
2016-08-23 18:45:29 +00:00
return " W³±cz filtr programowy " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER :
return " Filtr migotania " ;
case MENU_ENUM_LABEL_VALUE_DIRECTORY_CONTENT :
2016-08-23 18:45:29 +00:00
return " <Katalog tre¶ci> " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_UNKNOWN :
return " Nieznane " ;
case MENU_ENUM_LABEL_VALUE_DONT_CARE :
return " Bez znaczenia " ;
case MENU_ENUM_LABEL_VALUE_LINEAR :
return " Liniowe " ;
case MENU_ENUM_LABEL_VALUE_NEAREST :
2016-08-23 18:45:29 +00:00
return " Najbli¿sze " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_DIRECTORY_DEFAULT :
2016-08-23 18:45:29 +00:00
return " <Domy¶lny> " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NONE :
2016-08-23 18:45:29 +00:00
return " <¯aden> " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE :
return " B/D " ;
case MENU_ENUM_LABEL_VALUE_INPUT_REMAPPING_DIRECTORY :
2016-08-23 18:45:29 +00:00
return " Katalog plików remapowania " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_JOYPAD_AUTOCONFIG_DIR :
2016-08-23 18:45:29 +00:00
return " Katalog autokonfiguracji kontrolerów gier " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_RECORDING_CONFIG_DIRECTORY :
return " Katalog konfiguracji nagrywania " ;
case MENU_ENUM_LABEL_VALUE_RECORDING_OUTPUT_DIRECTORY :
2016-08-23 18:45:29 +00:00
return " Katalog wyj¶ciowy nagrywania " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SCREENSHOT_DIRECTORY :
2016-08-23 18:45:29 +00:00
return " Katalog zrzutów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY :
return " Katalog historii " ;
case MENU_ENUM_LABEL_VALUE_SAVEFILE_DIRECTORY :
2016-08-23 18:45:29 +00:00
return " Katalog zapisów tre¶ci " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SAVESTATE_DIRECTORY :
2016-08-23 18:45:29 +00:00
return " Katalog zapisanych stanów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_STDIN_CMD_ENABLE :
return " Komendy stdin " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER :
return " Kontroler wideo " ;
case MENU_ENUM_LABEL_VALUE_RECORD_ENABLE :
2016-08-23 18:45:29 +00:00
return " W³±cz nagrywanie " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_RECORD :
2016-08-23 18:45:29 +00:00
return " W³±cz nagrywanie z u¿yciem GPU " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_RECORD_PATH : /* FIXME/UPDATE */
2016-08-23 18:45:29 +00:00
return " ¦cie¿ka nagrywania " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_RECORD_USE_OUTPUT_DIRECTORY :
2016-08-23 18:45:29 +00:00
return " U¿ywaj katalogu wyj¶ciowego nagrywania " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_RECORD_CONFIG :
return " Konfiguracja nagrywania " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_POST_FILTER_RECORD :
return " Nagrywaj wraz z zaaplikowanymi filtrami " ;
case MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY :
return " Katalog pobranych " ;
case MENU_ENUM_LABEL_VALUE_ASSETS_DIRECTORY :
2016-08-23 18:45:29 +00:00
return " Katalog assetów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPERS_DIRECTORY :
return " Katalog dynamicznych tapet " ;
case MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY :
2016-08-23 18:45:29 +00:00
return " Katalog przegl±darki " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_RGUI_CONFIG_DIRECTORY :
return " Katalog zapisanych konfiguracji " ;
case MENU_ENUM_LABEL_VALUE_LIBRETRO_INFO_PATH :
return " Katalog informacji o rdzeniach " ;
case MENU_ENUM_LABEL_VALUE_LIBRETRO_DIR_PATH :
return " Katalog rdzeni " ;
case MENU_ENUM_LABEL_VALUE_CURSOR_DIRECTORY :
return " Katalog z kursorami " ;
case MENU_ENUM_LABEL_VALUE_CONTENT_DATABASE_DIRECTORY :
2016-08-23 18:45:29 +00:00
return " Katalog bazy danych tre¶ci " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SYSTEM_DIRECTORY :
return " Katalog systemu " ;
case MENU_ENUM_LABEL_VALUE_CHEAT_DATABASE_PATH :
2016-08-23 18:45:29 +00:00
return " Katalog z plikami cheatów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_CACHE_DIRECTORY : /* UPDATE/FIXME */
2016-08-23 18:45:29 +00:00
return " Katalog do wypakowywania archiwów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_AUDIO_FILTER_DIR :
2016-08-23 18:45:29 +00:00
return " Katalog filtrów audio " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_DIR :
2016-08-23 18:45:29 +00:00
return " Katalog shaderów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_DIR :
2016-08-23 18:45:29 +00:00
return " Katalog filtrów wideo " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_OVERLAY_DIRECTORY :
2016-08-23 18:45:29 +00:00
return " Katalog nak³adek " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_OSK_OVERLAY_DIRECTORY :
return " Katalog klawiatur ekranowych " ;
case MENU_ENUM_LABEL_VALUE_NETPLAY_CLIENT_SWAP_INPUT :
2016-08-23 18:45:29 +00:00
return " Zamieñ kontrolery w grze sieciowej " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_NETPLAY_SPECTATOR_MODE_ENABLE :
return " Tryb obserwatora gry sieciowej " ;
case MENU_ENUM_LABEL_VALUE_NETPLAY_IP_ADDRESS :
return " Adres IP " ;
case MENU_ENUM_LABEL_VALUE_NETPLAY_TCP_UDP_PORT :
return " Port TCP/UDP gry sieciowej " ;
case MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE :
2016-08-23 18:45:29 +00:00
return " W³±cz grê sieciow± " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_NETPLAY_DELAY_FRAMES :
2016-08-23 18:45:29 +00:00
return " Opóxnione klatki w grze sieciowej " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_NETPLAY_MODE :
return " Tryb klienta gry sieciowej " ;
case MENU_ENUM_LABEL_VALUE_RGUI_SHOW_START_SCREEN :
return " Pokazuj ekran startowy " ;
case MENU_ENUM_LABEL_VALUE_TITLE_COLOR :
2016-08-23 18:45:29 +00:00
return " Kolor tytu³u menu " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_ENTRY_HOVER_COLOR :
return " Kolor zaznaczonego elementu menu " ;
case MENU_ENUM_LABEL_VALUE_TIMEDATE_ENABLE :
2016-08-23 18:45:29 +00:00
return " Wy¶wietl czas/datê " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_THREADED_DATA_RUNLOOP_ENABLE :
2016-08-23 18:45:29 +00:00
return " Osobny w±tek odbierania danych " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_ENTRY_NORMAL_COLOR :
2016-08-23 18:45:29 +00:00
return " Zwyk³y kolor elementu menu " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SHOW_ADVANCED_SETTINGS :
2016-08-23 18:45:29 +00:00
return " Poka¿ zaawansowane ustawienia " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_MOUSE_ENABLE :
2016-08-23 18:45:29 +00:00
return " Obs³uga myszy " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_POINTER_ENABLE :
2016-08-23 18:45:29 +00:00
return " Obs³uga dotyku " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_CORE_ENABLE :
2016-08-23 18:45:29 +00:00
return " Wy¶wietlaj nazwê rdzenia " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_ENABLE :
2016-08-23 18:45:29 +00:00
return " Pomiñ wykryte DPI " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_DPI_OVERRIDE_VALUE :
2016-08-23 18:45:29 +00:00
return " W³asne DPI " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SUSPEND_SCREENSAVER_ENABLE :
return " Wstrzymaj wygaszacz " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_DISABLE_COMPOSITION :
2016-08-23 18:45:29 +00:00
return " Wy³±cz efekty kompozycji pulpitu " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_PAUSE_NONACTIVE :
return " Wstrzymaj gdy w tle " ;
case MENU_ENUM_LABEL_VALUE_UI_COMPANION_START_ON_BOOT :
return " UI Companion Start On Boot " ;
case MENU_ENUM_LABEL_VALUE_UI_MENUBAR_ENABLE :
return " Pasek menu " ;
case MENU_ENUM_LABEL_VALUE_ARCHIVE_MODE :
2016-07-21 02:32:26 +00:00
return " Archive File Association Action " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_ENABLE :
return " Komendy sieciowe " ;
case MENU_ENUM_LABEL_VALUE_NETWORK_CMD_PORT :
return " Port dla komend sieciowych " ;
case MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE :
2016-08-23 18:45:29 +00:00
return " W³±cz historiê tre¶ci " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_CONTENT_HISTORY_SIZE :
2016-08-23 18:45:29 +00:00
return " Rozmiar historii tre¶ci " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO :
2016-08-23 18:45:29 +00:00
return " Szacowana czêstotliwo¶æ od¶wie¿ania monitora " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_DUMMY_ON_CORE_SHUTDOWN :
return " Atrapa rdzenia przy zatrzymaniu rdzenia " ;
case MENU_ENUM_LABEL_VALUE_CORE_SET_SUPPORTS_NO_CONTENT_ENABLE : /* TODO/FIXME */
return " Nie uruchamiaj rdzenia automatycznie " ;
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_ENABLE :
2016-08-23 18:45:29 +00:00
return " Limituj maksymaln± szybko¶æ dzia³ania " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_FASTFORWARD_RATIO :
2016-08-23 18:45:29 +00:00
return " Maksymalna szybko¶æ dzia³ania " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_AUTO_REMAPS_ENABLE :
return " Automatycznie wczytuj pliki remapowania " ;
case MENU_ENUM_LABEL_VALUE_SLOWMOTION_RATIO :
2016-08-23 18:45:29 +00:00
return " Wspó³czynnik spowolnienia " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_CORE_SPECIFIC_CONFIG :
2016-08-23 18:45:29 +00:00
return " Osobna konfiguracja dla ka¿dego rdzenia " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_AUTO_OVERRIDES_ENABLE :
return " Load Override Files Automatically " ; /* this one's rather complicated */
case MENU_ENUM_LABEL_VALUE_CONFIG_SAVE_ON_EXIT :
2016-08-23 18:45:29 +00:00
return " Zapisz konfiguracjê przy wyj¶ciu " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_SMOOTH :
2016-08-23 18:45:29 +00:00
return " Sprzêtowe filtrowanie dwuliniowe " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA :
return " Gamma wideo " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_ALLOW_ROTATE :
2016-08-23 18:45:29 +00:00
return " Zezwól na obrót " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC :
2016-08-23 18:45:29 +00:00
return " ¦cis³a synchronizacja GPU " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_SWAP_INTERVAL :
return " VSync Swap Interval " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_VSYNC :
return " Synchronizacja pionowa " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_THREADED :
2016-08-23 18:45:29 +00:00
return " Osobny w±tek wideo " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_ROTATION :
2016-08-23 18:45:29 +00:00
return " Obrót " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT :
return " Wykonuj zrzuty ekranu z wykorzystaniem GPU " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_CROP_OVERSCAN :
return " Wytnij overscan (restart) " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_INDEX :
2016-08-23 18:45:29 +00:00
return " Indeks wspó³czynnika proporcji " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_ASPECT_RATIO_AUTO :
2016-08-23 18:45:29 +00:00
return " Auto wspó³czynnik proporcji " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_ASPECT :
2016-08-23 18:45:29 +00:00
return " Wymu¶ wspó³czynnik proporcji " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE :
2016-08-23 18:45:29 +00:00
return " Czêstotliwo¶æ od¶wie¿ania " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_FORCE_SRGB_DISABLE :
2016-08-23 18:45:29 +00:00
return " Wymu¶ wy³±czenie sRGB FBO " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_WINDOWED_FULLSCREEN :
2016-08-23 18:45:29 +00:00
return " Tryb pe³nego ekranu w oknie " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_PAL60_ENABLE :
2016-08-23 18:45:29 +00:00
return " U¿yj trybu PAL60 " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_VFILTER :
return " Redukcja migotania " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_VI_WIDTH :
return " Set VI Screen Width " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_BLACK_FRAME_INSERTION :
return " Wstawiaj czarne klatki " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_HARD_SYNC_FRAMES :
return " Hard GPU Sync Frames " ;
case MENU_ENUM_LABEL_VALUE_SORT_SAVEFILES_ENABLE :
return " Sortuj zapisy w folderach " ;
case MENU_ENUM_LABEL_VALUE_SORT_SAVESTATES_ENABLE :
return " Sortuj zapisane stany w folderach " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN :
2016-08-23 18:45:29 +00:00
return " Pe³ny ekran " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE :
return " Skala w oknie " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_SCALE_INTEGER :
2016-08-23 18:45:29 +00:00
return " Skaluj w liczbach ca³kowitych " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_PERFCNT_ENABLE :
2016-08-23 18:45:29 +00:00
return " Liczniki wydajno¶ci " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_LIBRETRO_LOG_LEVEL :
return " Poziom logowania rdzenia " ;
case MENU_ENUM_LABEL_VALUE_LOG_VERBOSITY :
2016-08-23 18:45:29 +00:00
return " Szczegó³owo¶æ logowania " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_LOAD :
return " Automatyczne wczytywanie stanu " ;
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_INDEX :
return " Indeks automatycznie zapisywanego stanu " ;
case MENU_ENUM_LABEL_VALUE_SAVESTATE_AUTO_SAVE :
return " Automatyczny zapis stanu " ;
case MENU_ENUM_LABEL_VALUE_AUTOSAVE_INTERVAL :
2016-08-23 18:45:29 +00:00
return " Czêstotliwo¶æ automatycznego zapisu SaveRAM " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_BLOCK_SRAM_OVERWRITE :
return " Nie nadpisuj SaveRAM przy wczytywaniu stanu " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_SHARED_CONTEXT :
return " HW Shared Context Enable " ;
case MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH :
return " Uruchom ponownie RetroArch " ;
case MENU_ENUM_LABEL_VALUE_NETPLAY_NICKNAME :
2016-08-23 18:45:29 +00:00
return " Nazwa u¿ytkownika " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_USER_LANGUAGE :
2016-08-23 18:45:29 +00:00
return " Jêzyk " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_CAMERA_ALLOW :
2016-08-23 18:45:29 +00:00
return " Zezwalaj na dostêp do kamerki " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_LOCATION_ALLOW :
2016-08-23 18:45:29 +00:00
return " Zezwalaj na dostêp do lokalizacji " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_PAUSE_LIBRETRO :
2016-08-23 18:45:29 +00:00
return " Pauzuj przy wej¶ciu do menu " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_INPUT_OSK_OVERLAY_ENABLE :
2016-08-23 18:45:29 +00:00
return " Wy¶wietlaj klawiaturê ekranow± " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_ENABLE :
2016-08-23 18:45:29 +00:00
return " Wy¶wietlaj nak³adkê " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_MONITOR_INDEX :
return " Indeks monitora " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_FRAME_DELAY :
2016-08-23 18:45:29 +00:00
return " Opó¼nienie klatek " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_INPUT_DUTY_CYCLE :
return " Cykl zmian " ;
case MENU_ENUM_LABEL_VALUE_INPUT_TURBO_PERIOD :
return " Okres turbo " ;
case MENU_ENUM_LABEL_VALUE_INPUT_AXIS_THRESHOLD :
2016-08-23 18:45:29 +00:00
return " Próg osi " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_INPUT_REMAP_BINDS_ENABLE :
2016-08-23 18:45:29 +00:00
return " W³±cz remapowanie bindów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_INPUT_MAX_USERS :
2016-08-23 18:45:29 +00:00
return " Maksymalna liczba u¿ytkowników " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_INPUT_AUTODETECT_ENABLE :
2016-08-23 18:45:29 +00:00
return " W³±cz autokonfiguracjê " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_RATE :
2016-08-23 18:45:29 +00:00
return " Czêstotliwo¶æ próbkowania d¼wiêku (KHz) " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_AUDIO_MAX_TIMING_SKEW :
return " Audio Maximum Timing Skew " ;
case MENU_ENUM_LABEL_VALUE_CHEAT_NUM_PASSES :
2016-08-23 18:45:29 +00:00
return " Liczba przebiegów cheatów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_CORE :
return " Zapisz plik remapowania dla rdzenia " ;
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_SAVE_GAME :
return " Zapisz plik remapowania dla gry " ;
case MENU_ENUM_LABEL_VALUE_CHEAT_APPLY_CHANGES :
2016-08-23 18:45:29 +00:00
return " Zastosuj zmiany cheatów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SHADER_APPLY_CHANGES :
2016-08-23 18:45:29 +00:00
return " Zastosuj zmiany shaderów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_REWIND_ENABLE :
2016-08-23 18:45:29 +00:00
return " W³±cz przewijanie " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_CONTENT_COLLECTION_LIST :
return " Wybierz z kolekcji " ;
case MENU_ENUM_LABEL_VALUE_DETECT_CORE_LIST :
2016-08-23 18:45:29 +00:00
return " Wybierz plik i dopasuj rdzeñ " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST :
2016-08-23 18:45:29 +00:00
return " Wybierz pobrany plik i dopasuj rdzeñ " ; /* this makes little sense */
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY :
2016-08-23 18:45:29 +00:00
return " Wczytaj z ostatnio u¿ywanych " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE :
2016-08-23 18:45:29 +00:00
return " W³±cz d¼wiêk " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_FPS_SHOW :
2016-08-23 18:45:29 +00:00
return " Wy¶wietlaj FPS " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_AUDIO_MUTE :
2016-08-23 18:45:29 +00:00
return " Wycisz d¼wiêk " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_AUDIO_VOLUME :
2016-08-23 18:45:29 +00:00
return " Poziom g³o¶no¶ci (dB) " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_AUDIO_SYNC :
2016-08-23 18:45:29 +00:00
return " W³±cz synchronizacjê d¼wiêku " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_AUDIO_RATE_CONTROL_DELTA :
return " Audio Rate Control Delta " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_NUM_PASSES :
2016-08-23 18:45:29 +00:00
return " Liczba przebiegów shadera " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SHA1 :
return " SHA1 " ;
case MENU_ENUM_LABEL_VALUE_CONFIGURATIONS :
2016-08-23 18:45:29 +00:00
return " Wczytaj konfiguracjê " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_REWIND_GRANULARITY :
2016-08-23 18:45:29 +00:00
return " P³ynno¶æ przewijania " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_REMAP_FILE_LOAD :
return " Wczytaj plik remapowania " ;
case MENU_ENUM_LABEL_VALUE_CUSTOM_RATIO :
2016-08-23 18:45:29 +00:00
return " W³±sny wspó³czynnik " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_USE_THIS_DIRECTORY :
2016-08-23 18:45:29 +00:00
return " <U¿yj tego katalogu> " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_START_CONTENT :
2016-08-23 18:45:29 +00:00
return " Uruchom tre¶æ " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_DISK_OPTIONS :
return " Opcje dysku rdzenia " ;
case MENU_ENUM_LABEL_VALUE_CORE_OPTIONS :
return " Opcje " ;
case MENU_ENUM_LABEL_VALUE_CORE_CHEAT_OPTIONS :
2016-08-23 18:45:29 +00:00
return " Opcje cheatów rdzenia " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_LOAD :
return " Wczytaj plik z cheatami " ;
case MENU_ENUM_LABEL_VALUE_CHEAT_FILE_SAVE_AS :
return " Zapisz plik z cheatami jako " ;
case MENU_ENUM_LABEL_VALUE_CORE_COUNTERS :
return " Liczniki rdzenia " ;
case MENU_ENUM_LABEL_VALUE_TAKE_SCREENSHOT :
return " Zapisz zrzut " ;
case MENU_ENUM_LABEL_VALUE_RESUME :
2016-08-23 18:45:29 +00:00
return " Wznów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_DISK_INDEX :
return " Indeks dysku " ;
case MENU_ENUM_LABEL_VALUE_FRONTEND_COUNTERS :
return " Liczniki frontendu " ;
case MENU_ENUM_LABEL_VALUE_DISK_IMAGE_APPEND :
return " Dopisz do obrazu dysku " ;
case MENU_ENUM_LABEL_VALUE_DISK_CYCLE_TRAY_STATUS :
return " Disk Cycle Tray Status " ;
case MENU_ENUM_LABEL_VALUE_NO_PLAYLIST_ENTRIES_AVAILABLE :
2016-08-23 18:45:29 +00:00
return " Brak wpisów w playli¶cie. " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_NO_CORE_INFORMATION_AVAILABLE :
return " Brak informacji o rdzeniu. " ;
case MENU_ENUM_LABEL_VALUE_NO_CORE_OPTIONS_AVAILABLE :
2016-08-23 18:45:29 +00:00
return " Brak dostêpnych opcji rdzenia. " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_NO_CORES_AVAILABLE :
2016-08-23 18:45:29 +00:00
return " Brak dostêpnych rdzeni. " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_NO_CORE :
return " Brak rdzenia " ;
case MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER :
2016-08-23 18:45:29 +00:00
return " Mened¿er bazy danych " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER :
2016-08-23 18:45:29 +00:00
return " Mened¿er kursorów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_MAIN_MENU :
2016-08-23 18:45:29 +00:00
return " Menu g³ówne " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SETTINGS :
return " Ustawienia " ;
case MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH :
2016-08-23 18:45:29 +00:00
return " Opu¶æ RetroArch " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_HELP :
return " Pooc " ;
case MENU_ENUM_LABEL_VALUE_SAVE_NEW_CONFIG :
2016-08-23 18:45:29 +00:00
return " Zapisz now± konfiguracjê " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_RESTART_CONTENT :
return " Restartuj " ;
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST :
return " Aktualizator rdzeni " ;
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_BUILDBOT_URL :
return " URL rdzeni buildbota " ;
case MENU_ENUM_LABEL_VALUE_BUILDBOT_ASSETS_URL :
2016-08-23 18:45:29 +00:00
return " URL assetów buildbota " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_NAVIGATION_WRAPAROUND :
return " Zawijanie nawigacji " ;
case MENU_ENUM_LABEL_VALUE_NAVIGATION_BROWSER_FILTER_SUPPORTED_EXTENSIONS_ENABLE :
2016-08-23 18:45:29 +00:00
return " Filtruj wed³ug wspieranych rozszerzeñ " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_AUTO_EXTRACT_ARCHIVE :
return " Automatycznie wypakowuj pobierane archiwa " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION :
return " Informacje o systemie " ;
case MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER :
return " Aktualizator sieciowy " ;
case MENU_ENUM_LABEL_VALUE_CORE_INFORMATION :
return " Informacje o rdzeniu " ;
case MENU_ENUM_LABEL_VALUE_DIRECTORY_NOT_FOUND :
return " Nie znaleziono katalogu. " ;
case MENU_ENUM_LABEL_VALUE_NO_ITEMS :
2016-08-23 18:45:29 +00:00
return " Brak elementów. " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_CORE_LIST :
2016-08-23 18:45:29 +00:00
return " Wczytaj rdzeñ " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_LOAD_CONTENT :
return " Wybierz plik " ;
case MENU_ENUM_LABEL_VALUE_CLOSE_CONTENT :
return " Zamknij " ;
case MENU_ENUM_LABEL_VALUE_MANAGEMENT :
return " Ustawienia bazy danych " ;
case MENU_ENUM_LABEL_VALUE_SAVE_STATE :
return " Zapisz stan " ;
case MENU_ENUM_LABEL_VALUE_LOAD_STATE :
return " Wczytaj stan " ;
case MENU_ENUM_LABEL_VALUE_RESUME_CONTENT :
2016-08-23 18:45:29 +00:00
return " Wznów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_INPUT_DRIVER :
2016-08-23 18:45:29 +00:00
return " Kontroler wej¶cia " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER :
2016-08-23 18:45:29 +00:00
return " Kontroler d¼wiêku " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_JOYPAD_DRIVER :
2016-08-23 18:45:29 +00:00
return " Kontroler gamepadów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER :
2016-08-23 18:45:29 +00:00
return " Kontroler resamplera d¼wiêku " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_RECORD_DRIVER :
return " Kontroler nagrywania " ;
case MENU_ENUM_LABEL_VALUE_MENU_DRIVER :
return " Kontroler menu " ;
case MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER :
return " Kontroler kamerki " ;
case MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER :
return " Kontroler lokalizacji " ;
case MENU_ENUM_LABEL_VALUE_UNABLE_TO_READ_COMPRESSED_FILE :
2016-08-23 18:45:29 +00:00
return " Nie uda³o siê odczytaæ skompresowanego pliku. " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_OVERLAY_SCALE :
2016-08-23 18:45:29 +00:00
return " Skala nak³adki " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_OVERLAY_PRESET :
2016-08-23 18:45:29 +00:00
return " Preset nak³adki " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_AUDIO_LATENCY :
2016-08-23 18:45:29 +00:00
return " Opó¼nienie d¼wiêku (ms) " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_AUDIO_DEVICE :
2016-08-23 18:45:29 +00:00
return " Urz±dzenie audio " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_KEYBOARD_OVERLAY_PRESET :
return " Preset klawiatury ekranowej " ;
case MENU_ENUM_LABEL_VALUE_OVERLAY_OPACITY :
2016-08-23 18:45:29 +00:00
return " Nieprze¼roczysto¶æ nak³adki " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_MENU_WALLPAPER :
return " Tapeta menu " ;
case MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPER :
return " Dynamiczna tapeta " ;
case MENU_ENUM_LABEL_VALUE_CORE_INPUT_REMAPPING_OPTIONS :
return " Opcje remapowania kontrolera rdzenia " ; /* this is quite bad */
case MENU_ENUM_LABEL_VALUE_SHADER_OPTIONS :
return " Opcje shadera " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PARAMETERS :
2016-08-23 18:45:29 +00:00
return " Podgl±d parametrów shadera " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_PARAMETERS :
return " Parametry shadera menu " ;
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET_SAVE_AS :
return " Zapisz preset shadera jako " ;
case MENU_ENUM_LABEL_VALUE_NO_SHADER_PARAMETERS :
2016-08-23 18:45:29 +00:00
return " Brak parametrów shadera. " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PRESET :
2016-08-23 18:45:29 +00:00
return " Wczytaj preset shaderów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_VIDEO_FILTER :
return " Filtr obrazu " ;
case MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN :
return " Wtyczki audio DSP " ;
case MENU_ENUM_LABEL_VALUE_STARTING_DOWNLOAD :
return " Rozpoczynanie pobierania: " ;
case MENU_ENUM_LABEL_VALUE_SECONDS :
return " sekund " ;
2016-08-23 18:45:29 +00:00
case MENU_ENUM_LABEL_VALUE_ON : /* Don't change. Needed for XMB atm. (Would be: "W£¡CZONE") */
2016-06-19 22:31:13 +00:00
return " ON " ;
2016-08-23 18:45:29 +00:00
case MENU_ENUM_LABEL_VALUE_OFF : /* Don't change. Needed for XMB atm. (Would be: "WY£¡CZONE") */
2016-06-19 22:31:13 +00:00
return " OFF " ;
case MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS :
return " Aktualizuj assety " ;
case MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS :
return " Aktualizuj cheaty " ;
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES :
return " Aktualizuj profile autokonfiguracji " ;
case MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES_HID :
return " Aktualizuj profile autokonfiguracji (HID) " ;
case MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES :
return " Aktualizuj bazy danych " ;
case MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS :
2016-08-23 18:45:29 +00:00
return " Aktualizuj nak³adki graficzne " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS :
return " Aktualizuj shadery Cg " ;
case MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS :
return " Aktualizuj shadery GLSL " ;
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME :
return " Nazwa rdzenia " ;
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL :
return " Oznaczenie rdzenia " ;
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME :
return " Nazwa systemu " ;
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER :
return " Producent systemu " ;
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES :
return " Kategorie " ;
case MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS :
return " Autorzy " ;
case MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS :
return " Zezwolenia " ;
case MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES :
return " Licencja(-e) " ;
case MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS :
return " Wspierane rozszerzenia " ;
case MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE :
return " Firmware " ;
case MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NOTES :
return " Dodatkowe informacje o rdzeniu " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE :
return " Data kompilacji " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION :
return " Wersja git " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES :
2016-08-23 18:45:29 +00:00
return " W³a¶ciwo¶ci CPU " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER :
return " Identyfikator frontendu " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_NAME :
return " Nazwa frontendu " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS :
return " System operacyjny hosta: " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL :
return " Poziom RetroRating " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE :
2016-08-23 18:45:29 +00:00
return " ¬ród³o zasilania " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_NO_SOURCE :
2016-08-23 18:45:29 +00:00
return " Brak ¼ród³a " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGING :
2016-08-23 18:45:29 +00:00
return " £adowanie " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_CHARGED :
2016-08-23 18:45:29 +00:00
return " Na³adowano " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE_DISCHARGING :
return " Na baterii " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER :
return " Kontroler wideo " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH :
2016-08-23 18:45:29 +00:00
return " Metryczna szeroko¶æ wy¶wietlacza (mm) " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT :
2016-08-23 18:45:29 +00:00
return " Metryczna wysoko¶æ wy¶wietlacza (mm) " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI :
2016-08-23 18:45:29 +00:00
return " Metryczne DPI wy¶wietlacza " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT :
return " Wsparcie LibretroDB " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT :
2016-08-23 18:45:29 +00:00
return " Wsparcie nak³adek graficznych " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT :
2016-08-23 18:45:29 +00:00
return " Wsparcie interfejsu wiersza poleceñ " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT :
return " Wsparcie interfejsu komend sieciowych " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT :
return " Wsparcie Cocoa " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT :
return " Wsparcie PNG (RPNG) " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT :
return " Wsparcie SDL1.2 " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT :
return " Wsparcie SDL2 " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT :
return " Wsparcie OpenGL " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT :
return " Wsparcie OpenGL ES " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT :
2016-08-23 18:45:29 +00:00
return " Wsparcie wielu w±tków " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT :
return " Wsparcie KMS/EGL " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT :
return " Wsparcie Udev " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT :
return " Wsparcie OpenVG " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT :
return " Wsparcie EGL " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT :
return " Wsparcie X11 " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT :
return " Wsparcie Wayland " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT :
return " Wsparcie XVideo " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT :
return " Wsparcie ALSA " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT :
return " Wsparcie OSS " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT :
return " Wsparcie OpenAL " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT :
return " Wsparcie OpenSL " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT :
return " Wsparcie RSound " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT :
return " Wsparcie RoarAudio " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT :
return " Wsparcie JACK " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT :
return " Wsparcie PulseAudio " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT :
return " Wsparcie DirectSound " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT :
return " Wsparcie XAudio2 " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT :
return " Wsparcie Zlib " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT :
return " Wsparcie 7zip " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT :
return " Wsparcie bibliotek dynamicznych " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT :
return " Wsparcie Cg " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT :
return " Wsparcie GLSL " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT :
return " Wsparcie HLSL " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBXML2_SUPPORT :
return " Wsparcie parsowania XML libxml2 " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT :
return " Wsparcie SDL image " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FBO_SUPPORT :
2016-08-23 18:45:29 +00:00
return " Wsparcie renderowania do tekstury w OpenGL/Direct3D (wielokrotne przebiegi shaderów) " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT :
return " Wsparcie FFmpeg " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT :
return " Wsparcie CoreText " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT :
return " Wsparcie FreeType " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT :
return " Wsparcie Netplay (peer-to-peer) " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PYTHON_SUPPORT :
return " Wsparcie Pythona (skrypty w shaderach) " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT :
return " Wsparcie Video4Linux2 " ;
case MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT :
return " Wsparcie libusb " ;
case MENU_ENUM_LABEL_VALUE_YES :
return " Tak " ;
case MENU_ENUM_LABEL_VALUE_NO :
return " Nie " ;
case MENU_ENUM_LABEL_VALUE_BACK :
return " WSTECZ " ;
case MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION :
2016-08-23 18:45:29 +00:00
return " Rozdzielczo¶æ ekranu " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_DISABLED :
2016-08-23 18:45:29 +00:00
return " Wy³±czone " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_PORT :
return " Port " ;
case MENU_ENUM_LABEL_VALUE_NONE :
2016-08-23 18:45:29 +00:00
return " ¯aden " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER :
return " Deweloper " ;
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER :
return " Wydawca " ;
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION :
return " Opis " ;
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME :
return " Nazwa " ;
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN :
return " Pochodzenie " ;
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FRANCHISE :
return " Franczyza " ;
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH :
2016-08-23 18:45:29 +00:00
return " Miesi±c wydania " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR :
return " Rok wydania " ;
case MENU_ENUM_LABEL_VALUE_TRUE :
return " Prawda " ;
case MENU_ENUM_LABEL_VALUE_FALSE :
2016-08-23 18:45:29 +00:00
return " Fa³sz " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_MISSING :
return " Brak " ;
case MENU_ENUM_LABEL_VALUE_PRESENT :
return " Obecny " ;
case MENU_ENUM_LABEL_VALUE_OPTIONAL :
return " Opcjonalny " ;
case MENU_ENUM_LABEL_VALUE_REQUIRED :
return " Wymagany " ;
case MENU_ENUM_LABEL_VALUE_STATUS :
return " Status " ;
case MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS :
2016-08-23 18:45:29 +00:00
return " Ustawienia d¼wiêku " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS :
return " Ustawienia wprowadzania " ;
case MENU_ENUM_LABEL_VALUE_ONSCREEN_DISPLAY_SETTINGS :
return " Ustawienia OSD " ;
case MENU_ENUM_LABEL_VALUE_OVERLAY_SETTINGS :
2016-08-23 18:45:29 +00:00
return " Ustawienia przycisków ekranowych " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_MENU_SETTINGS :
return " Ustawienia menu " ;
case MENU_ENUM_LABEL_VALUE_MULTIMEDIA_SETTINGS :
2016-08-23 18:45:29 +00:00
return " Ustawienia multimediów " ;
2016-07-02 18:40:27 +00:00
case MENU_ENUM_LABEL_VALUE_USER_INTERFACE_SETTINGS :
2016-08-23 18:45:29 +00:00
return " Ustawienia interfejsu u¿ytkownika " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS :
return " Menu File Browser Settings " ;
case MENU_ENUM_LABEL_VALUE_CORE_UPDATER_SETTINGS :
return " Ustawienia aktualizatora " ;
case MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS :
return " Ustawienia sieci " ;
case MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS :
return " Ustawienia playlisty " ;
case MENU_ENUM_LABEL_VALUE_USER_SETTINGS :
2016-08-23 18:45:29 +00:00
return " Ustawienia u¿ytkownika " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS :
2016-08-23 18:45:29 +00:00
return " Ustawienia katalogów " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS :
return " Ustawienia nagrywania " ;
case MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE :
2016-08-23 18:45:29 +00:00
return " Brak dostêpnych informacji. " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_INPUT_USER_BINDS :
2016-08-23 18:45:29 +00:00
return " Wprowad¼ bindy dla u¿ytkownika %u " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_LANG_ENGLISH :
return " angielski " ;
case MENU_ENUM_LABEL_VALUE_LANG_JAPANESE :
2016-08-23 18:45:29 +00:00
return " japoñski " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_LANG_FRENCH :
return " francuski " ;
case MENU_ENUM_LABEL_VALUE_LANG_SPANISH :
2016-08-23 18:45:29 +00:00
return " hiszpañski " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_LANG_GERMAN :
return " niemiecki " ;
case MENU_ENUM_LABEL_VALUE_LANG_ITALIAN :
2016-08-23 18:45:29 +00:00
return " w³oski " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_LANG_DUTCH :
2016-08-23 18:45:29 +00:00
return " duñski " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_LANG_PORTUGUESE :
return " portugalski " ;
case MENU_ENUM_LABEL_VALUE_LANG_RUSSIAN :
return " rosyjski " ;
case MENU_ENUM_LABEL_VALUE_LANG_KOREAN :
2016-08-23 18:45:29 +00:00
return " koreañski " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_TRADITIONAL :
2016-08-23 18:45:29 +00:00
return " chiñski (Tradycyjny) " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_LANG_CHINESE_SIMPLIFIED :
2016-08-23 18:45:29 +00:00
return " chiñ¶ki (Uproszczony) " ;
2016-06-19 22:31:13 +00:00
case MENU_ENUM_LABEL_VALUE_LANG_ESPERANTO :
return " esperanto " ;
case MENU_ENUM_LABEL_VALUE_LEFT_ANALOG :
return " Lewy analog " ;
case MENU_ENUM_LABEL_VALUE_RIGHT_ANALOG :
return " Prawy analog " ;
case MENU_ENUM_LABEL_VALUE_INPUT_HOTKEY_BINDS :
return " Input Hotkey Binds " ;
case MENU_ENUM_LABEL_VALUE_FRAME_THROTTLE_SETTINGS :
return " Frame Throttle Settings " ;
case MENU_ENUM_LABEL_VALUE_SEARCH :
return " Szukaj: " ;
case MENU_ENUM_LABEL_VALUE_USE_BUILTIN_IMAGE_VIEWER :
2016-08-23 18:45:29 +00:00
return " U¿yj wbudowanej przegl±darki obrazów " ;
2015-07-07 00:56:27 +00:00
default :
break ;
}
return " null " ;
}