0

我需要在 Joomla (1.7) 上的自定义 HTML 模块中插入一个语言字符串。

喜欢:(K2_READ_MORE而不是Read more

如何?

4

2 回答 2

4

你可以这样做:

  1. 创建文件夹

/templates/你的模板/html/mod_custom

  1. 复制以下文件并编辑它:

/modules/mod_custom/tmpl/default.php

  1. 在大约第 14 行替换:

    <?php echo $module->内容;?>

和:

<?php
if(!function_exists('convertJText')) {
    function convertJText($str) { return JText::_($str); };
}
echo preg_replace("/\^\^\^([^\^]+)\^\^\^/ie",'convertJText("$1")', $module->content);
?>

然后,您将能够通过使用^^^K2_READ_MORE^^^在自定义 HTML 模块中使用可翻译字符串

于 2012-04-12T20:10:53.917 回答
2

试试 Sourcerer 插件:

http://www.nonumber.nl/extensions/sourcerer

于 2012-04-12T01:53:33.683 回答