// 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 BeatmappacksStrings { private const string prefix = @"osu.Game.Resources.Localisation.Web.Beatmappacks"; /// /// "Pre-packaged collections of beatmaps based around a common theme." /// public static LocalisableString IndexDescription => new TranslatableString(getKey(@"index.description"), @"Pre-packaged collections of beatmaps based around a common theme."); /// /// "listing" /// public static LocalisableString IndexNavTitle => new TranslatableString(getKey(@"index.nav_title"), @"listing"); /// /// "Beatmap Packs" /// public static LocalisableString IndexTitle => new TranslatableString(getKey(@"index.title"), @"Beatmap Packs"); /// /// "READ THIS BEFORE DOWNLOADING" /// public static LocalisableString IndexBlurbImportant => new TranslatableString(getKey(@"index.blurb.important"), @"READ THIS BEFORE DOWNLOADING"); /// /// "Installation: Once a pack has been downloaded, extract the .rar into your osu! Songs directory. /// All songs are still .zip'd and/or .osz'd inside the pack, so osu! will need to extract the beatmaps itself the next time you go into Play mode. /// {0} extract the zip's/osz's yourself, /// or the beatmaps will display incorrectly in osu! and will not function properly." /// public static LocalisableString IndexBlurbInstructionDefault(LocalisableString scary) => new TranslatableString(getKey(@"index.blurb.instruction._"), @"Installation: Once a pack has been downloaded, extract the .rar into your osu! Songs directory. All songs are still .zip'd and/or .osz'd inside the pack, so osu! will need to extract the beatmaps itself the next time you go into Play mode. {0} extract the zip's/osz's yourself, or the beatmaps will display incorrectly in osu! and will not function properly.", scary); /// /// "Do NOT" /// public static LocalisableString IndexBlurbInstructionScary => new TranslatableString(getKey(@"index.blurb.instruction.scary"), @"Do NOT"); /// /// "Also note that it is highly recommended to {0}, since the oldest maps are of much lower quality than most recent maps." /// public static LocalisableString IndexBlurbNoteDefault(LocalisableString scary) => new TranslatableString(getKey(@"index.blurb.note._"), @"Also note that it is highly recommended to {0}, since the oldest maps are of much lower quality than most recent maps.", scary); /// /// "download the packs from latest to earliest" /// public static LocalisableString IndexBlurbNoteScary => new TranslatableString(getKey(@"index.blurb.note.scary"), @"download the packs from latest to earliest"); /// /// "Download" /// public static LocalisableString ShowDownload => new TranslatableString(getKey(@"show.download"), @"Download"); /// /// "cleared" /// public static LocalisableString ShowItemCleared => new TranslatableString(getKey(@"show.item.cleared"), @"cleared"); /// /// "not cleared" /// public static LocalisableString ShowItemNotCleared => new TranslatableString(getKey(@"show.item.not_cleared"), @"not cleared"); /// /// "{0} may not be used to clear this pack." /// public static LocalisableString ShowNoDiffReductionDefault(LocalisableString link) => new TranslatableString(getKey(@"show.no_diff_reduction._"), @"{0} may not be used to clear this pack.", link); /// /// "Difficulty reduction mods" /// public static LocalisableString ShowNoDiffReductionLink => new TranslatableString(getKey(@"show.no_diff_reduction.link"), @"Difficulty reduction mods"); /// /// "Artist/Album" /// public static LocalisableString ModeArtist => new TranslatableString(getKey(@"mode.artist"), @"Artist/Album"); /// /// "Spotlights" /// public static LocalisableString ModeChart => new TranslatableString(getKey(@"mode.chart"), @"Spotlights"); /// /// "Standard" /// public static LocalisableString ModeStandard => new TranslatableString(getKey(@"mode.standard"), @"Standard"); /// /// "Theme" /// public static LocalisableString ModeTheme => new TranslatableString(getKey(@"mode.theme"), @"Theme"); /// /// "You need to be {0} to download" /// public static LocalisableString RequireLoginDefault(LocalisableString link) => new TranslatableString(getKey(@"require_login._"), @"You need to be {0} to download", link); /// /// "signed in" /// public static LocalisableString RequireLoginLinkText => new TranslatableString(getKey(@"require_login.link_text"), @"signed in"); private static string getKey(string key) => $@"{prefix}:{key}"; } }