feat: add localisation for Skin editor components

This commit is contained in:
tsrk
2023-02-01 23:44:00 +00:00
parent 7d1b5751fd
commit 8645e705fd
21 changed files with 424 additions and 26 deletions

View File

@ -39,6 +39,11 @@ namespace osu.Game.Localisation
/// </summary>
public static LocalisableString Settings(string arg0) => new TranslatableString(getKey(@"settings"), @"Settings ({0})", arg0);
/// <summary>
/// "Curently editing"
/// </summary>
public static LocalisableString CurrentlyEditing => new TranslatableString(getKey(@"currently_editing"), "Curently editing");
private static string getKey(string key) => $@"{prefix}:{key}";
}
}