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 '_' => '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];