diff options
author | Dries Buytaert <dries@buytaert.net> | 2011-05-17 17:22:38 -0700 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2011-05-17 17:22:38 -0700 |
commit | 596b011f7d4fa9b5536018ab862f473a73a70637 (patch) | |
tree | 1771608efbbf56c069012182a3ab5ff14ee2d681 /modules/node | |
parent | b7ad22b414187a3e5d0b45e5608404000a793fb4 (diff) | |
download | brdo-596b011f7d4fa9b5536018ab862f473a73a70637.tar.gz brdo-596b011f7d4fa9b5536018ab862f473a73a70637.tar.bz2 |
- Patch #1149002 by droplet, hansfn: 'Machine name' not translatable on the content type overview page .
Diffstat (limited to 'modules/node')
-rw-r--r-- | modules/node/content_types.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc index ab4b2e608..11ecc2c38 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; } |