the browser-facing portion of osu!
at master 35 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 'error' => [ 8 'chat' => [ 9 'empty' => 'Praznega sporočila ni možno poslati.', 10 'limit_exceeded' => 'Sporočila pošiljate prehitro. Prosimo, malo počakajte, preden zopet poskusite.', 11 'too_long' => 'Sporočilo je predolgo.', 12 ], 13 ], 14 15 'scopes' => [ 16 'bot' => 'Delovanje kot klepetalni robot.', 17 'identify' => 'Identifikacija in branje tvojega javnega profila.', 18 19 'chat' => [ 20 'read' => '', 21 'write' => 'Pošlji sporočila v tvojem imenu.', 22 'write_manage' => '', 23 ], 24 25 'forum' => [ 26 'write' => 'Ustvari in uredi teme in objave na forumu v tvojem imenu.', 27 ], 28 29 'friends' => [ 30 'read' => 'Prikaži komu slediš.', 31 ], 32 33 'public' => 'Branje javnih podatkov v tvojem imenu.', 34 ], 35];