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
Comment #1
kunago commentedComment #2
drzraf commentedshould be safe to commit but don't we want to use the Drupal error mechanism instead ?