mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 19:27:26 +08:00
55 lines
2.0 KiB
C#
55 lines
2.0 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 RulesetSettingsStrings
|
|
{
|
|
private const string prefix = @"osu.Game.Resources.Localisation.RulesetSettings";
|
|
|
|
/// <summary>
|
|
/// "Rulesets"
|
|
/// </summary>
|
|
public static LocalisableString Rulesets => new TranslatableString(getKey(@"rulesets"), @"Rulesets");
|
|
|
|
/// <summary>
|
|
/// "Snaking in sliders"
|
|
/// </summary>
|
|
public static LocalisableString SnakingInSliders => new TranslatableString(getKey(@"snaking_in_sliders"), @"Snaking in sliders");
|
|
|
|
/// <summary>
|
|
/// "Snaking out sliders"
|
|
/// </summary>
|
|
public static LocalisableString SnakingOutSliders => new TranslatableString(getKey(@"snaking_out_sliders"), @"Snaking out sliders");
|
|
|
|
/// <summary>
|
|
/// "Cursor trail"
|
|
/// </summary>
|
|
public static LocalisableString CursorTrail => new TranslatableString(getKey(@"cursor_trail"), @"Cursor trail");
|
|
|
|
/// <summary>
|
|
/// "Playfield border style"
|
|
/// </summary>
|
|
public static LocalisableString PlayfieldBorderStyle => new TranslatableString(getKey(@"playfield_border_style"), @"Playfield border style");
|
|
|
|
/// <summary>
|
|
/// "None"
|
|
/// </summary>
|
|
public static LocalisableString BorderNone => new TranslatableString(getKey(@"no_borders"), @"None");
|
|
|
|
/// <summary>
|
|
/// "Corners"
|
|
/// </summary>
|
|
public static LocalisableString BorderCorners => new TranslatableString(getKey(@"corner_borders"), @"Corners");
|
|
|
|
/// <summary>
|
|
/// "Full"
|
|
/// </summary>
|
|
public static LocalisableString BorderFull => new TranslatableString(getKey(@"full_borders"), @"Full");
|
|
|
|
private static string getKey(string key) => $@"{prefix}:{key}";
|
|
}
|
|
}
|