Active
Project:
Best Responsive
Version:
7.x-1.2
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
18 Feb 2015 at 10:26 UTC
Updated:
18 Feb 2015 at 10:26 UTC
The node.tpl.php template contains untranslatable texts 'Posted on"and "By". you will only notice so, if the option to display submission info has been enabled for a content type. to solve, either:
For an example of the latter see garland/template.php:
/**
* Override or insert variables into the node template.
*/
function garland_preprocess_node(&$vars) {
$vars['submitted'] = $vars['date'] . ' — ' . $vars['name'];
}
/**
* Override or insert variables into the comment template.
*/
function garland_preprocess_comment(&$vars) {
$vars['submitted'] = $vars['created'] . ' — ' . $vars['author'];
}