// 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 ResultsScreenStrings { private const string prefix = @"osu.Game.Resources.Localisation.ResultsScreen"; /// /// "Performance points are not granted for this score because the beatmap is not ranked." /// 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."); /// /// "Performance points are not granted for this score because of unranked mods." /// 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}"; } }