mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
721 lines
12 KiB
C
721 lines
12 KiB
C
#if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900)
|
|
#if (_MSC_VER >= 1700)
|
|
/* https://support.microsoft.com/en-us/kb/980263 */
|
|
#pragma execution_character_set("utf-8")
|
|
#endif
|
|
#pragma warning(disable:4566)
|
|
#endif
|
|
|
|
/* Top-Level Menu */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MAIN_MENU,
|
|
"Főmenü"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SETTINGS_TAB,
|
|
"Beállítások"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_FAVORITES_TAB,
|
|
"Kedvencek"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HISTORY_TAB,
|
|
"Elözmény"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_IMAGES_TAB,
|
|
"Képek"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MUSIC_TAB,
|
|
"Zene"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_TAB,
|
|
"Videók"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_EXPLORE_TAB,
|
|
"Felfedezés"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ADD_TAB,
|
|
"Tartalom importálása"
|
|
)
|
|
|
|
/* Main Menu */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS,
|
|
"Gyorsmenü"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CONTENT_SETTINGS,
|
|
"Az össze releváns játékon belüli beállítás gyors elérése."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_LIST,
|
|
"Core betöltése"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_LIST,
|
|
"Válassza ki a használni kívánt javaslattevő szolgáltatást."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST,
|
|
"Tartalom betöltése"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LOAD_CONTENT_LIST,
|
|
"Válassza ki a használni kívánt javaslattevő szolgáltatást."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_DISC,
|
|
"Lemez betöltése"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LOAD_DISC,
|
|
"Fizikai adathordozó betöltése. Először válaszd ki a lemezzel használni kívánt magot (Mag betöltése)."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DUMP_DISC,
|
|
"Lemezkép mentése"
|
|
)
|
|
MSG_HASH( /* FIXME Is a specific image format used? Is it determined automatically? User choice? */
|
|
MENU_ENUM_SUBLABEL_DUMP_DISC,
|
|
"A fizikai adathordozó tartalmának mentése képfájlként a belső tárhelyre."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB,
|
|
"Lejátszási listák"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_PLAYLISTS_TAB,
|
|
"Az adatbázisban szereplő beolvasott tartalmak itt jelennek meg."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST,
|
|
"Tartalom importálása"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_ADD_CONTENT_LIST,
|
|
"Lejátszási listák létrehozása és frissítése tartalom beolvasásával."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SHOW_WIMP,
|
|
"Asztali menü mutatása"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SHOW_WIMP,
|
|
"A hagyományos asztali menü megnyitása."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_DISABLE_KIOSK_MODE,
|
|
"Kioszk mód kikapcsolása (újraindítás szükséges)"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_MENU_DISABLE_KIOSK_MODE,
|
|
"Az összes konfigurációs beállítás megjelenítése."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER,
|
|
"Online frissítő"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_ONLINE_UPDATER,
|
|
"Kiegészítők, komponensek és egyéb tartalom letöltése a RetroArch-hoz."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SETTINGS,
|
|
"Beálítások"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SETTINGS,
|
|
"A program konfigurálása."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INFORMATION_LIST,
|
|
"Információ"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_INFORMATION_LIST_LIST,
|
|
"Rendszer információ mutatása."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONFIGURATIONS_LIST,
|
|
"Konfigurációs fájl"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CONFIGURATIONS_LIST,
|
|
"Konfigurációs fájlok kezelése és létrehozása."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HELP_LIST,
|
|
"Segítség"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_HELP_LIST,
|
|
"Tudj meg többet a program működéséről."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH,
|
|
"RetroArch újraindítása"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_RESTART_RETROARCH,
|
|
"Újraindítja a programot."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH,
|
|
"Kilépés a RetroArch-ból"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_QUIT_RETROARCH,
|
|
"Kilép a programból."
|
|
)
|
|
|
|
/* Main Menu > Load Core */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE,
|
|
"Core letöltése"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SIDELOAD_CORE_LIST,
|
|
"Mag telepítése vagy visszaállítása"
|
|
)
|
|
|
|
/* Main Menu > Load Content */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST,
|
|
"Letöltések"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE,
|
|
"Tallózás az archívumban"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE,
|
|
"Archívum betöltése"
|
|
)
|
|
|
|
/* Main Menu > Load Content > Playlists */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_FAVORITES,
|
|
"Kedvencek"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_MUSIC,
|
|
"Zene"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_IMAGES,
|
|
"Képek"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_VIDEO,
|
|
"Videók"
|
|
)
|
|
|
|
/* Main Menu > Online Updater */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST,
|
|
"Core letöltés"
|
|
)
|
|
|
|
/* Main Menu > Information */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DISC_INFORMATION,
|
|
"Lemez informáctio"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION,
|
|
"Rendszer információ"
|
|
)
|
|
|
|
/* Main Menu > Information > Core Information */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS,
|
|
"Szerző"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS,
|
|
"Engedélyek"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MISSING,
|
|
"Hiányzó"
|
|
)
|
|
|
|
/* Main Menu > Information > System Information */
|
|
|
|
|
|
/* Main Menu > Information > Database Manager */
|
|
|
|
|
|
/* Main Menu > Information > Database Manager > Information */
|
|
|
|
|
|
/* Main Menu > Configuration File */
|
|
|
|
|
|
/* Main Menu > Help */
|
|
|
|
|
|
/* Main Menu > Help > Basic Menu Controls */
|
|
|
|
|
|
/* Settings */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_FILE_BROWSER_SETTINGS,
|
|
"Fájlkezelő"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS,
|
|
"Felvétel"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_USER_INTERFACE_SETTINGS,
|
|
"Felhasználói felület"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS,
|
|
"Hálózat"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS,
|
|
"Lejátszási listák"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_PLAYLIST_SETTINGS,
|
|
"Statikai beállítások megváltoztatása."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_USER_SETTINGS,
|
|
"Felhasználó"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS,
|
|
"Könyvtár"
|
|
)
|
|
|
|
/* Settings > Drivers */
|
|
|
|
|
|
/* Settings > Video */
|
|
|
|
#if defined(DINGUX)
|
|
#endif
|
|
|
|
/* Settings > Video > CRT SwitchRes */
|
|
|
|
|
|
/* Settings > Video > Output */
|
|
|
|
|
|
/* Settings > Video > Fullscreen Mode */
|
|
|
|
|
|
/* Settings > Video > Windowed Mode */
|
|
|
|
|
|
/* Settings > Video > Scaling */
|
|
|
|
#if defined(DINGUX)
|
|
#endif
|
|
|
|
/* Settings > Video > Synchronization */
|
|
|
|
|
|
/* Settings > Audio */
|
|
|
|
|
|
/* Settings > Audio > Output */
|
|
|
|
|
|
/* Settings > Audio > Resampler */
|
|
|
|
|
|
/* Settings > Audio > Synchronization */
|
|
|
|
|
|
/* Settings > Audio > MIDI */
|
|
|
|
|
|
/* Settings > Audio > Mixer Settings > Mixer Stream */
|
|
|
|
|
|
/* Settings > Audio > Menu Sounds */
|
|
|
|
|
|
/* Settings > Input */
|
|
|
|
#if defined(HAVE_DINPUT) || defined(HAVE_WINRAWINPUT)
|
|
#endif
|
|
|
|
/* Settings > Input > Haptic Feedback/Vibration */
|
|
|
|
#if defined(DINGUX) && defined(HAVE_LIBSHAKE)
|
|
#endif
|
|
|
|
/* Settings > Input > Menu Controls */
|
|
|
|
|
|
/* Settings > Input > Hotkeys */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_META_QUIT_KEY,
|
|
"Kilépés a RetroArch-ból"
|
|
)
|
|
|
|
/* Settings > Input > Port # Controls */
|
|
|
|
|
|
/* Settings > Latency */
|
|
|
|
|
|
/* Settings > Core */
|
|
|
|
#ifndef HAVE_DYNAMIC
|
|
#endif
|
|
|
|
/* Settings > Configuration */
|
|
|
|
|
|
/* Settings > Saving */
|
|
|
|
|
|
/* Settings > Logging */
|
|
|
|
|
|
/* Settings > File Browser */
|
|
|
|
|
|
/* Settings > Frame Throttle */
|
|
|
|
|
|
/* Settings > Frame Throttle > Rewind */
|
|
|
|
|
|
/* Settings > Frame Throttle > Frame Time Counter */
|
|
|
|
|
|
/* Settings > Recording */
|
|
|
|
|
|
/* Settings > On-Screen Display */
|
|
|
|
|
|
/* Settings > On-Screen Display > On-Screen Overlay */
|
|
|
|
#if defined(ANDROID)
|
|
#endif
|
|
|
|
/* Settings > On-Screen Display > Video Layout */
|
|
|
|
|
|
/* Settings > On-Screen Display > On-Screen Notifications */
|
|
|
|
|
|
/* Settings > User Interface */
|
|
|
|
|
|
/* Settings > User Interface > Menu Item Visibility */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QUICK_MENU_VIEWS_SETTINGS,
|
|
"Gyorsmenü"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SETTINGS_VIEWS_SETTINGS,
|
|
"Beálítások"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_ADD_CONTENT_ENTRY_DISPLAY_MAIN_TAB,
|
|
"Főmenü"
|
|
)
|
|
|
|
/* Settings > User Interface > Menu Item Visibility > Quick Menu */
|
|
|
|
|
|
/* Settings > User Interface > Views > Settings */
|
|
|
|
|
|
/* Settings > User Interface > Appearance */
|
|
|
|
|
|
/* Settings > AI Service */
|
|
|
|
|
|
/* Settings > Accessibility */
|
|
|
|
|
|
/* Settings > Power Management */
|
|
|
|
/* Settings > Achievements */
|
|
|
|
|
|
/* Settings > Network */
|
|
|
|
|
|
/* Settings > Network > Updater */
|
|
|
|
|
|
/* Settings > Playlists */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE,
|
|
"Elözmény"
|
|
)
|
|
|
|
/* Settings > Playlists > Playlist Management */
|
|
|
|
|
|
/* Settings > User */
|
|
|
|
|
|
/* Settings > User > Privacy */
|
|
|
|
|
|
/* Settings > User > Accounts */
|
|
|
|
|
|
/* Settings > User > Accounts > RetroAchievements */
|
|
|
|
|
|
/* Settings > User > Accounts > YouTube */
|
|
|
|
|
|
/* Settings > User > Accounts > Twitch */
|
|
|
|
|
|
/* Settings > User > Accounts > Facebook Gaming */
|
|
|
|
|
|
/* Settings > Directory */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_ASSETS_DIRECTORY,
|
|
"Letöltések"
|
|
)
|
|
MSG_HASH( /* FIXME Not RGUI specific */
|
|
MENU_ENUM_LABEL_VALUE_RGUI_BROWSER_DIRECTORY,
|
|
"Fájlkezelő"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY,
|
|
"Lejátszási listák"
|
|
)
|
|
|
|
/* Music */
|
|
|
|
/* Music > Quick Menu */
|
|
|
|
|
|
/* Netplay */
|
|
|
|
|
|
/* Netplay > Host */
|
|
|
|
|
|
/* Import Content */
|
|
|
|
|
|
/* Import Content > Scan File */
|
|
|
|
|
|
/* Import Content > Manual Scan */
|
|
|
|
|
|
/* Explore tab */
|
|
|
|
/* Playlist > Playlist Item */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INFORMATION,
|
|
"Információ"
|
|
)
|
|
|
|
/* Playlist Item > Set Core Association */
|
|
|
|
|
|
/* Playlist Item > Information */
|
|
|
|
|
|
/* Quick Menu */
|
|
|
|
|
|
/* Quick Menu > Options */
|
|
|
|
|
|
/* Quick Menu > Options > Manage Core Options */
|
|
|
|
|
|
/* - Legacy (unused) */
|
|
|
|
/* Quick Menu > Controls */
|
|
|
|
|
|
/* Quick Menu > Controls > Load Remap File */
|
|
|
|
|
|
/* Quick Menu > Cheats */
|
|
|
|
|
|
/* Quick Menu > Cheats > Start or Continue Cheat Search */
|
|
|
|
|
|
/* Quick Menu > Cheats > Load Cheat File (Replace) */
|
|
|
|
|
|
/* Quick Menu > Cheats > Load Cheat File (Append) */
|
|
|
|
|
|
/* Quick Menu > Cheats > Cheat Details */
|
|
|
|
|
|
/* Quick Menu > Disc Control */
|
|
|
|
|
|
/* Quick Menu > Shaders */
|
|
|
|
|
|
/* Quick Menu > Shaders > Save */
|
|
|
|
|
|
|
|
|
|
/* Quick Menu > Shaders > Remove */
|
|
|
|
|
|
/* Quick Menu > Shaders > Shader Parameters */
|
|
|
|
|
|
/* Quick Menu > Overrides */
|
|
|
|
|
|
/* Quick Menu > Achievements */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ACHIEVEMENT_PAUSE_MENU,
|
|
"ToggleCheevosHardcore" /* not-displayed - needed to resolve submenu */
|
|
)
|
|
|
|
/* Quick Menu > Information */
|
|
|
|
|
|
/* Miscellaneous UI Items */
|
|
|
|
|
|
/* Settings Options */
|
|
|
|
|
|
/* RGUI: Settings > User Interface > Appearance */
|
|
|
|
|
|
/* RGUI: Settings Options */
|
|
|
|
|
|
/* XMB: Settings > User Interface > Appearance */
|
|
|
|
|
|
/* XMB: Settings Options */
|
|
|
|
|
|
/* Ozone: Settings > User Interface > Appearance */
|
|
|
|
|
|
/* MaterialUI: Settings > User Interface > Appearance */
|
|
|
|
|
|
/* MaterialUI: Settings Options */
|
|
|
|
|
|
/* Qt (Desktop Menu) */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_MENU_VIEW_OPTIONS_TITLE,
|
|
"Beálítások"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_MENU_HELP,
|
|
"&Segítség"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_LOAD_CORE,
|
|
"Core betöltése"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_TAB_PLAYLISTS,
|
|
"Lejátszási listák"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_TAB_FILE_BROWSER,
|
|
"Fájlkezelő"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_INFORMATION,
|
|
"Információ"
|
|
)
|
|
|
|
/* Unsorted */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY,
|
|
"Elözmény"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_USER,
|
|
"Felhasználó"
|
|
)
|
|
|
|
/* Unused (Only Exist in Translation Files) */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HELP,
|
|
"Segítség"
|
|
)
|
|
|
|
/* Unused (Needs Confirmation) */
|
|
|
|
|
|
/* Discord Status */
|
|
|
|
|
|
/* Notifications */
|
|
|
|
|
|
/* Lakka */
|
|
|
|
|
|
/* Environment Specific Settings */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_META_RESTART_KEY,
|
|
"RetroArch újraindítása"
|
|
)
|
|
|
|
#ifdef HAVE_LAKKA_SWITCH
|
|
#endif
|
|
#if defined(HAVE_LAKKA_SWITCH) || defined(HAVE_LIBNX)
|
|
#endif
|
|
#ifdef HAVE_LAKKA
|
|
#endif
|
|
#ifdef GEKKO
|
|
#endif
|
|
#ifdef HAVE_ODROIDGO2
|
|
#else
|
|
#endif
|
|
#if defined(_3DS)
|
|
#endif
|
|
#ifdef HAVE_QT
|
|
#endif
|