// 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 ModSelectOverlayStrings { private const string prefix = @"osu.Game.Resources.Localisation.ModSelectOverlay"; /// /// "Mod Select" /// public static LocalisableString ModSelectTitle => new TranslatableString(getKey(@"mod_select_title"), @"Mod Select"); /// /// "{0} mods" /// public static LocalisableString Mods(int count) => new TranslatableString(getKey(@"mods"), @"{0} mods", count); /// /// "Mods provide different ways to enjoy gameplay. Some have an effect on the score you can achieve during ranked play. Others are just for fun." /// public static LocalisableString ModSelectDescription => new TranslatableString(getKey(@"mod_select_description"), @"Mods provide different ways to enjoy gameplay. Some have an effect on the score you can achieve during ranked play. Others are just for fun."); /// /// "Mod Customisation" /// public static LocalisableString ModCustomisation => new TranslatableString(getKey(@"mod_customisation"), @"Mod Customisation"); /// /// "Personal Presets" /// public static LocalisableString PersonalPresets => new TranslatableString(getKey(@"personal_presets"), @"Personal Presets"); /// /// "Add preset" /// public static LocalisableString AddPreset => new TranslatableString(getKey(@"add_preset"), @"Add preset"); /// /// "Use current mods" /// public static LocalisableString UseCurrentMods => new TranslatableString(getKey(@"use_current_mods"), @"Use current mods"); /// /// "tab to search..." /// public static LocalisableString TabToSearch => new TranslatableString(getKey(@"tab_to_search"), @"tab to search..."); /// /// "Score Multiplier" /// public static LocalisableString ScoreMultiplier => new TranslatableString(getKey(@"score_multiplier"), @"Score Multiplier"); /// /// "Ranked" /// public static LocalisableString Ranked => new TranslatableString(getKey(@"ranked"), @"Ranked"); /// /// "Performance points can be granted for the active mods." /// public static LocalisableString RankedExplanation => new TranslatableString(getKey(@"ranked_explanation"), @"Performance points can be granted for the active mods."); /// /// "Unranked" /// public static LocalisableString Unranked => new TranslatableString(getKey(@"unranked"), @"Unranked"); /// /// "Performance points will not be granted due to active mods." /// public static LocalisableString UnrankedExplanation => new TranslatableString(getKey(@"unranked_explanation"), @"Performance points will not be granted due to active mods."); private static string getKey(string key) => $@"{prefix}:{key}"; } }