diff --git a/osu.Game/Localisation/HeaderDescriptionStrings.cs b/osu.Game/Localisation/HeaderDescriptionStrings.cs
index 88ee4a0d75..c84822de53 100644
--- a/osu.Game/Localisation/HeaderDescriptionStrings.cs
+++ b/osu.Game/Localisation/HeaderDescriptionStrings.cs
@@ -9,6 +9,11 @@ namespace osu.Game.Localisation
{
private const string prefix = @"osu.Game.Resources.Localisation.HeaderDescription";
+ ///
+ /// "browse for new beatmaps"
+ ///
+ public static LocalisableString BeatmapListing => new TranslatableString(getKey(@"beatmap_listing"), @"browse for new beatmaps");
+
///
/// "track recent dev updates in the osu! ecosystem"
///
diff --git a/osu.Game/Overlays/BeatmapListing/BeatmapListingHeader.cs b/osu.Game/Overlays/BeatmapListing/BeatmapListingHeader.cs
index 6a9a71210a..48ecbce7c1 100644
--- a/osu.Game/Overlays/BeatmapListing/BeatmapListingHeader.cs
+++ b/osu.Game/Overlays/BeatmapListing/BeatmapListingHeader.cs
@@ -1,6 +1,9 @@
// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
+using osu.Game.Localisation;
+using osu.Game.Resources.Localisation.Web;
+
namespace osu.Game.Overlays.BeatmapListing
{
public class BeatmapListingHeader : OverlayHeader
@@ -11,8 +14,8 @@ namespace osu.Game.Overlays.BeatmapListing
{
public BeatmapListingTitle()
{
- Title = "beatmap listing";
- Description = "browse for new beatmaps";
+ Title = PageTitleStrings.MainBeatmapsetsControllerIndex;
+ Description = HeaderDescriptionStrings.BeatmapListing;
IconTexture = "Icons/Hexacons/beatmap";
}
}