2017-02-07 04:59:30 +00:00
|
|
|
|
// Copyright (c) 2007-2017 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
|
|
|
|
|
2016-11-12 10:44:16 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2017-04-25 07:53:21 +00:00
|
|
|
|
using osu.Framework.Configuration;
|
2017-01-31 09:37:11 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-11-09 03:38:40 +00:00
|
|
|
|
using osu.Game.Configuration;
|
2017-01-31 09:37:11 +00:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2016-11-03 02:22:34 +00:00
|
|
|
|
|
2017-01-31 09:37:11 +00:00
|
|
|
|
namespace osu.Game.Overlays.Options.Sections.General
|
2016-11-12 10:44:16 +00:00
|
|
|
|
{
|
|
|
|
|
public class LanguageOptions : OptionsSubsection
|
|
|
|
|
{
|
2016-11-08 00:04:31 +00:00
|
|
|
|
protected override string Header => "Language";
|
2017-04-06 08:21:18 +00:00
|
|
|
|
|
2016-11-12 10:44:16 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
2017-04-25 07:53:21 +00:00
|
|
|
|
private void load(OsuConfigManager osuConfig, FrameworkConfigManager frameworkConfig)
|
2016-11-08 00:04:31 +00:00
|
|
|
|
{
|
2016-11-08 23:13:20 +00:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-01-31 09:37:11 +00:00
|
|
|
|
new OptionLabel { Text = "TODO: Dropdown" },
|
|
|
|
|
new OsuCheckbox
|
2016-11-08 23:13:20 +00:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Prefer metadata in original language",
|
2017-04-25 07:53:21 +00:00
|
|
|
|
Bindable = frameworkConfig.GetBindable<bool>(FrameworkConfig.ShowUnicode)
|
2016-11-08 23:13:20 +00:00
|
|
|
|
},
|
2017-01-31 09:37:11 +00:00
|
|
|
|
new OsuCheckbox
|
2016-11-08 23:13:20 +00:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Use alternative font for chat display",
|
2017-04-25 07:53:21 +00:00
|
|
|
|
Bindable = osuConfig.GetBindable<bool>(OsuConfig.AlternativeChatFont)
|
2016-11-08 23:13:20 +00:00
|
|
|
|
},
|
|
|
|
|
};
|
2016-11-12 10:44:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|