1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-24 00:23:10 +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
commit e1744df2b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -67,7 +67,7 @@ namespace osu.Game.Localisation
/// <summary> /// <summary>
/// "Performance points will not be granted due to active mods." /// "Performance points will not be granted due to active mods."
/// </summary> /// </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}"; private static string getKey(string key) => $@"{prefix}:{key}";
} }