the browser-facing portion of osu!
at master 212 lines 4.5 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 'audio' => [ 8 'autoplay' => '', 9 ], 10 11 'defaults' => [ 12 'page_description' => '', 13 ], 14 15 'header' => [ 16 'admin' => [ 17 'beatmapset' => '', 18 'beatmapset_covers' => '', 19 'contest' => '', 20 'contests' => '', 21 'root' => '', 22 ], 23 24 'artists' => [ 25 'index' => '', 26 ], 27 28 'beatmapsets' => [ 29 'show' => '', 30 'discussions' => '', 31 ], 32 33 'changelog' => [ 34 'index' => '', 35 ], 36 37 'help' => [ 38 'index' => '', 39 'sitemap' => '', 40 ], 41 42 'store' => [ 43 'cart' => '', 44 'orders' => '', 45 'products' => '', 46 ], 47 48 'tournaments' => [ 49 'index' => '', 50 ], 51 52 'users' => [ 53 'modding' => '', 54 'playlists' => '', 55 'realtime' => '', 56 'show' => '', 57 ], 58 ], 59 60 'gallery' => [ 61 'close' => '', 62 'fullscreen' => '', 63 'zoom' => '', 64 'previous' => '', 65 'next' => '', 66 ], 67 68 'menu' => [ 69 'beatmaps' => [ 70 '_' => '', 71 ], 72 'community' => [ 73 '_' => '', 74 'dev' => '', 75 ], 76 'help' => [ 77 '_' => '', 78 'getAbuse' => '', 79 'getFaq' => '', 80 'getRules' => '', 81 'getSupport' => '', 82 ], 83 'home' => [ 84 '_' => '', 85 'team' => '', 86 ], 87 'rankings' => [ 88 '_' => '', 89 ], 90 'store' => [ 91 '_' => '', 92 ], 93 ], 94 95 'footer' => [ 96 'general' => [ 97 '_' => '', 98 'home' => '', 99 'changelog-index' => '', 100 'beatmaps' => '', 101 'download' => '', 102 ], 103 'help' => [ 104 '_' => '', 105 'faq' => '', 106 'forum' => '', 107 'livestreams' => '', 108 'report' => '', 109 'wiki' => '', 110 ], 111 'legal' => [ 112 '_' => '', 113 'copyright' => '', 114 'jp_sctl' => '', 115 'privacy' => '', 116 'server_status' => '', 117 'source_code' => '', 118 'terms' => '', 119 ], 120 ], 121 122 'errors' => [ 123 '400' => [ 124 'error' => '', 125 'description' => '', 126 ], 127 '404' => [ 128 'error' => '', 129 'description' => "", 130 ], 131 '403' => [ 132 'error' => "", 133 'description' => '', 134 ], 135 '401' => [ 136 'error' => "", 137 'description' => '', 138 ], 139 '405' => [ 140 'error' => '', 141 'description' => "", 142 ], 143 '422' => [ 144 'error' => '', 145 'description' => '', 146 ], 147 '429' => [ 148 'error' => '', 149 'description' => '', 150 ], 151 '500' => [ 152 'error' => '', 153 'description' => "", 154 ], 155 'fatal' => [ 156 'error' => '', 157 'description' => "", 158 ], 159 '503' => [ 160 'error' => '', 161 'description' => "", 162 'link' => [ 163 'text' => '', 164 'href' => '', 165 ], 166 ], 167 // used by sentry if it returns an error 168 'reference' => "", 169 ], 170 171 'popup_login' => [ 172 'button' => '', 173 174 'login' => [ 175 'forgot' => "", 176 'password' => '', 177 'title' => '', 178 'username' => '', 179 180 'error' => [ 181 'email' => "", 182 'password' => '', 183 ], 184 ], 185 186 'register' => [ 187 'download' => '', 188 'info' => '', 189 'title' => "", 190 ], 191 ], 192 193 'popup_user' => [ 194 'links' => [ 195 'account-edit' => '', 196 'follows' => '', 197 'friends' => '', 198 'legacy_score_only_toggle' => '', 199 'legacy_score_only_toggle_tooltip' => '', 200 'logout' => '', 201 'profile' => '', 202 'scoring_mode_toggle' => '', 203 'scoring_mode_toggle_tooltip' => '', 204 'team' => '', 205 ], 206 ], 207 208 'popup_search' => [ 209 'initial' => '', 210 'retry' => '', 211 ], 212];