summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2025-05-22 12:40:09 -0500
committerGitHub <noreply@github.com>2025-05-22 12:40:09 -0500
commit97d27130ed2e731f0f2b06b7a6ff7616d6e3ad0a (patch)
tree2efa5d38f63ce65c66ecf3909c9cd4c248df2788
parent69af10ef863204dbebd67dbd71bd8e04d63cfb24 (diff)
parent260f0225a4587dc1779895684a5326dcf6e55991 (diff)
Merge pull request #13700 from JosJuice/tr-wii-speak-osd
DolphinQt: Don't translate Wii Speak OSD string
-rw-r--r--Source/Core/DolphinQt/HotkeyScheduler.cpp4
1 files changed, 1 insertions, 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");
}
}