Add localisation support for all new strings

This commit is contained in:
Dean Herbert
2022-04-19 13:52:55 +09:00
parent 5dc3805005
commit e67cc293b8
7 changed files with 87 additions and 13 deletions

View File

@ -59,6 +59,11 @@ namespace osu.Game.Localisation
/// </summary>
public static LocalisableString ChangeFolderLocation => new TranslatableString(getKey(@"change_folder_location"), @"Change folder location...");
/// <summary>
/// "Run setup wizard"
/// </summary>
public static LocalisableString RunSetupWizard => new TranslatableString(getKey(@"run_setup_wizard"), @"Run setup wizard");
private static string getKey(string key) => $"{prefix}:{key}";
}
}