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 'all_read' => 'All notifications read!',
8 'delete' => 'Delete :type',
9 'loading' => 'Loading unread notifications...',
10 'mark_read' => 'Clear :type',
11 'none' => 'No notifications',
12 'see_all' => 'see all notifications',
13 'see_channel' => 'go to chat',
14 'verifying' => 'Please verify session to view notifications',
15
16 'action_type' => [
17 '_' => 'all',
18 'beatmapset' => 'beatmaps',
19 'build' => 'builds',
20 'channel' => 'chat',
21 'forum_topic' => 'forum',
22 'news_post' => 'news',
23 'user' => 'profile',
24 ],
25
26 'filters' => [
27 '_' => 'all',
28 'user' => 'profile',
29 'beatmapset' => 'beatmaps',
30 'forum_topic' => 'forum',
31 'news_post' => 'news',
32 'build' => 'builds',
33 'channel' => 'chat',
34 ],
35
36 'item' => [
37 'beatmapset' => [
38 '_' => 'Beatmap',
39
40 'beatmap_owner_change' => [
41 '_' => 'Guest difficulty',
42 'beatmap_owner_change' => 'You\'re now owner of difficulty ":beatmap" for beatmap ":title"',
43 'beatmap_owner_change_compact' => 'You\'re now owner of difficulty ":beatmap"',
44 ],
45
46 'beatmapset_discussion' => [
47 '_' => 'Beatmap discussion',
48 'beatmapset_discussion_lock' => 'Discussion on ":title" has been locked',
49 'beatmapset_discussion_lock_compact' => 'Discussion was locked',
50 'beatmapset_discussion_post_new' => 'New post on ":title" by :username: ":content"',
51 'beatmapset_discussion_post_new_empty' => 'New post on ":title" by :username',
52 'beatmapset_discussion_post_new_compact' => 'New post by :username: ":content"',
53 'beatmapset_discussion_post_new_compact_empty' => 'New post by :username',
54 'beatmapset_discussion_review_new' => 'New review on ":title" by :username containing :review_counts',
55 'beatmapset_discussion_review_new_compact' => 'New review by :username containing :review_counts',
56 'beatmapset_discussion_unlock' => 'Discussion on ":title" has been unlocked',
57 'beatmapset_discussion_unlock_compact' => 'Discussion was unlocked',
58
59 'review_count' => [
60 'praises' => ':count_delimited praise|:count_delimited praises',
61 'problems' => ':count_delimited problem|:count_delimited problems',
62 'suggestions' => ':count_delimited suggestion|:count_delimited suggestions',
63 ],
64 ],
65
66 'beatmapset_problem' => [
67 '_' => 'Qualified Beatmap problem',
68 'beatmapset_discussion_qualified_problem' => 'Reported by :username on ":title": ":content"',
69 'beatmapset_discussion_qualified_problem_empty' => 'Reported by :username on ":title"',
70 'beatmapset_discussion_qualified_problem_compact' => 'Reported by :username: ":content"',
71 'beatmapset_discussion_qualified_problem_compact_empty' => 'Reported by :username',
72 ],
73
74 'beatmapset_state' => [
75 '_' => 'Beatmap status changed',
76 'beatmapset_disqualify' => '":title" has been disqualified',
77 'beatmapset_disqualify_compact' => 'Beatmap was disqualified',
78 'beatmapset_love' => '":title" was promoted to loved',
79 'beatmapset_love_compact' => 'Beatmap was promoted to loved',
80 'beatmapset_nominate' => '":title" has been nominated',
81 'beatmapset_nominate_compact' => 'Beatmap was nominated',
82 'beatmapset_qualify' => '":title" has gained enough nominations and entered the ranking queue',
83 'beatmapset_qualify_compact' => 'Beatmap entered ranking queue',
84 'beatmapset_rank' => '":title" has been ranked',
85 'beatmapset_rank_compact' => 'Beatmap was ranked',
86 'beatmapset_remove_from_loved' => '":title" was removed from Loved',
87 'beatmapset_remove_from_loved_compact' => 'Beatmap was removed from Loved',
88 'beatmapset_reset_nominations' => 'Nomination of ":title" has been reset',
89 'beatmapset_reset_nominations_compact' => 'Nomination was reset',
90 ],
91
92 'comment' => [
93 '_' => 'New comment',
94
95 'comment_new' => ':username commented ":content" on ":title"',
96 'comment_new_compact' => ':username commented ":content"',
97 'comment_reply' => ':username replied ":content" on ":title"',
98 'comment_reply_compact' => ':username replied ":content"',
99 ],
100 ],
101
102 'channel' => [
103 '_' => 'Chat',
104
105 'announcement' => [
106 '_' => 'New announcement',
107
108 'announce' => [
109 'channel_announcement' => ':username says ":title"',
110 'channel_announcement_compact' => ':title',
111 'channel_announcement_group' => 'Announcement from :username',
112 ],
113 ],
114
115 'channel' => [
116 '_' => 'New message',
117
118 'pm' => [
119 'channel_message' => ':username says ":title"',
120 'channel_message_compact' => ':title',
121 'channel_message_group' => 'from :username',
122 ],
123 ],
124 ],
125
126 'build' => [
127 '_' => 'Changelog',
128
129 'comment' => [
130 '_' => 'New comment',
131
132 'comment_new' => ':username commented ":content" on ":title"',
133 'comment_new_compact' => ':username commented ":content"',
134 'comment_reply' => ':username replied ":content" on ":title"',
135 'comment_reply_compact' => ':username replied ":content"',
136 ],
137 ],
138
139 'news_post' => [
140 '_' => 'News',
141
142 'comment' => [
143 '_' => 'New comment',
144
145 'comment_new' => ':username commented ":content" on ":title"',
146 'comment_new_compact' => ':username commented ":content"',
147 'comment_reply' => ':username replied ":content" on ":title"',
148 'comment_reply_compact' => ':username replied ":content"',
149 ],
150 ],
151
152 'forum_topic' => [
153 '_' => 'Forum topic',
154
155 'forum_topic_reply' => [
156 '_' => 'New forum reply',
157 'forum_topic_reply' => ':username replied to ":title"',
158 'forum_topic_reply_compact' => ':username replied',
159 ],
160 ],
161
162 'user' => [
163 'user_beatmapset_new' => [
164 '_' => 'New beatmap',
165
166 'user_beatmapset_new' => 'New beatmap ":title" by :username',
167 'user_beatmapset_new_compact' => 'New beatmap ":title"',
168 'user_beatmapset_new_group' => 'New beatmaps by :username',
169
170 'user_beatmapset_revive' => 'Beatmap ":title" revived by :username',
171 'user_beatmapset_revive_compact' => 'Beatmap ":title" revived',
172 ],
173 ],
174
175 'user_achievement' => [
176 '_' => 'Medals',
177
178 'user_achievement_unlock' => [
179 '_' => 'New medal',
180 'user_achievement_unlock' => 'Unlocked ":title"!',
181 'user_achievement_unlock_compact' => 'Unlocked ":title"!',
182 'user_achievement_unlock_group' => 'Medals unlocked!',
183 ],
184 ],
185 ],
186
187 'mail' => [
188 'beatmapset' => [
189 'beatmap_owner_change' => [
190 'beatmap_owner_change' => 'You\'re now guest of beatmap ":title"',
191 ],
192
193 'beatmapset_discussion' => [
194 'beatmapset_discussion_lock' => 'The discussion on ":title" has been locked',
195 'beatmapset_discussion_post_new' => 'The discussion on ":title" has new updates',
196 'beatmapset_discussion_unlock' => 'The discussion on ":title" has been unlocked',
197 ],
198
199 'beatmapset_problem' => [
200 'beatmapset_discussion_qualified_problem' => 'A new problem was reported on ":title"',
201 ],
202
203 'beatmapset_state' => [
204 'beatmapset_disqualify' => '":title" has been disqualified',
205 'beatmapset_love' => '":title" was promoted to loved',
206 'beatmapset_nominate' => '":title" has been nominated',
207 'beatmapset_qualify' => '":title" has gained enough nominations and entered the ranking queue',
208 'beatmapset_rank' => '":title" has been ranked',
209 'beatmapset_remove_from_loved' => '":title" was removed from Loved',
210 'beatmapset_reset_nominations' => 'Nomination of ":title" has been reset',
211 ],
212
213 'comment' => [
214 'comment_new' => 'Beatmap ":title" has new comments',
215 ],
216 ],
217
218 'channel' => [
219 'announcement' => [
220 'announce' => 'There is a new announcement in ":name"',
221 ],
222
223 'channel' => [
224 'pm' => 'You\'ve received a new message from :username',
225 ],
226 ],
227
228 'build' => [
229 'comment' => [
230 'comment_new' => 'Changelog ":title" has new comments',
231 ],
232 ],
233
234 'news_post' => [
235 'comment' => [
236 'comment_new' => 'News ":title" has new comments',
237 ],
238 ],
239
240 'forum_topic' => [
241 'forum_topic_reply' => [
242 'forum_topic_reply' => 'There are new replies in ":title"',
243 ],
244 ],
245
246 'user' => [
247 'user_beatmapset_new' => [
248 'user_beatmapset_new' => ':username has created new beatmaps',
249 'user_beatmapset_revive' => ':username has revived beatmaps',
250 ],
251 ],
252 ],
253];