the browser-facing portion of osu!
at master 44 lines 1.0 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 '_' => 'Sort by', 8 9 'all' => 'All', 10 'friends' => 'Friends', 11 'last_visit' => 'Recently active', 12 'new' => 'Recent', 13 'old' => 'Old', 14 'rank' => 'Rank', 15 'top' => 'Top', 16 'username' => 'Username', 17 18 'artist_tracks' => [ 19 'album' => 'Album', 20 'artist' => 'Artist', 21 'bpm' => 'BPM', 22 'genre' => 'Genre', 23 'length' => 'Length', 24 'relevance' => 'Relevance', 25 'title' => 'Title', 26 'update' => 'Update', 27 ], 28 29 'forum_posts' => [ 30 'created' => 'Post time', 31 'relevance' => 'Relevance', 32 ], 33 34 'forum_topics' => [ 35 'created' => 'Created', 36 'feature_votes' => 'Star priority', 37 'new' => 'Last reply', 38 ], 39 40 'users' => [ 41 'relevance' => 'Relevance', 42 'username' => 'Name', 43 ], 44];