From 00af9da2457d97e566ebf5978c099409b7d43e2f Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 2 Oct 2018 19:31:31 -0400 Subject: [PATCH] configure_input: Make analog mapping strings translatable These strings are user-facing, so they should be specified as translatable with tr(). --- src/citra_qt/configuration/configure_input.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/citra_qt/configuration/configure_input.cpp b/src/citra_qt/configuration/configure_input.cpp index 58961a86f..1a356d4be 100644 --- a/src/citra_qt/configuration/configure_input.cpp +++ b/src/citra_qt/configuration/configure_input.cpp @@ -148,9 +148,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; },