the browser-facing portion of osu!
at master 31 lines 976 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];