diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-13 05:45:21 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-13 05:45:21 +0000 |
commit | a75ff119fa98747a712339feb8c43a7fbe7d6bcb (patch) | |
tree | b2e0d3156e0cd398a7af9513198062b073ec6825 /modules/node/node.module | |
parent | 9d40c10c2add9604139cb4130ed7854bba06cd8a (diff) | |
download | brdo-a75ff119fa98747a712339feb8c43a7fbe7d6bcb.tar.gz brdo-a75ff119fa98747a712339feb8c43a7fbe7d6bcb.tar.bz2 |
#678510 by matt2000 and jhodgdon: Fixed Field UI display fields page still says 'node' on it.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 13 |
1 files changed, 4 insertions, 9 deletions
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 '<p>' . t('Individual content types can have different fields, behaviors, and permissions assigned to them.') . '</p>'; - case 'admin/structure/types/manage/' . $arg[3] . '/fields': - return '<p>' . t('This form allows you to add, edit, and arrange fields within the %type content type.', array('%type' => node_type_get_name($arg[3]))) . '</p>'; - - case 'admin/structure/types/manage/' . $arg[3] . '/display': - return '<p>' . 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]))) . '</p>'; - - case 'admin/structure/types/manage/' . $arg[3] . '/display/' . $arg[5]: - return '<p>' . 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]))) . '</p>'; + case 'admin/structure/types/manage/%/display': + return '<p>' . t('Content items can be displayed using different view modes: Teaser, Full content, Print, RSS, etc. <em>Teaser</em> is a short format that is typically used in lists of multiple content items. <em>Full content</em> is typically used when the content is displayed on its own page.') . '</p>' . + '<p>' . 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]))) . '</p>'; case 'node/%/revisions': return '<p>' . t('Revisions allow you to track differences between multiple versions of your content, and revert back to older versions.') . '</p>'; @@ -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'), |