the browser-facing portion of osu!
at master 35 lines 1.1 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 'error' => [ 8 'chat' => [ 9 'empty' => 'Non puoi inviare messaggi vuoti.', 10 'limit_exceeded' => 'Stai inviando messaggi troppo velocemente, aspetta un po\' prima di riprovare.', 11 'too_long' => 'Il messaggio che vuoi inviare è troppo lungo.', 12 ], 13 ], 14 15 'scopes' => [ 16 'bot' => 'Comportarsi come bot in chat.', 17 'identify' => 'Identificarti e leggere il tuo profilo pubblico.', 18 19 'chat' => [ 20 'read' => 'Leggere messaggi a nome tuo.', 21 'write' => 'Mandare messaggi a nome tuo.', 22 'write_manage' => 'Unirsi e lasciare canali a nome tuo.', 23 ], 24 25 'forum' => [ 26 'write' => 'Creare e modificare i topic e i post del forum a nome tuo.', 27 ], 28 29 'friends' => [ 30 'read' => 'Vedere chi stai seguendo.', 31 ], 32 33 'public' => 'Leggere dati pubblici a nome tuo.', 34 ], 35];