From a5706a47afef80a18216de75bcd1117f2c9d4bb8 Mon Sep 17 00:00:00 2001 From: tooomm Date: Thu, 19 Oct 2023 21:58:38 +0200 Subject: [PATCH] Include missing strings for translation (#4919) --- cockatrice/src/dlg_settings.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cockatrice/src/dlg_settings.cpp b/cockatrice/src/dlg_settings.cpp index f560e126..b14bdc62 100644 --- a/cockatrice/src/dlg_settings.cpp +++ b/cockatrice/src/dlg_settings.cpp @@ -1281,8 +1281,8 @@ void ShortcutSettingsPage::retranslateUi() currentShortcutLabel->setText(tr("Shortcut:")); editTextBox->retranslateUi(); faqLabel->setText(QString("%2").arg(WIKI_CUSTOM_SHORTCUTS).arg(tr("How to set custom shortcuts"))); - btnResetAll->setText("Restore all default shortcuts"); - btnClearAll->setText("Clear all shortcuts"); + btnResetAll->setText(tr("Restore all default shortcuts")); + btnClearAll->setText(tr("Clear all shortcuts")); } DlgSettings::DlgSettings(QWidget *parent) : QDialog(parent)