summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2018-10-02 19:31:31 -0400
committerGravatar Lioncash2018-10-02 20:28:45 -0400
commit61b144bbf36feb3d4550ea842eaba2d539dd6cbd (patch)
treee8899c068f4317ed6d44a81706e56088582d556d
parentMerge pull request #1330 from raven02/tlds (diff)
downloadyuzu-61b144bbf36feb3d4550ea842eaba2d539dd6cbd.tar.gz
yuzu-61b144bbf36feb3d4550ea842eaba2d539dd6cbd.tar.xz
yuzu-61b144bbf36feb3d4550ea842eaba2d539dd6cbd.zip
configure_input: Make analog mapping strings translatable
These strings are user-facing, so they should be specified as translatable with tr().
Diffstat (limited to '')
-rw-r--r--src/yuzu/configuration/configure_input.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/yuzu/configuration/configure_input.cpp b/src/yuzu/configuration/configure_input.cpp
index d29abb74b..473937ea9 100644
--- a/src/yuzu/configuration/configure_input.cpp
+++ b/src/yuzu/configuration/configure_input.cpp
@@ -152,9 +152,9 @@ ConfigureInput::ConfigureInput(QWidget* parent)
152 } 152 }
153 } 153 }
154 connect(analog_map_stick[analog_id], &QPushButton::released, [=]() { 154 connect(analog_map_stick[analog_id], &QPushButton::released, [=]() {
155 QMessageBox::information( 155 QMessageBox::information(this, tr("Information"),
156 this, "Information", 156 tr("After pressing OK, first move your joystick horizontally, "
157 "After pressing OK, first move your joystick horizontally, and then vertically."); 157 "and then vertically."));
158 handleClick( 158 handleClick(
159 analog_map_stick[analog_id], 159 analog_map_stick[analog_id],
160 [=](const Common::ParamPackage& params) { analogs_param[analog_id] = params; }, 160 [=](const Common::ParamPackage& params) { analogs_param[analog_id] = params; },