the browser-facing portion of osu!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 68 lines 2.2 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 'page_description' => 'osu! 精选艺术家', 8 'title' => '精选艺术家', 9 10 'admin' => [ 11 'hidden' => '当前艺术家已被隐藏', 12 ], 13 14 'beatmaps' => [ 15 '_' => '谱面', 16 'download' => '下载谱面模板', 17 'download-na' => '谱面模板尚不可用', 18 ], 19 20 'index' => [ 21 'description' => '为了给 osu! 带来更多新的原创音乐,我们正在和一些艺术家合作。 osu! 团队选中了他们的一部分音乐,可以作为制作谱面的绝佳素材。部分艺术家还特别为 osu! 提供了高质量的独家曲目。<br><br>在此列出了预先准备好,且获得了官方授权的 .osz 文件模板,允许在 osu! 及其周边内容中使用。', 22 ], 23 24 'links' => [ 25 'beatmaps' => 'osu! 谱面', 26 'osu' => 'osu! 个人资料', 27 'site' => '官方网站', 28 ], 29 30 'songs' => [ 31 '_' => '歌曲', 32 'count' => ':count_delimited 首音乐', 33 'original' => 'osu! 原创', 34 'original_badge' => '原创', 35 ], 36 37 'tracklist' => [ 38 'title' => '标题', 39 'length' => '长度', 40 'bpm' => 'BPM', 41 'genre' => '流派', 42 ], 43 44 'tracks' => [ 45 'index' => [ 46 '_' => '曲目搜索', 47 48 'exclusive_only' => [ 49 'all' => '全部', 50 'exclusive_only' => 'osu! 原创', 51 ], 52 53 'form' => [ 54 'advanced' => '高级搜索', 55 'album' => '专辑', 56 'artist' => '艺术家', 57 'bpm_gte' => '最低 BPM', 58 'bpm_lte' => '最高 BPM', 59 'empty' => '未找到符合条件的曲目。', 60 'exclusive_only' => '类型', 61 'genre' => '流派', 62 'genre_all' => '全部', 63 'length_gte' => '时长下限', 64 'length_lte' => '时长上限', 65 ], 66 ], 67 ], 68];