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' => 'beatmap cancellata',
9 'failed' => 'FALLITO',
10 'header' => 'Partite Multigiocatore',
11 'in-progress' => '(partita in corso)',
12 'in_progress_spinner_label' => 'partita in corso',
13 'loading-events' => 'Caricamento eventi...',
14 'winner' => ':team vince',
15 'winner_by' => ':winner di :difference',
16
17 'events' => [
18 'player-left' => ':user ha lasciato la partita',
19 'player-joined' => ':user si è unito alla partita',
20 'player-kicked' => ':user è stato cacciato dalla partita',
21 'match-created' => ':user ha creato la partita',
22 'match-disbanded' => 'la partita è stata terminata',
23 'host-changed' => ':user è diventato l\'host',
24
25 'player-left-no-user' => 'un giocatore ha lasciato la partita',
26 'player-joined-no-user' => 'un giocatore si è unito alla partita',
27 'player-kicked-no-user' => 'un giocatore è stato cacciato dalla partita',
28 'match-created-no-user' => 'la partita è stata creata',
29 'match-disbanded-no-user' => 'la partita è stata terminata',
30 'host-changed-no-user' => 'l\'host è cambiato',
31 ],
32
33 'score' => [
34 'stats' => [
35 'accuracy' => 'Precisione',
36 'combo' => 'Combo',
37 'score' => 'Punteggio',
38 ],
39 ],
40
41 'team-types' => [
42 'head-to-head' => 'Testa a Testa',
43 'tag-coop' => 'Tag Co-op',
44 'team-vs' => 'A Squadre',
45 'tag-team-vs' => 'Tag a Squadre',
46 ],
47
48 'teams' => [
49 'blue' => 'Team Blu',
50 'red' => 'Team Rosso',
51 ],
52 ],
53 'game' => [
54 'scoring-type' => [
55 'score' => 'Punteggio più alto',
56 'accuracy' => 'Precisione più alta',
57 'combo' => 'Combo più alta',
58 'scorev2' => 'Punteggio V2',
59 ],
60 ],
61];