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

Change non-localisable sh/xh to correct terminology

This commit is contained in:
Joseph Madamba
2025-09-25 15:37:23 -07:00
Unverified
parent ef88a3530a
commit 8ea9e2e4bb
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ namespace osu.Game.Online.Leaderboards
};
}
public static string GetRankName(ScoreRank rank) => rank.GetDescription().TrimEnd('+');
public static string GetRankName(ScoreRank rank) => rank.GetDescription().Replace("Silver ", "");
/// <summary>
/// Retrieves the grade text colour.
+2 -2
View File
@@ -34,7 +34,7 @@ namespace osu.Game.Scoring
S,
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.RankSH))]
[Description(@"S+")]
[Description(@"Silver S")]
// ReSharper disable once InconsistentNaming
SH,
@@ -43,7 +43,7 @@ namespace osu.Game.Scoring
X,
[LocalisableDescription(typeof(BeatmapsStrings), nameof(BeatmapsStrings.RankXH))]
[Description(@"SS+")]
[Description(@"Silver SS")]
// ReSharper disable once InconsistentNaming
XH,
}