mirror of https://github.com/PCSX2/pcsx2.git
Qt: Fix untranslated string on cover downloader
This commit is contained in:
parent
5c63d75c86
commit
d44a7fc23a
|
@ -1296,7 +1296,7 @@ bool GameList::DownloadCovers(const std::vector<std::string>& 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...
|
||||
|
|
Loading…
Reference in New Issue