mirror of
https://github.com/ppy/osu.git
synced 2026-05-17 16:13:33 +08:00
7d93c242b7
Not sure if valuable. Came from https://github.com/ppy/osu/discussions/37261 but that wants slider ends as well, which is like, weird. 🤷
55 lines
2.1 KiB
C#
55 lines
2.1 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.HUD
|
|
{
|
|
public static class JudgementCounterDisplayStrings
|
|
{
|
|
private const string prefix = @"osu.Game.Resources.Localisation.HUD.JudgementCounterDisplay";
|
|
|
|
/// <summary>
|
|
/// "Display mode"
|
|
/// </summary>
|
|
public static LocalisableString JudgementDisplayMode => new TranslatableString(getKey(@"judgement_display_mode"), @"Display mode");
|
|
|
|
/// <summary>
|
|
/// "Counter direction"
|
|
/// </summary>
|
|
public static LocalisableString FlowDirection => new TranslatableString(getKey(@"flow_direction"), @"Counter direction");
|
|
|
|
/// <summary>
|
|
/// "Show judgement names"
|
|
/// </summary>
|
|
public static LocalisableString ShowJudgementNames => new TranslatableString(getKey(@"show_judgement_names"), @"Show judgement names");
|
|
|
|
/// <summary>
|
|
/// "Show max judgement"
|
|
/// </summary>
|
|
public static LocalisableString ShowMaxJudgement => new TranslatableString(getKey(@"show_max_judgement"), @"Show max judgement");
|
|
|
|
/// <summary>
|
|
/// "Simple"
|
|
/// </summary>
|
|
public static LocalisableString JudgementDisplayModeSimple => new TranslatableString(getKey(@"judgement_display_mode_simple"), @"Simple");
|
|
|
|
/// <summary>
|
|
/// "Misses only"
|
|
/// </summary>
|
|
public static LocalisableString JudgementDisplayModeMissesOnly => new TranslatableString(getKey(@"judgement_display_mode_misses_only"), @"Misses only");
|
|
|
|
/// <summary>
|
|
/// "Normal"
|
|
/// </summary>
|
|
public static LocalisableString JudgementDisplayModeNormal => new TranslatableString(getKey(@"judgement_display_mode_normal"), @"Normal");
|
|
|
|
/// <summary>
|
|
/// "All"
|
|
/// </summary>
|
|
public static LocalisableString JudgementDisplayModeAll => new TranslatableString(getKey(@"judgement_display_mode_all"), @"All");
|
|
|
|
private static string getKey(string key) => $@"{prefix}:{key}";
|
|
}
|
|
}
|