Achievements: Fix incorrect plural string

This commit is contained in:
Stenzek
2024-09-08 11:51:31 +10:00
parent b6c4d6dda9
commit 1d83e72887
18 changed files with 45 additions and 45 deletions

View File

@ -2421,7 +2421,7 @@ void Achievements::DrawAchievementsWindow()
{
if (s_game_summary.num_unlocked_achievements == s_game_summary.num_core_achievements)
{
text = TRANSLATE_PLURAL_SSTR("Achievements", "You have unlocked all achievements and earned {} points!",
text = TRANSLATE_PLURAL_SSTR("Achievements", "You have unlocked all achievements and earned %n points!",
"Point count", s_game_summary.points_unlocked);
}
else