1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 13:22:55 +08:00

Fix xmldoc

This commit is contained in:
Dan Balasescu 2024-08-07 23:50:09 +09:00
parent 775f76f472
commit 10f704cc41
No known key found for this signature in database

View File

@ -25,10 +25,10 @@ namespace osu.Game.Localisation
public static LocalisableString MentionUser => new TranslatableString(getKey(@"mention_user"), @"Mention"); public static LocalisableString MentionUser => new TranslatableString(getKey(@"mention_user"), @"Mention");
/// <summary> /// <summary>
/// "press enter to type message..." /// "press enter to chat..."
/// </summary> /// </summary>
public static LocalisableString InGameInputPlaceholder => new TranslatableString(getKey(@"in_game_input_placeholder"), @"press enter to chat..."); public static LocalisableString InGameInputPlaceholder => new TranslatableString(getKey(@"in_game_input_placeholder"), @"press enter to chat...");
private static string getKey(string key) => $"{prefix}:{key}"; private static string getKey(string key) => $@"{prefix}:{key}";
} }
} }