mirror of
https://github.com/osukey/osukey.git
synced 2025-06-05 12:57:39 +09:00
Merge pull request #18803 from Joehuu/fix-overlay-header-tab-item-localisable-string
Fix profile header tab items not localising
This commit is contained in:
commit
0cf58646f4
@ -3,11 +3,11 @@
|
|||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
using System;
|
|
||||||
using JetBrains.Annotations;
|
using JetBrains.Annotations;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Bindables;
|
using osu.Framework.Bindables;
|
||||||
using osu.Framework.Extensions;
|
using osu.Framework.Extensions;
|
||||||
|
using osu.Framework.Extensions.LocalisationExtensions;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
using osu.Framework.Graphics.Shapes;
|
using osu.Framework.Graphics.Shapes;
|
||||||
@ -108,19 +108,7 @@ namespace osu.Game.Overlays
|
|||||||
public OverlayHeaderTabItem(T value)
|
public OverlayHeaderTabItem(T value)
|
||||||
: base(value)
|
: base(value)
|
||||||
{
|
{
|
||||||
if (!(Value is Enum enumValue))
|
Text.Text = value.GetLocalisableDescription().ToLower();
|
||||||
Text.Text = Value.ToString().ToLowerInvariant();
|
|
||||||
else
|
|
||||||
{
|
|
||||||
var localisableDescription = enumValue.GetLocalisableDescription();
|
|
||||||
string nonLocalisableDescription = enumValue.GetDescription();
|
|
||||||
|
|
||||||
// If localisable == non-localisable, then we must have a basic string, so .ToLowerInvariant() is used.
|
|
||||||
Text.Text = localisableDescription.Equals(nonLocalisableDescription)
|
|
||||||
? nonLocalisableDescription.ToLowerInvariant()
|
|
||||||
: localisableDescription;
|
|
||||||
}
|
|
||||||
|
|
||||||
Text.Font = OsuFont.GetFont(size: 14);
|
Text.Font = OsuFont.GetFont(size: 14);
|
||||||
Text.Margin = new MarginPadding { Vertical = 16.5f }; // 15px padding + 1.5px line-height difference compensation
|
Text.Margin = new MarginPadding { Vertical = 16.5f }; // 15px padding + 1.5px line-height difference compensation
|
||||||
Bar.Margin = new MarginPadding { Bottom = bar_height };
|
Bar.Margin = new MarginPadding { Bottom = bar_height };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user