the browser-facing portion of osu!
0
fork

Configure Feed

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

at master 32 lines 1.1 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 'show' => [ 8 'non_preserved' => 'このスコアは削除対象としてマークされているので、まもなく削除されます。', 9 'title' => ':title[:version]の:username', 10 11 'beatmap' => [ 12 'by' => 'by :artist', 13 ], 14 15 'player' => [ 16 'by' => 'プレイ', 17 'submitted_on' => '投稿日', 18 19 'rank' => [ 20 'country' => '国別ランキング', 21 'global' => '世界ランキング', 22 ], 23 ], 24 ], 25 26 'status' => [ 27 'non_best' => '個人のベストスコアのみppを与えます。', 28 'no_pp' => 'このスコアに対してppは授与されていません', 29 'processing' => 'このスコアはまだ計算中です。すぐに表示されます。', 30 'no_rank' => 'このスコアはUnranked、または削除対象のマップなのでランクはありません。', 31 ], 32];