Add import from stable screen

This commit is contained in:
Dean Herbert
2022-05-16 19:21:26 +09:00
parent ef5b2233d7
commit 4412fec41a
4 changed files with 131 additions and 43 deletions

View File

@ -74,6 +74,16 @@ We recommend you give the new defaults a try, but if you'd like to have things f
/// </summary>
public static LocalisableString ClassicDefaults => new TranslatableString(getKey(@"classic_defaults"), @"Classic defaults");
/// <summary>
/// "Welcome"
/// </summary>
public static LocalisableString ImportTitle => new TranslatableString(getKey(@"import_title"), @"Import");
/// <summary>
/// "Import content from stable"
/// </summary>
public static LocalisableString ImportContentFromStable => new TranslatableString(getKey(@"import_content_from_stable"), @"Import content from osu!(stable)");
private static string getKey(string key) => $@"{prefix}:{key}";
}
}