1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 06:00:25 +08:00

Use better name for string

This commit is contained in:
Bartłomiej Dach
2025-07-15 13:34:41 +02:00
Unverified
parent b120608ec5
commit 3eb52e7771
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -257,7 +257,7 @@ namespace osu.Game.Localisation
/// <summary>
/// "No beatmaps match your filter criteria!"
/// </summary>
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}";
}
@@ -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))