Merge pull request #3019 from Mrlinkwii/UI

Achievements: Different choice of words in achievement popup
This commit is contained in:
Connor McLaughlin 2023-09-27 22:22:15 +10:00 committed by GitHub
commit 6faa3087fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -981,7 +981,7 @@ void Achievements::DisplayAchievementSummary()
std::string summary; std::string summary;
if (s_game_summary.num_core_achievements > 0) if (s_game_summary.num_core_achievements > 0)
{ {
summary = fmt::format(TRANSLATE_FS("Achievements", "You have earned {} of {} achievements, and {} of {} points."), summary = fmt::format(TRANSLATE_FS("Achievements", "You have unlocked {} of {} achievements, and earned {} of {} points."),
s_game_summary.num_unlocked_achievements, s_game_summary.num_core_achievements, s_game_summary.num_unlocked_achievements, s_game_summary.num_core_achievements,
s_game_summary.points_unlocked, s_game_summary.points_core); s_game_summary.points_unlocked, s_game_summary.points_core);
} }