the browser-facing portion of osu!
at master 253 lines 11 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 'all_read' => 'Totes les notificacions llegides!', 8 'delete' => 'Eliminar :type', 9 'loading' => 'Carregant notificacions sense llegir...', 10 'mark_read' => 'Esborra :type ', 11 'none' => 'No hi ha notificacions', 12 'see_all' => 'veure totes les notificacions', 13 'see_channel' => 'vés al xat', 14 'verifying' => 'Verifica la sessió per a veure les notificacions', 15 16 'action_type' => [ 17 '_' => 'totes', 18 'beatmapset' => 'beatmaps', 19 'build' => 'versions', 20 'channel' => 'xat', 21 'forum_topic' => 'fòrum', 22 'news_post' => 'novetats', 23 'user' => 'perfil', 24 ], 25 26 'filters' => [ 27 '_' => 'totes', 28 'user' => 'perfil', 29 'beatmapset' => 'beatmaps', 30 'forum_topic' => 'fòrum', 31 'news_post' => 'novetats', 32 'build' => 'versions', 33 'channel' => 'xat', 34 ], 35 36 'item' => [ 37 'beatmapset' => [ 38 '_' => 'Beatmap', 39 40 'beatmap_owner_change' => [ 41 '_' => 'Dificultat de convidat', 42 'beatmap_owner_change' => 'Ara ets propietari de la dificultat ":beatmap" per al beatmap ":title"', 43 'beatmap_owner_change_compact' => 'Ara ets el propietari de la dificultat ":beatmap"', 44 ], 45 46 'beatmapset_discussion' => [ 47 '_' => 'Discussió de beatmaps', 48 'beatmapset_discussion_lock' => 'La discussió a ":title" s\'ha tancat', 49 'beatmapset_discussion_lock_compact' => 'La discussió s\'ha tancat', 50 'beatmapset_discussion_post_new' => 'Nova publicació a ":title" per :username: ":content"', 51 'beatmapset_discussion_post_new_empty' => 'Nova publicació a ":title" per :username', 52 'beatmapset_discussion_post_new_compact' => 'Nova publicació de :username: ":content"', 53 'beatmapset_discussion_post_new_compact_empty' => 'Nova publicació per :username', 54 'beatmapset_discussion_review_new' => 'Nova revisió de ":title" per :username que conté problemes: :problems, suggeriments :suggestions, elogis: :praises', 55 'beatmapset_discussion_review_new_compact' => 'Nova revisió per :username que conté problemes: :problems, suggeriments :suggestions, elogis: :praises', 56 'beatmapset_discussion_unlock' => 'La discussió de ":title" s\'ha obert', 57 'beatmapset_discussion_unlock_compact' => 'La discussió s\'ha obert', 58 59 'review_count' => [ 60 'praises' => ':count_delimited elogi|:count_delimited elogis', 61 'problems' => ':count_delimited problema|:count_delimited problemes', 62 'suggestions' => ':count_delimited suggeriment|:count_delimited suggeriments', 63 ], 64 ], 65 66 'beatmapset_problem' => [ 67 '_' => 'Problema amb un beatmap qualificat', 68 'beatmapset_discussion_qualified_problem' => 'Informe de :username sobre ":title": ":content"', 69 'beatmapset_discussion_qualified_problem_empty' => 'Informe de :username sobre ":title"', 70 'beatmapset_discussion_qualified_problem_compact' => 'Informe de :username: ":content"', 71 'beatmapset_discussion_qualified_problem_compact_empty' => 'Informe de :username', 72 ], 73 74 'beatmapset_state' => [ 75 '_' => 'L\'estat del beatmap ha canviat', 76 'beatmapset_disqualify' => '":title" ha estat desqualificat', 77 'beatmapset_disqualify_compact' => 'El beatmap ha estat desqualificat', 78 'beatmapset_love' => 's\'ha promogut ":title" a "estimats"', 79 'beatmapset_love_compact' => 'El beatmap s\'ha promocionat a "estimats"', 80 'beatmapset_nominate' => '":title" ha estat nominat', 81 'beatmapset_nominate_compact' => 'El beatmap ha estat nominat', 82 'beatmapset_qualify' => '":title" ha obtingut suficients nominacions i ha entrat a la cua per a classificatoris', 83 'beatmapset_qualify_compact' => 'El beatmap ha entrat a la cua per a classificatoris', 84 'beatmapset_rank' => '":title" s\'ha classificat', 85 'beatmapset_rank_compact' => 'El beatmap s\'ha classificat', 86 'beatmapset_remove_from_loved' => 's\'ha esborrat ":title" de "estimats"', 87 'beatmapset_remove_from_loved_compact' => 'El beatmap s\'ha esborrat de "estimats"', 88 'beatmapset_reset_nominations' => 'La nominació de ":title" s\'ha reiniciat', 89 'beatmapset_reset_nominations_compact' => 'La nominació s\'ha reiniciat', 90 ], 91 92 'comment' => [ 93 '_' => 'Nou comentari', 94 95 'comment_new' => ':username ha comentat ":content" a ":title"', 96 'comment_new_compact' => ':username ha comentat ":content"', 97 'comment_reply' => ':username ha respost ":content" a ":title"', 98 'comment_reply_compact' => ':username ha respost ":content"', 99 ], 100 ], 101 102 'channel' => [ 103 '_' => 'Xat', 104 105 'announcement' => [ 106 '_' => 'Nou anunci', 107 108 'announce' => [ 109 'channel_announcement' => ':username diu ":title"', 110 'channel_announcement_compact' => ':title', 111 'channel_announcement_group' => 'Anunci de :username', 112 ], 113 ], 114 115 'channel' => [ 116 '_' => 'Nou missatge', 117 118 'pm' => [ 119 'channel_message' => ':username diu ":title"', 120 'channel_message_compact' => ':title', 121 'channel_message_group' => 'de :username', 122 ], 123 ], 124 ], 125 126 'build' => [ 127 '_' => 'Registre de canvis', 128 129 'comment' => [ 130 '_' => 'Nou comentari', 131 132 'comment_new' => ':username ha comentat ":content" a ":title"', 133 'comment_new_compact' => ':username ha comentat ":content"', 134 'comment_reply' => ':username ha respost ":content" a ":title"', 135 'comment_reply_compact' => ':username ha respost ":content"', 136 ], 137 ], 138 139 'news_post' => [ 140 '_' => 'Notícies', 141 142 'comment' => [ 143 '_' => 'Nou comentari', 144 145 'comment_new' => ':username ha comentat ":content" a ":title"', 146 'comment_new_compact' => ':username ha comentat ":content"', 147 'comment_reply' => ':username ha respost ":content" a ":title"', 148 'comment_reply_compact' => ':username ha respost ":content"', 149 ], 150 ], 151 152 'forum_topic' => [ 153 '_' => 'Tema del fòrum', 154 155 'forum_topic_reply' => [ 156 '_' => 'Nova resposta al fòrum', 157 'forum_topic_reply' => ':username ha respost a ":title"', 158 'forum_topic_reply_compact' => ':username ha respost', 159 ], 160 ], 161 162 'user' => [ 163 'user_beatmapset_new' => [ 164 '_' => 'Nou beatmap', 165 166 'user_beatmapset_new' => 'Nou beatmap ":title" per :username', 167 'user_beatmapset_new_compact' => 'Nou beatmap ":title"', 168 'user_beatmapset_new_group' => 'Nous beatmaps de :username', 169 170 'user_beatmapset_revive' => ':username ha restaurat el beatmap ":title"', 171 'user_beatmapset_revive_compact' => 'S\'ha restaurat el beatmap ":title"', 172 ], 173 ], 174 175 'user_achievement' => [ 176 '_' => 'Medalles', 177 178 'user_achievement_unlock' => [ 179 '_' => 'Nova medalla', 180 'user_achievement_unlock' => 'S\'ha desbloquejat ":title"!', 181 'user_achievement_unlock_compact' => 'S\'ha desbloquejat ":title"!', 182 'user_achievement_unlock_group' => 'S\'han desbloquejat Medalles!', 183 ], 184 ], 185 ], 186 187 'mail' => [ 188 'beatmapset' => [ 189 'beatmap_owner_change' => [ 190 'beatmap_owner_change' => 'Ara ets un convidat del beatmap ":title"', 191 ], 192 193 'beatmapset_discussion' => [ 194 'beatmapset_discussion_lock' => 'La discussió a ":title" s\'ha tancat', 195 'beatmapset_discussion_post_new' => 'La discussió a ":title" té actualitzacions noves', 196 'beatmapset_discussion_unlock' => 'La discussió de ":title" s\'ha obert', 197 ], 198 199 'beatmapset_problem' => [ 200 'beatmapset_discussion_qualified_problem' => 'S\'ha informat d\'un nou problema a ":title"', 201 ], 202 203 'beatmapset_state' => [ 204 'beatmapset_disqualify' => '":title" ha estat desqualificat', 205 'beatmapset_love' => 's\'ha promogut ":title" a "estimats"', 206 'beatmapset_nominate' => '":title" ha estat nominat', 207 'beatmapset_qualify' => '":title" ha obtingut suficients nominacions i ha entrat a la cua per a classificatoris', 208 'beatmapset_rank' => '":title" s\'ha classificat', 209 'beatmapset_remove_from_loved' => 's\'ha esborrat ":title" de "estimats"', 210 'beatmapset_reset_nominations' => 'La nominació de ":title" s\'ha reiniciat', 211 ], 212 213 'comment' => [ 214 'comment_new' => 'El beatmap ":title" té nous comentaris', 215 ], 216 ], 217 218 'channel' => [ 219 'announcement' => [ 220 'announce' => 'Hi ha un nou anunci a ":name"', 221 ], 222 223 'channel' => [ 224 'pm' => 'Has rebut un nou missatge de :username', 225 ], 226 ], 227 228 'build' => [ 229 'comment' => [ 230 'comment_new' => 'El registre de canvis ":title" té nous comentaris', 231 ], 232 ], 233 234 'news_post' => [ 235 'comment' => [ 236 'comment_new' => 'Les novetats ":title" tenen nous comentaris', 237 ], 238 ], 239 240 'forum_topic' => [ 241 'forum_topic_reply' => [ 242 'forum_topic_reply' => 'Hi ha noves respostes a ":title"', 243 ], 244 ], 245 246 'user' => [ 247 'user_beatmapset_new' => [ 248 'user_beatmapset_new' => ':username ha creat nous beatmaps', 249 'user_beatmapset_revive' => ':username ha restaurat beatmaps', 250 ], 251 ], 252 ], 253];