Merge pull request #5349 from JosJuice/more-incorrect-trans

Remove incorrect usage of _trans
This commit is contained in:
Mat M 2017-04-30 18:20:19 -04:00 committed by GitHub
commit eb8dbe03ad

View file

@ -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;
}