mirror of
https://github.com/ppy/osu.git
synced 2026-05-30 12:50:24 +08:00
f9076183d0
used in danser and I think this is better
65 lines
2.7 KiB
C#
65 lines
2.7 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. 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";
|
|
|
|
/// <summary>
|
|
/// "Judgment position size."
|
|
/// </summary>
|
|
public static LocalisableString JudgmentSize => new TranslatableString(getKey(@"judgement_line_thickness"), "Judgment position size.");
|
|
|
|
/// <summary>
|
|
/// "How big of judgment position should be."
|
|
/// </summary>
|
|
public static LocalisableString JudgmentSizeDescription => new TranslatableString(getKey("judgement_line_thickness"), "How big of judgment position should be.");
|
|
|
|
/// <summary>
|
|
/// "Judgment position style."
|
|
/// </summary>
|
|
public static LocalisableString JudgmentStyle => new TranslatableString(getKey(@"judgement_line_thickness"), "Judgment position style.");
|
|
|
|
/// <summary>
|
|
/// "The style of judgment position."
|
|
/// </summary>
|
|
public static LocalisableString JudgmentStyleDescription => new TranslatableString(getKey("judgement_line_thickness"), "The style of judgment position.");
|
|
|
|
/// <summary>
|
|
/// "Average position size."
|
|
/// </summary>
|
|
public static LocalisableString AverageSize => new TranslatableString(getKey(@"judgement_line_thickness"), "Average position size.");
|
|
|
|
/// <summary>
|
|
/// "How big of average position should be."
|
|
/// </summary>
|
|
public static LocalisableString AverageSizeDescription => new TranslatableString(getKey("judgement_line_thickness"), "How big of average position should be.");
|
|
|
|
/// <summary>
|
|
/// "Average position style."
|
|
/// </summary>
|
|
public static LocalisableString AverageStyle => new TranslatableString(getKey(@"judgement_line_thickness"), "Average position style.");
|
|
|
|
/// <summary>
|
|
/// "The style of average position."
|
|
/// </summary>
|
|
public static LocalisableString AverageStyleDescription => new TranslatableString(getKey("judgement_line_thickness"), "The style of average position.");
|
|
|
|
/// <summary>
|
|
/// "X"
|
|
/// </summary>
|
|
public static LocalisableString StyleX => new TranslatableString(getKey("style_x"), "X");
|
|
|
|
/// <summary>
|
|
/// "+"
|
|
/// </summary>
|
|
public static LocalisableString StylePlus => new TranslatableString(getKey("style_plus"), "+");
|
|
|
|
private static string getKey(string key) => $"{prefix}:{key}";
|
|
}
|
|
}
|