osu/osu.Game/Overlays/Settings/Sections/General/LanguageSettings.cs

28 lines
892 B
C#
Raw Normal View History

2018-01-05 11:21:19 +00:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-12-06 09:56:20 +00:00
using osu.Framework.Allocation;
2017-04-25 07:53:21 +00:00
using osu.Framework.Configuration;
using osu.Framework.Graphics;
2016-11-03 02:22:34 +00:00
namespace osu.Game.Overlays.Settings.Sections.General
{
public class LanguageSettings : SettingsSubsection
{
protected override string Header => "Language";
[BackgroundDependencyLoader]
private void load(FrameworkConfigManager frameworkConfig)
{
2016-11-08 23:13:20 +00:00
Children = new Drawable[]
{
new SettingsCheckbox
2016-11-08 23:13:20 +00:00
{
LabelText = "Prefer metadata in original language",
Bindable = frameworkConfig.GetBindable<bool>(FrameworkSetting.ShowUnicode)
2016-11-08 23:13:20 +00:00
},
};
}
}
}