// 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 PlayerSettingsOverlayStrings { private const string prefix = @"osu.Game.Resources.Localisation.PlaybackSettings"; /// /// "Step backward one frame" /// public static LocalisableString StepBackward => new TranslatableString(getKey(@"step_backward_frame"), @"Step backward one frame"); /// /// "Step forward one frame" /// public static LocalisableString StepForward => new TranslatableString(getKey(@"step_forward_frame"), @"Step forward one frame"); /// /// "Seek backward {0} seconds" /// public static LocalisableString SeekBackwardSeconds(double arg0) => new TranslatableString(getKey(@"seek_backward_seconds"), @"Seek backward {0} seconds", arg0); /// /// "Seek forward {0} seconds" /// public static LocalisableString SeekForwardSeconds(double arg0) => new TranslatableString(getKey(@"seek_forward_seconds"), @"Seek forward {0} seconds", arg0); /// /// "Playback speed" /// public static LocalisableString PlaybackSpeed => new TranslatableString(getKey(@"playback_speed"), @"Playback speed"); /// /// "Show click markers" /// public static LocalisableString ShowClickMarkers => new TranslatableString(getKey(@"show_click_markers"), @"Show click markers"); /// /// "Show frame markers" /// public static LocalisableString ShowFrameMarkers => new TranslatableString(getKey(@"show_frame_markers"), @"Show frame markers"); /// /// "Show cursor path" /// public static LocalisableString ShowCursorPath => new TranslatableString(getKey(@"show_cursor_path"), @"Show cursor path"); /// /// "Hide gameplay cursor" /// public static LocalisableString HideGameplayCursor => new TranslatableString(getKey(@"hide_gameplay_cursor"), @"Hide gameplay cursor"); /// /// "Display length" /// public static LocalisableString DisplayLength => new TranslatableString(getKey(@"display_length"), @"Display length"); /// /// "Playback" /// public static LocalisableString PlaybackTitle => new TranslatableString(getKey(@"playback_title"), @"Playback"); /// /// "Visual Settings" /// public static LocalisableString VisualSettingsTitle => new TranslatableString(getKey(@"visual_settings_title"), @"Visual Settings"); /// /// "Audio Settings" /// public static LocalisableString AudioSettingsTitle => new TranslatableString(getKey(@"audio_settings_title"), @"Audio Settings"); /// /// "Input Settings" /// public static LocalisableString InputSettingsTitle => new TranslatableString(getKey(@"input_settings_title"), @"Input Settings"); /// /// "Analysis Settings" /// public static LocalisableString AnalysisSettingsTitle => new TranslatableString(getKey(@"analysis_settings_title"), @"Analysis Settings"); private static string getKey(string key) => $@"{prefix}:{key}"; } }