mirror of
https://github.com/osukey/osukey.git
synced 2025-05-12 00:57:21 +09:00
25 lines
858 B
C#
25 lines
858 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.SkinEditorComponents
|
|
{
|
|
public static class FontAdjustableSkinComponentStrings
|
|
{
|
|
private const string prefix = @"osu.Game.Resources.Localisation.FontAdjustableSkinComponent";
|
|
|
|
/// <summary>
|
|
/// "Font"
|
|
/// </summary>
|
|
public static LocalisableString Font => new TranslatableString(getKey(@"font"), "Font");
|
|
|
|
/// <summary>
|
|
/// "The font to use."
|
|
/// </summary>
|
|
public static LocalisableString FontDescription => new TranslatableString(getKey(@"font_description"), "The font to use.");
|
|
|
|
private static string getKey(string key) => $"{prefix}:{key}";
|
|
}
|
|
}
|