Skip to content

Commit

Permalink
Qt: Fix untranslated string on cover downloader
Browse files Browse the repository at this point in the history
  • Loading branch information
kamfretoz authored and stenzek committed Sep 26, 2023
1 parent 5c63d75 commit d44a7fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2/GameList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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...
Expand Down

0 comments on commit d44a7fc

Please sign in to comment.