2016-07-18 16:39:37 +00:00
|
|
|
<?php
|
|
|
|
return [
|
2019-09-10 02:15:20 +00:00
|
|
|
'_common_name' => 'English',
|
2016-07-18 16:39:37 +00:00
|
|
|
'login' => 'Login',
|
|
|
|
'register' => 'Register',
|
|
|
|
'logout' => 'Logout',
|
2022-03-17 04:00:03 +00:00
|
|
|
'need login' => 'You need to login first',
|
2016-07-18 16:39:37 +00:00
|
|
|
'my profile' => 'My Profile',
|
|
|
|
'private message' => 'Private Message',
|
|
|
|
'system message' => 'System Message',
|
|
|
|
'system manage' => 'System Manage',
|
|
|
|
'contests' => 'Contests',
|
|
|
|
'problems' => 'Problems',
|
2022-03-20 00:07:46 +00:00
|
|
|
'groups' => 'Groups',
|
|
|
|
'add new group' => 'Add new group',
|
|
|
|
'users count' => 'Users',
|
2016-07-18 16:39:37 +00:00
|
|
|
'submissions' => 'Submissions',
|
|
|
|
'hacks' => 'Hack!',
|
|
|
|
'blogs' => 'Blogs',
|
|
|
|
'announcements' => 'Announcements',
|
|
|
|
'all the announcements' => 'All the Announcements……',
|
2022-03-21 02:51:31 +00:00
|
|
|
'solved' => 'Solved',
|
|
|
|
'top solver' => 'Top solver',
|
2016-07-18 16:39:37 +00:00
|
|
|
'help' => 'Help',
|
|
|
|
'search' => 'Search',
|
2022-03-20 00:07:46 +00:00
|
|
|
'news' => 'News',
|
2016-07-18 16:39:37 +00:00
|
|
|
'username' => 'Username',
|
|
|
|
'password' => 'Password',
|
|
|
|
'new password' => 'New password',
|
2022-03-14 13:49:48 +00:00
|
|
|
'verification code' => 'Verification code',
|
2016-07-18 16:39:37 +00:00
|
|
|
'email' => 'Email',
|
|
|
|
'QQ' => 'QQ',
|
|
|
|
'sex' => 'Sex',
|
|
|
|
'motto' => 'Motto',
|
|
|
|
'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";
|
|
|
|
},
|
|
|
|
'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',
|
2022-03-14 13:49:48 +00:00
|
|
|
'enter verification code' => 'Enter verification code',
|
2016-07-18 16:39:37 +00:00
|
|
|
'refuse to answer' => 'Refuse to answer',
|
|
|
|
'male' => 'Male',
|
2019-04-18 03:10:53 +00:00
|
|
|
'female' => 'Female',
|
|
|
|
'server time' => 'Server Time',
|
2022-03-17 03:33:07 +00:00
|
|
|
'opensource project' => 'OpenSource Project, modified by S2OJ'
|
2016-07-18 16:39:37 +00:00
|
|
|
];
|