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 'loading_users' => '加载用户中...',
8 'talking_in' => '在 :channel 中聊天',
9 'talking_with' => '与 :name 聊天',
10 'title_compact' => '聊天',
11 'unread_messages' => '未读消息',
12
13 'cannot_send' => [
14 'channel' => '现在你无法在此频道发送消息,这可能是由于以下原因:',
15 'user' => '现在你无法向此玩家发送消息,这可能是由于以下原因:',
16 ],
17
18 'channels' => [
19 'confirm_part' => '您想要隐藏此频道吗?您仍然会收到来自此频道的消息。',
20 'create' => '创建公告',
21 'join' => '加入频道',
22 'none' => '无频道',
23
24 'list' => [
25 'title' => [
26 'ANNOUNCE' => '通知',
27 'GROUP' => '群聊',
28 'PM' => '私聊',
29 'PUBLIC' => '频道',
30 ],
31 ],
32 ],
33
34 'form' => [
35 'title' => [
36 'announcement' => '创建新公告',
37 ],
38
39 'labels' => [
40 'description' => '介绍',
41 'message' => '消息',
42 'name' => '房间名',
43 'users' => '要添加的玩家',
44 ],
45 ],
46
47 'not_found' => [
48 'message' => '这里没有任何内容,或许你离开了频道或者它并不存在...',
49 'title' => '未找到频道',
50 ],
51
52 'input' => [
53 'create' => '创建',
54 'disabled' => '无法发送消息……',
55 'disconnected' => '连接中断',
56 'placeholder' => '输入消息……',
57 'send' => '发送',
58 ],
59
60 'no-conversations' => [
61 'howto' => "点击用户的个人资料/卡片上的信封图标以开始聊天",
62 'lazer' => '在 <a href=":link">osu!lazer</a> 中加入的频道将在这里显示。',
63 'title' => '暂无对话',
64 ],
65
66 'join_channels' => [
67 'loading' => '正在加载频道列表......',
68 ],
69];