the browser-facing portion of osu!
at master 108 lines 3.2 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 'header' => [ 8 'small' => '享受游戏以外的竞赛体验。', 9 'large' => '社区评选', 10 ], 11 12 'index' => [ 13 'nav_title' => '列表', 14 ], 15 16 'judge' => [ 17 'comments' => '评论', 18 'hide_judged' => '隐藏已打分的项目', 19 'nav_title' => '打分', 20 'no_current_vote' => '你尚未投票。', 21 'update' => '更新', 22 'validation' => [ 23 'missing_score' => '缺失分数', 24 'contest_vote_judged' => '不能在已打分的竞赛中投票。', 25 ], 26 'voted' => '你已经提交了该项目的投票。', 27 ], 28 29 'judge_results' => [ 30 '_' => '打分结果', 31 'creator' => '谱师', 32 'score' => '分数', 33 'total_score' => '总分', 34 ], 35 36 'voting' => [ 37 'judge_link' => '你是此竞赛的评委。请在这里打分!', 38 'judged_notice' => '此竞赛使用了打分系统。评委正在打分。', 39 'login_required' => '请登录后再投票.', 40 'over' => '这场评选的投票已经结束', 41 'show_voted_only' => '仅显示已投票的', 42 43 'best_of' => [ 44 'none_played' => "没有符合此次评选条件的谱面!", 45 ], 46 47 'button' => [ 48 'add' => '投票', 49 'remove' => '取消投票', 50 'used_up' => '你已经用光了投票次数', 51 ], 52 53 'progress' => [ 54 '_' => ':used / :max 票已用', 55 ], 56 57 'requirement' => [ 58 'playlist_beatmapsets' => [ 59 'incomplete_play' => '必须完成指定歌单中的所有谱面后才能投票', 60 ], 61 ], 62 ], 63 64 'entry' => [ 65 '_' => '列表', 66 'login_required' => '请登录后再参加评选。', 67 'silenced_or_restricted' => '账户受限或禁言时无法参加评选。', 68 'preparation' => '我们正在准备这场评选,请耐心等待!', 69 'drop_here' => '将您的参赛文件拖到此处', 70 'download' => '下载 .osz 文件', 71 72 'wrong_type' => [ 73 'art' => '只接受 .jpg 和 .png 格式的文件.', 74 'beatmap' => '只接受 .osu 格式的文件.', 75 'music' => '只接受 .mp3 格式的文件.', 76 ], 77 78 'wrong_dimensions' => '参与竞赛的数量必须达到 :widthx:height', 79 'too_big' => '参赛文件的大小不能超过 :limit.', 80 ], 81 82 'beatmaps' => [ 83 'download' => '下载模板', 84 ], 85 86 'vote' => [ 87 'list' => '票数', 88 'count' => ':count_delimited 票', 89 'points' => ':count_delimited 分', 90 ], 91 92 'dates' => [ 93 'ended' => ':date 结束', 94 'ended_no_date' => '已结束', 95 96 'starts' => [ 97 '_' => ':date 开始', 98 'soon' => '敬请期待™ 99', 100 ], 101 ], 102 103 'states' => [ 104 'entry' => '可参加', 105 'voting' => '投票中', 106 'results' => '已结束', 107 ], 108];