From 260f0225a4587dc1779895684a5326dcf6e55991 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Thu, 22 May 2025 16:51:28 +0200 Subject: [PATCH] DolphinQt: Don't translate Wii Speak OSD string We have a general policy of not translating OSD strings due to the OSD font not having good enough support for languages other than English. --- Source/Core/DolphinQt/HotkeyScheduler.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Source/Core/DolphinQt/HotkeyScheduler.cpp b/Source/Core/DolphinQt/HotkeyScheduler.cpp index 79edeba302..0432958ea2 100644 --- a/Source/Core/DolphinQt/HotkeyScheduler.cpp +++ b/Source/Core/DolphinQt/HotkeyScheduler.cpp @@ -301,9 +301,7 @@ void HotkeyScheduler::Run() { const bool muted = !Settings::Instance().IsWiiSpeakMuted(); Settings::Instance().SetWiiSpeakMuted(muted); - // i18n: Wii Speak (un)muted notification message - const QString msg = tr("Wii Speak %1").arg(muted ? tr("muted") : tr("unmuted")); - OSD::AddMessage(msg.toStdString()); + OSD::AddMessage(muted ? "Wii Speak muted" : "Wii Speak unmuted"); } }