From 3eb52e7771f540cd5a060c7941cbbd9aedc85a22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Dach?= Date: Tue, 15 Jul 2025 13:34:41 +0200 Subject: [PATCH] Use better name for string --- osu.Game/Localisation/SongSelectStrings.cs | 2 +- osu.Game/Screens/SelectV2/NoResultsPlaceholder.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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))