diff --git a/osu.Game/Localisation/OnlineSettingsStrings.cs b/osu.Game/Localisation/OnlineSettingsStrings.cs
index 5ea53a13bf..0660bac172 100644
--- a/osu.Game/Localisation/OnlineSettingsStrings.cs
+++ b/osu.Game/Localisation/OnlineSettingsStrings.cs
@@ -54,11 +54,6 @@ namespace osu.Game.Localisation
///
public static LocalisableString PreferNoVideo => new TranslatableString(getKey(@"prefer_no_video"), @"Prefer downloads without video");
- ///
- /// "Automatically download beatmaps when spectating"
- ///
- public static LocalisableString AutomaticallyDownloadWhenSpectating => new TranslatableString(getKey(@"automatically_download_when_spectating"), @"Automatically download beatmaps when spectating");
-
///
/// "Automatically download missing beatmaps"
///
diff --git a/osu.Game/Localisation/WebSettingsStrings.cs b/osu.Game/Localisation/WebSettingsStrings.cs
deleted file mode 100644
index b3033524dc..0000000000
--- a/osu.Game/Localisation/WebSettingsStrings.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence.
-// See the LICENCE file in the repository root for full licence text.
-
-using osu.Framework.Localisation;
-
-namespace osu.Game.Localisation
-{
- public static class WebSettingsStrings
- {
- private const string prefix = @"osu.Game.Resources.Localisation.WebSettings";
-
- ///
- /// "Automatically download missing beatmaps"
- ///
- public static LocalisableString AutomaticallyDownloadMissingBeatmaps => new TranslatableString(getKey(@"automatically_download_missing_beatmaps"), @"Automatically download missing beatmaps");
-
- private static string getKey(string key) => $@"{prefix}:{key}";
- }
-}
\ No newline at end of file