// 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.HUD { public static class BarHitErrorMeterStrings { private const string prefix = @"osu.Game.Resources.Localisation.HUD.BarHitErrorMeter"; /// /// "Judgement line thickness" /// public static LocalisableString JudgementLineThickness => new TranslatableString(getKey(@"judgement_line_thickness"), "Judgement line thickness"); /// /// "How thick the individual lines should be." /// public static LocalisableString JudgementLineThicknessDescription => new TranslatableString(getKey(@"judgement_line_thickness_description"), "How thick the individual lines should be."); /// /// "Show colour bars" /// public static LocalisableString ColourBarVisibility => new TranslatableString(getKey(@"colour_bar_visibility"), "Show colour bars"); /// /// "Show moving average arrow" /// public static LocalisableString ShowMovingAverage => new TranslatableString(getKey(@"show_moving_average"), "Show moving average arrow"); /// /// "Whether an arrow should move beneath the bar showing the average error." /// public static LocalisableString ShowMovingAverageDescription => new TranslatableString(getKey(@"show_moving_average_description"), "Whether an arrow should move beneath the bar showing the average error."); /// /// "Centre marker style" /// public static LocalisableString CentreMarkerStyle => new TranslatableString(getKey(@"centre_marker_style"), "Centre marker style"); /// /// "How to signify the centre of the display" /// public static LocalisableString CentreMarkerStyleDescription => new TranslatableString(getKey(@"centre_marker_style_description"), "How to signify the centre of the display"); /// /// "None" /// public static LocalisableString CentreMarkerStylesNone => new TranslatableString(getKey(@"centre_marker_styles_none"), "None"); /// /// "Circle" /// public static LocalisableString CentreMarkerStylesCircle => new TranslatableString(getKey(@"centre_marker_styles_circle"), "Circle"); /// /// "Line" /// public static LocalisableString CentreMarkerStylesLine => new TranslatableString(getKey(@"centre_marker_styles_line"), "Line"); /// /// "Label style" /// public static LocalisableString LabelStyle => new TranslatableString(getKey(@"label_style"), "Label style"); /// /// "How to show early/late extremities" /// public static LocalisableString LabelStyleDescription => new TranslatableString(getKey(@"label_style_description"), "How to show early/late extremities"); /// /// "None" /// public static LocalisableString LabelStylesNone => new TranslatableString(getKey(@"label_styles_none"), "None"); /// /// "Icons" /// public static LocalisableString LabelStylesIcons => new TranslatableString(getKey(@"label_styles_icons"), "Icons"); /// /// "Text" /// public static LocalisableString LabelStylesText => new TranslatableString(getKey(@"label_styles_text"), "Text"); private static string getKey(string key) => $"{prefix}:{key}"; } }