1 | <?php |
---|
2 | |
---|
3 | /* général */ |
---|
4 | $lang['Contests'] = 'Contests'; |
---|
5 | $lang['CR_finished'] = 'Finished'; |
---|
6 | $lang['CR_results'] = 'Results'; |
---|
7 | $lang['CR_place'] = 'place'; |
---|
8 | $lang['CR_nopublic'] = 'This page is not available for the public !'; |
---|
9 | $lang['CR_notavailable'] = 'This contest is not available'; |
---|
10 | $lang['CR_%d_days_to_begin'] = "Begins in %d days"; |
---|
11 | $lang['CR_%d_days_to_end'] = "%d days remaining"; |
---|
12 | $lang['CR_order_1'] = '1<sup>st</sup>'; |
---|
13 | $lang['CR_order_2'] = '2<sup>nd</sup>'; |
---|
14 | $lang['CR_order_3'] = '3<sup>rd</sup>'; |
---|
15 | $lang['CR_order_sup'] = '<sup>th</sup>'; |
---|
16 | |
---|
17 | /* admin */ |
---|
18 | $lang['CR_edit_tab'] = 'Edit contest'; |
---|
19 | $lang['CR_delete'] = 'Delete contest'; |
---|
20 | $lang['CR_delete_result'] = 'Delete element'; |
---|
21 | $lang['CR_manage_tab'] = 'Contests management'; |
---|
22 | $lang['CR_new_tab'] = 'Add a new contest'; |
---|
23 | $lang['CR_results_tab'] = 'Contest results'; |
---|
24 | $lang['CR_go'] = 'Go to the contest page'; |
---|
25 | $lang['CR_title'] = 'Title'; |
---|
26 | $lang['CR_status'] = 'Status'; |
---|
27 | $lang['CR_dateB'] = 'Bagin date'; |
---|
28 | $lang['CR_dateE'] = 'Edn date'; |
---|
29 | $lang['CR_logo'] = 'Logo'; |
---|
30 | $lang['CR_banner'] = 'Banner'; |
---|
31 | $lang['CR_summary'] = 'Summary'; |
---|
32 | $lang['CR_textareas'] = 'Contest description'; |
---|
33 | $lang['CR_new'] = 'New contest'; |
---|
34 | $lang['CR_addfield'] = 'Add an element'; |
---|
35 | $lang['CR_no_result'] = 'No element registered'; |
---|
36 | $lang['CR_no_contest'] = 'No contest registered'; |
---|
37 | $lang['CR_image_no'] = 'Image n°'; |
---|
38 | $lang['CR_author'] = 'Author'; |
---|
39 | $lang['CR_comment'] = 'Comment'; |
---|
40 | $lang['CR_rank'] = 'Rank'; |
---|
41 | $lang['CR_visible'] = 'Public'; |
---|
42 | $lang['CR_id_unknown %d'] = "The picture n°%d doesn't exist"; |
---|
43 | $lang['CR_duplicate_result %d'] = "The picture n°%d appears twice"; |
---|
44 | $lang['CR_contest_saved'] = "Contest settings saved"; |
---|
45 | $lang['CR_contest_added'] = "Contest added"; |
---|
46 | $lang['CR_contest_deleted'] = "Contest deleted"; |
---|
47 | $lang['CR_results_saved'] = "Results saved"; |
---|
48 | $lang['CR_name_empty'] = "The name of the contest can't be empty"; |
---|
49 | $lang['CR_pending_title'] = 'Pending contests'; |
---|
50 | $lang['CR_running_title'] = 'Contests running'; |
---|
51 | $lang['CR_finished_title'] = 'Finished contest'; |
---|
52 | |
---|
53 | /* config */ |
---|
54 | $lang['CR_menubar_mode'] = 'Add Contest Results to the menu'; |
---|
55 | $lang['CR_menubar_link'] = 'Add a link to a existing menu-block'; |
---|
56 | $lang['CR_menubar_link_display'] = 'Display the link in the following blocks'; |
---|
57 | $lang['CR_menubar_block'] = 'New menu block'; |
---|
58 | $lang['CR_menubar_block_number'] = 'Quantity of contests to display in the block'; |
---|
59 | $lang['CR_truncate_summary'] = "Truncate the summary of the contest after x characters"; |
---|
60 | |
---|
61 | /* stuffs */ |
---|
62 | $lang['CR_select_contest'] = "Select one or more contests"; |
---|
63 | $lang['CR_stuffs_desc'] = "Display one or more contests"; |
---|
64 | |
---|
65 | /* cluetip */ |
---|
66 | $lang['CR_help_lang'] = (CR_ED_STATE == 'active') ? "<b>You can use HTML and multilanguage descriptions.</b>" : "<b>You can use HTML.</b>"; |
---|
67 | $lang['CR_help_title'] = "" . $lang['CR_help_lang']; |
---|
68 | $lang['CR_help_status'] = "When the contest is <i>Finished</i> the results are displayed on the contest page and the marker <span style='color:#a00;'>(Finished)</span> is activated.<br/> |
---|
69 | <b>Caution :</b> the contest doesn't switch automaticaly to the status 'finished' when the end date is reached !"; |
---|
70 | $lang['CR_help_visible'] = "If the contest is not public only <b>administrators</b> can see it."; |
---|
71 | $lang['CR_help_summary'] = "The summary is only displayed in the general contest page.<br/> |
---|
72 | <br/>" . $lang['CR_help_lang']; |
---|
73 | $lang['CR_help_textareas'] = "Add here some text boxes to describe your contest.<br/> |
---|
74 | <br/>" . $lang['CR_help_lang']; |
---|
75 | $lang['CR_help_results'] = "- Descriptions are displayed on each pictures pages and on the contest page for the first three.<br/> |
---|
76 | - Sort elements by drag-and-drop them.<br/> |
---|
77 | - Hover this icon <img src='".CR_PATH."admin/template/image/images.png'/> to view the picture that corresponds to the id.<br/> |
---|
78 | <br/>" . $lang['CR_help_lang']; |
---|
79 | |
---|
80 | ?> |
---|