summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu/ControlGroup
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2019-10-30 05:39:13 -0400
committerGitHub <noreply@github.com>2019-10-30 05:39:13 -0400
commitfd4bf5f0a2b5041f5607c4de48bc378a1c02ff73 (patch)
tree4dc32679d594ebdf10865367a7d254b56f097193 /Source/Core/InputCommon/ControllerEmu/ControlGroup
parentd6a3d0873c9984689705c7de8ec329e00027ceee (diff)
parentf4da08eb139fc3fa7b2ff3b97f308dd9b0ea480c (diff)
Merge pull request #8438 from JosJuice/tilt-tooltip-string
Change Wii Remote tilt tooltip string based on translator feedback
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/ControlGroup')
-rw-r--r--Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp
index c010c969fc..07c8972b54 100644
--- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp
+++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Tilt.cpp
@@ -29,7 +29,7 @@ Tilt::Tilt(const std::string& name_) : ReshapableInput(name_, name_, GroupType::
{_trans("Angle"),
// i18n: The symbol/abbreviation for degrees (unit of angular measure).
_trans("°"),
- // i18n: Refers to emulated wii remote movement.
+ // i18n: Refers to tilting an emulated Wii Remote.
_trans("Maximum tilt angle.")},
85, 0, 180);
@@ -37,8 +37,8 @@ Tilt::Tilt(const std::string& name_) : ReshapableInput(name_, name_, GroupType::
{_trans("Velocity"),
// i18n: The symbol/abbreviation for hertz (cycles per second).
_trans("Hz"),
- // i18n: Refers to emulated wii remote movement.
- _trans("Peak complete turns per second.")},
+ // i18n: Refers to tilting an emulated Wii Remote.
+ _trans("Peak angular velocity (measured in turns per second).")},
7, 1, 50);
}