mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Merged updates from msg_hash_us.c
This commit is contained in:
parent
06a26fbe6b
commit
63eb7930d1
@ -22,7 +22,6 @@
|
|||||||
#include <string/stdstring.h>
|
#include <string/stdstring.h>
|
||||||
|
|
||||||
#include "../msg_hash.h"
|
#include "../msg_hash.h"
|
||||||
#include "../configuration.h"
|
|
||||||
#include "../verbosity.h"
|
#include "../verbosity.h"
|
||||||
|
|
||||||
#if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900)
|
#if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900)
|
||||||
@ -33,10 +32,20 @@
|
|||||||
#pragma warning(disable:4566)
|
#pragma warning(disable:4566)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef RARCH_INTERNAL
|
||||||
|
#include "../configuration.h"
|
||||||
|
|
||||||
int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
||||||
{
|
{
|
||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
|
|
||||||
|
if (msg == MENU_ENUM_LABEL_CONNECT_NETPLAY_ROOM)
|
||||||
|
{
|
||||||
|
snprintf(s, len,
|
||||||
|
"TODO/FIXME - Fill in message here."
|
||||||
|
);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
if (msg <= MENU_ENUM_LABEL_INPUT_HOTKEY_BIND_END &&
|
if (msg <= MENU_ENUM_LABEL_INPUT_HOTKEY_BIND_END &&
|
||||||
msg >= MENU_ENUM_LABEL_INPUT_HOTKEY_BIND_BEGIN)
|
msg >= MENU_ENUM_LABEL_INPUT_HOTKEY_BIND_BEGIN)
|
||||||
{
|
{
|
||||||
@ -56,6 +65,10 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"離すと普通のスピードで戻ります。"
|
"離すと普通のスピードで戻ります。"
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
|
case RARCH_SLOWMOTION_KEY:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Toggles slowmotion.");
|
||||||
|
break;
|
||||||
case RARCH_SLOWMOTION_HOLD_KEY:
|
case RARCH_SLOWMOTION_HOLD_KEY:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Hold for slowmotion.");
|
"Hold for slowmotion.");
|
||||||
@ -98,6 +111,22 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Toggles onscreen keyboard.");
|
"Toggles onscreen keyboard.");
|
||||||
break;
|
break;
|
||||||
|
case RARCH_FPS_TOGGLE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Toggles frames per second counter.");
|
||||||
|
break;
|
||||||
|
case RARCH_SEND_DEBUG_INFO:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Sends diagnostic info about your device and RetroArch configuration to our servers for analysis.");
|
||||||
|
break;
|
||||||
|
case RARCH_NETPLAY_HOST_TOGGLE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Toggles netplay hosting on/off.");
|
||||||
|
break;
|
||||||
|
case RARCH_NETPLAY_GAME_WATCH:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Netplay toggle play/spectate mode.");
|
||||||
|
break;
|
||||||
case RARCH_ENABLE_HOTKEY:
|
case RARCH_ENABLE_HOTKEY:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Enable other hotkeys. \n"
|
"Enable other hotkeys. \n"
|
||||||
@ -107,11 +136,6 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"all other hotkeys will be enabled only \n"
|
"all other hotkeys will be enabled only \n"
|
||||||
"if this one is held at the same time. \n"
|
"if this one is held at the same time. \n"
|
||||||
" \n"
|
" \n"
|
||||||
"This is useful for RETRO_KEYBOARD centric \n"
|
|
||||||
"implementations which query a large area of \n"
|
|
||||||
"the keyboard, where it is not desirable that \n"
|
|
||||||
"hotkeys get in the way. \n"
|
|
||||||
" \n"
|
|
||||||
"Alternatively, all hotkeys for keyboard \n"
|
"Alternatively, all hotkeys for keyboard \n"
|
||||||
"could be disabled by the user.");
|
"could be disabled by the user.");
|
||||||
break;
|
break;
|
||||||
@ -149,6 +173,13 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"the window to allow relative mouse input to \n"
|
"the window to allow relative mouse input to \n"
|
||||||
"work better.");
|
"work better.");
|
||||||
break;
|
break;
|
||||||
|
case RARCH_GAME_FOCUS_TOGGLE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Toggles game focus.\n"
|
||||||
|
" \n"
|
||||||
|
"When a game has focus, RetroArch will both disable \n"
|
||||||
|
"hotkeys and keep/warp the mouse pointer inside the window.");
|
||||||
|
break;
|
||||||
case RARCH_MENU_TOGGLE:
|
case RARCH_MENU_TOGGLE:
|
||||||
snprintf(s, len, "Toggles menu.");
|
snprintf(s, len, "Toggles menu.");
|
||||||
break;
|
break;
|
||||||
@ -277,7 +308,7 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
break;
|
break;
|
||||||
case MENU_ENUM_LABEL_UNDO_SAVE_STATE:
|
case MENU_ENUM_LABEL_UNDO_SAVE_STATE:
|
||||||
snprintf(s, len, "If a state was overwritten, it will \n"
|
snprintf(s, len, "If a state was overwritten, it will \n"
|
||||||
"roll back to the previojp save state.");
|
"roll back to the previous save state.");
|
||||||
break;
|
break;
|
||||||
case MENU_ENUM_LABEL_TAKE_SCREENSHOT:
|
case MENU_ENUM_LABEL_TAKE_SCREENSHOT:
|
||||||
snprintf(s, len, "Create a screenshot. \n"
|
snprintf(s, len, "Create a screenshot. \n"
|
||||||
@ -285,6 +316,9 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"The screenshot will be stored inside the \n"
|
"The screenshot will be stored inside the \n"
|
||||||
"Screenshot Directory.");
|
"Screenshot Directory.");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_ADD_TO_FAVORITES:
|
||||||
|
snprintf(s, len, "Add the entry to your Favorites.");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_RUN:
|
case MENU_ENUM_LABEL_RUN:
|
||||||
snprintf(s, len, "Start the content.");
|
snprintf(s, len, "Start the content.");
|
||||||
break;
|
break;
|
||||||
@ -345,7 +379,7 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
break;
|
break;
|
||||||
case MENU_ENUM_LABEL_DUMMY_ON_CORE_SHUTDOWN:
|
case MENU_ENUM_LABEL_DUMMY_ON_CORE_SHUTDOWN:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Some libretro cores might have \n"
|
"Some cores might have \n"
|
||||||
"a shutdown feature. \n"
|
"a shutdown feature. \n"
|
||||||
" \n"
|
" \n"
|
||||||
"If this option is left disabled, \n"
|
"If this option is left disabled, \n"
|
||||||
@ -365,13 +399,22 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
" \n"
|
" \n"
|
||||||
"If this option is disabled, \n"
|
"If this option is disabled, \n"
|
||||||
"it will try to load even if such \n"
|
"it will try to load even if such \n"
|
||||||
"firmware is missing. \n"
|
"firmware is missing. \n");
|
||||||
"down. \n");
|
|
||||||
break;
|
break;
|
||||||
case MENU_ENUM_LABEL_PARENT_DIRECTORY:
|
case MENU_ENUM_LABEL_PARENT_DIRECTORY:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Go back to the parent directory.");
|
"Go back to the parent directory.");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_FILE_BROWSER_OPEN_UWP_PERMISSIONS:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Open Windows permission settings to enable \n"
|
||||||
|
"the broadFileSystemAccess capability.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_FILE_BROWSER_OPEN_PICKER:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Open the system file picker to access \n"
|
||||||
|
"additional directories.");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_FILE_BROWSER_SHADER_PRESET:
|
case MENU_ENUM_LABEL_FILE_BROWSER_SHADER_PRESET:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Shader preset file.");
|
"Shader preset file.");
|
||||||
@ -482,9 +525,7 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"Setting it to 'Early' or 'Late' can result \n"
|
"Setting it to 'Early' or 'Late' can result \n"
|
||||||
"in less latency, \n"
|
"in less latency, \n"
|
||||||
"depending on your configuration.\n\n"
|
"depending on your configuration.\n\n"
|
||||||
"When netplay is enabled, the default polling \n"
|
"Will be ignored when using netplay."
|
||||||
"behavior (Normal) will be used, \n"
|
|
||||||
"regardless of the value set here."
|
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
case MENU_ENUM_LABEL_INPUT_DESCRIPTOR_HIDE_UNBOUND:
|
case MENU_ENUM_LABEL_INPUT_DESCRIPTOR_HIDE_UNBOUND:
|
||||||
@ -555,6 +596,11 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"Enables displaying the current frames \n"
|
"Enables displaying the current frames \n"
|
||||||
"per second.");
|
"per second.");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_MEMORY_SHOW:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Includes displaying the current memory \n"
|
||||||
|
"usage/total with FPS/Frames.");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_VIDEO_FONT_ENABLE:
|
case MENU_ENUM_LABEL_VIDEO_FONT_ENABLE:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Show and/or hide onscreen messages.");
|
"Show and/or hide onscreen messages.");
|
||||||
@ -574,6 +620,16 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"Hide the current overlay from appearing \n"
|
"Hide the current overlay from appearing \n"
|
||||||
"inside the menu.");
|
"inside the menu.");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_INPUT_OVERLAY_SHOW_PHYSICAL_INPUTS:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Show keyboard/controller button presses on \n"
|
||||||
|
"the onscreen overlay.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_INPUT_OVERLAY_SHOW_PHYSICAL_INPUTS_PORT:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Select the port to listen for controller input \n"
|
||||||
|
"to display on the onscreen overlay.");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_OVERLAY_PRESET:
|
case MENU_ENUM_LABEL_OVERLAY_PRESET:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Path to input overlay.");
|
"Path to input overlay.");
|
||||||
@ -582,6 +638,21 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Overlay opacity.");
|
"Overlay opacity.");
|
||||||
break;
|
break;
|
||||||
|
#ifdef HAVE_VIDEO_LAYOUT
|
||||||
|
case MENU_ENUM_LABEL_VIDEO_LAYOUT_ENABLE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Enable or disable the current video layout.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_VIDEO_LAYOUT_PATH:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Path to video layout.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_VIDEO_LAYOUT_SELECTED_VIEW:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Layouts can contain multiple views. \n"
|
||||||
|
"Select a view.");
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
case MENU_ENUM_LABEL_INPUT_BIND_TIMEOUT:
|
case MENU_ENUM_LABEL_INPUT_BIND_TIMEOUT:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Input bind timer timeout (in seconds). \n"
|
"Input bind timer timeout (in seconds). \n"
|
||||||
@ -636,8 +707,7 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"RetroArchにようこそ\n"
|
"RetroArchにようこそ\n"
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
case MENU_ENUM_LABEL_VALUE_HELP_AUDIO_VIDEO_TROUBLESHOOTING_DESC:
|
case MENU_ENUM_LABEL_VALUE_HELP_AUDIO_VIDEO_TROUBLESHOOTING_DESC: {
|
||||||
{
|
|
||||||
/* Work around C89 limitations */
|
/* Work around C89 limitations */
|
||||||
char u[501];
|
char u[501];
|
||||||
const char *t =
|
const char *t =
|
||||||
@ -707,12 +777,9 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"udev Input driver. \n"
|
"udev Input driver. \n"
|
||||||
" \n"
|
" \n"
|
||||||
"This driver can run without X. \n"
|
|
||||||
" \n"
|
|
||||||
"It uses the recent evdev joypad API \n"
|
"It uses the recent evdev joypad API \n"
|
||||||
"for joystick support. It supports \n"
|
"for joystick support. It supports \n"
|
||||||
"hotplugging and force feedback (if \n"
|
"hotplugging and force feedback. \n"
|
||||||
"supported by device). \n"
|
|
||||||
" \n"
|
" \n"
|
||||||
"The driver reads evdev events for keyboard \n"
|
"The driver reads evdev events for keyboard \n"
|
||||||
"support. It also supports keyboard callback, \n"
|
"support. It also supports keyboard callback, \n"
|
||||||
@ -722,7 +789,8 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"are root-only (mode 600). You can set up a udev \n"
|
"are root-only (mode 600). You can set up a udev \n"
|
||||||
"rule which makes these accessible to non-root."
|
"rule which makes these accessible to non-root."
|
||||||
);
|
);
|
||||||
else if (string_is_equal(lbl, msg_hash_to_str(MENU_ENUM_LABEL_INPUT_DRIVER_LINUXRAW)))
|
else if (string_is_equal(lbl,
|
||||||
|
msg_hash_to_str(MENU_ENUM_LABEL_INPUT_DRIVER_LINUXRAW)))
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"linuxraw Input driver. \n"
|
"linuxraw Input driver. \n"
|
||||||
" \n"
|
" \n"
|
||||||
@ -864,37 +932,32 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
{
|
{
|
||||||
const char *lbl = settings ? settings->arrays.audio_resampler : NULL;
|
const char *lbl = settings ? settings->arrays.audio_resampler : NULL;
|
||||||
|
|
||||||
if (string_is_equal(lbl, msg_hash_to_str(MENU_ENUM_LABEL_AUDIO_RESAMPLER_DRIVER_SINC)))
|
if (string_is_equal(lbl, msg_hash_to_str(
|
||||||
|
MENU_ENUM_LABEL_AUDIO_RESAMPLER_DRIVER_SINC)))
|
||||||
strlcpy(s,
|
strlcpy(s,
|
||||||
"Windowed SINC implementation.", len);
|
"Windowed SINC implementation.", len);
|
||||||
else if (string_is_equal(lbl, msg_hash_to_str(MENU_ENUM_LABEL_AUDIO_RESAMPLER_DRIVER_CC)))
|
else if (string_is_equal(lbl, msg_hash_to_str(
|
||||||
|
MENU_ENUM_LABEL_AUDIO_RESAMPLER_DRIVER_CC)))
|
||||||
strlcpy(s,
|
strlcpy(s,
|
||||||
"Convoluted Cosine implementation.", len);
|
"Convoluted Cosine implementation.", len);
|
||||||
else if (string_is_empty(s))
|
else if (string_is_empty(s))
|
||||||
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE), len);
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE), len);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case MENU_ENUM_LABEL_CRT_SWITCH_RESOLUTION:
|
||||||
|
snprintf(s, len, "SET CRT");
|
||||||
|
break;
|
||||||
|
|
||||||
|
case MENU_ENUM_LABEL_CRT_SWITCH_RESOLUTION_SUPER:
|
||||||
|
snprintf(s, len, "SET CRT SUPER");
|
||||||
|
break;
|
||||||
|
|
||||||
case MENU_ENUM_LABEL_VIDEO_SHADER_PRESET:
|
case MENU_ENUM_LABEL_VIDEO_SHADER_PRESET:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Load Shader Preset. \n"
|
"Load Shader Preset. \n"
|
||||||
" \n"
|
" \n"
|
||||||
" Load a "
|
" Load a shader preset directly. \n"
|
||||||
#ifdef HAVE_CG
|
|
||||||
"Cg"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_GLSL
|
|
||||||
#ifdef HAVE_CG
|
|
||||||
"/"
|
|
||||||
#endif
|
|
||||||
"GLSL"
|
|
||||||
#endif
|
|
||||||
#ifdef HAVE_HLSL
|
|
||||||
#if defined(HAVE_CG) || defined(HAVE_HLSL)
|
|
||||||
"/"
|
|
||||||
#endif
|
|
||||||
"HLSL"
|
|
||||||
#endif
|
|
||||||
" preset directly. \n"
|
|
||||||
"The menu shader menu is updated accordingly. \n"
|
"The menu shader menu is updated accordingly. \n"
|
||||||
" \n"
|
" \n"
|
||||||
"If the CGP uses scaling methods which are not \n"
|
"If the CGP uses scaling methods which are not \n"
|
||||||
@ -1069,6 +1132,15 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"saved to Shader Directory."
|
"saved to Shader Directory."
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_SHADER_WATCH_FOR_CHANGES:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Watch shader files for new changes. \n"
|
||||||
|
" \n"
|
||||||
|
"After saving changes to a shader on disk, \n"
|
||||||
|
"it will automatically be recompiled \n"
|
||||||
|
"and applied to the running content."
|
||||||
|
);
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_MENU_TOGGLE:
|
case MENU_ENUM_LABEL_MENU_TOGGLE:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Toggles menu.");
|
"Toggles menu.");
|
||||||
@ -1082,6 +1154,13 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"the window to allow relative mouse input to \n"
|
"the window to allow relative mouse input to \n"
|
||||||
"work better.");
|
"work better.");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_GAME_FOCUS_TOGGLE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Toggles game focus.\n"
|
||||||
|
" \n"
|
||||||
|
"When a game has focus, RetroArch will both disable \n"
|
||||||
|
"hotkeys and keep/warp the mouse pointer inside the window.");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_DISK_NEXT:
|
case MENU_ENUM_LABEL_DISK_NEXT:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Cycles through disk images. Use after \n"
|
"Cycles through disk images. Use after \n"
|
||||||
@ -1152,6 +1231,14 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"This will take a performance hit, \n"
|
"This will take a performance hit, \n"
|
||||||
"so it is disabled by default.");
|
"so it is disabled by default.");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_APPLY_AFTER_TOGGLE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Apply cheat immediately after toggling.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_APPLY_AFTER_LOAD:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Auto-apply cheats when game loads.");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_LIBRETRO_DIR_PATH:
|
case MENU_ENUM_LABEL_LIBRETRO_DIR_PATH:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Core Directory. \n"
|
"Core Directory. \n"
|
||||||
@ -1179,6 +1266,13 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"not run at 60Hz, or something close to it, \n"
|
"not run at 60Hz, or something close to it, \n"
|
||||||
"disable VSync, and leave this at its default.");
|
"disable VSync, and leave this at its default.");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_VIDEO_REFRESH_RATE_POLLED:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Set Polled Refresh Rate\n"
|
||||||
|
" \n"
|
||||||
|
"Sets the refresh rate to the actual value\n"
|
||||||
|
"polled from the display driver.");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_VIDEO_ROTATION:
|
case MENU_ENUM_LABEL_VIDEO_ROTATION:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Forces a certain rotation \n"
|
"Forces a certain rotation \n"
|
||||||
@ -1197,7 +1291,7 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
break;
|
break;
|
||||||
case MENU_ENUM_LABEL_FASTFORWARD_RATIO:
|
case MENU_ENUM_LABEL_FASTFORWARD_RATIO:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Fastforward ratio."
|
"Fastforward ratio.\n"
|
||||||
" \n"
|
" \n"
|
||||||
"The maximum rate at which content will\n"
|
"The maximum rate at which content will\n"
|
||||||
"be run when using fast forward.\n"
|
"be run when using fast forward.\n"
|
||||||
@ -1210,6 +1304,15 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"Do not rely on this cap to be perfectly \n"
|
"Do not rely on this cap to be perfectly \n"
|
||||||
"accurate.");
|
"accurate.");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_VRR_RUNLOOP_ENABLE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Sync to Exact Content Framerate.\n"
|
||||||
|
" \n"
|
||||||
|
"This option is the equivalent of forcing x1 speed\n"
|
||||||
|
"while still allowing fast forward.\n"
|
||||||
|
"No deviation from the core requested refresh rate,\n"
|
||||||
|
"no sound Dynamic Rate Control).");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_VIDEO_MONITOR_INDEX:
|
case MENU_ENUM_LABEL_VIDEO_MONITOR_INDEX:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Which monitor to prefer.\n"
|
"Which monitor to prefer.\n"
|
||||||
@ -1338,7 +1441,7 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"Attempts to hard-synchronize \n"
|
"Attempts to hard-synchronize \n"
|
||||||
"CPU and GPU.\n"
|
"CPU and GPU.\n"
|
||||||
" \n"
|
" \n"
|
||||||
"Can reduce latency at cost of \n"
|
"Can reduce latency at the cost of \n"
|
||||||
"performance.");
|
"performance.");
|
||||||
break;
|
break;
|
||||||
case MENU_ENUM_LABEL_REWIND_GRANULARITY:
|
case MENU_ENUM_LABEL_REWIND_GRANULARITY:
|
||||||
@ -1350,6 +1453,22 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"at a time, increasing the rewinding \n"
|
"at a time, increasing the rewinding \n"
|
||||||
"speed.");
|
"speed.");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_REWIND_BUFFER_SIZE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Rewind buffer size (MB).\n"
|
||||||
|
" \n"
|
||||||
|
" The amount of memory in MB to reserve \n"
|
||||||
|
"for rewinding. Increasing this value \n"
|
||||||
|
"increases the rewind history length.\n");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_REWIND_BUFFER_SIZE_STEP:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Rewind buffer size step (MB).\n"
|
||||||
|
" \n"
|
||||||
|
" Each time you increase or decrease \n"
|
||||||
|
"the rewind buffer size value via this \n"
|
||||||
|
"UI it will change by this amount.\n");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_SCREENSHOT:
|
case MENU_ENUM_LABEL_SCREENSHOT:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Take screenshot.");
|
"Take screenshot.");
|
||||||
@ -1359,7 +1478,7 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"Sets how many milliseconds to delay\n"
|
"Sets how many milliseconds to delay\n"
|
||||||
"after VSync before running the core.\n"
|
"after VSync before running the core.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Can reduce latency at cost of\n"
|
"Can reduce latency at the cost of\n"
|
||||||
"higher risk of stuttering.\n"
|
"higher risk of stuttering.\n"
|
||||||
" \n"
|
" \n"
|
||||||
"Maximum is 15.");
|
"Maximum is 15.");
|
||||||
@ -1465,7 +1584,7 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Dynamic Wallpapers Directory. \n"
|
"Dynamic Wallpapers Directory. \n"
|
||||||
" \n"
|
" \n"
|
||||||
" The place to store wallpapers that will \n"
|
" The place to store backgrounds that will \n"
|
||||||
"be loaded dynamically by the menu depending \n"
|
"be loaded dynamically by the menu depending \n"
|
||||||
"on context.");
|
"on context.");
|
||||||
break;
|
break;
|
||||||
@ -1476,6 +1595,14 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"When slowmotion, content will slow\n"
|
"When slowmotion, content will slow\n"
|
||||||
"down by factor.");
|
"down by factor.");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_INPUT_BUTTON_AXIS_THRESHOLD:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Defines the axis threshold.\n"
|
||||||
|
" \n"
|
||||||
|
"How far an axis must be tilted to result\n"
|
||||||
|
"in a button press.\n"
|
||||||
|
" Possible values are [0.0, 1.0].");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_INPUT_TURBO_PERIOD:
|
case MENU_ENUM_LABEL_INPUT_TURBO_PERIOD:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Turbo period.\n"
|
"Turbo period.\n"
|
||||||
@ -1509,7 +1636,7 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
snprintf(s, len, "Enable touch input inside the menu.");
|
snprintf(s, len, "Enable touch input inside the menu.");
|
||||||
break;
|
break;
|
||||||
case MENU_ENUM_LABEL_MENU_WALLPAPER:
|
case MENU_ENUM_LABEL_MENU_WALLPAPER:
|
||||||
snprintf(s, len, "Path to an image to set as menu wallpaper.");
|
snprintf(s, len, "Path to an image to set as the background.");
|
||||||
break;
|
break;
|
||||||
case MENU_ENUM_LABEL_NAVIGATION_WRAPAROUND:
|
case MENU_ENUM_LABEL_NAVIGATION_WRAPAROUND:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
@ -1519,7 +1646,7 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
break;
|
break;
|
||||||
case MENU_ENUM_LABEL_PAUSE_LIBRETRO:
|
case MENU_ENUM_LABEL_PAUSE_LIBRETRO:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"If disabled, the libretro core will keep \n"
|
"If disabled, the game will keep \n"
|
||||||
"running in the background when we are in the \n"
|
"running in the background when we are in the \n"
|
||||||
"menu.");
|
"menu.");
|
||||||
break;
|
break;
|
||||||
@ -1541,6 +1668,45 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"Increasing this value will increase \n"
|
"Increasing this value will increase \n"
|
||||||
"performance, but introduce more latency.");
|
"performance, but introduce more latency.");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_NETPLAY_PUBLIC_ANNOUNCE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Whether to announce netplay games publicly. \n"
|
||||||
|
" \n"
|
||||||
|
"If set to false, clients must manually connect \n"
|
||||||
|
"rather than using the public lobby.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_NETPLAY_START_AS_SPECTATOR:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Whether to start netplay in spectator mode. \n"
|
||||||
|
" \n"
|
||||||
|
"If set to true, netplay will be in spectator mode \n"
|
||||||
|
"on start. It's always possible to change mode \n"
|
||||||
|
"later.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_NETPLAY_ALLOW_SLAVES:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Whether to allow connections in slave mode. \n"
|
||||||
|
" \n"
|
||||||
|
"Slave-mode clients require very little processing \n"
|
||||||
|
"power on either side, but will suffer \n"
|
||||||
|
"significantly from network latency.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_NETPLAY_REQUIRE_SLAVES:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Whether to disallow connections not in slave mode. \n"
|
||||||
|
" \n"
|
||||||
|
"Not recommended except for very fast networks \n"
|
||||||
|
"with very weak machines. \n");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_NETPLAY_STATELESS_MODE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Whether to run netplay in a mode not requiring\n"
|
||||||
|
"save states. \n"
|
||||||
|
" \n"
|
||||||
|
"If set to true, a very fast network is required,\n"
|
||||||
|
"but no rewinding is performed, so there will be\n"
|
||||||
|
"no netplay jitter.\n");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_NETPLAY_CHECK_FRAMES:
|
case MENU_ENUM_LABEL_NETPLAY_CHECK_FRAMES:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"The frequency in frames with which netplay \n"
|
"The frequency in frames with which netplay \n"
|
||||||
@ -1557,6 +1723,49 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"no checks. This value is only used on the \n"
|
"no checks. This value is only used on the \n"
|
||||||
"netplay host. \n");
|
"netplay host. \n");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_NETPLAY_INPUT_LATENCY_FRAMES_MIN:
|
||||||
|
snprintf(s, len,
|
||||||
|
"The number of frames of input latency for \n"
|
||||||
|
"netplay to use to hide network latency. \n"
|
||||||
|
" \n"
|
||||||
|
"When in netplay, this option delays local \n"
|
||||||
|
"input, so that the frame being run is \n"
|
||||||
|
"closer to the frames being received from \n"
|
||||||
|
"the network. This reduces jitter and makes \n"
|
||||||
|
"netplay less CPU-intensive, but at the \n"
|
||||||
|
"price of noticeable input lag. \n");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_NETPLAY_INPUT_LATENCY_FRAMES_RANGE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"The range of frames of input latency that \n"
|
||||||
|
"may be used by netplay to hide network \n"
|
||||||
|
"latency. \n"
|
||||||
|
"\n"
|
||||||
|
"If set, netplay will adjust the number of \n"
|
||||||
|
"frames of input latency dynamically to \n"
|
||||||
|
"balance CPU time, input latency and \n"
|
||||||
|
"network latency. This reduces jitter and \n"
|
||||||
|
"makes netplay less CPU-intensive, but at \n"
|
||||||
|
"the price of unpredictable input lag. \n");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_NETPLAY_NAT_TRAVERSAL:
|
||||||
|
snprintf(s, len,
|
||||||
|
"When hosting, attempt to listen for\n"
|
||||||
|
"connections from the public internet, using\n"
|
||||||
|
"UPnP or similar technologies to escape LANs. \n");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_NETPLAY_USE_MITM_SERVER:
|
||||||
|
snprintf(s, len,
|
||||||
|
"When hosting a netplay session, relay connection through a \n"
|
||||||
|
"man-in-the-middle server \n"
|
||||||
|
"to get around firewalls or NAT/UPnP issues. \n");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_NETPLAY_MITM_SERVER:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Specifies the man-in-the-middle server \n"
|
||||||
|
"to use for netplay. A server that is \n"
|
||||||
|
"located closer to you may have less latency. \n");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_VIDEO_MAX_SWAPCHAIN_IMAGES:
|
case MENU_ENUM_LABEL_VIDEO_MAX_SWAPCHAIN_IMAGES:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Maximum amount of swapchain images. This \n"
|
"Maximum amount of swapchain images. This \n"
|
||||||
@ -1579,6 +1788,14 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Shows current date and/or time inside menu.");
|
"Shows current date and/or time inside menu.");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_TIMEDATE_STYLE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Style to show the current date and/or time in.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_BATTERY_LEVEL_ENABLE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Shows current battery level inside menu.");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_CORE_ENABLE:
|
case MENU_ENUM_LABEL_CORE_ENABLE:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Shows current core inside menu.");
|
"Shows current core inside menu.");
|
||||||
@ -1595,17 +1812,17 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Disconnects an active Netplay connection.");
|
"Disconnects an active Netplay connection.");
|
||||||
break;
|
break;
|
||||||
case MENU_ENUM_LABEL_NETPLAY_SETTINGS:
|
|
||||||
snprintf(s, len,
|
|
||||||
"Setting related to Netplay.");
|
|
||||||
break;
|
|
||||||
case MENU_ENUM_LABEL_NETPLAY_LAN_SCAN_SETTINGS:
|
case MENU_ENUM_LABEL_NETPLAY_LAN_SCAN_SETTINGS:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Search for and connect to netplay hosts on the local network.");
|
"Search for and connect to netplay hosts on the local network.");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_NETPLAY_SETTINGS:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Setting related to Netplay.");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_DYNAMIC_WALLPAPER:
|
case MENU_ENUM_LABEL_DYNAMIC_WALLPAPER:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Dynamically load a new wallpaper \n"
|
"Dynamically load a new background \n"
|
||||||
"depending on context.");
|
"depending on context.");
|
||||||
break;
|
break;
|
||||||
case MENU_ENUM_LABEL_CORE_UPDATER_BUILDBOT_URL:
|
case MENU_ENUM_LABEL_CORE_UPDATER_BUILDBOT_URL:
|
||||||
@ -1631,6 +1848,15 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"Defines a directory where overlays are \n"
|
"Defines a directory where overlays are \n"
|
||||||
"kept for easy access.");
|
"kept for easy access.");
|
||||||
break;
|
break;
|
||||||
|
#ifdef HAVE_VIDEO_LAYOUT
|
||||||
|
case MENU_ENUM_LABEL_VIDEO_LAYOUT_DIRECTORY:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Video Layout Directory. \n"
|
||||||
|
" \n"
|
||||||
|
"Defines a directory where video layouts are \n"
|
||||||
|
"kept for easy access.");
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
case MENU_ENUM_LABEL_INPUT_MAX_USERS:
|
case MENU_ENUM_LABEL_INPUT_MAX_USERS:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Maximum amount of users supported by \n"
|
"Maximum amount of users supported by \n"
|
||||||
@ -1666,6 +1892,17 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"The address of the host to connect to.");
|
"The address of the host to connect to.");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_NETPLAY_PASSWORD:
|
||||||
|
snprintf(s, len,
|
||||||
|
"The password for connecting to the netplay \n"
|
||||||
|
"host. Used only in host mode.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_NETPLAY_SPECTATE_PASSWORD:
|
||||||
|
snprintf(s, len,
|
||||||
|
"The password for connecting to the netplay \n"
|
||||||
|
"host with only spectator privileges. Used \n"
|
||||||
|
"only in host mode.");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_STDIN_CMD_ENABLE:
|
case MENU_ENUM_LABEL_STDIN_CMD_ENABLE:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Enable stdin command interface.");
|
"Enable stdin command interface.");
|
||||||
@ -1689,7 +1926,9 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
"3 - Press Start + Select simultaneously.");
|
"3 - Press Start + Select simultaneously.");
|
||||||
break;
|
break;
|
||||||
case MENU_ENUM_LABEL_INPUT_ALL_USERS_CONTROL_MENU:
|
case MENU_ENUM_LABEL_INPUT_ALL_USERS_CONTROL_MENU:
|
||||||
snprintf(s, len, "Allow any RetroPad to control the menu.");
|
snprintf(s, len, "Allows any user to control the menu. \n"
|
||||||
|
" \n"
|
||||||
|
"When disabled, only user 1 can control the menu.");
|
||||||
break;
|
break;
|
||||||
case MENU_ENUM_LABEL_INPUT_AUTODETECT_ENABLE:
|
case MENU_ENUM_LABEL_INPUT_AUTODETECT_ENABLE:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
@ -1754,6 +1993,10 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Saves state.");
|
"Saves state.");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_NETPLAY_GAME_WATCH:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Netplay toggle play/spectate mode.");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_CHEAT_INDEX_PLUS:
|
case MENU_ENUM_LABEL_CHEAT_INDEX_PLUS:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Increment cheat index.\n");
|
"Increment cheat index.\n");
|
||||||
@ -1782,6 +2025,103 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Toggle cheat index.\n");
|
"Toggle cheat index.\n");
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_IDX:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Index position in list.\n");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_ADDRESS_BIT_POSITION:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Address bitmask when Memory Search Size < 8-bit.\n");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_REPEAT_COUNT:
|
||||||
|
snprintf(s, len,
|
||||||
|
"The number of times the cheat will be applied.\nUse with the other two Iteration options to affect large areas of memory.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_REPEAT_ADD_TO_ADDRESS:
|
||||||
|
snprintf(s, len,
|
||||||
|
"After each 'Number of Iterations' the Memory Address will be increased by this number times the 'Memory Search Size'.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_REPEAT_ADD_TO_VALUE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"After each 'Number of Iterations' the Value will be increased by this amount.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_MATCH_IDX:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Select the match to view.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_START_OR_CONT:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Scan memory to create new cheats");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_START_OR_RESTART:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Left/Right to change bit-size\n");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_SEARCH_EXACT:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Left/Right to change value\n");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_SEARCH_LT:
|
||||||
|
snprintf(s, len,
|
||||||
|
" ");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_SEARCH_GT:
|
||||||
|
snprintf(s, len,
|
||||||
|
" ");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_SEARCH_EQ:
|
||||||
|
snprintf(s, len,
|
||||||
|
" ");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_SEARCH_NEQ:
|
||||||
|
snprintf(s, len,
|
||||||
|
" ");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_SEARCH_EQPLUS:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Left/Right to change value\n");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_SEARCH_EQMINUS:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Left/Right to change value\n");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_ADD_MATCHES:
|
||||||
|
snprintf(s, len,
|
||||||
|
" ");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_VIEW_MATCHES:
|
||||||
|
snprintf(s, len,
|
||||||
|
" ");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_CREATE_OPTION:
|
||||||
|
snprintf(s, len,
|
||||||
|
" ");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_DELETE_OPTION:
|
||||||
|
snprintf(s, len,
|
||||||
|
" ");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_ADD_NEW_TOP:
|
||||||
|
snprintf(s, len,
|
||||||
|
" ");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_RELOAD_CHEATS:
|
||||||
|
snprintf(s, len,
|
||||||
|
" ");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_ADD_NEW_BOTTOM:
|
||||||
|
snprintf(s, len,
|
||||||
|
" ");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_DELETE_ALL:
|
||||||
|
snprintf(s, len,
|
||||||
|
" ");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_CHEAT_BIG_ENDIAN:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Big endian : 258 = 0x0102\n"
|
||||||
|
"Little endian : 258 = 0x0201");
|
||||||
|
break;
|
||||||
case MENU_ENUM_LABEL_HOLD_FAST_FORWARD:
|
case MENU_ENUM_LABEL_HOLD_FAST_FORWARD:
|
||||||
snprintf(s, len,
|
snprintf(s, len,
|
||||||
"Hold for fast-forward. Releasing button \n"
|
"Hold for fast-forward. Releasing button \n"
|
||||||
@ -1863,6 +2203,62 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_HIDE_IN_MENU)
|
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_INPUT_OVERLAY_HIDE_IN_MENU)
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
|
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_BGCOLOR_ENABLE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Enables a background color for the OSD.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_BGCOLOR_RED:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Sets the red value of the OSD background color. Valid values are between 0 and 255.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_BGCOLOR_GREEN:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Sets the green value of the OSD background color. Valid values are between 0 and 255.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_BGCOLOR_BLUE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Sets the blue value of the OSD background color. Valid values are between 0 and 255.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_BGCOLOR_OPACITY:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Sets the opacity of the OSD background color. Valid values are between 0.0 and 1.0.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_COLOR_RED:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Sets the red value of the OSD text color. Valid values are between 0 and 255.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_COLOR_GREEN:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Sets the green value of the OSD text color. Valid values are between 0 and 255.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_VALUE_VIDEO_MESSAGE_COLOR_BLUE:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Sets the blue value of the OSD text color. Valid values are between 0 and 255.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_MIDI_DRIVER:
|
||||||
|
snprintf(s, len,
|
||||||
|
"MIDI driver to use.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_MIDI_INPUT:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Sets the input device (driver specific).\n"
|
||||||
|
"When set to \"Off\", MIDI input will be disabled.\n"
|
||||||
|
"Device name can also be typed in.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_MIDI_OUTPUT:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Sets the output device (driver specific).\n"
|
||||||
|
"When set to \"Off\", MIDI output will be disabled.\n"
|
||||||
|
"Device name can also be typed in.\n"
|
||||||
|
" \n"
|
||||||
|
"When MIDI output is enabled and core and game/app support MIDI output,\n"
|
||||||
|
"some or all sounds (depends on game/app) will be generated by MIDI device.\n"
|
||||||
|
"In case of \"null\" MIDI driver this means that those sounds won't be audible.");
|
||||||
|
break;
|
||||||
|
case MENU_ENUM_LABEL_MIDI_VOLUME:
|
||||||
|
snprintf(s, len,
|
||||||
|
"Sets the master volume of the output device.");
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
if (string_is_empty(s))
|
if (string_is_empty(s))
|
||||||
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE), len);
|
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE), len);
|
||||||
@ -1871,12 +2267,23 @@ int menu_hash_get_help_jp_enum(enum msg_hash_enums msg, char *s, size_t len)
|
|||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
const char *msg_hash_to_str_jp(enum msg_hash_enums msg)
|
#ifdef HAVE_MENU
|
||||||
|
const char *menu_hash_to_str_jp_label_enum(enum msg_hash_enums msg)
|
||||||
{
|
{
|
||||||
|
if (msg <= MENU_ENUM_LABEL_INPUT_HOTKEY_BIND_END &&
|
||||||
|
msg >= MENU_ENUM_LABEL_INPUT_HOTKEY_BIND_BEGIN)
|
||||||
|
{
|
||||||
|
static char hotkey_lbl[128] = {0};
|
||||||
|
unsigned idx = msg - MENU_ENUM_LABEL_INPUT_HOTKEY_BIND_BEGIN;
|
||||||
|
snprintf(hotkey_lbl, sizeof(hotkey_lbl), "input_hotkey_binds_%d", idx);
|
||||||
|
return hotkey_lbl;
|
||||||
|
}
|
||||||
|
|
||||||
switch (msg)
|
switch (msg)
|
||||||
{
|
{
|
||||||
#include "msg_hash_ja.h"
|
#include "msg_hash_lbl.h"
|
||||||
default:
|
default:
|
||||||
#if 0
|
#if 0
|
||||||
RARCH_LOG("Unimplemented: [%d]\n", msg);
|
RARCH_LOG("Unimplemented: [%d]\n", msg);
|
||||||
@ -1886,3 +2293,27 @@ const char *msg_hash_to_str_jp(enum msg_hash_enums msg)
|
|||||||
|
|
||||||
return "null";
|
return "null";
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
const char *msg_hash_to_str_jp(enum msg_hash_enums msg) {
|
||||||
|
#ifdef HAVE_MENU
|
||||||
|
const char *ret = menu_hash_to_str_us_label_enum(msg);
|
||||||
|
|
||||||
|
if (ret && !string_is_equal(ret, "null"))
|
||||||
|
return ret;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
switch (msg) {
|
||||||
|
#include "msg_hash_ja.h"
|
||||||
|
default:
|
||||||
|
#if 0
|
||||||
|
RARCH_LOG("Unimplemented: [%d]\n", msg);
|
||||||
|
{
|
||||||
|
RARCH_LOG("[%d] : %s\n", msg - 1, msg_hash_to_str(((enum msg_hash_enums)(msg - 1))));
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return "null";
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user