Skip to content

Commit

Permalink
Merge pull request ppy#28190 from bdach/fix-duped-translation-keys
Browse files Browse the repository at this point in the history
Fix duplicated localisation key in `DeleteConfirmationContentStrings`
  • Loading branch information
smoogipoo authored May 17, 2024
2 parents a2e67ee + 5dd64a7 commit 06d6df9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game/Localisation/DeleteConfirmationContentStrings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static class DeleteConfirmationContentStrings
/// <summary>
/// "Are you sure you want to delete all scores? This cannot be undone!"
/// </summary>
public static LocalisableString Scores => new TranslatableString(getKey(@"collections"), @"Are you sure you want to delete all scores? This cannot be undone!");
public static LocalisableString Scores => new TranslatableString(getKey(@"scores"), @"Are you sure you want to delete all scores? This cannot be undone!");

/// <summary>
/// "Are you sure you want to delete all mod presets?"
Expand Down

0 comments on commit 06d6df9

Please sign in to comment.