diff --git a/osu.Game/Localisation/HeaderDescriptionStrings.cs b/osu.Game/Localisation/HeaderDescriptionStrings.cs
index c84822de53..6ed703191a 100644
--- a/osu.Game/Localisation/HeaderDescriptionStrings.cs
+++ b/osu.Game/Localisation/HeaderDescriptionStrings.cs
@@ -19,6 +19,11 @@ namespace osu.Game.Localisation
///
public static LocalisableString Changelog => new TranslatableString(getKey(@"changelog"), @"track recent dev updates in the osu! ecosystem");
+ ///
+ /// "view your friends and other information"
+ ///
+ public static LocalisableString Dashboard => new TranslatableString(getKey(@"dashboard"), @"view your friends and other information");
+
///
/// "find out who's the best right now"
///
diff --git a/osu.Game/Overlays/Dashboard/DashboardOverlayHeader.cs b/osu.Game/Overlays/Dashboard/DashboardOverlayHeader.cs
index 056d4ad6f7..284e95ad84 100644
--- a/osu.Game/Overlays/Dashboard/DashboardOverlayHeader.cs
+++ b/osu.Game/Overlays/Dashboard/DashboardOverlayHeader.cs
@@ -4,6 +4,7 @@
using System;
using System.ComponentModel;
using osu.Framework.Localisation;
+using osu.Game.Localisation;
using osu.Game.Resources.Localisation.Web;
namespace osu.Game.Overlays.Dashboard
@@ -17,7 +18,7 @@ namespace osu.Game.Overlays.Dashboard
public DashboardTitle()
{
Title = HomeStrings.UserTitle;
- Description = "view your friends and other information";
+ Description = HeaderDescriptionStrings.Dashboard;
IconTexture = "Icons/Hexacons/social";
}
}