the browser-facing portion of osu!
at master 31 lines 994 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 '_' => 'Nem játszottál még egy osu!(lazer) :type_group játékot sem!', 9 'playlists' => 'játéklista', 10 'realtime' => 'többjátékos', 11 ], 12 13 'room' => [ 14 'hosted_by' => 'hosztolva :user által', 15 'invalid_password' => 'Hibás szoba jelszó', 16 'map_count' => ':count_delimited map|:count_delimited mapok', 17 'player_count' => ':count_delimited játékos|:count_delimited játékosok', 18 'time_left' => ':time van hátra', 19 20 'errors' => [ 21 'duration_too_long' => 'Az időtartam túl hosszú.', 22 'name_too_long' => '', 23 ], 24 25 'status' => [ 26 'active' => 'aktív', 27 'ended' => 'befejezve', 28 'soon' => 'hamarosan befejeződik', 29 ], 30 ], 31];