the browser-facing portion of osu!
at master 31 lines 1.0 kB 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 '_' => 'Không có game :type_group osu!(lazer) đã chơi!', 9 'playlists' => 'danh sách phát', 10 'realtime' => 'nhiều người chơi', 11 ], 12 13 'room' => [ 14 'hosted_by' => 'chủ phòng :user', 15 'invalid_password' => 'Mật khẩu phòng không đúng', 16 'map_count' => ':count_delimited map', 17 'player_count' => ':count_delimited người_chơi|:count_delimited người chơi', 18 'time_left' => ':time thời gian còn lại', 19 20 'errors' => [ 21 'duration_too_long' => 'Thời lượng quá dài. ', 22 'name_too_long' => '', 23 ], 24 25 'status' => [ 26 'active' => 'đang Hoạt Động', 27 'ended' => 'đã dừng', 28 'soon' => 'sớm kết thúc', 29 ], 30 ], 31];