mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
Merge pull request #5349 from JosJuice/more-incorrect-trans
Remove incorrect usage of _trans
This commit is contained in:
commit
eb8dbe03ad
@ -54,9 +54,9 @@ void ModifySettingsButton::GetState()
|
||||
associated_settings[i] = !associated_settings[i];
|
||||
|
||||
if (associated_settings[i])
|
||||
OSD::AddMessage(controls[i]->name + ": " + _trans("on"));
|
||||
OSD::AddMessage(controls[i]->name + ": on");
|
||||
else
|
||||
OSD::AddMessage(controls[i]->name + ": " + _trans("off"));
|
||||
OSD::AddMessage(controls[i]->name + ": off");
|
||||
|
||||
threshold_exceeded[i] = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user