Improve string consistency

This commit is contained in:
its5Q
2022-08-19 03:17:05 +10:00
parent e870ac6456
commit 4c24d8ed58
3 changed files with 7 additions and 6 deletions

View File

@ -4,6 +4,7 @@
#nullable disable
using osu.Framework.Allocation;
using osu.Framework.Extensions.LocalisationExtensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
@ -78,7 +79,7 @@ namespace osu.Game.Screens.Edit.Setup
{
public SetupScreenTitle()
{
Title = EditorSetupStrings.BeatmapSetup;
Title = EditorSetupStrings.BeatmapSetup.ToLower();
Description = EditorSetupStrings.BeatmapSetupDescription;
IconTexture = "Icons/Hexacons/social";
}