Close #5820 (Ability to delete a single skin)

This commit is contained in:
theangryepicbanana
2022-06-07 18:01:40 -04:00
parent 5b4954aac1
commit 6c05329144
3 changed files with 87 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}";
}
}