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' => '无法发送空消息。', 10 'limit_exceeded' => '您发送消息的频率太快了,坐下来泡杯茶休息会儿吧。', 11 'too_long' => '你要发送的消息太长。', 12 ], 13 ], 14 15 'scopes' => [ 16 'bot' => '作为聊天机器人。', 17 'identify' => '鉴别你的身份并读取你的公开个人资料。', 18 19 'chat' => [ 20 'read' => '以你的名义阅读消息。', 21 'write' => '以你的名义发送消息。', 22 'write_manage' => '以你的名义加入、离开频道。', 23 ], 24 25 'forum' => [ 26 'write' => '以你的名义创建和编辑论坛的主题与帖子。', 27 ], 28 29 'friends' => [ 30 'read' => '看看你关注了谁。', 31 ], 32 33 'public' => '以你的身份读取公开数据。', 34 ], 35];