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
Comment #1
merlinofchaos commentedFixed.