对于不同的文章类别我对drupal的看法很少,并且使它们看起来像我需要的,我使用了重写结果字段。以下是该字段的示例:
<div class="kl-title">
<div class="kl-date kl-sprite">[created_1]</div>
<h3>[title]</h3>
Posted on <b>[created]</b> in [field_article_category]
</div>
但我不知道在这里翻译“发表于”和“正在”文本有什么好处。请指教。
答案 0 :(得分:2)
将它们放在t()
函数中,以使它们可用于翻译。
<?php print t("Posted on"); ?> <b>[created]</b> <?php print t("in"); ?> [field_article_category]