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' => 'Negalima išsiųsti tuščios žinutės.', 10 'limit_exceeded' => 'Jūs per greitai siunčiate žinutes, prašome palaukti prieš bandant iš naujo.', 11 'too_long' => 'Žinutė kurią jūs norite išsiųsti yra per ilga.', 12 ], 13 ], 14 15 'scopes' => [ 16 'bot' => 'Veikti kaip pokalbio botas.', 17 'identify' => 'Nustatyti jūsų tapatybę ir skaityti jūsų viešąjį profilį.', 18 19 'chat' => [ 20 'read' => '', 21 'write' => 'Siųsti žinutes jūsų vardu.', 22 'write_manage' => '', 23 ], 24 25 'forum' => [ 26 'write' => 'Kurti ir redaguoti forumo temas ir įrašus jūsų vardu.', 27 ], 28 29 'friends' => [ 30 'read' => 'Pažiūrėti ką jūs sekate.', 31 ], 32 33 'public' => 'Skaityti viešus duomenis jūsų valioje.', 34 ], 35];