1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 02:37:19 +08:00

28 lines
892 B
C#
Raw Normal View History

2018-01-05 20:21:19 +09: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 18:56:20 +09:00
using osu.Framework.Allocation;
2017-04-25 15:53:21 +08:00
using osu.Framework.Configuration;
using osu.Framework.Graphics;
2016-11-02 22:22:34 -04: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 18:13:20 -05:00
Children = new Drawable[]
{
new SettingsCheckbox
2016-11-08 18:13:20 -05:00
{
LabelText = "Prefer metadata in original language",
Bindable = frameworkConfig.GetBindable<bool>(FrameworkSetting.ShowUnicode)
2016-11-08 18:13:20 -05:00
},
};
}
}
}