mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
60 lines
1.9 KiB
C#
60 lines
1.9 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 ButtonSystemStrings
|
|
{
|
|
private const string prefix = @"osu.Game.Resources.Localisation.ButtonSystem";
|
|
|
|
/// <summary>
|
|
/// "solo"
|
|
/// </summary>
|
|
public static LocalisableString Solo => new TranslatableString(getKey(@"solo"), @"solo");
|
|
|
|
/// <summary>
|
|
/// "multi"
|
|
/// </summary>
|
|
public static LocalisableString Multi => new TranslatableString(getKey(@"multi"), @"multi");
|
|
|
|
/// <summary>
|
|
/// "playlists"
|
|
/// </summary>
|
|
public static LocalisableString Playlists => new TranslatableString(getKey(@"playlists"), @"playlists");
|
|
|
|
/// <summary>
|
|
/// "play"
|
|
/// </summary>
|
|
public static LocalisableString Play => new TranslatableString(getKey(@"play"), @"play");
|
|
|
|
/// <summary>
|
|
/// "edit"
|
|
/// </summary>
|
|
public static LocalisableString Edit => new TranslatableString(getKey(@"edit"), @"edit");
|
|
|
|
/// <summary>
|
|
/// "browse"
|
|
/// </summary>
|
|
public static LocalisableString Browse => new TranslatableString(getKey(@"browse"), @"browse");
|
|
|
|
/// <summary>
|
|
/// "settings"
|
|
/// </summary>
|
|
public static LocalisableString Settings => new TranslatableString(getKey(@"settings"), @"settings");
|
|
|
|
/// <summary>
|
|
/// "back"
|
|
/// </summary>
|
|
public static LocalisableString Back => new TranslatableString(getKey(@"back"), @"back");
|
|
|
|
/// <summary>
|
|
/// "exit"
|
|
/// </summary>
|
|
public static LocalisableString Exit => new TranslatableString(getKey(@"exit"), @"exit");
|
|
|
|
private static string getKey(string key) => $@"{prefix}:{key}";
|
|
}
|
|
}
|