1<?php
2
3// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
4// See the LICENCE file in the repository root for full licence text.
5
6return [
7 'empty' => [
8 '_' => 'No osu!(lazer) :type_group games played yet!',
9 'playlists' => 'playlist',
10 'realtime' => 'multiplayer',
11 ],
12
13 'room' => [
14 'hosted_by' => 'hosted by :user',
15 'invalid_password' => 'Invalid room password',
16 'map_count' => ':count_delimited map|:count_delimited maps',
17 'player_count' => ':count_delimited player|:count_delimited players',
18 'time_left' => ':time left',
19
20 'errors' => [
21 'duration_too_long' => 'Duration is too long.',
22 'name_too_long' => 'Room name is too long.',
23 ],
24
25 'status' => [
26 'active' => 'active',
27 'ended' => 'ended',
28 'soon' => 'ending soon',
29 ],
30 ],
31];