diff --git a/osu.Game/Localisation/SongSelectStrings.cs b/osu.Game/Localisation/SongSelectStrings.cs index 905582f764..5f2cf96154 100644 --- a/osu.Game/Localisation/SongSelectStrings.cs +++ b/osu.Game/Localisation/SongSelectStrings.cs @@ -257,7 +257,7 @@ namespace osu.Game.Localisation /// /// "No beatmaps match your filter criteria!" /// - public static LocalisableString NoFilteredBeatmaps => new TranslatableString(getKey(@"no_filtered_beatmaps"), @"No beatmaps match your filter criteria!"); + public static LocalisableString NoMatchingBeatmapsDescription => new TranslatableString(getKey(@"no_matching_beatmaps_description"), @"No beatmaps match your filter criteria!"); private static string getKey(string key) => $@"{prefix}:{key}"; } diff --git a/osu.Game/Screens/SelectV2/NoResultsPlaceholder.cs b/osu.Game/Screens/SelectV2/NoResultsPlaceholder.cs index cfd6d3bfc7..597b6de851 100644 --- a/osu.Game/Screens/SelectV2/NoResultsPlaceholder.cs +++ b/osu.Game/Screens/SelectV2/NoResultsPlaceholder.cs @@ -148,7 +148,7 @@ namespace osu.Game.Screens.SelectV2 } else { - textFlow.AddParagraph(SongSelectStrings.NoFilteredBeatmaps); + textFlow.AddParagraph(SongSelectStrings.NoMatchingBeatmapsDescription); textFlow.AddParagraph(string.Empty); if (!string.IsNullOrEmpty(filter?.SearchText))