Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #12118 from AdmiralCurtiss/tas-window-translatable
DolphinQt/TASInputWindow: Make 'Enable Controller Input' translatable.
  • Loading branch information
AdmiralCurtiss committed Aug 18, 2023
2 parents 8a96ce7 + b390239 commit bb4ed1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt/TAS/TASInputWindow.cpp
Expand Up @@ -50,7 +50,7 @@ TASInputWindow::TASInputWindow(QWidget* parent) : QDialog(parent)

QGridLayout* settings_layout = new QGridLayout;

m_use_controller = new QCheckBox(QStringLiteral("Enable Controller Inpu&t"));
m_use_controller = new QCheckBox(tr("Enable Controller Inpu&t"));
m_use_controller->setToolTip(tr("Warning: Analog inputs may reset to controller values at "
"random. In some cases this can be fixed by adding a deadzone."));
settings_layout->addWidget(m_use_controller, 0, 0, 1, 2);
Expand Down

0 comments on commit bb4ed1c

Please sign in to comment.