diff --git a/osu.Game/Localisation/CommonStrings.cs b/osu.Game/Localisation/CommonStrings.cs
index 9cd626af0f..1fd677034d 100644
--- a/osu.Game/Localisation/CommonStrings.cs
+++ b/osu.Game/Localisation/CommonStrings.cs
@@ -69,6 +69,26 @@ namespace osu.Game.Localisation
///
public static LocalisableString SelectAll => new TranslatableString(getKey(@"select_all"), @"Select All");
+ ///
+ /// "Beatmaps"
+ ///
+ public static LocalisableString Beatmaps => new TranslatableString(getKey(@"beatmaps"), @"Beatmaps");
+
+ ///
+ /// "Scores"
+ ///
+ public static LocalisableString Scores => new TranslatableString(getKey(@"scores"), @"Scores");
+
+ ///
+ /// "Skins"
+ ///
+ public static LocalisableString Skins => new TranslatableString(getKey(@"skins"), @"Skins");
+
+ ///
+ /// "Collections"
+ ///
+ public static LocalisableString Collections => new TranslatableString(getKey(@"collections"), @"Collections");
+
private static string getKey(string key) => $@"{prefix}:{key}";
}
-}
+}
\ No newline at end of file
diff --git a/osu.Game/Overlays/FirstRunSetup/ScreenImportFromStable.cs b/osu.Game/Overlays/FirstRunSetup/ScreenImportFromStable.cs
index 106e78dc18..cf8abf0a76 100644
--- a/osu.Game/Overlays/FirstRunSetup/ScreenImportFromStable.cs
+++ b/osu.Game/Overlays/FirstRunSetup/ScreenImportFromStable.cs
@@ -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,