file: modules/node/views_handler_argument_node_type.inc
change the function node_type to the following: (add the translation for $output)


function node_type($type) {
$output = node_get_types('name', $type);
if (empty($output)) {
$output = t('Unknown node type');
}
return t(check_plain($output));
}

Comments

merlinofchaos’s picture

Status: Needs review » Fixed

Fixed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.