Description:
add i18n for contest start confirmation page
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r303:86a1405eb6ed - - 3 files changed: 27 inserted, 9 deleted
@@ -1,12 +1,16 | |||
|
1 | 1 | = user_title_bar(@user) |
|
2 | 2 | |
|
3 | - %center | |
|
4 | - You will participate in contest: | |
|
5 | - - @contests.each do |contest| | |
|
6 | - = contest.title | |
|
7 | - %br | |
|
3 | + .announcementbox | |
|
4 | + %span{:class => 'title'} | |
|
5 | + =t 'main.confirm_contest_start.box_title' | |
|
6 | + .announcement | |
|
7 | + %center | |
|
8 | + =t 'main.confirm_contest_start.contest_list' | |
|
9 | + - @contests.each do |contest| | |
|
10 | + = contest.title | |
|
11 | + %br | |
|
8 | 12 | |
|
9 | - The timer will start after you click the start button. | |
|
13 | + =t 'main.confirm_contest_start.timer_starts_after_click' | |
|
10 | 14 | |
|
11 | - - form_tag :action => 'confirm_contest_start', :method => 'post' do | |
|
12 | - = submit_tag 'Start!', :confirm => 'Are you sure?' | |
|
15 | + - form_tag :action => 'confirm_contest_start', :method => 'post' do | |
|
16 | + = submit_tag t('main.confirm_contest_start.start_button'), :confirm => t('main.confirm_contest_start.start_button_confirm') |
@@ -4,96 +4,103 | |||
|
4 | 4 | en: |
|
5 | 5 | cancel: 'Cancel' |
|
6 | 6 | |
|
7 | 7 | login_label: 'Login' |
|
8 | 8 | full_name_label: 'Full name' |
|
9 | 9 | email_label: 'E-mail' |
|
10 | 10 | password_label: 'Password' |
|
11 | 11 | |
|
12 | 12 | go_ahead_to: "Go ahead to" |
|
13 | 13 | go_back_to: "Go back to" |
|
14 | 14 | login_page: "login page" |
|
15 | 15 | home_page: "home page" |
|
16 | 16 | |
|
17 | 17 | menu: |
|
18 | 18 | main: 'Main' |
|
19 | 19 | messages: 'Messages' |
|
20 | 20 | tasks: 'Tasks' |
|
21 | 21 | submissions: 'Submissions' |
|
22 | 22 | test: 'Test Interface' |
|
23 | 23 | help: 'Help' |
|
24 | 24 | settings: 'Settings' |
|
25 | 25 | log_out: 'Log out' |
|
26 | 26 | |
|
27 | 27 | title_bar: |
|
28 | 28 | current_time: "Current time is" |
|
29 | 29 | remaining_time: "Time left: " |
|
30 | 30 | contest_not_started: "The contest has not started." |
|
31 | 31 | |
|
32 | 32 | login: |
|
33 | 33 | message: 'Please login to see the problem list' |
|
34 | 34 | login_submit: 'Login' |
|
35 | 35 | participation: 'Want to participate?' |
|
36 | 36 | please: 'Please' |
|
37 | 37 | register: 'register' |
|
38 | 38 | forget_password: 'Forget password?' |
|
39 | 39 | |
|
40 | 40 | main: |
|
41 | 41 | start_soon: "The contest at your site will start soon. Please wait." |
|
42 | 42 | specified_in_header: "Specified in header" |
|
43 | 43 | |
|
44 | 44 | problem_desc: "desc" |
|
45 | 45 | submitted_at: "Submitted at" |
|
46 | 46 | graded_at: "Graded at" |
|
47 | 47 | score: "score: " |
|
48 | 48 | cmp_msg: "compiler msg" |
|
49 | 49 | src_link: "src" |
|
50 | 50 | submissions_link: "submissions" |
|
51 | 51 | |
|
52 | + confirm_contest_start: | |
|
53 | + box_title: "Contest confirmation" | |
|
54 | + contest_list: "You will participate in contest:" | |
|
55 | + timer_starts_after_click: "The timer will start after you click the start button." | |
|
56 | + start_button: "Start!" | |
|
57 | + start_button_confirm: "Are you sure?" | |
|
58 | + | |
|
52 | 59 | test: |
|
53 | 60 | title: "Test Interface" |
|
54 | 61 | intro: "You can test your submission with your own test data on the grading environment using this test interface." |
|
55 | 62 | disabled_at_end_announcement: "<b>Note:</b> Test interface will be disabled in the last 30 minutes of the contest time on your site." |
|
56 | 63 | |
|
57 | 64 | registration: |
|
58 | 65 | title: "New user registration" |
|
59 | 66 | |
|
60 | 67 | description: "Please enter your information below. Please make sure your e-mail is correct, because you will have to confirm the registration through an e-mail we send to that e-mail address." |
|
61 | 68 | |
|
62 | 69 | successful_title: "Registration successful" |
|
63 | 70 | |
|
64 | 71 | login_guide: "Only a-z, A-Z, 0-9 and _. Can be at most 20 characters long" |
|
65 | 72 | email_guide: "Please make sure that your e-mail is correct.<br/>You'll need to verify your account by email." |
|
66 | 73 | register: "Register" |
|
67 | 74 | |
|
68 | 75 | email_body: "Hello {{full_name}}, |
|
69 | 76 | |
|
70 | 77 | You have registered for {{contest_name}} |
|
71 | 78 | |
|
72 | 79 | Your login is: {{login}} |
|
73 | 80 | |
|
74 | 81 | Your password is: {{password}} |
|
75 | 82 | |
|
76 | 83 | Please follow the link: |
|
77 | 84 | |
|
78 | 85 | {{activation_url}} |
|
79 | 86 | |
|
80 | 87 | to activate your user account. |
|
81 | 88 | |
|
82 | 89 | If you did not register, please ignore this e-mail |
|
83 | 90 | and report this event to {{admin_email}}. |
|
84 | 91 | |
|
85 | 92 | Thanks!" |
|
86 | 93 | |
|
87 | 94 | email_sent: "We have sent a confimation message to your e-mail. (Please also check the Junk mail box." |
|
88 | 95 | email_verify_at: "Please check at {{email}} and confirm." |
|
89 | 96 | |
|
90 | 97 | activation_sucessful_title: "User activated" |
|
91 | 98 | account_activated: "Your account has been activated." |
|
92 | 99 | |
|
93 | 100 | activation_failed_title: "Activation failed" |
|
94 | 101 | |
|
95 | 102 | errors: |
|
96 | 103 | header: "Errors occured during registration" |
|
97 | 104 | email: |
|
98 | 105 | title: "Errors in sending registration confirmation" |
|
99 | 106 | expl: "<h2>Your user account has been created, but the system cannot send you the confirmation e-mail.</h2> |
@@ -1,99 +1,106 | |||
|
1 | 1 | # Sample localization file for English. Add more files in this directory for other locales. |
|
2 | 2 | # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points. |
|
3 | 3 | |
|
4 | 4 | th: |
|
5 | 5 | cancel: 'ยกเลิก' |
|
6 | 6 | |
|
7 | 7 | login_label: 'ชื่อเข้าใช้ระบบ (login)' |
|
8 | 8 | full_name_label: 'ชื่อเต็ม' |
|
9 | 9 | email_label: 'E-mail' |
|
10 | 10 | password_label: 'รหัสผ่าน' |
|
11 | 11 | |
|
12 | 12 | go_ahead_to: "ไปยัง" |
|
13 | 13 | go_back_to: "กลับไปยัง" |
|
14 | 14 | login_page: "หน้าเข้าใช้ระบบ" |
|
15 | 15 | home_page: "หน้าแรก" |
|
16 | 16 | |
|
17 | 17 | menu: |
|
18 | 18 | main: 'หน้าหลัก' |
|
19 | 19 | messages: 'ข้อความ' |
|
20 | 20 | tasks: 'โจทย์' |
|
21 | 21 | submissions: 'โปรแกรมที่ส่ง' |
|
22 | 22 | test: 'ทดสอบโปรแกรม' |
|
23 | 23 | help: 'ความช่วยเหลือ' |
|
24 | 24 | settings: 'เปลี่ยนรหัสผ่าน' |
|
25 | 25 | log_out: 'ออกจากระบบ' |
|
26 | - | |
|
26 | + | |
|
27 | 27 | title_bar: |
|
28 | 28 | current_time: "เวลาปัจจุบันคือ" |
|
29 | 29 | remaining_time: "เหลือเวลาอีก" |
|
30 | 30 | contest_not_started: "ยังไม่เริ่มแข่งขัน" |
|
31 | 31 | |
|
32 | 32 | login: |
|
33 | 33 | message: 'กรุณา login เพื่อเข้าสู่ระบบ' |
|
34 | 34 | login_submit: 'เข้าใช้ระบบ' |
|
35 | 35 | participation: 'ต้องการเข้าร่วม?' |
|
36 | 36 | please: 'กรุณา' |
|
37 | 37 | register: 'ลงทะเบียน' |
|
38 | 38 | forget_password: 'ลืมรหัสผ่าน?' |
|
39 | 39 | |
|
40 | 40 | main: |
|
41 | 41 | start_soon: "การแข่งขันกำลังจะเริ่ม กรุณารอก่อน" |
|
42 | 42 | specified_in_header: "ระบุที่หัวโปรแกรมแล้ว" |
|
43 | 43 | |
|
44 | 44 | problem_desc: "อ่าน" |
|
45 | 45 | submitted_at: "ส่งเมื่อเวลา" |
|
46 | 46 | graded_at: "ตรวจเมื่อเวลา" |
|
47 | 47 | score: "คะแนน: " |
|
48 | 48 | cmp_msg: "ผลคอมไพล์" |
|
49 | 49 | src_link: "ต้นฉบับ" |
|
50 | 50 | submissions_link: "การส่งครั้งอื่น ๆ" |
|
51 | 51 | |
|
52 | + confirm_contest_start: | |
|
53 | + box_title: "ยืนยันการเริ่มแข่งขัน" | |
|
54 | + contest_list: "การแข่งขันที่คุณจะเข้าร่วมคือ " | |
|
55 | + timer_starts_after_click: "การจับเวลาจะเริ่มขึ้นเมื่อคุณกดปุ่มด้านล่าง" | |
|
56 | + start_button: "เริ่มแข่ง!" | |
|
57 | + start_button_confirm: "แน่ใจที่จะเริ่มแข่งหรือไม่?" | |
|
58 | + | |
|
52 | 59 | test: |
|
53 | 60 | title: "ทดสอบโปรแกรมบนสภาพแวดล้อมของเครื่องตรวจ" |
|
54 | 61 | intro: "คุณสามารถทดลองการทำงานของโปรแกรมที่เขียนกับข้อมูลชุดทดสอบของคุณเองในสภาพแวดล้อมจริงของการตรวจโปรแกรมได้ โดยเลือกโปรแกรมส่งแล้วที่ด้านล่างพร้อมทั้งส่งแฟ้มข้อมูลชุดทดสอบที่ต้องการให้ทำงานด้วย" |
|
55 | 62 | disabled_at_end_announcement: "<b>หมายเหตุ:</b> ระบบทดสอบโปรแกรมจะหยุดทำงานในช่วงเวลา 30 นาทีสุดท้ายของการแข่งขัน" |
|
56 | 63 | |
|
57 | 64 | registration: |
|
58 | 65 | title: "ลงทะเบียนผู้ใช้ใหม่" |
|
59 | 66 | description: "ในการลงทะเบียน ให้ผู้สนใจเข้าร่วมการแข่งขันกรอกข้อมูลด้านล่าง จากนั้นระบบจะส่ง e-mail ไปยัง e-mail ที่ระบุเพื่อให้ยืนยันตัวตนและเปิดใช้บัญชีผู้ใช้<br/>ในกรณีที่ผู้เข้าแข่งขันเป็นนักเรียน รบกวนช่วยให้ข้อมูลเกี่ยวกับโรงเรียนและจังหวัดด้วย" |
|
60 | 67 | |
|
61 | 68 | successful_title: "การลงทะเบียนเสร็จเรียบร้อย" |
|
62 | 69 | |
|
63 | 70 | login_guide: "ใช้ได้เฉพาะ a-z, A-Z, 0-9 และ _ ความยาวไม่เกิน 20 ตัวอักษร" |
|
64 | 71 | email_guide: "กรุณาตรวจสอบ e-mail ที่ใส่ให้ถูกต้อง<br/>คุณจะต้องยืนยันการลงทะเบียนผ่านทางข้อมูลที่จะส่งให้ทาง e-mail" |
|
65 | 72 | register: "ลงทะเบียน" |
|
66 | 73 | |
|
67 | 74 | email_body: "สวัสดีครับ {{full_name}}, |
|
68 | 75 | |
|
69 | 76 | คุณได้ลงทะเบียนเข้าร่วมการแข่งขัน {{contest_name}} |
|
70 | 77 | |
|
71 | 78 | บัญชีเข้าใช้ของคุณคือ: {{login}} |
|
72 | 79 | |
|
73 | 80 | รหัสผ่านคือ: {{password}} |
|
74 | 81 | |
|
75 | 82 | กรุณาเข้าลิงก์ต่อไปนี้: |
|
76 | 83 | |
|
77 | 84 | {{activation_url}} |
|
78 | 85 | |
|
79 | 86 | เพื่อเปิดใช้งานบัญชีของคุณ |
|
80 | 87 | |
|
81 | 88 | ถ้าคุณไม่ใช่คนที่ลงทะเบียน กรุณาละทิ้ง e-mail ฉบับนี้ |
|
82 | 89 | และแจ้งความผิดพลาดนี้กับ {{admin_email}} ด้วย |
|
83 | 90 | |
|
84 | 91 | ขอบคุณมาก!" |
|
85 | 92 | |
|
86 | 93 | email_sent: "เราได้ส่งข้อมูลสำหรับยืนยันไปให้คุณแล้ว (โปรดอย่าลืมตรวจดูในส่วน Junk mail ด้วย)" |
|
87 | 94 | email_verify_at: "กรุณาตรวจสอบที่ {{email}} พร้อมทั้งยืนยัน" |
|
88 | 95 | |
|
89 | 96 | activation_sucessful_title: "บัณชีผู้ใช้ได้รับการยืนยันแล้ว" |
|
90 | 97 | account_activated: "บัญชีผู้ใช้ของคุณพร้อมใช้งานแล้ว" |
|
91 | 98 | |
|
92 | 99 | activation_failed_title: "การยืนยันล้มเหลว" |
|
93 | 100 | |
|
94 | 101 | errors: |
|
95 | 102 | header: 'การลงทะเบียนมีข้อผิดพลาด' |
|
96 | 103 | email: |
|
97 | 104 | title: "เกิดปัญหาระหว่างการส่ง e-mail เพื่อยืนยันการสมัคร" |
|
98 | 105 | expl: "<h2>บัญชีผู้ใช้ของคุณถูกสร้างขึ้นแล้ว แต่ระบบไม่สามารถส่ง e-mail เพื่อยืนยันการสมัครได้</h2> |
|
99 | 106 | อาจเกิดปัญหาในการตั้งค่าเริ่มต้นของระบบ กรุณาช่วยติดต่อผู้ดูแลระบบด้วยที่ {{email}}<br/>ขอขอบคุณจากทีมงาน" |
You need to be logged in to leave comments.
Login now