mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System;
|
|
using osu.Framework.Extensions;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Online.Chat;
|
|
using osu.Game.Overlays.BeatmapListing;
|
|
|
|
namespace osu.Game.Overlays.BeatmapSet
|
|
{
|
|
public partial class MetadataSectionLanguage : MetadataSection<BeatmapSetOnlineLanguage>
|
|
{
|
|
public MetadataSectionLanguage(Action<BeatmapSetOnlineLanguage>? searchAction = null)
|
|
: base(MetadataType.Language, searchAction)
|
|
{
|
|
}
|
|
|
|
protected override void AddMetadata(BeatmapSetOnlineLanguage metadata, LinkFlowContainer loaded)
|
|
{
|
|
var language = (SearchLanguage)metadata.Id;
|
|
|
|
if (Enum.IsDefined(language))
|
|
loaded.AddLink(language.GetLocalisableDescription(), LinkAction.FilterBeatmapSetLanguage, language);
|
|
else
|
|
loaded.AddText(metadata.Name);
|
|
}
|
|
}
|
|
}
|