Add localisations for add preset button

This commit is contained in:
Bartłomiej Dach
2022-07-22 21:49:51 +02:00
parent 059a465fe8
commit 7251389e43
3 changed files with 21 additions and 5 deletions

View File

@ -29,6 +29,11 @@ namespace osu.Game.Localisation
/// </summary>
public static LocalisableString PersonalPresets => new TranslatableString(getKey(@"personal_presets"), @"Personal Presets");
/// <summary>
/// "Add preset"
/// </summary>
public static LocalisableString AddPreset => new TranslatableString(getKey(@"add_preset"), @"Add preset");
private static string getKey(string key) => $@"{prefix}:{key}";
}
}