diff --git a/pcsx2-qt/Translations/pcsx2-qt_en.ts b/pcsx2-qt/Translations/pcsx2-qt_en.ts index a201442d1a..7651b1cc13 100644 --- a/pcsx2-qt/Translations/pcsx2-qt_en.ts +++ b/pcsx2-qt/Translations/pcsx2-qt_en.ts @@ -3796,6 +3796,11 @@ You can adjust the blending level in Game Properties to improve graphical quality, but this will increase system requirements. + + + Manual GS hardware renderer fixes are enabled, automatic fixes were not applied: + + GameFixSettingsWidget @@ -9108,6 +9113,11 @@ This action cannot be reversed, and you will lose any saves on the card.{}{} cheat patches + + + {} are active. + + No cheats or patches (widescreen, compatibility or others) are found / enabled. diff --git a/pcsx2/GameDatabase.cpp b/pcsx2/GameDatabase.cpp index e761dfff4b..3264f80def 100644 --- a/pcsx2/GameDatabase.cpp +++ b/pcsx2/GameDatabase.cpp @@ -909,8 +909,8 @@ u32 GameDatabaseSchema::GameEntry::applyGSHardwareFixes(Pcsx2Config::GSOptions& { Host::AddKeyedOSDMessage("HWFixesWarning", fmt::format(ICON_FA_MAGIC " {}\n{}", - TRANSLATE_SV("Manual GS hardware renderer fixes are enabled, automatic fixes were not applied:", - disabled_fixes)), + TRANSLATE_SV("GameDatabase", "Manual GS hardware renderer fixes are enabled, automatic fixes were not applied:"), + disabled_fixes), Host::OSD_ERROR_DURATION); } else diff --git a/pcsx2/Patch.cpp b/pcsx2/Patch.cpp index 4e3002950e..ada7f82805 100644 --- a/pcsx2/Patch.cpp +++ b/pcsx2/Patch.cpp @@ -605,7 +605,7 @@ void Patch::UpdateActivePatches(bool reload_enabled_list, bool verbose, bool ver if (!message.empty()) { Host::AddIconOSDMessage("LoadPatches", ICON_FA_FILE_CODE, - fmt::format(TRANSLATE_SV("{} are active.", message)), Host::OSD_INFO_DURATION); + fmt::format(TRANSLATE_SV("Patch", "{} are active."), message), Host::OSD_INFO_DURATION); } else {