diff -r 960c1572df75 -r 307591683f3b GUIEditor.php --- a/GUIEditor.php Thu Oct 28 01:44:13 2010 -0400 +++ b/GUIEditor.php Thu Oct 28 02:59:36 2010 -0400 @@ -16,7 +16,15 @@ function guied_attach_script() { global $template; - $template->add_header_js(''); + $template->add_header_js(''); } // @@ -70,10 +78,20 @@ btn_intlink: 'Internal link', btn_extlink: 'External link', btn_image: 'Image', + btn_table: 'Table', + btn_ulist: 'Bulleted list', + btn_olist: 'Numbered list', + sample_heading: 'Heading', sample_bold: 'Bold text', sample_italic: 'Italic text', sample_underline: 'Underlined text', + // translators: translating this may be easier if you understand wiki-table syntax + sample_table: '|-\n! Column header 1\n! Column header 2\n|-\n| Row 1, column 1\n| Row 1, column 2\n|-\n| Row 2, column 1\n| Row 2, column 2', + sample_ulist: '\n* Bulleted list\n** Sub-level\n*** Deeper indent\n* Back to one indent', + sample_olist: '\n# Numbered list\n## Sub-level\n### Deeper indent\n# Back to one indent', + + lbl_heading: 'Heading', intlink_title: 'Insert internal link', intlink_lbl_page: 'Page:',