UI: Add some missing string translations

This commit is contained in:
refractionpcsx2 2023-07-26 10:50:50 +01:00
parent e488e74313
commit 1cff63bc01
2 changed files with 3 additions and 5 deletions

View File

@ -640,7 +640,7 @@ void Achievements::SetChallengeMode(bool enabled)
s_challenge_mode = enabled;
if (HasActiveGame())
ImGuiFullscreen::ShowToast(std::string(), enabled ? "Hardcore mode is now enabled." : "Hardcore mode is now disabled.", 10.0f);
ImGuiFullscreen::ShowToast(std::string(), enabled ? TRANSLATE("Achievements", "Hardcore mode is now enabled.") : TRANSLATE("Achievements", "Hardcore mode is now disabled."), 10.0f);
if (HasActiveGame() && !IsTestModeActive())
{

View File

@ -655,10 +655,8 @@ void PadDualshock2::Set(u32 index, float value)
const auto [port, slot] = sioConvertPadToPortAndSlot(unifiedSlot);
Host::AddKeyedOSDMessage(fmt::format("PadAnalogButtonChange{}{}", port, slot),
fmt::format(TRANSLATE_FS("Pad", "Analog light is now {} for port {} / slot {}"),
(this->analogLight ? "On" : "Off"),
port + 1,
slot + 1),
this->analogLight ? fmt::format(TRANSLATE_FS("Pad", "Analog light is now on for port {} / slot {}"), port + 1, slot + 1) :
fmt::format(TRANSLATE_FS("Pad", "Analog light is now off for port {} / slot {}"), port + 1, slot + 1),
Host::OSD_INFO_DURATION);
}
}