1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00

Add localisation for RankingOverlayHeader

This commit is contained in:
kj415j45 2021-07-18 02:32:23 +08:00
parent 93e79d122f
commit 3b48975f1e
2 changed files with 7 additions and 1 deletions

View File

@ -14,6 +14,11 @@ namespace osu.Game.Localisation
/// </summary>
public static LocalisableString Changelog => new TranslatableString(getKey(@"changelog"), @"track recent dev updates in the osu! ecosystem");
/// <summary>
/// "find out who's the best right now"
/// </summary>
public static LocalisableString Rankings => new TranslatableString(getKey(@"rankings"), @"find out who's the best right now");
/// <summary>
/// "get up-to-date on community happenings"
/// </summary>

View File

@ -5,6 +5,7 @@ using System;
using osu.Framework.Graphics;
using osu.Framework.Bindables;
using osu.Framework.Localisation;
using osu.Game.Localisation;
using osu.Game.Rulesets;
using osu.Game.Resources.Localisation.Web;
using osu.Game.Users;
@ -33,7 +34,7 @@ namespace osu.Game.Overlays.Rankings
public RankingsTitle()
{
Title = LayoutStrings.MenuRankingsDefault;
Description = "find out who's the best right now";
Description = HeaderDescriptionStrings.Rankings;
IconTexture = "Icons/Hexacons/rankings";
}
}