Change `ResetDialogue` text

This commit is contained in:
mk56-spn 2023-03-03 15:15:14 +01:00
parent 2b7111867c
commit 3bff415909
1 changed files with 2 additions and 2 deletions

View File

@ -50,9 +50,9 @@ public static class SkinEditorStrings
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}";
}