the browser-facing portion of osu!
at master 31 lines 990 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 '_' => ':type_group nu au fost jucate încă!', 9 'playlists' => 'playlist', 10 'realtime' => 'multiplayer', 11 ], 12 13 'room' => [ 14 'hosted_by' => 'început de :user', 15 'invalid_password' => 'Parolă invalidă', 16 'map_count' => 'un beatmap|:count_delimited beatmap-uri|:count_delimited de beatmap-uri', 17 'player_count' => 'un jucător|:count_delimited jucători|:count_delimited de jucători ', 18 'time_left' => ':time rămas', 19 20 'errors' => [ 21 'duration_too_long' => 'Durata este prea lungă.', 22 'name_too_long' => '', 23 ], 24 25 'status' => [ 26 'active' => 'activ', 27 'ended' => 'încheiat', 28 'soon' => 'se va termină în curând', 29 ], 30 ], 31];