mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 05:37:31 +08:00
25 lines
991 B
C#
25 lines
991 B
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 SongProgressStrings
|
|
{
|
|
private const string prefix = @"osu.Game.Resources.Localisation.HUD.SongProgress";
|
|
|
|
/// <summary>
|
|
/// "Show difficulty graph"
|
|
/// </summary>
|
|
public static LocalisableString ShowGraph => new TranslatableString(getKey(@"show_graph"), "Show difficulty graph");
|
|
|
|
/// <summary>
|
|
/// "Whether a graph displaying difficulty throughout the beatmap should be shown"
|
|
/// </summary>
|
|
public static LocalisableString ShowGraphDescription => new TranslatableString(getKey(@"show_graph_description"), "Whether a graph displaying difficulty throughout the beatmap should be shown");
|
|
|
|
private static string getKey(string key) => $"{prefix}:{key}";
|
|
}
|
|
}
|