the browser-facing portion of osu!
at master 45 lines 1.4 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 'index' => [ 8 'description' => 'Pre-packaged collections of beatmaps based around a common theme.', 9 'empty' => 'Coming soon!', 10 'nav_title' => 'listing', 11 'title' => 'Beatmap Packs', 12 13 'blurb' => [ 14 'important' => 'READ THIS BEFORE DOWNLOADING', 15 'install_instruction' => 'Installation: Once a pack has been downloaded, extract the contents of the pack into your osu! Songs directory and osu! will do the rest.', 16 ], 17 ], 18 19 'show' => [ 20 'download' => 'Download', 21 'item' => [ 22 'cleared' => 'cleared', 23 'not_cleared' => 'not cleared', 24 ], 25 'no_diff_reduction' => [ 26 '_' => ':link may not be used to clear this pack.', 27 'link' => 'Difficulty reduction mods', 28 ], 29 ], 30 31 'mode' => [ 32 'artist' => 'Artist/Album', 33 'chart' => 'Spotlights', 34 'featured' => 'Featured Artist', 35 'loved' => 'Project Loved', 36 'standard' => 'Standard', 37 'theme' => 'Theme', 38 'tournament' => 'Tournament', 39 ], 40 41 'require_login' => [ 42 '_' => 'You need to be :link to download', 43 'link_text' => 'signed in', 44 ], 45];