Joomla (1.7) のカスタム HTML モジュール内に言語文字列を挿入する必要があります。
のように: K2_READ_MORE
(ではないRead more
)
どのように?
次の方法でこれを行うことができます。
/templates/ YOUR-TEMPLATE /html/mod_custom
/modules/mod_custom/tmpl/default.php
約 14 行目で次のように置き換えます。
<?php echo $module->content; ?>
と:
<?php
if(!function_exists('convertJText')) {
function convertJText($str) { return JText::_($str); };
}
echo preg_replace("/\^\^\^([^\^]+)\^\^\^/ie",'convertJText("$1")', $module->content);
?>
その後、 ^^^K2_READ_MORE^^^を使用して、カスタム HTML モジュールで翻訳可能な文字列を使用できるようになります。
Sourcerer プラグインを試す: