// 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.Resources.Localisation.Web { public static class ArtistStrings { private const string prefix = @"osu.Game.Resources.Localisation.Web.Artist"; /// /// "Featured artists on osu!" /// public static LocalisableString PageDescription => new TranslatableString(getKey(@"page_description"), @"Featured artists on osu!"); /// /// "Featured Artists" /// public static LocalisableString Title => new TranslatableString(getKey(@"title"), @"Featured Artists"); /// /// "ARTIST IS CURRENTLY HIDDEN" /// public static LocalisableString AdminHidden => new TranslatableString(getKey(@"admin.hidden"), @"ARTIST IS CURRENTLY HIDDEN"); /// /// "Beatmaps" /// public static LocalisableString BeatmapsDefault => new TranslatableString(getKey(@"beatmaps._"), @"Beatmaps"); /// /// "Download Beatmap Template" /// public static LocalisableString BeatmapsDownload => new TranslatableString(getKey(@"beatmaps.download"), @"Download Beatmap Template"); /// /// "Beatmap Template not yet available" /// public static LocalisableString BeatmapsDownloadNa => new TranslatableString(getKey(@"beatmaps.download-na"), @"Beatmap Template not yet available"); /// /// "Featured artists are artists that we are working in collaboration with in order to bring new and original music to osu!. These artists and a selection of their tracks have been hand-picked by the osu! team as being awesomesauce and suitable for mapping. Some of these featured artists have also created exclusive new tracks for use in osu!.<br><br>All tracks in this section are provided as pre-timed .osz files and have been officially licensed for use in osu! and osu!-related content." /// public static LocalisableString IndexDescription => new TranslatableString(getKey(@"index.description"), @"Featured artists are artists that we are working in collaboration with in order to bring new and original music to osu!. These artists and a selection of their tracks have been hand-picked by the osu! team as being awesomesauce and suitable for mapping. Some of these featured artists have also created exclusive new tracks for use in osu!.

All tracks in this section are provided as pre-timed .osz files and have been officially licensed for use in osu! and osu!-related content."); /// /// "osu! profile" /// public static LocalisableString LinksOsu => new TranslatableString(getKey(@"links.osu"), @"osu! profile"); /// /// "Official Website" /// public static LocalisableString LinksSite => new TranslatableString(getKey(@"links.site"), @"Official Website"); /// /// "Songs" /// public static LocalisableString SongsDefault => new TranslatableString(getKey(@"songs._"), @"Songs"); /// /// "{0} song|{0} songs" /// public static LocalisableString SongsCount(LocalisableString countDelimited) => new TranslatableString(getKey(@"songs.count"), @"{0} song|{0} songs", countDelimited); /// /// "osu! exclusive" /// public static LocalisableString SongsExclusive => new TranslatableString(getKey(@"songs.exclusive"), @"osu! exclusive"); /// /// "title" /// public static LocalisableString TracklistTitle => new TranslatableString(getKey(@"tracklist.title"), @"title"); /// /// "length" /// public static LocalisableString TracklistLength => new TranslatableString(getKey(@"tracklist.length"), @"length"); /// /// "bpm" /// public static LocalisableString TracklistBpm => new TranslatableString(getKey(@"tracklist.bpm"), @"bpm"); /// /// "genre" /// public static LocalisableString TracklistGenre => new TranslatableString(getKey(@"tracklist.genre"), @"genre"); private static string getKey(string key) => $@"{prefix}:{key}"; } }