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' => 'eliminado', 8 'deleted_by' => 'eliminado :timeago por :user', 9 'deleted_by_system' => 'sistema', 10 'deleted_count' => ':count_delimited comentario eliminado|:count_delimited comentarios eliminados', 11 'edited' => 'editado :timeago por :user', 12 'pinned' => 'anclado', 13 'empty' => 'Aún no hay comentarios.', 14 'empty_other' => 'Aún no hay otros comentarios.', 15 'load_replies' => 'cargar respuestas', 16 'replies_count' => 'una respuesta|:count_delimited respuestas', 17 'title' => 'Comentarios', 18 19 'commentable_name' => [ 20 'beatmapset' => 'Mapa', 21 'build' => 'Historial de cambios', 22 'news_post' => 'Noticias', 23 '_deleted' => 'Elemento eliminado', 24 ], 25 26 'editor' => [ 27 'textarea_hint' => [ 28 '_' => 'Presiona enter para :action. Usa mayús+enter para saltar de linea.', 29 'edit' => 'guardar', 30 'new' => 'publicar', 31 'reply' => 'responder', 32 ], 33 ], 34 35 'guest_button' => [ 36 'new' => 'Inicia sesión para comentar', 37 'reply' => 'Inicia sesión para responder', 38 ], 39 40 'index' => [ 41 'nav_comments' => 'comentarios', 42 'nav_title' => 'listado', 43 'no_comments' => 'no se encontraron comentarios...', 44 ], 45 46 'ogp' => [ 47 'title' => 'comentario por :user', 48 ], 49 50 'placeholder' => [ 51 'edit' => 'Editar el comentario aquí', 52 'new' => 'Escribe un nuevo comentario aquí', 53 'reply' => 'Escribe tu respuesta aquí', 54 ], 55 56 'show' => [ 57 'nav_title' => 'comentarios', 58 ], 59];