// Copyright (c) ppy Pty Ltd . 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 SkinEditorStrings { private const string prefix = "osu.Game.Localisation.SkinEditor"; /// /// "anchor" /// public static LocalisableString Anchor => new TranslatableString(getKey("anchor"), "anchor"); /// /// "origin" /// public static LocalisableString Origin => new TranslatableString(getKey("origin"), "origin"); /// /// "top-left" /// public static LocalisableString TopLeft => new TranslatableString(getKey("top_left"), "top-left"); /// /// "top-centre" /// public static LocalisableString TopCentre => new TranslatableString(getKey("top_centre"), "top-centre"); /// /// "top-right" /// public static LocalisableString TopRight => new TranslatableString(getKey("top_right"), "top-right"); /// /// "centre-left" /// public static LocalisableString CentreLeft => new TranslatableString(getKey("centre_left"), "centre-left"); /// /// "centre" /// public static LocalisableString Centre => new TranslatableString(getKey("centre"), "centre"); /// /// "centre-right" /// public static LocalisableString CentreRight => new TranslatableString(getKey("centre_right"), "centre-right"); /// /// "bottom-left" /// public static LocalisableString BottomLeft => new TranslatableString(getKey("bottom_left"), "bottom-left"); /// /// "bottom-centre" /// public static LocalisableString BottomCentre => new TranslatableString(getKey("bottom_centre"), "bottom-centre"); /// /// "bottom-right" /// public static LocalisableString BottomRight => new TranslatableString(getKey("bottom_right"), "bottom-right"); /// /// "closest" /// public static LocalisableString Closest => new TranslatableString(getKey("closest"), "closest"); private static string getKey(string key) => $"{prefix}:{key}"; } }