diff --git a/core/modules/node/node.module b/core/modules/node/node.module index d9a365d1f13..d01b8ae1574 100644 --- a/core/modules/node/node.module +++ b/core/modules/node/node.module @@ -120,7 +120,8 @@ function node_help($path, $arg) { return '

' . t('Individual content types can have different fields, behaviors, and permissions assigned to them.') . '

'; case 'admin/structure/types/manage/%/form-display': - return '

' . t('Content items can be edited using different form modes. Here, you can define which fields are shown and hidden when %type content is edited in each form mode, and define how the field form widgets are displayed in each form mode.', array('%type' => node_type_get_label($arg[4]))) . '

' ; + $type = entity_load('node_type', $arg[4]); + return '

' . t('Content items can be edited using different form modes. Here, you can define which fields are shown and hidden when %type content is edited in each form mode, and define how the field form widgets are displayed in each form mode.', array('%type' => $type->label())) . '

' ; case 'admin/structure/types/manage/%/display': $type = entity_load('node_type', $arg[4]);