the browser-facing portion of osu!
0
fork

Configure Feed

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

at master 48 lines 990 B 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 'index' => [ 8 'title_page' => 'osu!nyheter', 9 10 'nav' => [ 11 'newer' => 'Nyare inlägg', 12 'older' => 'Äldre inlägg', 13 ], 14 15 'title' => [ 16 '_' => 'nyheter', 17 'info' => 'förstasida', 18 ], 19 ], 20 21 'show' => [ 22 'by' => 'av :user', 23 24 'nav' => [ 25 'newer' => 'Nyare inlägg', 26 'older' => 'Äldre inlägg', 27 ], 28 29 'title' => [ 30 '_' => 'nyheter', 31 'info' => 'inlägg', 32 ], 33 ], 34 35 'sidebar' => [ 36 'archive' => 'Nyhetsarkiv', 37 ], 38 39 'store' => [ 40 'button' => 'Uppdatera', 41 'ok' => 'Listning uppdaterad.', 42 ], 43 44 'update' => [ 45 'button' => 'Uppdatera', 46 'ok' => 'Inlägg uppdaterat.', 47 ], 48];