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' => 'Cannot send blank message.', 10 'limit_exceeded' => 'You are sending messages too quickly, please wait a bit before trying again.', 11 'too_long' => 'The message you are trying to send is too long.', 12 ], 13 ], 14 15 'scopes' => [ 16 'bot' => 'Act as a chat bot.', 17 'identify' => 'Identify you and read your public profile.', 18 19 'chat' => [ 20 'read' => 'Read messages on your behalf.', 21 'write' => 'Send messages on your behalf.', 22 'write_manage' => 'Join and leave channels on your behalf.', 23 ], 24 25 'forum' => [ 26 'write' => 'Create and edit forum topics and posts on your behalf.', 27 ], 28 29 'friends' => [ 30 'read' => 'See who you are following.', 31 ], 32 33 'public' => 'Read public data on your behalf.', 34 ], 35];