mirror of
https://github.com/osukey/osukey.git
synced 2025-05-20 21:17:32 +09:00
Add common strings for missing localisable content
This commit is contained in:
parent
d54e1503c7
commit
0cee90e156
@ -69,6 +69,26 @@ namespace osu.Game.Localisation
|
||||
/// </summary>
|
||||
public static LocalisableString SelectAll => new TranslatableString(getKey(@"select_all"), @"Select All");
|
||||
|
||||
/// <summary>
|
||||
/// "Beatmaps"
|
||||
/// </summary>
|
||||
public static LocalisableString Beatmaps => new TranslatableString(getKey(@"beatmaps"), @"Beatmaps");
|
||||
|
||||
/// <summary>
|
||||
/// "Scores"
|
||||
/// </summary>
|
||||
public static LocalisableString Scores => new TranslatableString(getKey(@"scores"), @"Scores");
|
||||
|
||||
/// <summary>
|
||||
/// "Skins"
|
||||
/// </summary>
|
||||
public static LocalisableString Skins => new TranslatableString(getKey(@"skins"), @"Skins");
|
||||
|
||||
/// <summary>
|
||||
/// "Collections"
|
||||
/// </summary>
|
||||
public static LocalisableString Collections => new TranslatableString(getKey(@"collections"), @"Collections");
|
||||
|
||||
private static string getKey(string key) => $@"{prefix}:{key}";
|
||||
}
|
||||
}
|
@ -60,10 +60,10 @@ namespace osu.Game.Overlays.FirstRunSetup
|
||||
Label = FirstRunOverlayImportFromStableScreenStrings.LocateDirectoryLabel,
|
||||
PlaceholderText = FirstRunOverlayImportFromStableScreenStrings.LocateDirectoryPlaceholder
|
||||
},
|
||||
new ImportCheckbox("Beatmaps", StableContent.Beatmaps),
|
||||
new ImportCheckbox("Scores", StableContent.Scores),
|
||||
new ImportCheckbox("Skins", StableContent.Skins),
|
||||
new ImportCheckbox("Collections", StableContent.Collections),
|
||||
new ImportCheckbox(CommonStrings.Beatmaps, StableContent.Beatmaps),
|
||||
new ImportCheckbox(CommonStrings.Scores, StableContent.Scores),
|
||||
new ImportCheckbox(CommonStrings.Skins, StableContent.Skins),
|
||||
new ImportCheckbox(CommonStrings.Collections, StableContent.Collections),
|
||||
importButton = new ProgressRoundedButton
|
||||
{
|
||||
Size = button_size,
|
||||
|
Loading…
x
Reference in New Issue
Block a user