1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-18 21:02:56 +08:00

Shorten TranslatableString

This commit is contained in:
kstefanowicz 2024-08-05 11:06:27 -04:00
parent f92e2094c1
commit 54a8f5b306

View File

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