the browser-facing portion of osu!
0
fork

Configure Feed

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

at master 40 lines 1.3 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 'generic' => 'Correzione di bug e piccoli miglioramenti', 8 9 'build' => [ 10 'title' => 'modifiche in :version', 11 ], 12 13 'builds' => [ 14 'users_online' => ':count_delimited utente online|:count_delimited utenti online', 15 ], 16 17 'entry' => [ 18 'by' => 'da :user', 19 ], 20 21 'index' => [ 22 'page_title' => [ 23 '_' => 'note di rilascio', 24 '_from' => 'modifiche dal :from', 25 '_from_to' => 'modifiche da :from a :to', 26 '_stream' => 'modifiche in :stream', 27 '_stream_from' => 'modiche in :stream dal :from', 28 '_stream_from_to' => 'modifiche in :stream da :from a :to', 29 '_stream_to' => 'modifiche in :stream fino a :to', 30 '_to' => 'modifiche fino a :to', 31 ], 32 ], 33 34 'support' => [ 35 'heading' => 'Ti piace questo aggiornamento?', 36 'text_1' => 'Sostieni gli sviluppi futuri di osu! e :link oggi stesso!', 37 'text_1_link' => 'diventa un osu!supporter', 38 'text_2' => 'Non solo aiuterai a velocizzare lo sviluppo, ma riceverai anche funzionalità e personalizzazioni extra!', 39 ], 40];