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 'confirmation' => '你确定吗?',
8 'confirmation_unsaved' => '未保存的更改将丢失。您确定吗?',
9 'saved' => '已保存',
10
11 'array_and' => [
12 'words_connector' => ',',
13 'two_words_connector' => ' 和 ',
14 'last_word_connector' => ' 和 ',
15 ],
16
17 'badges' => [
18 'new' => '新',
19 ],
20
21 'buttons' => [
22 'admin' => '管理员',
23 'authorise' => '授权',
24 'authorising' => '授权中……',
25 'back' => '',
26 'back_to_previous' => '返回上一位置',
27 'back_to_top' => '回到顶部',
28 'cancel' => '取消',
29 'change' => '更改',
30 'clear' => '清空',
31 'click_to_copy' => '点击复制到剪贴板',
32 'click_to_copy_copied' => '已经复制到剪贴板!',
33 'close' => '关闭',
34 'collapse' => '折叠',
35 'delete' => '删除',
36 'edit' => '编辑',
37 'expand' => '展开',
38 'hide' => '隐藏',
39 'permalink' => '永久链接',
40 'pin' => '置顶',
41 'post' => '发表',
42 'read_more' => '阅读更多',
43 'refresh' => '刷新',
44 'reply' => '回复',
45 'reply_reopen' => '回复并要求重审',
46 'reply_resolve' => '回复并标记为已解决',
47 'reset' => '重置',
48 'restore' => '恢复',
49 'retry' => '重试',
50 'save' => '保存',
51 'saving' => '保存中……',
52 'search' => '搜索',
53 'see_more' => '查看更多',
54 'show' => '显示',
55 'show_deleted' => '显示已删除的评论',
56 'show_less' => '收起',
57 'show_more' => '展开',
58 'show_more_options' => '显示更多选项',
59 'submit' => '提交',
60 'unpin' => '取消置顶',
61 'update' => '更新',
62 'upload_image' => '上传图片',
63
64 'watch' => [
65 'to_0' => '取消关注',
66 'to_1' => '关注',
67 ],
68 ],
69
70 'count' => [
71 'badges' => ':count_delimited 枚徽章',
72 'days' => ':count_delimited 天',
73 'hour_short_unit' => '小时',
74 'hours' => ':count_delimited 小时',
75 'item' => ':count_delimited 个',
76 'minute_short_unit' => '分钟|分钟',
77 'minutes' => ':count_delimited 分钟',
78 'months' => ':count_delimited 个月',
79 'notifications' => ':count_delimited 个通知',
80 'plus_others' => '还有 :count_delimited 人!',
81 'post' => ':count_delimited 篇帖子',
82 'second_short_unit' => '秒',
83 'star_priority' => ':count_delimited 个优先星',
84 'update' => ':count_delimited 更新',
85 'view' => ':count_delimited 次浏览',
86 'years' => ':count_delimited 年',
87 ],
88
89 'countdown' => [
90 'days' => '天',
91 'hours' => '时',
92 'minutes' => '分',
93 'seconds' => '秒',
94 ],
95
96 'datetime' => [
97 'year_month' => [
98 'moment' => 'YYYY年 MMMM',
99 'php' => 'y年 MMMM',
100 ],
101 'year_month_short' => [
102 'moment' => 'YYYY年 MMM',
103 ],
104 ],
105
106 'device' => [
107 'keyboard' => '键盘',
108 'mouse' => '鼠标',
109 'tablet' => '数位板',
110 'touch' => '触摸屏',
111 ],
112
113 'dropzone' => [
114 'target' => '拖到此处上传',
115 ],
116
117 'input' => [
118 'search' => '搜索……',
119 ],
120
121 'pagination' => [
122 'previous' => '上一页',
123 'next' => '下一页',
124 ],
125
126 'score_count' => [
127 'count_100' => '100',
128 'count_300' => '300',
129 'count_50' => '50',
130 'count_geki' => '',
131 'count_katu' => '200',
132 'count_miss' => 'Miss',
133 ],
134
135 'scoreboard_time' => [
136 'd' => '%d 天前',
137 'dd' => '%d 天前',
138 'h' => '%d 小时前',
139 'hh' => '%d 小时前',
140 'm' => '刚刚',
141 'mm' => '刚刚',
142 'month' => '%d 月前',
143 'months' => '%d 月前',
144 'past' => '',
145 's' => '刚刚',
146 'y' => '%d 年前',
147 'yy' => '%d 年前',
148 ],
149
150 'time' => [
151 'days_ago' => ':count_delimited 天前',
152 'hours_ago' => ':count_delimited 小时前',
153 'now' => '刚刚',
154 'remaining' => '剩余时间',
155 ],
156
157 'title' => [
158 'notice' => '提醒',
159 ],
160
161 'wrong_user' => [
162 '_' => '你正以 :user 登录。:logout_link。',
163 'logout_link' => '点此切换用户',
164 ],
165];