From 3a8b002edef75183157560a09822fce0a4bf282f Mon Sep 17 00:00:00 2001 From: zhupengfei Date: Tue, 24 Jul 2018 19:49:49 +0800 Subject: [PATCH] citra_qt: minor retranslation fix When you change the language when a game is running, the "Continue" action in the "Emulation" menu would become "Start". This commit fixes the issue by checking and setting it if it should be "Continue". It seems that this is the only place with this issue. --- src/citra_qt/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 0ff04e7f6..f22204425 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -1416,6 +1416,9 @@ void GMainWindow::OnLanguageChanged(const QString& locale) { LoadTranslation(); ui.retranslateUi(this); SetupUIStrings(); + + if (emulation_running) + ui.action_Start->setText(tr("Continue")); } void GMainWindow::SetupUIStrings() {