The strings "new" and "moved" cannot be translated.
You need to change the recent_changes.module file:
if ($old_node->vid == 0) {
// The node is new.
$special = '<span class="change-flag">new</span> ';
}
elseif ($old_node->title != $change->title) {
// The node title changed.
$special = '<span class="change-flag">moved</span> ';
}
for
if ($old_node->vid == 0) {
// The node is new.
$special = '<span class="change-flag">'.t(new).'</span> ';
}
elseif ($old_node->title != $change->title) {
// The node title changed.
$special = '<span class="change-flag">'.t(moved).'</span> ';
}
Comments
Comment #1
oriol_e9gOops! sorry! The correct code is:
Comment #2
oriol_e9gOther sting without translation:
change this:
for this:
Comment #3
wim leersIs not an issue in the 6.x version of this module.