mirror of
https://github.com/ppy/osu.git
synced 2026-05-23 18:19:53 +08:00
Fix some issues
This commit is contained in:
@@ -18,7 +18,7 @@ namespace osu.Game.Beatmaps
|
||||
[Description("Local")]
|
||||
LocallyModified = -4,
|
||||
|
||||
[LocalisableDescription(typeof(SongSelectStrings), nameof(SongSelectStrings.Unknown))]
|
||||
[LocalisableDescription(typeof(SongSelectStrings), nameof(SongSelectStrings.StatusUnknown))]
|
||||
[Description("Unknown")]
|
||||
None = -3,
|
||||
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
|
||||
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;
|
||||
@@ -81,7 +80,7 @@ namespace osu.Game.Collections
|
||||
{
|
||||
Anchor = Anchor.Centre,
|
||||
Origin = Anchor.Centre,
|
||||
Text = CollectionsStrings.ManageCollectionsTitle.ToSentence(),
|
||||
Text = CollectionsStrings.ManageCollectionsTitle,
|
||||
Font = OsuFont.GetFont(size: 30),
|
||||
Padding = new MarginPadding { Vertical = 10 },
|
||||
},
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace osu.Game.Localisation
|
||||
/// <summary>
|
||||
/// "Manage collections"
|
||||
/// </summary>
|
||||
public static LocalisableString ManageCollectionsTitle => new TranslatableString(getKey(@"manage_collections_title"), @"Manage collections");
|
||||
public static LocalisableString ManageCollectionsTitle => new TranslatableString(getKey(@"manage_collections_title"), @"Manage Collections");
|
||||
|
||||
/// <summary>
|
||||
/// "Collection"
|
||||
|
||||
@@ -42,7 +42,7 @@ namespace osu.Game.Localisation
|
||||
/// <summary>
|
||||
/// "Unknown"
|
||||
/// </summary>
|
||||
public static LocalisableString Unknown => new TranslatableString(getKey(@"unknown"), @"Unknown");
|
||||
public static LocalisableString StatusUnknown => new TranslatableString(getKey(@"status_unknown"), @"Unknown");
|
||||
|
||||
/// <summary>
|
||||
/// "Total Plays"
|
||||
|
||||
Reference in New Issue
Block a user