mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Merge pull request #13700 from JosJuice/tr-wii-speak-osd
DolphinQt: Don't translate Wii Speak OSD string
This commit is contained in:
commit
97d27130ed
1 changed files with 1 additions and 3 deletions
|
@ -301,9 +301,7 @@ void HotkeyScheduler::Run()
|
||||||
{
|
{
|
||||||
const bool muted = !Settings::Instance().IsWiiSpeakMuted();
|
const bool muted = !Settings::Instance().IsWiiSpeakMuted();
|
||||||
Settings::Instance().SetWiiSpeakMuted(muted);
|
Settings::Instance().SetWiiSpeakMuted(muted);
|
||||||
// i18n: Wii Speak (un)muted notification message
|
OSD::AddMessage(muted ? "Wii Speak muted" : "Wii Speak unmuted");
|
||||||
const QString msg = tr("Wii Speak %1").arg(muted ? tr("muted") : tr("unmuted"));
|
|
||||||
OSD::AddMessage(msg.toStdString());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue