// 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 PlayerLoaderStrings { private const string prefix = @"osu.Game.Resources.Localisation.PlayerLoader"; /// /// "This beatmap contains scenes with rapidly flashing colours" /// public static LocalisableString EpilepsyWarningTitle => new TranslatableString(getKey(@"epilepsy_warning_title"), @"This beatmap contains scenes with rapidly flashing colours"); /// /// "Please take caution if you are affected by epilepsy." /// public static LocalisableString EpilepsyWarningContent => new TranslatableString(getKey(@"epilepsy_warning_content"), @"Please take caution if you are affected by epilepsy."); /// /// "This beatmap is loved" /// public static LocalisableString LovedBeatmapDisclaimerTitle => new TranslatableString(getKey(@"loved_beatmap_disclaimer_title"), @"This beatmap is loved"); /// /// "No performance points will be awarded. /// Leaderboards may be reset by the beatmap creator." /// public static LocalisableString LovedBeatmapDisclaimerContent => new TranslatableString(getKey(@"loved_beatmap_disclaimer_content"), @"No performance points will be awarded. Leaderboards may be reset by the beatmap creator."); /// /// "This beatmap is qualified" /// public static LocalisableString QualifiedBeatmapDisclaimerTitle => new TranslatableString(getKey(@"qualified_beatmap_disclaimer_title"), @"This beatmap is qualified"); /// /// "No performance points will be awarded. /// Leaderboards will be reset when the beatmap is ranked." /// public static LocalisableString QualifiedBeatmapDisclaimerContent => new TranslatableString(getKey(@"qualified_beatmap_disclaimer_content"), @"No performance points will be awarded. Leaderboards will be reset when the beatmap is ranked."); private static string getKey(string key) => $@"{prefix}:{key}"; } }