the browser-facing portion of osu!
at master 61 lines 2.3 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 'match' => [ 8 'beatmap-deleted' => '삭제된 비트맵', 9 'failed' => '실패', 10 'header' => '멀티플레이 게임', 11 'in-progress' => '(게임이 진행중입니다.)', 12 'in_progress_spinner_label' => '게임이 진행중입니다', 13 'loading-events' => '기록 불러오는 중...', 14 'winner' => ':team 승리', 15 'winner_by' => ':difference 차로 :winner', 16 17 'events' => [ 18 'player-left' => ':user님이 게임을 떠났습니다.', 19 'player-joined' => ':user님이 게임에 참가했습니다.', 20 'player-kicked' => ':user님이 게임에서 추방되었습니다.', 21 'match-created' => ':user님이 게임을 개설하였습니다.', 22 'match-disbanded' => '게임이 해체되었습니다.', 23 'host-changed' => ':user님이 방장이 되었습니다.', 24 25 'player-left-no-user' => '플레이어가 게임을 떠났습니다.', 26 'player-joined-no-user' => '플레이어가 게임에 참가했습니다.', 27 'player-kicked-no-user' => '플레이어가 게임에서 추방되었습니다.', 28 'match-created-no-user' => '게임이 개설되었습니다.', 29 'match-disbanded-no-user' => '게임이 해체되었습니다.', 30 'host-changed-no-user' => '방장이 변경되었습니다.', 31 ], 32 33 'score' => [ 34 'stats' => [ 35 'accuracy' => '정확도', 36 'combo' => '콤보', 37 'score' => '점수', 38 ], 39 ], 40 41 'team-types' => [ 42 'head-to-head' => '개인전', 43 'tag-coop' => '태그 협동전', 44 'team-vs' => '팀 대전', 45 'tag-team-vs' => '팀 태그 대전', 46 ], 47 48 'teams' => [ 49 'blue' => 'Blue 팀', 50 'red' => 'Red 팀', 51 ], 52 ], 53 'game' => [ 54 'scoring-type' => [ 55 'score' => '최고 점수', 56 'accuracy' => '최고 정확도', 57 'combo' => '최다 콤보', 58 'scorev2' => 'Score V2', 59 ], 60 ], 61];