Browse Source
Merge pull request #1429 from lioncash/translate
configure_input: Make analog mapping strings translatable
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
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; }, |
|
|
|
|