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 '_' => 'Наразі в :type_group osu!(lazer) не зіграно ні однієї гри!', 9 'playlists' => 'плейлістах', 10 'realtime' => 'мультиплеєрі', 11 ], 12 13 'room' => [ 14 'hosted_by' => 'власник: :user', 15 'invalid_password' => 'Невірний пароль кімнати', 16 'map_count' => ':count_delimited мапа|:count_delimited мапи|:count_delimited мап', 17 'player_count' => ':count_delimited гравець|: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];