Skip to content
Snippets Groups Projects
Commit 61b144bb authored by Lioncash's avatar Lioncash
Browse files

configure_input: Make analog mapping strings translatable

These strings are user-facing, so they should be specified as
translatable with tr().
parent bc679c9b
No related branches found
No related tags found
No related merge requests found
...@@ -152,9 +152,9 @@ ConfigureInput::ConfigureInput(QWidget* parent) ...@@ -152,9 +152,9 @@ ConfigureInput::ConfigureInput(QWidget* parent)
} }
} }
connect(analog_map_stick[analog_id], &QPushButton::released, [=]() { connect(analog_map_stick[analog_id], &QPushButton::released, [=]() {
QMessageBox::information( QMessageBox::information(this, tr("Information"),
this, "Information", tr("After pressing OK, first move your joystick horizontally, "
"After pressing OK, first move your joystick horizontally, and then vertically."); "and then vertically."));
handleClick( handleClick(
analog_map_stick[analog_id], analog_map_stick[analog_id],
[=](const Common::ParamPackage& params) { analogs_param[analog_id] = params; }, [=](const Common::ParamPackage& params) { analogs_param[analog_id] = params; },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment