Skip to content

Commit

Permalink
Fix duplicated localisation key in DeleteConfiormationContentStrings
Browse files Browse the repository at this point in the history
Noticed via `osu-resources` build warnings.

There are also a few other warnings about
ppy#27472. Seems something in crowdin
innards may still be exporting those strings even though they have been
fixed already. Not sure how to address that.

Probably need these to be detected via static analysis at this point
since it's happened again. Might look into the feasibility of making
that happen.
  • Loading branch information
bdach committed May 16, 2024
1 parent f9fd1b9 commit 5dd64a7
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 5dd64a7

Please sign in to comment.