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 'confirmation' => 'Are you sure?',
8 'confirmation_unsaved' => 'Unsaved changes will be lost. Are you sure?',
9 'saved' => 'Saved',
10
11 'array_and' => [
12 'words_connector' => ', ',
13 'two_words_connector' => ' and ',
14 'last_word_connector' => ', and ',
15 ],
16
17 'badges' => [
18 'new' => 'NEW',
19 ],
20
21 'buttons' => [
22 'admin' => 'Admin',
23 'authorise' => 'Authorise',
24 'authorising' => 'Authorising...',
25 'back' => 'Back',
26 'back_to_previous' => 'Return to previous position',
27 'back_to_top' => 'Back to top',
28 'cancel' => 'Cancel',
29 'change' => 'change',
30 'clear' => 'Clear',
31 'click_to_copy' => 'click to copy to clipboard',
32 'click_to_copy_copied' => 'copied to clipboard!',
33 'close' => 'Close',
34 'collapse' => 'collapse',
35 'delete' => 'Delete',
36 'edit' => 'Edit',
37 'expand' => 'expand',
38 'hide' => 'hide',
39 'permalink' => 'permalink',
40 'pin' => 'pin',
41 'post' => 'Post',
42 'read_more' => 'read more',
43 'refresh' => 'Refresh',
44 'reply' => 'Reply',
45 'reply_reopen' => 'Reply and Reopen',
46 'reply_resolve' => 'Reply and Resolve',
47 'reset' => 'Reset',
48 'restore' => 'Restore',
49 'retry' => 'Retry',
50 'save' => 'Save',
51 'saving' => 'Saving...',
52 'search' => 'Search',
53 'see_more' => 'see more',
54 'show' => 'show',
55 'show_deleted' => 'Show deleted',
56 'show_less' => 'show less',
57 'show_more' => 'show more',
58 'show_more_options' => 'show more options',
59 'submit' => 'Submit',
60 'unpin' => 'unpin',
61 'update' => 'Update',
62 'upload_image' => 'upload image',
63
64 'watch' => [
65 'to_0' => 'Unwatch',
66 'to_1' => 'Watch',
67 ],
68 ],
69
70 'count' => [
71 'badges' => ':count_delimited badge|:count_delimited badges',
72 'days' => ':count_delimited day|:count_delimited days',
73 'hour_short_unit' => 'hr|hrs',
74 'hours' => ':count_delimited hour|:count_delimited hours',
75 'item' => ':count_delimited unit|:count_delimited units',
76 'minute_short_unit' => 'min|mins',
77 'minutes' => ':count_delimited minute|:count_delimited minutes',
78 'months' => ':count_delimited month|:count_delimited months',
79 'notifications' => ':count_delimited notification|:count_delimited notifications',
80 'plus_others' => '+ :count_delimited other!|+ :count_delimited others!',
81 'post' => ':count_delimited post|:count_delimited posts',
82 'second_short_unit' => 'sec|secs',
83 'star_priority' => ':count_delimited star priority|:count_delimited star priorities',
84 'update' => ':count_delimited update|:count_delimited updates',
85 'view' => ':count_delimited view|:count_delimited views',
86 'years' => ':count_delimited year|:count_delimited years',
87 ],
88
89 'countdown' => [
90 'days' => 'days',
91 'hours' => 'hours',
92 'minutes' => 'minutes',
93 'seconds' => 'seconds',
94 ],
95
96 'datetime' => [
97 'year_month' => [
98 'moment' => 'MMMM YYYY',
99 'php' => 'MMMM y',
100 ],
101 'year_month_short' => [
102 'moment' => 'MMM YYYY',
103 ],
104 ],
105
106 'device' => [
107 'keyboard' => 'Keyboard',
108 'mouse' => 'Mouse',
109 'tablet' => 'Tablet',
110 'touch' => 'Touch Screen',
111 ],
112
113 'dropzone' => [
114 'target' => 'drop here to upload',
115 ],
116
117 'input' => [
118 'search' => 'search...',
119 ],
120
121 'pagination' => [
122 'previous' => 'prev',
123 'next' => 'next',
124 ],
125
126 'score_count' => [
127 'count_100' => '100',
128 'count_300' => '300',
129 'count_50' => '50',
130 'count_geki' => 'MAX',
131 'count_katu' => '200',
132 'count_miss' => 'Miss',
133 ],
134
135 'scoreboard_time' => [
136 'd' => '%dd',
137 'dd' => '%dd',
138 'h' => '%dh',
139 'hh' => '%dh',
140 'm' => 'now',
141 'mm' => 'now',
142 'month' => '%dm',
143 'months' => '%dm',
144 'past' => '%s',
145 's' => 'now',
146 'y' => '%dy',
147 'yy' => '%dy',
148 ],
149
150 'time' => [
151 'days_ago' => ':count_delimited day ago|:count_delimited days ago',
152 'hours_ago' => ':count_delimited hour ago|:count_delimited hours ago',
153 'now' => 'now',
154 'remaining' => 'Time Remaining',
155 ],
156
157 'title' => [
158 'notice' => 'Notice',
159 ],
160
161 'wrong_user' => [
162 '_' => 'You\'re signed in as :user. :logout_link.',
163 'logout_link' => 'Click here to sign in as different user',
164 ],
165];