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

47 lines
1.7 KiB
C#
Raw Normal View History

// 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.
2018-04-13 09:19:50 +00:00
using osu.Framework.Allocation;
2021-04-20 08:06:01 +00:00
using osu.Framework.Bindables;
2018-04-13 09:19:50 +00:00
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Localisation;
using osu.Game.Extensions;
2021-04-20 08:06:01 +00:00
using osu.Game.Localisation;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Overlays.Settings.Sections.General
{
public class LanguageSettings : SettingsSubsection
{
2021-04-20 08:06:01 +00:00
private SettingsDropdown<Language> languageSelection;
private Bindable<string> frameworkLocale;
2021-08-11 07:25:08 +00:00
protected override LocalisableString Header => GeneralSettingsStrings.LanguageHeader;
2018-04-13 09:19:50 +00:00
[BackgroundDependencyLoader]
private void load(FrameworkConfigManager frameworkConfig)
{
2021-04-20 08:06:01 +00:00
frameworkLocale = frameworkConfig.GetBindable<string>(FrameworkSetting.Locale);
2018-04-13 09:19:50 +00:00
Children = new Drawable[]
{
2021-04-20 08:06:01 +00:00
languageSelection = new SettingsEnumDropdown<Language>
{
2021-08-11 07:25:08 +00:00
LabelText = GeneralSettingsStrings.LanguageDropdown,
2021-04-20 08:06:01 +00:00
},
2018-04-13 09:19:50 +00:00
new SettingsCheckbox
{
LabelText = GeneralSettingsStrings.PreferOriginalMetadataLanguage,
Current = frameworkConfig.GetBindable<bool>(FrameworkSetting.ShowUnicode)
2018-04-13 09:19:50 +00:00
},
};
2021-04-20 08:06:01 +00:00
if (!LanguageExtensions.TryParseCultureCode(frameworkLocale.Value, out var locale))
2021-04-20 08:06:01 +00:00
locale = Language.en;
languageSelection.Current.Value = locale;
languageSelection.Current.BindValueChanged(val => frameworkLocale.Value = val.NewValue.ToCultureCode());
2018-04-13 09:19:50 +00:00
}
}
}