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 '_' => '排序方式', 8 9 'all' => '全部', 10 'friends' => '好友', 11 'last_visit' => '最近活跃', 12 'new' => '最新', 13 'old' => '最旧', 14 'rank' => '排名', 15 'top' => '热门', 16 'username' => '用户名', 17 18 'artist_tracks' => [ 19 'album' => '专辑', 20 'artist' => '艺术家', 21 'bpm' => 'BPM', 22 'genre' => '风格', 23 'length' => '时长', 24 'relevance' => '相关度', 25 'title' => '标题', 26 'update' => '更新', 27 ], 28 29 'forum_posts' => [ 30 'created' => '发表时间', 31 'relevance' => '相关性', 32 ], 33 34 'forum_topics' => [ 35 'created' => '已创建', 36 'feature_votes' => '星级优先级', 37 'new' => '最后回复', 38 ], 39 40 'users' => [ 41 'relevance' => '相关性', 42 'username' => '名称', 43 ], 44];