// 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 InputSettingsStrings { private const string prefix = @"osu.Game.Resources.Localisation.InputSettings"; /// /// "Input" /// public static LocalisableString InputSectionHeader => new TranslatableString(getKey(@"input_section_header"), @"Input"); /// /// "Global" /// public static LocalisableString GlobalKeyBindingHeader => new TranslatableString(getKey(@"global_key_binding_header"), @"Global"); /// /// "Overlays" /// public static LocalisableString OverlaysSection => new TranslatableString(getKey(@"overlays_section"), @"Overlays"); /// /// "Song Select" /// public static LocalisableString SongSelectSection => new TranslatableString(getKey(@"song_select_section"), @"Song Select"); /// /// "In Game" /// public static LocalisableString InGameSection => new TranslatableString(getKey(@"in_game_section"), @"In Game"); /// /// "Replay" /// public static LocalisableString ReplaySection => new TranslatableString(getKey(@"replay_section"), @"Replay"); /// /// "Audio" /// public static LocalisableString AudioSection => new TranslatableString(getKey(@"audio_section"), @"Audio"); /// /// "Editor" /// public static LocalisableString EditorSection => new TranslatableString(getKey(@"editor_section"), @"Editor"); /// /// "Reset all bindings in section" /// public static LocalisableString ResetSectionButton => new TranslatableString(getKey(@"reset_section_button"), @"Reset all bindings in section"); /// /// "key configuration" /// public static LocalisableString KeyBindingPanelHeader => new TranslatableString(getKey(@"key_binding_panel_header"), @"key configuration"); /// /// "Customise your keys!" /// public static LocalisableString KeyBindingPanelDescription => new TranslatableString(getKey(@"key_binding_panel_description"), @"Customise your keys!"); /// /// "The binding you've selected conflicts with another existing binding." /// public static LocalisableString KeyBindingConflictDetected => new TranslatableString(getKey(@"key_binding_conflict_detected"), @"The binding you've selected conflicts with another existing binding."); /// /// "Keep existing" /// public static LocalisableString KeepExistingBinding => new TranslatableString(getKey(@"keep_existing_binding"), @"Keep existing"); /// /// "Apply new" /// public static LocalisableString ApplyNewBinding => new TranslatableString(getKey(@"apply_new_binding"), @"Apply new"); /// /// "(none)" /// public static LocalisableString ActionHasNoKeyBinding => new TranslatableString(getKey(@"action_has_no_key_binding"), @"(none)"); private static string getKey(string key) => $"{prefix}:{key}"; } }