]> git.mxchange.org Git - friendica.git/commitdiff
Improve babel page display
authorHypolite Petovan <mrpetovan@gmail.com>
Sun, 14 Jan 2018 18:13:36 +0000 (13:13 -0500)
committerHypolite Petovan <mrpetovan@gmail.com>
Mon, 15 Jan 2018 00:01:09 +0000 (19:01 -0500)
mod/babel.php

index 9866628d87274fb1eec190f875761d1380ad6c05..2b8c379016cf40c15d6fed900aa5e10790db3e4f 100644 (file)
@@ -36,31 +36,31 @@ function babel_content()
                $o .= visible_lf($text) . EOL . EOL;
 
                $html = bbcode($text);
-               $o .= '<h2>' . t('bb2html (raw HTML): ') . '</h2>' . EOL . EOL;
+               $o .= '<h2>' . t('bbcode (raw HTML): ') . '</h2>' . EOL . EOL;
                $o .= htmlspecialchars($html) . EOL . EOL;
 
                //$html = bbcode($text);
-               $o .= '<h2>' . t('bb2html: ') . '</h2>' . EOL . EOL;
+               $o .= '<h2>' . t('bbcode: ') . '</h2>' . EOL . EOL;
                $o .= $html . EOL . EOL;
 
                $bbcode = html2bbcode($html);
-               $o .= '<h2>' . t('bb2html2bb: ') . '</h2>' . EOL . EOL;
+               $o .= '<h2>' . t('bbcode => html2bbcode: ') . '</h2>' . EOL . EOL;
                $o .= visible_lf($bbcode) . EOL . EOL;
 
                $diaspora = bb2diaspora($text);
-               $o .= '<h2>' . t('bb2md: ') . '</h2>' . EOL . EOL;
+               $o .= '<h2>' . t('bb2diaspora: ') . '</h2>' . EOL . EOL;
                $o .= visible_lf($diaspora) . EOL . EOL;
 
                $html = Markdown($diaspora);
-               $o .= '<h2>' . t('bb2md2html: ') . '</h2>' . EOL . EOL;
+               $o .= '<h2>' . t('bb2diaspora => Markdown: ') . '</h2>' . EOL . EOL;
                $o .= $html . EOL . EOL;
 
                $bbcode = diaspora2bb($diaspora);
-               $o .= '<h2>' . t('bb2dia2bb: ') . '</h2>' . EOL . EOL;
+               $o .= '<h2>' . t('bb2diaspora => diaspora2bb: ') . '</h2>' . EOL . EOL;
                $o .= visible_lf($bbcode) . EOL . EOL;
 
                $bbcode = html2bbcode($html);
-               $o .= '<h2>' . t('bb2md2html2bb: ') . '</h2>' . EOL . EOL;
+               $o .= '<h2>' . t('bbcode => html2bbcode: ') . '</h2>' . EOL . EOL;
                $o .= visible_lf($bbcode) . EOL . EOL;
        }