// 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 AimErrorMeterStrings { private const string prefix = @"osu.Game.Resources.Localisation.HUD.PositionMeterStrings"; /// /// "Judgment position size." /// public static LocalisableString JudgmentSize => new TranslatableString(getKey(@"judgement_line_thickness"), "Judgment position size."); /// /// "How big of judgment position should be." /// public static LocalisableString JudgmentSizeDescription => new TranslatableString(getKey("judgement_line_thickness"), "How big of judgment position should be."); /// /// "Judgment position style." /// public static LocalisableString JudgmentStyle => new TranslatableString(getKey(@"judgement_line_thickness"), "Judgment position style."); /// /// "The style of judgment position." /// public static LocalisableString JudgmentStyleDescription => new TranslatableString(getKey("judgement_line_thickness"), "The style of judgment position."); /// /// "Average position size." /// public static LocalisableString AverageSize => new TranslatableString(getKey(@"judgement_line_thickness"), "Average position size."); /// /// "How big of average position should be." /// public static LocalisableString AverageSizeDescription => new TranslatableString(getKey("judgement_line_thickness"), "How big of average position should be."); /// /// "Average position style." /// public static LocalisableString AverageStyle => new TranslatableString(getKey(@"judgement_line_thickness"), "Average position style."); /// /// "The style of average position." /// public static LocalisableString AverageStyleDescription => new TranslatableString(getKey("judgement_line_thickness"), "The style of average position."); /// /// "X" /// public static LocalisableString StyleX => new TranslatableString(getKey("style_x"), "X"); /// /// "+" /// public static LocalisableString StylePlus => new TranslatableString(getKey("style_plus"), "+"); private static string getKey(string key) => $"{prefix}:{key}"; } }