diff --git a/osu.Game/Collections/ManageCollectionsDialog.cs b/osu.Game/Collections/ManageCollectionsDialog.cs index d1901058f8..776df1b49a 100644 --- a/osu.Game/Collections/ManageCollectionsDialog.cs +++ b/osu.Game/Collections/ManageCollectionsDialog.cs @@ -3,6 +3,7 @@ using System; using osu.Framework.Allocation; +using osu.Framework.Extensions.LocalisationExtensions; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; @@ -80,7 +81,7 @@ namespace osu.Game.Collections { Anchor = Anchor.Centre, Origin = Anchor.Centre, - Text = CollectionsStrings.ManageCollections, + Text = CollectionsStrings.ManageCollectionsTitle.ToSentence(), Font = OsuFont.GetFont(size: 30), Padding = new MarginPadding { Vertical = 10 }, }, diff --git a/osu.Game/Localisation/CollectionsStrings.cs b/osu.Game/Localisation/CollectionsStrings.cs index 28caa250d3..50737b41f8 100644 --- a/osu.Game/Localisation/CollectionsStrings.cs +++ b/osu.Game/Localisation/CollectionsStrings.cs @@ -9,6 +9,11 @@ namespace osu.Game.Localisation { private const string prefix = @"osu.Game.Resources.Localisation.Collections"; + /// + /// "Manage collections" + /// + public static LocalisableString ManageCollectionsTitle => new TranslatableString(getKey(@"manage_collections_title"), @"Manage collections"); + /// /// "Collection" ///