the browser-facing portion of osu!
0
fork

Configure Feed

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

at master 29 lines 1.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 'index' => [ 8 'description' => 'Тут показываются карты, на обновления которых вы подписаны. Вы будете оповещены, если появятся новые посты или обновления.', 9 'title_compact' => 'подписки на карты', 10 11 'counts' => [ 12 'total' => 'Отслеживаемые карты', 13 'unread' => 'Карты с обновлениями', 14 ], 15 16 'table' => [ 17 'empty' => 'У вас нет отслеживаемых карт.', 18 'last_update' => 'Последнее обновление', 19 'open_issues' => 'Открытых проблем', 20 'state' => 'Состояние', 21 'title' => 'Название', 22 ], 23 ], 24 25 'status' => [ 26 'read' => 'Прочитано', 27 'unread' => 'Не прочитано', 28 ], 29];