summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2018-10-03 19:13:20 -0400
committerGravatar GitHub2018-10-03 19:13:20 -0400
commit5ae5610c130c8205a9ad072e1d56f8657e44bcd1 (patch)
treecc269bb3527a0ef99549421a8113360bd60ac64f
parentMerge pull request #1436 from lioncash/view (diff)
parentconfigure_input: Make analog mapping strings translatable (diff)
downloadyuzu-5ae5610c130c8205a9ad072e1d56f8657e44bcd1.tar.gz
yuzu-5ae5610c130c8205a9ad072e1d56f8657e44bcd1.tar.xz
yuzu-5ae5610c130c8205a9ad072e1d56f8657e44bcd1.zip
Merge pull request #1429 from lioncash/translate
configure_input: Make analog mapping strings translatable
-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; },