Beatmap Editor Save Toast

This commit is contained in:
LukynkaCZE
2022-07-19 21:38:23 +02:00
parent 87afa7317b
commit a00da279b7
2 changed files with 27 additions and 1 deletions

View File

@ -34,6 +34,17 @@ namespace osu.Game.Localisation
/// </summary>
public static LocalisableString RestartTrack => new TranslatableString(getKey(@"restart_track"), @"Restart track");
/// <summary>
/// "Beatmap Editor"
/// </summary>r
public static LocalisableString BeatmapEditor => new TranslatableString(getKey(@"beatmap_editor"), @"Beatmap Editor");
/// <summary>
/// "Beatmap Saved"
/// </summary>
public static LocalisableString EditorSaveBeatmap => new TranslatableString(getKey(@"beatmap_editor_save"), @"Beatmap Saved");
private static string getKey(string key) => $@"{prefix}:{key}";
}
}