Qt: Fix untranslated string on cover downloader

This commit is contained in:
kamfretoz 2023-09-26 11:15:14 +07:00 committed by Connor McLaughlin
parent 5c63d75c86
commit d44a7fc23a
1 changed files with 1 additions and 1 deletions

View File

@ -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...