X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fbabel.php;h=3b4fb5bf2bfcd018a332ca887295465c57a69e36;hb=0454d0a670e051e8519e9a4220606f83d1408214;hp=4d6f3c8b810dbdbb591dfc5debfcf9e3f36562e2;hpb=6b44fbbda03af125035c185c964f10ce78f97610;p=friendica.git diff --git a/mod/babel.php b/mod/babel.php index 4d6f3c8b81..3b4fb5bf2b 100644 --- a/mod/babel.php +++ b/mod/babel.php @@ -19,14 +19,14 @@ function babel_content() $o = '

Babel Diagnostic

'; $o .= '
'; - $o .= L10n::t('Source (bbcode) text:') . EOL; + $o .= L10n::t("Source \x28bbcode\x29 text:") . EOL; $o .= '' . EOL; $o .= '
'; $o .= '

'; $o .= '
'; - $o .= L10n::t('Source (Diaspora) text to convert to BBcode:') . EOL; + $o .= L10n::t("Source \x28Diaspora\x29 text to convert to BBcode:") . EOL; $o .= '' . EOL; $o .= '
'; @@ -38,7 +38,7 @@ function babel_content() $o .= visible_lf($text) . EOL . EOL; $html = bbcode($text); - $o .= '

' . L10n::t('bbcode (raw HTML): ') . '

' . EOL . EOL; + $o .= '

' . L10n::t("bbcode \x28raw HTML\x28: ") . '

' . EOL . EOL; $o .= htmlspecialchars($html) . EOL . EOL; //$html = bbcode($text); @@ -68,7 +68,7 @@ function babel_content() if (x($_REQUEST, 'd2bbtext')) { $d2bbtext = trim($_REQUEST['d2bbtext']); - $o .= '

' . L10n::t('Source input (Diaspora format): ') . '

' . EOL . EOL; + $o .= '

' . L10n::t("Source input \x28Diaspora format\x29: ") . '

' . EOL . EOL; $o .= '
' . $d2bbtext . '
' . EOL . EOL; $bb = diaspora2bb($d2bbtext);