diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2023-08-18 21:33:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-18 21:33:23 +0200 |
| commit | bb4ed1c450384c5f7c3300185db6dc833cf7e5bd (patch) | |
| tree | 9f919bd8ade8c95ce93718808e42dd7eb2c7b7b5 /Source/Core | |
| parent | 8a96ce73f6908ebe290bfbe4e683702cabc8497b (diff) | |
| parent | b3902397cbbc18205b74cdbb2767a7630316cc0c (diff) | |
Merge pull request #12118 from AdmiralCurtiss/tas-window-translatable
DolphinQt/TASInputWindow: Make 'Enable Controller Input' translatable.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/TAS/TASInputWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/TAS/TASInputWindow.cpp b/Source/Core/DolphinQt/TAS/TASInputWindow.cpp index 87e783e42a..36f55efd01 100644 --- a/Source/Core/DolphinQt/TAS/TASInputWindow.cpp +++ b/Source/Core/DolphinQt/TAS/TASInputWindow.cpp @@ -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); |
