From a75ff119fa98747a712339feb8c43a7fbe7d6bcb Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Wed, 13 Jan 2010 05:45:21 +0000 Subject: #678510 by matt2000 and jhodgdon: Fixed Field UI display fields page still says 'node' on it. --- modules/node/node.module | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'modules/node/node.module') diff --git a/modules/node/node.module b/modules/node/node.module index 1ba7b8513..3791ebf8f 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -101,14 +101,9 @@ function node_help($path, $arg) { case 'admin/structure/types/add': return '

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

'; - case 'admin/structure/types/manage/' . $arg[3] . '/fields': - return '

' . t('This form allows you to add, edit, and arrange fields within the %type content type.', array('%type' => node_type_get_name($arg[3]))) . '

'; - - case 'admin/structure/types/manage/' . $arg[3] . '/display': - return '

' . t('This form allows you to configure how fields should be displayed when %type content is rendered in the following contexts.', array('%type' => node_type_get_name($arg[3]))) . '

'; - - case 'admin/structure/types/manage/' . $arg[3] . '/display/' . $arg[5]: - return '

' . t('This form allows you to configure how fields should be displayed when %type content is rendered in the following contexts.', array('%type' => node_type_get_name($arg[3]))) . '

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

' . t('Content items can be displayed using different view modes: Teaser, Full content, Print, RSS, etc. Teaser is a short format that is typically used in lists of multiple content items. Full content is typically used when the content is displayed on its own page.') . '

' . + '

' . t('Here, you can define which fields are shown and hidden when %type content is displayed in each view mode, and define how the fields are displayed in each view mode.', array('%type' => node_type_get_name($arg[4]))) . '

'; case 'node/%/revisions': return '

' . t('Revisions allow you to track differences between multiple versions of your content, and revert back to older versions.') . '

'; @@ -204,7 +199,7 @@ function node_entity_info() { 'bundles' => array(), 'view modes' => array( 'full' => array( - 'label' => t('Full node'), + 'label' => t('Full content'), ), 'teaser' => array( 'label' => t('Teaser'), -- cgit v1.2.3