the browser-facing portion of osu!
at master 31 lines 1.2 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 '_' => 'ยังไม่มีการเล่นเกม osu!(lazer) ใน :type_group ที่เล่นแล้วเลย!', 9 'playlists' => 'รายการเพลง', 10 'realtime' => 'โหมดผู้เล่นหลายคน', 11 ], 12 13 'room' => [ 14 'hosted_by' => 'เป็นเจ้าภาพโดย :user', 15 'invalid_password' => 'รหัสผ่านห้องผิด', 16 'map_count' => ':count_delimited แมพ|:count_delimited แมพ', 17 'player_count' => ':count_delimited ผู้เล่น|: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];