Skin Editor

This commit is contained in:
LukynkaCZE
2022-07-19 22:18:19 +02:00
parent a00da279b7
commit 51a0b5afdc
2 changed files with 27 additions and 0 deletions

View File

@ -44,6 +44,17 @@ namespace osu.Game.Localisation
/// </summary>
public static LocalisableString EditorSaveBeatmap => new TranslatableString(getKey(@"beatmap_editor_save"), @"Beatmap Saved");
/// <summary>
/// "Skin Editor"
/// </summary>
public static LocalisableString SkinEditor => new TranslatableString(getKey(@"skin_editor"), @"Skin Editor");
/// <summary>
/// "Skin Saved"
/// </summary>
public static LocalisableString EditorSaveSkin => new TranslatableString(getKey(@"skin_editor_save"), @"Skin Saved");
private static string getKey(string key) => $@"{prefix}:{key}";
}