// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. 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 ResultsScreenStrings { private const string prefix = @"osu.Game.Resources.Localisation.ResultsScreen"; /// <summary> /// "Performance points are not granted for this score because the beatmap is not ranked." /// </summary> public static LocalisableString NoPPForUnrankedBeatmaps => new TranslatableString(getKey(@"no_pp_for_unranked_beatmaps"), @"Performance points are not granted for this score because the beatmap is not ranked."); /// <summary> /// "Performance points are not granted for this score because of unranked mods." /// </summary> public static LocalisableString NoPPForUnrankedMods => new TranslatableString(getKey(@"no_pp_for_unranked_mods"), @"Performance points are not granted for this score because of unranked mods."); private static string getKey(string key) => $@"{prefix}:{key}"; } }