1088 acplo: { |
1088 acplo: { |
1089 heading_main: 'You have now been logged out of the administration panel.', |
1089 heading_main: 'You have now been logged out of the administration panel.', |
1090 msg_logout_complete: 'You will continue to be logged into the website, but you will need to re-authenticate before you can access the administration panel again.</p><p>Return to the <a href="%mainpage_link%">Main Page</a>.', |
1090 msg_logout_complete: 'You will continue to be logged into the website, but you will need to re-authenticate before you can access the administration panel again.</p><p>Return to the <a href="%mainpage_link%">Main Page</a>.', |
1091 }, |
1091 }, |
1092 sbedit: { |
1092 sbedit: { |
|
1093 header_msg: 'This control panel allows you to organize the sidebars, the collections of links and dynamic blocks that provide navigation for your site. Drag and drop blocks to move them between the left and right sidebars; changes will be saved automatically. Red blocks are disabled. This panel only works if you have Javascript enabled and working in your browser. <a href="%create_link%">Create a new block</a>.', |
|
1094 |
1093 msg_order_update_success: 'The sidebar order information was updated successfully.', |
1095 msg_order_update_success: 'The sidebar order information was updated successfully.', |
1094 err_demo_php_disable: 'Adding PHP code blocks in the Enano administration demo has been disabled for security reasons.', |
1096 err_demo_php_disable: 'Adding PHP code blocks in the Enano administration demo has been disabled for security reasons.', |
1095 msg_item_added: 'The item was added.', |
1097 msg_item_added: 'The item was added.', |
1096 |
1098 |
1097 create_intro: 'What type of block should this be?', |
1099 create_intro: 'What type of block should this be?', |
1098 block_type_wiki: 'Wiki-formatted block', |
1100 block_type_wiki: 'Textual content (wikitext)', |
1099 block_type_tpl: 'Template-formatted block (old pre-beta 3 behavior)', |
1101 block_type_tpl: 'List of links', |
1100 block_type_html: 'Raw HTML block', |
1102 block_type_html: 'Pure HTML', |
1101 block_type_php: 'PHP code block (danger, Will Robinson!)', |
1103 block_type_php: 'PHP code', |
1102 block_type_plugin: 'Use code from a plugin', |
1104 block_type_plugin: 'Plugin block', |
1103 field_block_title: 'Block title:', |
1105 field_block_title: 'Block title:', |
1104 field_block_sidebar: 'Which sidebar:', |
1106 field_block_sidebar: 'Which sidebar:', |
1105 field_block_sidebar_left: 'Left', |
1107 field_block_sidebar_left: 'Left', |
1106 field_block_sidebar_right: 'Right', |
1108 field_block_sidebar_right: 'Right', |
1107 field_wikitext: 'Wikitext:', |
1109 field_wikitext: '<p> |
1108 field_tplcode: 'Template code:', |
1110 <b>This block type is for textual content.</b> This could be information, a random fact, or some other blob of fully formatted text. Links show up inline, |
1109 field_html: 'HTML to place inside the sidebar:', |
1111 not as a list. |
|
1112 </p> |
|
1113 <p> |
|
1114 Wikitext: |
|
1115 </p>', |
|
1116 field_tplcode: '<p> |
|
1117 <b>This block type is for links.</b> Use wikilinks (both internal and external are supported) to build a list of links. All links will be shown block-style, |
|
1118 or one link per line. You can use logic in these blocks as well: |
|
1119 </p> |
|
1120 <pre>{if user_logged_in} |
|
1121 [[Special:Preferences|User control panel]] |
|
1122 {/if}</pre> |
|
1123 <p> |
|
1124 Template code: |
|
1125 </p>', |
|
1126 field_html: '<p> |
|
1127 <b>This block type is for textual content.</b> HTML you use here will not be filtered or parsed at all - it will be displayed verbatim. This gives you |
|
1128 slightly more control over your content but you can\'t use wikilinks or other wikitext in here. |
|
1129 </p> |
|
1130 <p> |
|
1131 HTML to place inside the sidebar: |
|
1132 </p>', |
1110 field_php_disabled: 'Creating PHP blocks in demo mode is disabled for security reasons.', |
1133 field_php_disabled: 'Creating PHP blocks in demo mode is disabled for security reasons.', |
1111 field_php: '<p> |
1134 field_php: '<p> |
1112 <b>WARNING:</b> If you don\'t know what you\'re doing, or if you are not fluent in PHP, stop now and choose a different block type. You will brick your Enano installation if you are not careful here. |
1135 <b>WARNING:</b> If you don\'t know what you\'re doing, or if you are not fluent in PHP, stop now and choose a different block type. You will brick your Enano installation if you are not careful here. |
1113 ALWAYS remember to write secure code! The Enano team is not responsible if someone drops all your tables because of an SQL injection vulnerability in your sidebar code. You are probably better off using the template-formatted block type. |
1136 ALWAYS remember to write secure code! The Enano team is not responsible if someone drops all your tables because of an SQL injection vulnerability in your sidebar code. You are probably better off using the links and logic block type. |
1114 </p> |
1137 </p> |
1115 <p> |
1138 <p> |
1116 <span style="color: red;"> |
1139 <span style="color: red;"> |
1117 It is especially important to note that this code is NOT checked for errors! If there is a syntax error in your code here, it will prevent any pages from loading AT ALL. So you need to use an external PHP editor (like <a href="http://www.jedit.org">jEdit</a>) to check your syntax before you hit save. |
1140 It is especially important to note that the syntax of your code is not validated here. If there is a syntax error in your code here, it might prevent Enano from working properly. It is recommended that you use an external PHP editor (like <a href="http://www.jedit.org">jEdit</a>) to check your syntax before you hit save. |
1118 </span> You have been warned. |
1141 </span> You have been warned. |
1119 </p> |
1142 </p> |
1120 <p> |
1143 <p> |
1121 Also, you should avoid using output buffering functions (ob_[start|end|get_contents|clean]) here, because Enano uses those to track output from this script. |
1144 Also, you should avoid using output buffering functions (ob_[start|end|get_contents|clean]) here, because Enano uses those to track output from this script. |
1122 </p> |
1145 </p> |
1123 <p> |
1146 <p> |
1124 The standard <?php and ?> tags work here. Don\'t use an initial "<?php" or it will cause a parse error. |
1147 The standard <?php and ?> tags work here, but don\'t use an initial "<?php" or it will cause a parse error. |
1125 </p> |
1148 </p> |
1126 <p> |
1149 <p> |
1127 PHP code: |
1150 PHP code: |
1128 </p>', |
1151 </p>', |
1129 field_plugin: 'Plugin:', |
1152 field_plugin: '<p>Plugin:</p>', |
1130 btn_create_block: 'Create new block', |
1153 btn_create_block: 'Create new block', |
1131 |
1154 |
1132 msg_block_moved: 'Item moved.', |
1155 msg_block_moved: 'Item moved.', |
1133 msg_block_deleted: 'Item deleted.', |
1156 msg_block_deleted: 'Item deleted.', |
1134 msg_plugin_not_loaded: 'Plugin isn\'t loaded', |
1157 msg_plugin_not_loaded: 'Plugin isn\'t loaded', |
1135 note_block_unnamed: 'Unnamed', |
1158 note_block_unnamed: 'Unnamed', |
1136 hint_rename: 'Double-click to rename this block', |
1159 hint_rename: 'Double-click to rename this block', |
1137 note_block_disabled: '(disabled)', |
1160 note_block_disabled: '(disabled)', |
1138 tip_disenable: 'Enable or disable this block', |
1161 tip_disenable: 'Toggle', |
1139 tip_edit: 'Edit the contents of this block', |
1162 tip_edit: 'Edit block', |
1140 tip_delete: 'Permanently delete this block', |
1163 tip_delete: 'Delete', |
1141 tip_move: 'Move this block to the other sidebar', |
1164 tip_rename: 'Rename', |
1142 msg_delete_confirm: 'Do you really want to delete this block?', |
1165 msg_delete_confirm_title: 'Delete block', |
|
1166 msg_delete_confirm_body: 'Are you sure you want to delete this sidebar block?', |
|
1167 btn_delete_confirm: 'Delete block', |
1143 btn_revert: 'Revert', |
1168 btn_revert: 'Revert', |
1144 btn_create_new_stage1: 'Create new block', |
1169 btn_create_new_stage1: 'Create new block', |
1145 btn_main_page: 'Main Page', |
1170 btn_main_page: 'Main Page', |
1146 msg_cant_edit_plugin_title: 'This block cannot be edited.', |
1171 msg_cant_edit_plugin_title: 'This block cannot be edited.', |
1147 msg_cant_edit_plugin_body: 'This is a plugin block, and cannot be edited. <%close_link%>Close</a>', |
1172 msg_cant_edit_plugin_body: 'This is a plugin block, and cannot be edited. <%close_link%>Close</a>', |