diff --git a/osu.Game/Localisation/EditorSetupStrings.cs b/osu.Game/Localisation/EditorSetupStrings.cs
index 350517734f..60e677757e 100644
--- a/osu.Game/Localisation/EditorSetupStrings.cs
+++ b/osu.Game/Localisation/EditorSetupStrings.cs
@@ -188,6 +188,11 @@ namespace osu.Game.Localisation
///
public static LocalisableString AudioTrack => new TranslatableString(getKey(@"audio_track"), @"Audio Track");
+ ///
+ /// "Update all difficulties"
+ ///
+ public static LocalisableString ResourcesUpdateAllDifficulties => new TranslatableString(getKey(@"resources_update_all_difficulties"), @"Update all difficulties");
+
///
/// "Click to select a track"
///
diff --git a/osu.Game/Screens/Edit/Setup/ResourcesSection.cs b/osu.Game/Screens/Edit/Setup/ResourcesSection.cs
index 5c904f6ce1..aa28e56218 100644
--- a/osu.Game/Screens/Edit/Setup/ResourcesSection.cs
+++ b/osu.Game/Screens/Edit/Setup/ResourcesSection.cs
@@ -66,7 +66,7 @@ namespace osu.Game.Screens.Edit.Setup
updateAllDifficultiesButton = new RoundedButton
{
RelativeSizeAxes = Axes.X,
- Text = "Update all difficulties",
+ Text = EditorSetupStrings.ResourcesUpdateAllDifficulties,
Action = updateAllDifficulties,
Enabled = { Value = false },
}