1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 16:02:55 +08:00

Change to sentence casing

See: https://github.com/ppy/osu/pull/23640#discussion_r1202879352
This commit is contained in:
Robin Oger 2023-05-23 21:37:12 +02:00
parent 0ea3eea8d6
commit a24da89908

View File

@ -35,14 +35,14 @@ namespace osu.Game.Localisation
public static LocalisableString PausedHeader => new TranslatableString(getKey(@"paused_header"), @"paused");
/// <summary>
/// "you're dead, try again?"
/// "You're dead, try again?"
/// </summary>
public static LocalisableString FailedDescription => new TranslatableString(getKey(@"failed_description"), @"you're dead, try again?");
public static LocalisableString FailedDescription => new TranslatableString(getKey(@"failed_description"), @"You're dead, try again?");
/// <summary>
/// "you're not going to do what i think you're going to do, are ya?"
/// "You're not going to do what i think you're going to do, are ya?"
/// </summary>
public static LocalisableString PausedDescription => new TranslatableString(getKey(@"paused_description"), @"you're not going to do what i think you're going to do, are ya?");
public static LocalisableString PausedDescription => new TranslatableString(getKey(@"paused_description"), @"You're not going to do what i think you're going to do, are ya?");
private static string getKey(string key) => $@"{prefix}:{key}";
}