Core: Make some additional OSD messages translatable

This commit is contained in:
Albert Liu
2020-10-22 02:07:48 -07:00
parent 2b2e2f7854
commit f69889264d
6 changed files with 27 additions and 17 deletions

View File

@ -59,7 +59,9 @@ bool Pad::DoState(StateWrapper& sw)
if (g_settings.load_devices_from_save_states)
{
g_host_interface->AddFormattedOSDMessage(
10.0f, "Save state contains controller type %s in port %u, but %s is used. Switching.",
10.0f,
g_host_interface->TranslateString(
"OSDMessage", "Save state contains controller type %s in port %u, but %s is used. Switching."),
Settings::GetControllerTypeName(state_controller_type), i + 1u,
Settings::GetControllerTypeName(controller_type));
@ -69,8 +71,9 @@ bool Pad::DoState(StateWrapper& sw)
}
else
{
g_host_interface->AddFormattedOSDMessage(10.0f, "Ignoring mismatched controller type %s in port %u.",
Settings::GetControllerTypeName(state_controller_type), i + 1u);
g_host_interface->AddFormattedOSDMessage(
10.0f, g_host_interface->TranslateString("OSDMessage", "Ignoring mismatched controller type %s in port %u."),
Settings::GetControllerTypeName(state_controller_type), i + 1u);
// we still need to read the save state controller state
if (state_controller_type != ControllerType::None)