// 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 EditorSetupMetadataStrings { private const string prefix = @"osu.Game.Resources.Localisation.EditorSetupMetadata"; /// /// "Metadata" /// public static LocalisableString Metadata => new TranslatableString(getKey(@"metadata"), @"Metadata"); /// /// "Romanised Artist" /// public static LocalisableString RomanisedArtist => new TranslatableString(getKey(@"romanised_artist"), @"Romanised Artist"); /// /// "Romanised Title" /// public static LocalisableString RomanisedTitle => new TranslatableString(getKey(@"romanised_title"), @"Romanised Title"); /// /// "Creator" /// public static LocalisableString Creator => new TranslatableString(getKey(@"creator"), @"Creator"); /// /// "Difficulty Name" /// public static LocalisableString DifficultyName => new TranslatableString(getKey(@"difficulty_name"), @"Difficulty Name"); private static string getKey(string key) => $@"{prefix}:{key}"; } }