1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-08 17:45:02 +08:00

Merge pull request #27472 from frenzibyte/fix-translation

This commit is contained in:
Dean Herbert
2024-03-03 03:49:42 +08:00
committed by GitHub
Unverified
@@ -67,7 +67,7 @@ namespace osu.Game.Localisation
/// <summary>
/// "Performance points will not be granted due to active mods."
/// </summary>
public static LocalisableString UnrankedExplanation => new TranslatableString(getKey(@"ranked_explanation"), @"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}";
}