diff --git a/e107_core/shortcodes/batch/bbcode_shortcodes.php b/e107_core/shortcodes/batch/bbcode_shortcodes.php index b9397e975..89e27dea7 100644 --- a/e107_core/shortcodes/batch/bbcode_shortcodes.php +++ b/e107_core/shortcodes/batch/bbcode_shortcodes.php @@ -30,16 +30,16 @@ class bbcode_shortcodes extends e_shortcode function bb_format($id) { $formats = array( - 0 => array('[p][/p]','Paragraph'), - 1 => array('[h=2][/h]','Heading 2'), - 2 => array('[h=3][/h]','Heading 3'), - 3 => array('[h=4][/h]','Heading 4'), - 4 => array('[h=5][/h]','Heading 5'), - 5 => array('[h=6][/h]','Heading 6'), - 6 => array('[block][/block]','Block'), - 7 => array('[blockquote][/blockquote]', 'Quote'), - 8 => array('[code][/code]', 'Code Block'), - 9 => array('[code=inline][/code]', 'Code Inline') + 0 => array('[p][/p]',LANHELP_62), + 1 => array('[h=2][/h]',LANHELP_57.' 2'), + 2 => array('[h=3][/h]',LANHELP_57.' 3'), + 3 => array('[h=4][/h]',LANHELP_57.' 4'), + 4 => array('[h=5][/h]',LANHELP_57.' 5'), + 5 => array('[h=6][/h]',LANHELP_57.' 6'), + 6 => array('[block][/block]',LANHELP_58), + 7 => array('[blockquote][/blockquote]', LANHELP_59), + 8 => array('[code][/code]', LANHELP_60), + 9 => array('[code=inline][/code]', LANHELP_61) ); @@ -47,7 +47,7 @@ class bbcode_shortcodes extends e_shortcode { $text = '
'; $text .= ''; - $text .= "Format"; + $text .= LANHELP_55; $text .= ' '; $text .= ""; diff --git a/e107_languages/English/lan_ren_help.php b/e107_languages/English/lan_ren_help.php index 811158352..4f3d87db2 100644 --- a/e107_languages/English/lan_ren_help.php +++ b/e107_languages/English/lan_ren_help.php @@ -66,4 +66,16 @@ define("LANHELP_50", "Heading: for H2 [h]Heading text[/h] or [h=2]Heading text[/ define("LANHELP_51", "Disable HTML new lines for enclosed text: [nobr]text[/nobr]"); define("LANHELP_52", "New line (HTML): [br]"); define("LANHELP_53", "Justify align:\n[justify]This text will be justified[/justify]"); -define("LANHELP_54", "HTML block (div tag): [block]Your content[/block]"); \ No newline at end of file +define("LANHELP_54", "HTML block (div tag): [block]Your content[/block]"); +define("LANHELP_55", "Format"); +define("LANHELP_56", "Insert a table"); +define("LANHELP_57", "Heading"); +define("LANHELP_58", "Block"); +define("LANHELP_59", "Quote"); + +define("LANHELP_60", "Code Block"); +define("LANHELP_61", "Code Inline"); +define("LANHELP_62", "Paragraph"); +define("LANHELP_63", "Insert an Image from the Media Manager"); +define("LANHELP_64", "Insert a file from the Media-Manager"); +define("LANHELP_65", "Size");