1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-27 03:23:03 +08:00

Change ResetDialogue text

This commit is contained in:
mk56-spn 2023-03-03 15:15:14 +01:00
parent 2b7111867c
commit 3bff415909

View File

@ -50,9 +50,9 @@ namespace osu.Game.Localisation
public static LocalisableString RevertToDefaultDescription => new TranslatableString(getKey(@"revert_to_default"), @"Revert to default.");
/// <summary>
/// "The skin will return to the state it was in upon import"
/// "Return the skin to its default state"
/// </summary>
public static LocalisableString ResetDialogue => new TranslatableString(getKey(@"the_skin_will_return_to"), @"The skin will return to the state it was in upon import");
public static LocalisableString ResetDialogue => new TranslatableString(getKey(@"return_the_skin_to_its"), @"Return the skin to its default state");
private static string getKey(string key) => $@"{prefix}:{key}";
}