diff options
author | bunnei <bunneidev@gmail.com> | 2018-10-04 01:13:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-04 01:13:20 +0200 |
commit | 5ae5610c130c8205a9ad072e1d56f8657e44bcd1 (patch) | |
tree | cc269bb3527a0ef99549421a8113360bd60ac64f | |
parent | Merge pull request #1436 from lioncash/view (diff) | |
parent | configure_input: Make analog mapping strings translatable (diff) | |
download | yuzu-5ae5610c130c8205a9ad072e1d56f8657e44bcd1.tar yuzu-5ae5610c130c8205a9ad072e1d56f8657e44bcd1.tar.gz yuzu-5ae5610c130c8205a9ad072e1d56f8657e44bcd1.tar.bz2 yuzu-5ae5610c130c8205a9ad072e1d56f8657e44bcd1.tar.lz yuzu-5ae5610c130c8205a9ad072e1d56f8657e44bcd1.tar.xz yuzu-5ae5610c130c8205a9ad072e1d56f8657e44bcd1.tar.zst yuzu-5ae5610c130c8205a9ad072e1d56f8657e44bcd1.zip |
-rw-r--r-- | src/yuzu/configuration/configure_input.cpp | 6 |
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) } } connect(analog_map_stick[analog_id], &QPushButton::released, [=]() { - QMessageBox::information( - this, "Information", - "After pressing OK, first move your joystick horizontally, and then vertically."); + QMessageBox::information(this, tr("Information"), + tr("After pressing OK, first move your joystick horizontally, " + "and then vertically.")); handleClick( analog_map_stick[analog_id], [=](const Common::ParamPackage& params) { analogs_param[analog_id] = params; }, |