the browser-facing portion of osu!
at master 59 lines 1.8 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 'deleted' => 'apagado', 8 'deleted_by' => 'apagado há :timeago por :user', 9 'deleted_by_system' => 'sistema', 10 'deleted_count' => ':count_delimited eliminou o comentário|:count_delimited eliminou os comentários', 11 'edited' => 'editado há :timeago por :user', 12 'pinned' => 'afixado', 13 'empty' => 'Ainda sem comentários.', 14 'empty_other' => 'Ainda não existem comentários.', 15 'load_replies' => 'carregar respostas', 16 'replies_count' => ':count_delimited resposta|:count_delimited respostas', 17 'title' => 'Comentários', 18 19 'commentable_name' => [ 20 'beatmapset' => 'Beatmap', 21 'build' => 'Registo de alterações', 22 'news_post' => 'Notícias', 23 '_deleted' => 'Item eliminado', 24 ], 25 26 'editor' => [ 27 'textarea_hint' => [ 28 '_' => 'Prime enter para :action. Usa shift+enter para inserir uma nova linha.', 29 'edit' => 'guardar', 30 'new' => 'publicar', 31 'reply' => 'responder', 32 ], 33 ], 34 35 'guest_button' => [ 36 'new' => 'Inicia sessão para comentar', 37 'reply' => 'Inicia sessão para responder', 38 ], 39 40 'index' => [ 41 'nav_comments' => 'comentários', 42 'nav_title' => 'listagem', 43 'no_comments' => 'sem comentários', 44 ], 45 46 'ogp' => [ 47 'title' => 'comentário de :user', 48 ], 49 50 'placeholder' => [ 51 'edit' => 'Edita o comentário aqui', 52 'new' => 'Escreve o novo comentário aqui', 53 'reply' => 'Escreve a tua resposta aqui', 54 ], 55 56 'show' => [ 57 'nav_title' => 'comentários', 58 ], 59];