the browser-facing portion of osu!
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 'match' => [
8 'beatmap-deleted' => '',
9 'failed' => '',
10 'header' => '',
11 'in-progress' => '',
12 'in_progress_spinner_label' => '',
13 'loading-events' => '',
14 'winner' => '',
15 'winner_by' => '',
16
17 'events' => [
18 'player-left' => '',
19 'player-joined' => '',
20 'player-kicked' => '',
21 'match-created' => '',
22 'match-disbanded' => '',
23 'host-changed' => '',
24
25 'player-left-no-user' => '',
26 'player-joined-no-user' => '',
27 'player-kicked-no-user' => '',
28 'match-created-no-user' => '',
29 'match-disbanded-no-user' => '',
30 'host-changed-no-user' => '',
31 ],
32
33 'score' => [
34 'stats' => [
35 'accuracy' => '',
36 'combo' => '',
37 'score' => '',
38 ],
39 ],
40
41 'team-types' => [
42 'head-to-head' => '',
43 'tag-coop' => '',
44 'team-vs' => '',
45 'tag-team-vs' => '',
46 ],
47
48 'teams' => [
49 'blue' => '',
50 'red' => '',
51 ],
52 ],
53 'game' => [
54 'scoring-type' => [
55 'score' => '',
56 'accuracy' => '',
57 'combo' => '',
58 'scorev2' => '',
59 ],
60 ],
61];