the browser-facing portion of osu!
at master 59 lines 1.6 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' => '已删除', 8 'deleted_by' => ':user 在 :timeago 删除', 9 'deleted_by_system' => '系统', 10 'deleted_count' => ':count_delimited 条已删除评论', 11 'edited' => ':user 在 :timeago 编辑', 12 'pinned' => '已置顶', 13 'empty' => '暂无评论。', 14 'empty_other' => '暂无其他评论。', 15 'load_replies' => '加载回复', 16 'replies_count' => ':count_delimited 条回复', 17 'title' => '评论', 18 19 'commentable_name' => [ 20 'beatmapset' => '谱面', 21 'build' => '更新日志', 22 'news_post' => '新闻', 23 '_deleted' => '被删除的项目', 24 ], 25 26 'editor' => [ 27 'textarea_hint' => [ 28 '_' => '按回车:action。使用 Shift+Enter 换行。', 29 'edit' => '保存', 30 'new' => '发送', 31 'reply' => '回复', 32 ], 33 ], 34 35 'guest_button' => [ 36 'new' => '登录以评论', 37 'reply' => '登录以回复', 38 ], 39 40 'index' => [ 41 'nav_comments' => '评论', 42 'nav_title' => '列表', 43 'no_comments' => '未找到评论……', 44 ], 45 46 'ogp' => [ 47 'title' => ':user 的评论', 48 ], 49 50 'placeholder' => [ 51 'edit' => '在此编辑评论', 52 'new' => '在此输入新评论', 53 'reply' => '在此输入你的回复', 54 ], 55 56 'show' => [ 57 'nav_title' => '评论', 58 ], 59];