From b291bdba91adf293b3f5b23949604c4bf6933cf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo?= Date: Fri, 7 Feb 2025 07:45:01 -0300 Subject: [PATCH] Cherry-pick text changes from thumbnails branch. (#301) * Cherry-pick text changes from thumbnails branch. Co-authored-by: RadiantDerg <9061202+RadiantDerg@users.noreply.github.com> * config_locale: update Aspect Ratio locale Co-Authored-By: Michael <15317421+ActualMandM@users.noreply.github.com> --------- Co-authored-by: RadiantDerg <9061202+RadiantDerg@users.noreply.github.com> Co-authored-by: Hyper <34012267+hyperbx@users.noreply.github.com> Co-authored-by: Michael <15317421+ActualMandM@users.noreply.github.com> --- UnleashedRecomp/locale/config_locale.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/UnleashedRecomp/locale/config_locale.cpp b/UnleashedRecomp/locale/config_locale.cpp index 30d7bee..718e6e2 100644 --- a/UnleashedRecomp/locale/config_locale.cpp +++ b/UnleashedRecomp/locale/config_locale.cpp @@ -196,7 +196,7 @@ CONFIG_DEFINE_LOCALE(MusicAttenuation) CONFIG_DEFINE_LOCALE(ChannelConfiguration) { - { ELanguage::English, { "Channel Configuration", "" } } + { ELanguage::English, { "Channel Configuration", "Change the output mode for your playback device." } } }; CONFIG_DEFINE_ENUM_LOCALE(EChannelConfiguration) @@ -246,7 +246,9 @@ CONFIG_DEFINE_ENUM_LOCALE(EAspectRatio) ELanguage::English, { { EAspectRatio::Auto, { "AUTO", "Auto: the aspect ratio will dynamically adjust to the window size." } }, - { EAspectRatio::OriginalNarrow, { "ORIGINAL 4:3", "" } } + { EAspectRatio::Wide, { "16:9", "16:9: locks the game to a widescreen aspect ratio." } }, + { EAspectRatio::Narrow, { "4:3", "4:3: locks the game to a narrow aspect ratio." } }, + { EAspectRatio::OriginalNarrow, { "ORIGINAL 4:3", "Original 4:3: locks the game to a narrow aspect ratio and retains parity with the game's original implementation." } } } } }; @@ -273,7 +275,7 @@ CONFIG_DEFINE_LOCALE(FPS) CONFIG_DEFINE_LOCALE(Brightness) { - { ELanguage::English, { "Brightness", "Adjust the brightness level of the game." } } + { ELanguage::English, { "Brightness", "Adjust the brightness level until the symbol on the left is barely visible." } } }; CONFIG_DEFINE_LOCALE(AntiAliasing)