mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
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.
This commit is contained in:
parent
69af10ef86
commit
260f0225a4
1 changed files with 1 additions and 3 deletions
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue