From d44a7fc23ae8cea57e4c06cf198c189aecc5b61b Mon Sep 17 00:00:00 2001 From: kamfretoz <14798312+kamfretoz@users.noreply.github.com> Date: Tue, 26 Sep 2023 11:15:14 +0700 Subject: [PATCH] Qt: Fix untranslated string on cover downloader --- pcsx2/GameList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/GameList.cpp b/pcsx2/GameList.cpp index ce2cb836b6..c0ce8dd0c6 100644 --- a/pcsx2/GameList.cpp +++ b/pcsx2/GameList.cpp @@ -1296,7 +1296,7 @@ bool GameList::DownloadCovers(const std::vector& url_templates, boo continue; } - progress->SetFormattedStatusText("Downloading cover for %s [%s]...", entry->title.c_str(), entry->serial.c_str()); + progress->SetStatusText(fmt::format(TRANSLATE_FS("GameList","Downloading cover for {0} [{1}]..."), entry->title, entry->serial).c_str()); } // we could actually do a few in parallel here...