// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Localisation; namespace osu.Game.Localisation { public static class BindingSettingsStrings { private const string prefix = @"osu.Game.Resources.Localisation.BindingSettings"; /// /// "Shortcut and gameplay bindings" /// public static LocalisableString ShortcutAndGameplayBindings => new TranslatableString(getKey(@"shortcut_and_gameplay_bindings"), @"Shortcut and gameplay bindings"); /// /// "Configure" /// public static LocalisableString Configure => new TranslatableString(getKey(@"configure"), @"Configure"); /// /// "change global shortcut keys and gameplay bindings" /// public static LocalisableString ChangeBindingsButton => new TranslatableString(getKey(@"change_bindings_button"), @"change global shortcut keys and gameplay bindings"); private static string getKey(string key) => $@"{prefix}:{key}"; } }