1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 22:37:21 +08:00

Localise Recent section.

This commit is contained in:
Lucas A 2021-07-17 15:50:56 +02:00
parent 5bb45c7f84
commit d17f658985

View File

@ -10,13 +10,14 @@ using osu.Game.Online.API;
using System.Collections.Generic;
using osuTK;
using osu.Framework.Allocation;
using osu.Game.Resources.Localisation.Web;
namespace osu.Game.Overlays.Profile.Sections.Recent
{
public class PaginatedRecentActivityContainer : PaginatedProfileSubsection<APIRecentActivity>
{
public PaginatedRecentActivityContainer(Bindable<User> user)
: base(user, missingText: "This user hasn't done anything notable recently!")
: base(user, string.Empty, EventsStrings.Empty)
{
ItemsPerPage = 10;
}