Fix "unranked explaination" tooltip text using incorrect translation key

This commit is contained in:
Salman Ahmed 2024-03-02 22:45:15 +03:00
parent 45bfdb49b7
commit 85f131d2f8
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ public static class ModSelectOverlayStrings
/// <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}";
}