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

Adjust text slightly

This commit is contained in:
Dean Herbert 2024-01-15 14:12:10 +09:00
parent 093001438c
commit cd20561843
No known key found for this signature in database

View File

@ -152,14 +152,13 @@ namespace osu.Game.Localisation
/// <summary> /// <summary>
/// "In order to change the renderer, the game will close. Please open it again." /// "In order to change the renderer, the game will close. Please open it again."
/// </summary> /// </summary>
public static LocalisableString ChangeRendererConfirmation => public static LocalisableString ChangeRendererConfirmation => new TranslatableString(getKey(@"change_renderer_configuration"), @"In order to change the renderer, the game will close. Please open it again.");
new TranslatableString(getKey(@"change_renderer_configuration"), @"In order to change the renderer, the game will close. Please open it again.");
/// <summary> /// <summary>
/// "Minimise on focus loss" /// "Minimise osu! when switching to another app"
/// </summary> /// </summary>
public static LocalisableString MinimiseOnFocusLoss => new TranslatableString(getKey(@"minimise_on_focus_loss"), @"Minimise on focus loss"); public static LocalisableString MinimiseOnFocusLoss => new TranslatableString(getKey(@"minimise_on_focus_loss"), @"Minimise osu! when switching to another app");
private static string getKey(string key) => $"{prefix}:{key}"; private static string getKey(string key) => $@"{prefix}:{key}";
} }
} }