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 '_' => 'Brak rozegranych gier w trybie :type_group!', 9 'playlists' => 'asynchronicznym', 10 'realtime' => 'wieloosobowym', 11 ], 12 13 'room' => [ 14 'hosted_by' => 'utworzona przez :user', 15 'invalid_password' => 'Nieprawidłowe hasło do pokoju', 16 'map_count' => ':count_delimited beatmapa|:count_delimited beatmapy|:count_delimited beatmap', 17 'player_count' => ':count_delimited gracz|:count_delimited gracze|:count_delimited graczy', 18 'time_left' => 'pozostało :time', 19 20 'errors' => [ 21 'duration_too_long' => 'Czas trwania jest zbyt długi.', 22 'name_too_long' => '', 23 ], 24 25 'status' => [ 26 'active' => 'aktywna', 27 'ended' => 'zakończona', 28 'soon' => 'wkrótce się zakończy', 29 ], 30 ], 31];