mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:47:38 +08:00
55 lines
1.8 KiB
C#
55 lines
1.8 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 CommonStrings
|
|
{
|
|
private const string prefix = @"osu.Game.Resources.Localisation.Common";
|
|
|
|
/// <summary>
|
|
/// "Cancel"
|
|
/// </summary>
|
|
public static LocalisableString Cancel => new TranslatableString(getKey(@"cancel"), @"Cancel");
|
|
|
|
/// <summary>
|
|
/// "Clear"
|
|
/// </summary>
|
|
public static LocalisableString Clear => new TranslatableString(getKey(@"clear"), @"Clear");
|
|
|
|
/// <summary>
|
|
/// "Enabled"
|
|
/// </summary>
|
|
public static LocalisableString Enabled => new TranslatableString(getKey(@"enabled"), @"Enabled");
|
|
|
|
/// <summary>
|
|
/// "Default"
|
|
/// </summary>
|
|
public static LocalisableString Default => new TranslatableString(getKey(@"default"), @"Default");
|
|
|
|
/// <summary>
|
|
/// "Width"
|
|
/// </summary>
|
|
public static LocalisableString Width => new TranslatableString(getKey(@"width"), @"Width");
|
|
|
|
/// <summary>
|
|
/// "Height"
|
|
/// </summary>
|
|
public static LocalisableString Height => new TranslatableString(getKey(@"height"), @"Height");
|
|
|
|
/// <summary>
|
|
/// "Downloading..."
|
|
/// </summary>
|
|
public static LocalisableString Downloading => new TranslatableString(getKey(@"downloading"), @"Downloading...");
|
|
|
|
/// <summary>
|
|
/// "Importing..."
|
|
/// </summary>
|
|
public static LocalisableString Importing => new TranslatableString(getKey(@"importing"), @"Importing...");
|
|
|
|
private static string getKey(string key) => $@"{prefix}:{key}";
|
|
}
|
|
}
|