mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-10 13:48:42 +00:00
96d4a3ecf7
Due to historical reasons, the code is in subfolder "1". With SVN removal, we place the code back and remove the annoying "1" folder.
69 lines
2.3 KiB
PHP
69 lines
2.3 KiB
PHP
<?php
|
|
return [
|
|
'login' => 'Login',
|
|
'register' => 'Register',
|
|
'logout' => 'Logout',
|
|
'my profile' => 'My Profile',
|
|
'private message' => 'Private Message',
|
|
'system message' => 'System Message',
|
|
'system manage' => 'System Manage',
|
|
'contests' => 'Contests',
|
|
'problems' => 'Problems',
|
|
'submissions' => 'Submissions',
|
|
'hacks' => 'Hack!',
|
|
'blogs' => 'Blogs',
|
|
'announcements' => 'Announcements',
|
|
'all the announcements' => 'All the Announcements……',
|
|
'help' => 'Help',
|
|
'search' => 'Search',
|
|
'top rated' => 'Top rated',
|
|
'username' => 'Username',
|
|
'password' => 'Password',
|
|
'new password' => 'New password',
|
|
'email' => 'Email',
|
|
'QQ' => 'QQ',
|
|
'sex' => 'Sex',
|
|
'motto' => 'Motto',
|
|
'rating' => 'Rating',
|
|
'view all' => 'View all',
|
|
'appraisal' => 'Appraisal',
|
|
'submit' => 'Submit',
|
|
'browse' => 'Browse',
|
|
'score range' => 'Score range',
|
|
'details' => 'Details',
|
|
'hours' => function($h) {
|
|
return "$h ".($h <= 1 ? 'hour' : 'hours');
|
|
},
|
|
'title' => 'Title',
|
|
'content' => 'Content',
|
|
'time' => 'Time',
|
|
'none' => 'None',
|
|
'user profile' => 'User profile',
|
|
'send private message' => 'Send private message',
|
|
'modify my profile' => 'Modify my profile',
|
|
'visit his blog' => function($name) {
|
|
return "Visit $name's blog";
|
|
},
|
|
'rating changes' => 'Rating changes',
|
|
'accepted problems' => 'Accepted problems',
|
|
'n problems in total' => function($n) {
|
|
return "$n ".($n <= 1 ? 'problem' : 'problems');
|
|
},
|
|
'please enter your password for authorization' => 'Please enter your password for authorization',
|
|
'please enter your new profile' => 'Please enter your new profile',
|
|
'leave it blank if you do not want to change the password' => 'Leave it blank if you do not want to change the password',
|
|
'change avatar help' => 'Do you want to change your avatar? Please see <a href="/faq">Help</a>',
|
|
'enter your username' => 'Enter your username',
|
|
'enter your email' => 'Enter your email',
|
|
'enter your password' => 'Enter your password',
|
|
're-enter your password' => 'Re-enter your password',
|
|
'enter your new password' => 'Enter your new password',
|
|
're-enter your new password' => 'Re-enter your new password',
|
|
'enter your QQ' => 'Enter your QQ',
|
|
'refuse to answer' => 'Refuse to answer',
|
|
'male' => 'Male',
|
|
'female' => 'Female',
|
|
'server time' => 'Server Time',
|
|
'opensource project' => 'OpenSource Project'
|
|
];
|