I recommend changing in inline.module the line

$replace = '<span style="color: red; font-weight: bold;">NOT FOUND: '. $value .'</span>';

to this line so that the "NOT FOUND" could be translated

$replace = '<span style="color: red; font-weight: bold;">' . t('NOT FOUND') . ': '. $value .'</span>';

Comments

kunago’s picture

Status: Active » Needs review
drzraf’s picture

should be safe to commit but don't we want to use the Drupal error mechanism instead ?