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' => 'Compete in more ways than just clicking circles.',
9 'large' => 'Community Contests',
10 ],
11
12 'index' => [
13 'nav_title' => 'listing',
14 ],
15
16 'judge' => [
17 'comments' => 'comments',
18 'hide_judged' => 'hide judged entries',
19 'nav_title' => 'judge',
20 'no_current_vote' => 'you didn\'t vote yet.',
21 'update' => 'update',
22 'validation' => [
23 'missing_score' => 'missing score',
24 'contest_vote_judged' => 'can\'t vote in judged contests',
25 ],
26 'voted' => 'You already submitted a vote on this entry.',
27 ],
28
29 'judge_results' => [
30 '_' => 'Judging results',
31 'creator' => 'creator',
32 'score' => 'Score',
33 'total_score' => 'total score',
34 ],
35
36 'voting' => [
37 'judge_link' => 'You are a judge of this contest. Judge the entries here!',
38 'judged_notice' => 'This contest is using the judging system, the judges are currently processing the entries.',
39 'login_required' => 'Please sign in to vote.',
40 'over' => 'Voting for this contest has ended',
41 'show_voted_only' => 'Show voted',
42
43 'best_of' => [
44 'none_played' => "It doesn't look like you played any beatmaps that qualify for this contest!",
45 ],
46
47 'button' => [
48 'add' => 'Vote',
49 'remove' => 'Remove vote',
50 'used_up' => 'You have used up all your votes',
51 ],
52
53 'progress' => [
54 '_' => ':used / :max votes used',
55 ],
56
57 'requirement' => [
58 'playlist_beatmapsets' => [
59 'incomplete_play' => 'Must play all beatmaps in the specified playlists before voting',
60 ],
61 ],
62 ],
63
64 'entry' => [
65 '_' => 'entry',
66 'login_required' => 'Please sign in to enter the contest.',
67 'silenced_or_restricted' => 'You cannot enter contests while restricted or silenced.',
68 'preparation' => 'We are currently preparing this contest. Please wait patiently!',
69 'drop_here' => 'Drop your entry here',
70 'download' => 'Download .osz',
71
72 'wrong_type' => [
73 'art' => 'Only .jpg and .png files are accepted for this contest.',
74 'beatmap' => 'Only .osu files are accepted for this contest.',
75 'music' => 'Only .mp3 files are accepted for this contest.',
76 ],
77
78 'wrong_dimensions' => 'Entries for this contest must be :widthx:height',
79 'too_big' => 'Entries for this contest can only be up to :limit.',
80 ],
81
82 'beatmaps' => [
83 'download' => 'Download Entry',
84 ],
85
86 'vote' => [
87 'list' => 'votes',
88 'count' => ':count_delimited vote|:count_delimited votes',
89 'points' => ':count_delimited point|:count_delimited points',
90 ],
91
92 'dates' => [
93 'ended' => 'Ended :date',
94 'ended_no_date' => 'Ended',
95
96 'starts' => [
97 '_' => 'Starts :date',
98 'soon' => 'soon™',
99 ],
100 ],
101
102 'states' => [
103 'entry' => 'Entry Open',
104 'voting' => 'Voting Started',
105 'results' => 'Results Out',
106 ],
107];