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 '_' => 'No s\'ha jugat cap partida :type_group d\'osu!(lazer) encara!', 9 'playlists' => 'llista de reproducció', 10 'realtime' => 'multijugador', 11 ], 12 13 'room' => [ 14 'hosted_by' => 'allotjat per :user', 15 'invalid_password' => 'La contrasenya de la sala és incorrecta', 16 'map_count' => ':count_delimited mapa|:count_delimited mapes', 17 'player_count' => ':count_delimited jugador|:count_delimited jugadors', 18 'time_left' => ':time restant', 19 20 'errors' => [ 21 'duration_too_long' => 'La durada és massa llarga.', 22 'name_too_long' => '', 23 ], 24 25 'status' => [ 26 'active' => 'actiu', 27 'ended' => 'finalitzat', 28 'soon' => 'finalitza aviat', 29 ], 30 ], 31];