diff --git a/osu.Game/Localisation/GeneralSettingsStrings.cs b/osu.Game/Localisation/GeneralSettingsStrings.cs
index ebf57d8109..42623f4632 100644
--- a/osu.Game/Localisation/GeneralSettingsStrings.cs
+++ b/osu.Game/Localisation/GeneralSettingsStrings.cs
@@ -49,6 +49,11 @@ namespace osu.Game.Localisation
///
public static LocalisableString OpenOsuFolder => new TranslatableString(getKey(@"open_osu_folder"), @"Open osu! folder");
+ ///
+ /// "Export logs"
+ ///
+ public static LocalisableString ExportLogs => new TranslatableString(getKey(@"export_logs"), @"Export logs");
+
///
/// "Change folder location..."
///
diff --git a/osu.Game/Overlays/Settings/Sections/General/UpdateSettings.cs b/osu.Game/Overlays/Settings/Sections/General/UpdateSettings.cs
index 5f74b5ecb9..e2c9de1807 100644
--- a/osu.Game/Overlays/Settings/Sections/General/UpdateSettings.cs
+++ b/osu.Game/Overlays/Settings/Sections/General/UpdateSettings.cs
@@ -75,8 +75,8 @@ namespace osu.Game.Overlays.Settings.Sections.General
Add(new SettingsButton
{
- Text = "Compress log files",
- Keywords = new[] { @"bug", "report", "logs" },
+ Text = GeneralSettingsStrings.ExportLogs,
+ Keywords = new[] { @"bug", "report", "logs", "files" },
Action = () =>
{
var logStorage = storage.GetStorageForDirectory(@"logs");