mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 20:22:55 +08:00
Add localisation for RankingOverlayHeader
This commit is contained in:
parent
93e79d122f
commit
3b48975f1e
@ -14,6 +14,11 @@ namespace osu.Game.Localisation
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public static LocalisableString Changelog => new TranslatableString(getKey(@"changelog"), @"track recent dev updates in the osu! ecosystem");
|
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>
|
/// <summary>
|
||||||
/// "get up-to-date on community happenings"
|
/// "get up-to-date on community happenings"
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -5,6 +5,7 @@ using System;
|
|||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Bindables;
|
using osu.Framework.Bindables;
|
||||||
using osu.Framework.Localisation;
|
using osu.Framework.Localisation;
|
||||||
|
using osu.Game.Localisation;
|
||||||
using osu.Game.Rulesets;
|
using osu.Game.Rulesets;
|
||||||
using osu.Game.Resources.Localisation.Web;
|
using osu.Game.Resources.Localisation.Web;
|
||||||
using osu.Game.Users;
|
using osu.Game.Users;
|
||||||
@ -33,7 +34,7 @@ namespace osu.Game.Overlays.Rankings
|
|||||||
public RankingsTitle()
|
public RankingsTitle()
|
||||||
{
|
{
|
||||||
Title = LayoutStrings.MenuRankingsDefault;
|
Title = LayoutStrings.MenuRankingsDefault;
|
||||||
Description = "find out who's the best right now";
|
Description = HeaderDescriptionStrings.Rankings;
|
||||||
IconTexture = "Icons/Hexacons/rankings";
|
IconTexture = "Icons/Hexacons/rankings";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user