mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
1174 lines
21 KiB
C
1174 lines
21 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,
|
|
"Ĉefa menuo"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SETTINGS_TAB,
|
|
"Agordoj"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_FAVORITES_TAB,
|
|
"Preferataj"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HISTORY_TAB,
|
|
"Historio"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_IMAGES_TAB,
|
|
"Bildoj"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MUSIC_TAB,
|
|
"Muziko"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_TAB,
|
|
"Videoj"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETPLAY_TAB,
|
|
"Retludo"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_EXPLORE_TAB,
|
|
"Esplori"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONTENTLESS_CORES_TAB,
|
|
"Malplenaj kernoj"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ADD_TAB,
|
|
"Importi enhavon"
|
|
)
|
|
|
|
/* Main Menu */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS,
|
|
"Rapida menuo"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CORE_LIST,
|
|
"Ŝargi kerno"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_LIST,
|
|
"Elekti kernon por uzi."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST,
|
|
"Ŝargi enhavon"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LOAD_CONTENT_LIST,
|
|
"Elekti enhavon por lanĉi."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_DISC,
|
|
"Ŝargi unu diskon"
|
|
)
|
|
#ifdef HAVE_LAKKA
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_EJECT_DISC,
|
|
"Elĵeti diskon"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_EJECT_DISC,
|
|
"Elĵeti la diskon el la fizika CD/DVD ludilo."
|
|
)
|
|
#endif
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB,
|
|
"Ludlistoj"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST,
|
|
"Importi enhavon"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_ONLINE_UPDATER,
|
|
"Download add-ons, components and contents for RetroArch."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETPLAY,
|
|
"Retaludo"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SETTINGS,
|
|
"Agordoj"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SETTINGS,
|
|
"Agordi la programon."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INFORMATION_LIST,
|
|
"Informo"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_INFORMATION_LIST_LIST,
|
|
"Display core, network and system information."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONFIGURATIONS_LIST,
|
|
"Configurations"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HELP_LIST,
|
|
"Helpo"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_HELP_LIST,
|
|
"Learn more about how it works."
|
|
)
|
|
|
|
/* Main Menu > Load Core */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE,
|
|
"Download Core..."
|
|
)
|
|
|
|
/* Main Menu > Load Content */
|
|
|
|
|
|
/* Main Menu > Load Content > Playlists */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_FAVORITES,
|
|
"Preferataj"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_MUSIC,
|
|
"Muziko"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_IMAGES,
|
|
"Bildoj"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_VIDEO,
|
|
"Videoj"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_EXPLORE,
|
|
"Esplori"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_GOTO_CONTENTLESS_CORES,
|
|
"Malplenaj kernoj"
|
|
)
|
|
|
|
/* Main Menu > Online Updater */
|
|
|
|
|
|
/* Main Menu > Information */
|
|
|
|
|
|
/* Main Menu > Information > Core Information */
|
|
|
|
|
|
/* Main Menu > Information > System Information */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETROARCH_VERSION,
|
|
"RetroArch versio"
|
|
)
|
|
|
|
/* Main Menu > Information > Database Manager */
|
|
|
|
|
|
/* Main Menu > Information > Database Manager > Information */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ACHIEVEMENTS,
|
|
"Enable Achievements"
|
|
)
|
|
|
|
/* Main Menu > Configuration File */
|
|
|
|
|
|
/* Main Menu > Help */
|
|
|
|
|
|
/* Main Menu > Help > Basic Menu Controls */
|
|
|
|
|
|
/* Settings */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DRIVER_SETTINGS,
|
|
"Driver"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_DRIVER_SETTINGS,
|
|
"Change drivers for this system."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS,
|
|
"Video Driver"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_SETTINGS,
|
|
"Adjusts settings for video output."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_SETTINGS,
|
|
"Audio Driver"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AUDIO_SETTINGS,
|
|
"Adjusts settings for audio output."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS,
|
|
"Input Driver"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CORE_SETTINGS,
|
|
"Change settings for the core."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SAVING_SETTINGS,
|
|
"Change settings for the saving."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LOGGING_SETTINGS,
|
|
"Change settings for the logging."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_FRAME_THROTTLE_SETTINGS,
|
|
"Change settings for rewinding, fast-forwarding, and slow-motion."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_RECORDING_SETTINGS,
|
|
"Change settings for the recording."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_USER_INTERFACE_SETTINGS,
|
|
"Change settings for the user interface."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RETRO_ACHIEVEMENTS_SETTINGS,
|
|
"Enable Achievements"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_RETRO_ACHIEVEMENTS_SETTINGS,
|
|
"Change settings for the achievements."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS,
|
|
"Ludlistoj"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_PLAYLIST_SETTINGS,
|
|
"Change settings for the playlists."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_USER_SETTINGS,
|
|
"Change accounts, username, and language."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_DIRECTORY_SETTINGS,
|
|
"Change default directories for this system."
|
|
)
|
|
|
|
/* Core option category placeholders for icons */
|
|
|
|
#ifdef HAVE_MIST
|
|
#endif
|
|
|
|
/* Settings > Drivers */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_DRIVER,
|
|
"Input Driver"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_DRIVER,
|
|
"Video Driver"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_DRIVER,
|
|
"Audio Driver"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_DRIVER,
|
|
"Audio Resampler Driver"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CAMERA_DRIVER,
|
|
"Camera Driver"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BLUETOOTH_DRIVER,
|
|
"Bluetooth Enable"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_WIFI_DRIVER,
|
|
"Wi-Fi Driver"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOCATION_DRIVER,
|
|
"Location Driver"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_DRIVER,
|
|
"Menu Driver"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RECORD_DRIVER,
|
|
"Record Driver"
|
|
)
|
|
|
|
/* Settings > Video */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_OUTPUT_SETTINGS,
|
|
"Adjusts settings for video output."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_SYNCHRONIZATION_SETTINGS,
|
|
"Audio Sync Enable"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_GPU_SCREENSHOT,
|
|
"GPU Screenshot Enable"
|
|
)
|
|
#if defined(DINGUX)
|
|
#if defined(RS90) || defined(MIYOO)
|
|
#endif
|
|
#endif
|
|
|
|
/* Settings > Video > CRT SwitchRes */
|
|
|
|
|
|
/* Settings > Video > Output */
|
|
|
|
#if defined (WIIU)
|
|
#endif
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_ROTATION,
|
|
"Rotation"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_ROTATION,
|
|
"Forces a certain rotation of the screen. The rotation is added to rotations which the core sets."
|
|
)
|
|
#if defined(DINGUX) && defined(DINGUX_BETA)
|
|
#endif
|
|
|
|
/* Settings > Video > Fullscreen Mode */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_FULLSCREEN,
|
|
"Use Fullscreen Mode"
|
|
)
|
|
|
|
/* Settings > Video > Windowed Mode */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_WINDOW_WIDTH,
|
|
"Set the custom width size for the display window. Leaving it at 0 will attempt to scale the window as large as possible."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_WINDOW_HEIGHT,
|
|
"Set the custom height size for the display window. Leaving it at 0 will attempt to scale the window as large as possible."
|
|
)
|
|
|
|
/* Settings > Video > Scaling */
|
|
|
|
#if defined(DINGUX)
|
|
#endif
|
|
|
|
/* Settings > Video > HDR */
|
|
|
|
|
|
/* Settings > Video > Synchronization */
|
|
|
|
|
|
/* Settings > Audio */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AUDIO_OUTPUT_SETTINGS,
|
|
"Adjusts settings for audio output."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_SYNCHRONIZATION_SETTINGS,
|
|
"Audio Sync Enable"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_MIXER_SETTINGS,
|
|
"Enable menu audio"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_MUTE,
|
|
"Audio Mute"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_MIXER_MUTE,
|
|
"Audio Mixer Mute"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_VOLUME,
|
|
"Audio Volume Level (dB)"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AUDIO_VOLUME,
|
|
"Audio volume (in dB). 0 dB is normal volume, no gain applied."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_MIXER_VOLUME,
|
|
"Audio Mixer Volume Level (dB)"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_DSP_PLUGIN,
|
|
"Audio DSP Plugin"
|
|
)
|
|
|
|
/* Settings > Audio > Output */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE,
|
|
"Audio Enable"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_DEVICE,
|
|
"Audio Device"
|
|
)
|
|
|
|
/* Settings > Audio > Resampler */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_RESAMPLER_QUALITY,
|
|
"Audio Resampler Quality"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_OUTPUT_RATE,
|
|
"Audio Output Rate (Hz)"
|
|
)
|
|
|
|
/* Settings > Audio > Synchronization */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_SYNC,
|
|
"Audio Sync Enable"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_MAX_TIMING_SKEW,
|
|
"Audio Maximum Timing Skew"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AUDIO_RATE_CONTROL_DELTA,
|
|
"Helps smooth out imperfections in timing when synchronizing audio and video at the same time. Be aware that if disabled, proper synchronization is nearly impossible to obtain."
|
|
)
|
|
|
|
/* Settings > Audio > MIDI */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MIDI_INPUT,
|
|
"Input Driver"
|
|
)
|
|
|
|
/* Settings > Audio > Mixer Settings > Mixer Stream */
|
|
|
|
|
|
/* Settings > Audio > Menu Sounds */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_AUDIO_ENABLE_MENU,
|
|
"Enable menu audio"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AUDIO_ENABLE_MENU,
|
|
"Enable or disable menu sound."
|
|
)
|
|
|
|
/* Settings > Input */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_AUTODETECT_ENABLE,
|
|
"Autoconfig Enable"
|
|
)
|
|
#if defined(HAVE_DINPUT) || defined(HAVE_WINRAWINPUT)
|
|
#endif
|
|
#ifdef ANDROID
|
|
#endif
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_HOTKEY_BINDS,
|
|
"Enable hotkeys"
|
|
)
|
|
|
|
/* Settings > Input > Haptic Feedback/Vibration */
|
|
|
|
|
|
/* Settings > Input > Menu Controls */
|
|
|
|
|
|
/* Settings > Input > Hotkeys */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_META_CLOSE_CONTENT_KEY,
|
|
"Close"
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Settings > Input > Port # Controls */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_TURBO_ENABLE,
|
|
"Turbo enable"
|
|
)
|
|
|
|
/* Settings > Latency */
|
|
|
|
|
|
/* Settings > Core */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_SHARED_CONTEXT,
|
|
"Enable Hardware Shared Context"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CHECK_FOR_MISSING_FIRMWARE,
|
|
"Kontrolu ĉu mankas firmvaro antaŭ alŝuto"
|
|
)
|
|
#ifndef HAVE_DYNAMIC
|
|
#endif
|
|
#ifdef HAVE_MIST
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
/* Settings > Configuration */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_GAME_SPECIFIC_OPTIONS,
|
|
"Enable customized core options by default at startup."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AUTO_OVERRIDES_ENABLE,
|
|
"Enable customized configuration by default at startup."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_AUTO_REMAPS_ENABLE,
|
|
"Enable customized controls by default at startup."
|
|
)
|
|
|
|
/* Settings > Saving */
|
|
|
|
|
|
/* Settings > Logging */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_LOG_VERBOSITY,
|
|
"Enable or disable logging to the terminal."
|
|
)
|
|
|
|
/* Settings > File Browser */
|
|
|
|
|
|
/* Settings > Frame Throttle */
|
|
|
|
|
|
/* Settings > Frame Throttle > Rewind */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_REWIND_ENABLE,
|
|
"Rewind Enable"
|
|
)
|
|
|
|
/* Settings > Frame Throttle > Frame Time Counter */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_FRAME_TIME_COUNTER_RESET_AFTER_FASTFORWARDING,
|
|
"Rekomencu post uzi rapidan antaŭen"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_FRAME_TIME_COUNTER_RESET_AFTER_LOAD_STATE,
|
|
"Rekomencu post ŝarĝo de rapida savo"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_FRAME_TIME_COUNTER_RESET_AFTER_SAVE_STATE,
|
|
"Rekomencu post generi rapidan savon"
|
|
)
|
|
|
|
/* Settings > Recording */
|
|
|
|
|
|
/* Settings > On-Screen Display */
|
|
|
|
|
|
/* Settings > On-Screen Display > On-Screen Overlay */
|
|
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_HIDE_WHEN_GAMEPAD_CONNECTED,
|
|
"Kaŝu interkovro dum konekto de ludregilo"
|
|
)
|
|
#if defined(ANDROID)
|
|
#endif
|
|
|
|
/* Settings > On-Screen Display > Video Layout */
|
|
|
|
|
|
/* Settings > On-Screen Display > On-Screen Notifications */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_FONT_PATH,
|
|
"Onscreen Notification Font"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_FONT_SIZE,
|
|
"Onscreen Notification Size"
|
|
)
|
|
|
|
/* Settings > User Interface */
|
|
|
|
#ifdef _3DS
|
|
#endif
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_ENABLE_KIOSK_MODE,
|
|
"Enable Kiosk Mode"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_SAVESTATE_RESUME,
|
|
"Daŭrigu enhavon post uzado de rapida savo"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_INSERT_DISK_RESUME,
|
|
"Daŭrigu enhavon post ŝanĝado de diskoj"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_UI_COMPANION_ENABLE,
|
|
"UI Companion Enable"
|
|
)
|
|
|
|
/* Settings > User Interface > Menu Item Visibility */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QUICK_MENU_VIEWS_SETTINGS,
|
|
"Rapida menuo"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SETTINGS_VIEWS_SETTINGS,
|
|
"Agordoj"
|
|
)
|
|
#ifdef HAVE_LAKKA
|
|
#endif
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_ADD_CONTENT_ENTRY_DISPLAY_MAIN_TAB,
|
|
"Ĉefa Menuo"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONTENT_SHOW_CONTENTLESS_CORES,
|
|
"Montri 'Malplenaj kernoj'"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SHOW_CONTENTLESS_CORES_ALL,
|
|
"Tuta"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SHOW_CONTENTLESS_CORES_SINGLE_PURPOSE,
|
|
"Unu uzo"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SHOW_CONTENTLESS_CORES_CUSTOM,
|
|
"Propra"
|
|
)
|
|
|
|
/* Settings > User Interface > Menu Item Visibility > Quick Menu */
|
|
|
|
|
|
/* Settings > User Interface > Views > Settings */
|
|
|
|
|
|
|
|
/* Settings > User Interface > Appearance */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_MENU_REMEMBER_SELECTION,
|
|
"Memoru elekton kiam ŝanĝas inter sekcioj"
|
|
)
|
|
|
|
/* Settings > AI Service */
|
|
|
|
|
|
/* Settings > Accessibility */
|
|
|
|
|
|
/* Settings > Power Management */
|
|
|
|
/* Settings > Achievements */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CHEEVOS_ENABLE,
|
|
"Enable Achievements"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CHEEVOS_TEST_UNOFFICIAL,
|
|
"Enable or disable unofficial achievements and/or beta features for testing purposes."
|
|
)
|
|
|
|
/* Settings > Achievements > Appearance */
|
|
|
|
|
|
/* Settings > Achievements > Visibility */
|
|
|
|
|
|
/* Settings > Network */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETPLAY_TCP_UDP_PORT,
|
|
"Netplay TCP/UDP Port"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_STDIN_CMD_ENABLE,
|
|
"Enable stdin command interface."
|
|
)
|
|
|
|
/* Settings > Network > Updater */
|
|
|
|
|
|
/* Settings > Playlists */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HISTORY_LIST_ENABLE,
|
|
"Historio"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_HISTORY_LIST_ENABLE,
|
|
"Enable or disable recent playlist for games, images, music, and videos."
|
|
)
|
|
|
|
/* Settings > Playlists > Playlist Management */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DELETE_PLAYLIST,
|
|
"Forigi ludliston"
|
|
)
|
|
|
|
/* Settings > User */
|
|
|
|
|
|
/* Settings > User > Privacy */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DISCORD_ALLOW,
|
|
"Enable Discord"
|
|
)
|
|
|
|
/* Settings > User > Accounts */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ACCOUNTS_RETRO_ACHIEVEMENTS,
|
|
"Retro Achievements"
|
|
)
|
|
|
|
/* 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_DYNAMIC_WALLPAPERS_DIRECTORY,
|
|
"Dynamic Wallpapers"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_PLAYLIST_DIRECTORY,
|
|
"Ludlistoj"
|
|
)
|
|
|
|
#ifdef HAVE_MIST
|
|
/* Settings > Steam */
|
|
|
|
|
|
|
|
#endif
|
|
|
|
/* Music */
|
|
|
|
/* Music > Quick Menu */
|
|
|
|
|
|
/* Netplay */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_NETPLAY_ENABLE_CLIENT,
|
|
"Enables netplay in client mode."
|
|
)
|
|
|
|
/* Netplay > Host */
|
|
|
|
|
|
/* Import Content */
|
|
|
|
|
|
/* Import Content > Scan File */
|
|
|
|
|
|
/* Import Content > Manual Scan */
|
|
|
|
|
|
/* Explore tab */
|
|
|
|
/* Playlist > Playlist Item */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RENAME_ENTRY,
|
|
"Rename the title of the entry."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INFORMATION,
|
|
"Informo"
|
|
)
|
|
|
|
/* Playlist Item > Set Core Association */
|
|
|
|
|
|
/* Playlist Item > Information */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CONTENT_INFO_DATABASE,
|
|
"Content Database"
|
|
)
|
|
|
|
/* Quick Menu */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CLOSE_CONTENT,
|
|
"Close"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_ACHIEVEMENT_LIST,
|
|
"Enable Achievements"
|
|
)
|
|
|
|
/* Quick Menu > Options */
|
|
|
|
|
|
/* Quick Menu > Options > Manage Core Options */
|
|
|
|
|
|
/* - Legacy (unused) */
|
|
|
|
/* Quick Menu > Controls */
|
|
|
|
|
|
/* Quick Menu > Controls > Manage Remap Files */
|
|
|
|
|
|
/* Quick Menu > Controls > Manage Remap Files > Load Remap File */
|
|
|
|
|
|
/* Quick Menu > Cheats */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CHEAT_FILE_LOAD,
|
|
"Load Cheat File"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_CHEAT_FILE_LOAD,
|
|
"Load a cheat file."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CHEAT_APPLY_CHANGES,
|
|
"Apply Cheat Changes"
|
|
)
|
|
|
|
/* 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 */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_VIDEO_SHADER_PRESET_REMOVE,
|
|
"Remove shader presets of a specific type."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SHADER_APPLY_CHANGES,
|
|
"Apply Shader Changes"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_SHADER_PARAMETERS,
|
|
"Preview Shader Parameters"
|
|
)
|
|
|
|
/* Quick Menu > Shaders > Save */
|
|
|
|
|
|
|
|
|
|
/* Quick Menu > Shaders > Remove */
|
|
|
|
|
|
/* Quick Menu > Shaders > Shader Parameters */
|
|
|
|
|
|
/* Quick Menu > Overrides */
|
|
|
|
|
|
/* Quick Menu > Achievements */
|
|
|
|
|
|
/* Quick Menu > Information */
|
|
|
|
|
|
/* Miscellaneous UI Items */
|
|
|
|
|
|
/* Settings Options */
|
|
|
|
|
|
/* RGUI: Settings > User Interface > Appearance */
|
|
|
|
|
|
/* RGUI: Settings Options */
|
|
|
|
|
|
/* XMB: Settings > User Interface > Appearance */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_DYNAMIC_WALLPAPER,
|
|
"Dynamic Wallpaper"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_XMB_THEME,
|
|
"Select a different theme for the icon. Changes will take effect after you restart the program."
|
|
)
|
|
|
|
/* 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_SHADER_PARAMS,
|
|
"Preview Shader Parameters"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_MENU_VIEW_OPTIONS_TITLE,
|
|
"Agordoj"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_MENU_HELP,
|
|
"&help"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_LOAD_CORE,
|
|
"Ŝargi kerno"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_TAB_PLAYLISTS,
|
|
"Ludlistoj"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_INFORMATION,
|
|
"Informo"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_DELETE_PLAYLIST,
|
|
"Forigi ludliston"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_QT_PLAYLIST_ENTRY_DATABASE,
|
|
"Content Database:"
|
|
)
|
|
|
|
/* Unsorted */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_CHEEVOS_SETTINGS,
|
|
"Retro Achievements"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_HISTORY,
|
|
"Historio"
|
|
)
|
|
|
|
/* Unused (Only Exist in Translation Files) */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SYSTEM_BGM_ENABLE,
|
|
"System BGM Enable"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_RECORD_ENABLE,
|
|
"Enable Recording"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETPLAY_ENABLE,
|
|
"Netplay Enable"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HELP,
|
|
"help"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HELP_SCANNING_CONTENT,
|
|
"Serĉante enhavon"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_HELP_WHAT_IS_A_CORE,
|
|
"Kio estas kerno?"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETPLAY_MODE,
|
|
"Netplay Client Enable"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_NETPLAY_SPECTATOR_MODE_ENABLE,
|
|
"Netplay Spectator Enable"
|
|
)
|
|
|
|
/* Unused (Needs Confirmation) */
|
|
|
|
|
|
/* Discord Status */
|
|
|
|
|
|
/* Notifications */
|
|
|
|
MSG_HASH(
|
|
MSG_WAITING_FOR_CLIENT,
|
|
"Atendante klienton..."
|
|
)
|
|
|
|
MSG_HASH(
|
|
MSG_CRC32_CHECKSUM_MISMATCH,
|
|
"CRC32 checksum mismatch between content file and saved content checksum in replay file header) replay highly likely to desync on playback."
|
|
)
|
|
MSG_HASH(
|
|
MSG_MOVIE_FORMAT_DIFFERENT_SERIALIZER_VERSION,
|
|
"Movie format seems to have a different serializer version. Will most likely fail."
|
|
)
|
|
MSG_HASH(
|
|
MSG_MOVIE_PLAYBACK_ENDED,
|
|
"Movie playback ended."
|
|
)
|
|
MSG_HASH(
|
|
MSG_VIEWPORT_SIZE_CALCULATION_FAILED,
|
|
"Viewport size calculation failed! Will continue using raw data. This will probably not work right ..."
|
|
)
|
|
|
|
/* Lakka */
|
|
|
|
|
|
/* Environment Specific Settings */
|
|
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER,
|
|
"Soft Filter Enable"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BLUETOOTH_SETTINGS,
|
|
"Bluetooth Enable"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_WIFI_SETTINGS,
|
|
"Wi-Fi Driver"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_TOUCH_ENABLE,
|
|
"Touch Enable"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_INPUT_SMALL_KEYBOARD_ENABLE,
|
|
"Small Keyboard Enable"
|
|
)
|
|
|
|
#ifdef HAVE_LAKKA_SWITCH
|
|
#endif
|
|
#if defined(HAVE_LAKKA_SWITCH) || defined(HAVE_LIBNX)
|
|
#endif
|
|
#ifdef HAVE_LAKKA
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_BLUETOOTH_ENABLE,
|
|
"Bluetooth Enable"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SAMBA_ENABLE,
|
|
"SAMBA Enable"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SAMBA_ENABLE,
|
|
"Enable or disable network sharing of your folders."
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_SSH_ENABLE,
|
|
"SSH Enable"
|
|
)
|
|
MSG_HASH(
|
|
MENU_ENUM_SUBLABEL_SSH_ENABLE,
|
|
"Enable or disable remote command line access."
|
|
)
|
|
#endif
|
|
#ifdef GEKKO
|
|
#endif
|
|
#ifdef HAVE_ODROIDGO2
|
|
#else
|
|
#endif
|
|
#ifdef _3DS
|
|
MSG_HASH(
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_3DS_LCD_BOTTOM,
|
|
"3DS Fundo Ekrano"
|
|
)
|
|
#endif
|
|
#ifdef HAVE_QT
|
|
#endif
|