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 'authorizations' => [
8 'update' => [
9 'null_user' => '编辑前请先登录。',
10 'system_generated' => '无法编辑系统回复。',
11 'wrong_user' => '只有作者可以编辑。',
12 ],
13 ],
14
15 'events' => [
16 'empty' => '目前还没有什么事件……呢。',
17 ],
18
19 'index' => [
20 'deleted_beatmap' => '已删除',
21 'none_found' => '找不到符合条件的讨论内容',
22 'title' => '谱面讨论',
23
24 'form' => [
25 '_' => '搜索',
26 'deleted' => '包含已经删除的讨论',
27 'mode' => '谱面模式',
28 'only_unresolved' => '只显示未解决的讨论',
29 'show_review_embeds' => '显示审阅贴子',
30 'types' => '评论类型',
31 'username' => '用户名',
32
33 'beatmapset_status' => [
34 '_' => '谱面状态',
35 'all' => '所有',
36 'disqualified' => '下架 (DQ)',
37 'never_qualified' => '从未过审 (Qualified)',
38 'qualified' => '过审 (Qualified)',
39 'ranked' => '上架 (Ranked)',
40 ],
41
42 'user' => [
43 'label' => '用户',
44 'overview' => '活动总览',
45 ],
46 ],
47 ],
48
49 'item' => [
50 'created_at' => '发帖时间',
51 'deleted_at' => '删帖时间',
52 'message_type' => '类型',
53 'permalink' => '永久链接',
54 ],
55
56 'nearby_posts' => [
57 'confirm' => '在这个时间点上没有相关的讨论记录。',
58 'notice' => '发表讨论前,请检查 :timestamp 附近 (:existing_timestamps) 已存在的讨论记录。',
59 'unsaved' => '此审阅中有 :count',
60 ],
61
62 'owner_editor' => [
63 'button' => '难度作者',
64 'reset_confirm' => '重置此难度的作者?',
65 'user' => '作者',
66 'version' => '难度',
67 ],
68
69 'refresh' => [
70 'checking' => '正在检查更新......',
71 'has_updates' => '讨论有更新,点击刷新。',
72 'no_updates' => '没有更新。',
73 'updating' => '更新中...',
74 ],
75
76 'reply' => [
77 'open' => [
78 'guest' => '登录以回复',
79 'user' => '回复',
80 ],
81 ],
82
83 'review' => [
84 'block_count' => ':used / :max 块已使用',
85 'go_to_parent' => '查看审阅帖',
86 'go_to_child' => '查看讨论',
87 'validation' => [
88 'block_too_large' => '每块只能包含最多 :limit 个字符',
89 'external_references' => '审阅包含不属于此审阅问题的引用',
90 'invalid_block_type' => '板块类型无效',
91 'invalid_document' => '审阅无效',
92 'invalid_discussion_type' => '讨论类型无效',
93 'minimum_issues' => '审阅时必须指出最少 :count 个问题',
94 'missing_text' => '该版块缺少文本',
95 'too_many_blocks' => '审阅只能包含 :count 个段落或问题',
96 ],
97 ],
98
99 'system' => [
100 'resolved' => [
101 'true' => ':user 标记为已解决',
102 'false' => ':user 要求重审',
103 ],
104 ],
105
106 'timestamp_display' => [
107 'general' => '常规',
108 'general_all' => '常规(所有难度)',
109 ],
110
111 'user_filter' => [
112 'everyone' => '所有人',
113 'label' => '按用户筛选',
114 ],
115];