diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc
index ab4b2e6..11ecc2c 100644
--- a/modules/node/content_types.inc
+++ b/modules/node/content_types.inc
@@ -69,7 +69,7 @@ function theme_node_admin_overview($variables) {
   $type = $variables['type'];
 
   $output = check_plain($name);
-  $output .= ' <small> (Machine name: ' . check_plain($type->type) . ')</small>';
+  $output .= ' <small>' . t('(Machine name: @type)', array('@type' => $type->type)) . '</small>';
   $output .= '<div class="description">' . filter_xss_admin($type->description) . '</div>';
   return $output;
 }
