1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 16:52:54 +08:00

Rename {room -> playlist} on playlist room screen

This commit is contained in:
Bartłomiej Dach 2020-12-24 16:08:45 +01:00
parent 3a46e210d4
commit 7f0f6d86b0

View File

@ -25,7 +25,7 @@ namespace osu.Game.Screens.Multi.Timeshift
{
public override string Title { get; }
public override string ShortTitle => "room";
public override string ShortTitle => "playlist";
[Resolved(typeof(Room), nameof(Room.RoomID))]
private Bindable<int?> roomId { get; set; }
@ -40,7 +40,7 @@ namespace osu.Game.Screens.Multi.Timeshift
public TimeshiftRoomSubScreen(Room room)
{
Title = room.RoomID.Value == null ? "New room" : room.Name.Value;
Title = room.RoomID.Value == null ? "New playlist" : room.Name.Value;
Activity.Value = new UserActivity.InLobby(room);
}