From node.tpl.php, the line:
<span>Tags:</span><?php print $terms ?>
Should be replaced by:
<span><? print ('Tags:') ?></span><?php print $terms ?>
From node.tpl.php, the line:
<span>Tags:</span><?php print $terms ?>
Should be replaced by:
<span><? print ('Tags:') ?></span><?php print $terms ?>
Comments
Comment #1
oriol_e9gFrom node.tpl.php, the line:
Should be replaced by:
or by
etc...
Comment #2
andregriffin commentedAh. Can you explain to me what this accomplishes and/or how the translation works? I've never dealt with translations before, but I'll make a note to make this change in the next release.
Comment #3
andregriffin commentedFixed in Framework 2.5
Comment #4
andregriffin commentedComment #5
oriol_e9gThe t() function is very easy to use, only put all the english strings showed in the page inside this function. Any text within t() can be extracted by translators and changed into the equivalent text in their native language.
More info: http://api.drupal.org/api/function/t/6