the browser-facing portion of osu!
at master 72 lines 1.8 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 'beatmapsets' => [ 8 'covers' => [ 9 'regenerate' => 'Regenerate', 10 'regenerating' => 'Regenerating...', 11 'remove' => 'Remove', 12 'removing' => 'Removing...', 13 'title' => 'Beatmap covers', 14 ], 15 'show' => [ 16 'covers' => 'Manage Beatmap Covers', 17 ], 18 ], 19 20 'forum' => [ 21 'forum-covers' => [ 22 'index' => [ 23 'delete' => 'Delete', 24 25 'forum-name' => 'Forum #:id: :name', 26 27 'no-cover' => 'No cover set', 28 29 'submit' => [ 30 'save' => 'Save', 31 'update' => 'Update', 32 ], 33 34 'title' => 'Forum Covers List', 35 36 'type-title' => [ 37 'default-topic' => 'Default Topic Cover', 38 'main' => 'Forum Cover', 39 ], 40 ], 41 ], 42 ], 43 44 'logs' => [ 45 'index' => [ 46 'title' => 'Log Viewer', 47 ], 48 ], 49 50 'pages' => [ 51 'root' => [ 52 'sections' => [ 53 'beatmapsets' => 'Beatmaps', 54 'forum' => 'Forum', 55 'general' => 'General', 56 57 'users' => [ 58 'header' => 'User', 59 'cover_presets' => 'Profile Cover Presets', 60 ], 61 ], 62 ], 63 ], 64 65 'users' => [ 66 'restricted_banner' => [ 67 'title' => 'This user is currently restricted.', 68 'message' => '(only admins can see this)', 69 ], 70 ], 71 72];