the browser-facing portion of osu!
at master 31 lines 893 B view raw
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 '_' => '还没有玩过 osu!(lazer) 的 :type_group 游戏!', 9 'playlists' => '歌单', 10 'realtime' => '多人', 11 ], 12 13 'room' => [ 14 'hosted_by' => '房主::user', 15 'invalid_password' => '无效的房间密码', 16 'map_count' => ':count_delimited 张图', 17 'player_count' => ':count_delimited 位玩家', 18 'time_left' => '剩余 :time', 19 20 'errors' => [ 21 'duration_too_long' => '持续时间过长。', 22 'name_too_long' => '', 23 ], 24 25 'status' => [ 26 'active' => '开放', 27 'ended' => '已结束', 28 'soon' => '即将结束', 29 ], 30 ], 31];