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

Adjust warning text slightly.

This commit is contained in:
mk56-spn 2023-02-27 16:08:14 +01:00
parent ff0d1aa9f7
commit bf1897a98f
2 changed files with 3 additions and 3 deletions

View File

@ -45,9 +45,9 @@ namespace osu.Game.Localisation
public static LocalisableString CurrentlyEditing => new TranslatableString(getKey(@"currently_editing"), @"Currently editing");
/// <summary>
/// "Revert?"
/// "Revert to default?"
/// </summary>
public static LocalisableString Revert => new TranslatableString(getKey(@"revert"), @"Revert?");
public static LocalisableString RevertToDefault => new TranslatableString(getKey(@"revert_to_default"), @"Revert to default?");
/// <summary>
/// "The skin will return to the state it was in upon import"

View File

@ -635,7 +635,7 @@ namespace osu.Game.Overlays.SkinEditor
{
public ResetConfirmDialog(Action reset)
{
HeaderText = SkinEditorStrings.Revert;
HeaderText = SkinEditorStrings.RevertToDefault;
BodyText = SkinEditorStrings.ResetDialogue;
Icon = FontAwesome.Solid.ExclamationTriangle;