Merge pull request #18609 from ALANVF/settings-delete-skin

Add button to delete the current skin
This commit is contained in:
Dean Herbert
2022-06-08 19:18:59 +09:00
committed by GitHub
3 changed files with 80 additions and 0 deletions

View File

@ -54,6 +54,11 @@ namespace osu.Game.Localisation
/// </summary>
public static LocalisableString ExportSkinButton => new TranslatableString(getKey(@"export_skin_button"), @"Export selected skin");
/// <summary>
/// "Delete selected skin"
/// </summary>
public static LocalisableString DeleteSkinButton => new TranslatableString(getKey(@"delete_skin_button"), @"Delete selected skin");
private static string getKey(string key) => $"{prefix}:{key}";
}
}