the browser-facing portion of osu!
0
fork

Configure Feed

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

at master 37 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 'index' => [ 8 'batch_disable' => 'Disabilita selezionati', 9 'batch_enable' => 'Abilita selezionati', 10 11 'batch_confirm' => [ 12 '_' => ':action :items?', 13 'disable' => 'Disabilitare', 14 'enable' => 'Abilitare', 15 'items' => ':count_delimited cover', 16 ], 17 18 'create_form' => [ 19 'files' => 'File', 20 'submit' => 'Salva', 21 'title' => 'Aggiungi Nuova', 22 ], 23 24 'item' => [ 25 'click_to_disable' => 'Clicca per disabilitare', 26 'click_to_enable' => 'Clicca per abilitare', 27 'enabled' => 'Abilitato', 28 'disabled' => 'Disabilitato', 29 'image_store' => 'Imposta Immagine', 30 'image_update' => 'Sostituisci Immagine', 31 ], 32 ], 33 'store' => [ 34 'failed' => 'Errore nella creazione della copertina: :error', 35 'ok' => 'Copertine create', 36 ], 37];