mirror of https://github.com/PCSX2/pcsx2.git
UI: Add some missing string translations
This commit is contained in:
parent
e488e74313
commit
1cff63bc01
|
@ -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())
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue