diff --git a/modules/node/node.module b/modules/node/node.module
index e3775ca64dc..181e7a0cbd5 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -80,19 +80,23 @@ function node_help($path, $arg) {
switch ($path) {
case 'admin/help#node':
- $output = '
' . t('About') . '
';
- $output .= '' . t('The node module manages the creation, editing, deletion, and display of all content on your site.') . '
';
+ $output = '';
+ $output .= '' . t('About') . '
';
+ $output .= '' . t('The Node module manages the creation, editing, deletion, settings, and display of all site content. For more information, see the online handbook entry for Node module.', array('@node' => 'http://drupal.org/handbook/modules/node')) . '
';
$output .= '' . t('Uses') . '
';
$output .= '';
- $output .= '- ' . t('Publishing content') . '
';
- $output .= '- ' . t('When new content is created, the node module records basic information about the content item including the author, date of creation, and the type of content. It also tracks the publishing options which define whether or not the content is published, promoted to the front page of the site, and/or sticky at the top of content lists. Revision control of content edits is also available. Default settings can be configured for each type of content on your site.', array('@content-type' => url('admin/structure/types'))) . '
';
+ $output .= '- ' . t('Creating content') . '
';
+ $output .= '- ' . t('When new content is created, the Node module records basic information about the content, including the author, date of creation, and the Content type. It also manages the publishing options, which define whether or not the content is published, promoted to the front page of the site, and/or sticky at the top of content lists. Default settings can be configured for each type of content on your site.', array('@content-type' => url('admin/structure/types'))) . '
';
+ $output .= '- ' . t('Creating custom content types') . '
';
+ $output .= '- ' . t('The Node module gives users with the Administer content types permission the ability to create new content types in addition to the default ones already configured. Creating custom content types allows you the flexibility to add fields and configure default settings that suit the differing needs of various site content.', array('@field' => url('admin/help/field'))) . '
';
$output .= '- ' . t('Administering content') . '
';
- $output .= '- ' . t('The administrative content page allows you to review and manage your site content.', array('@content' => url('admin/content'))) . '
';
+ $output .= '- ' . t('The Content administration page allows you to review and bulk manage your site content.', array('@content' => url('admin/content'))) . '
';
+ $output .= '- ' . t('Creating revisions') . '
';
+ $output .= '- ' . t('The Node module also enables you to create multiple versions of any content, and revert to older versions using the Revision information settings.') . '
';
$output .= '- ' . t('User permissions') . '
';
- $output .= '- ' . t('The node module makes a number of permissions available for each content type, which may be set by role on the permissions page.', array('@permissions' => url('admin/settings/permissions'))) . '
';
- $output .= '
';
-
- return $output;
+ $output .= '' . t('The Node module makes a number of permissions available for each content type, which can be set by role on the permissions page.', array('@permissions' => url('admin/settings/permissions'))) . '';
+ $output .= '';
+ return $output;
case 'admin/content':
// Return a non-null value so that the 'more help' link is shown.
@@ -102,15 +106,16 @@ 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/' . $arg[3] . '/fields':
- return '' . t('This form lets you add, edit, and arrange fields within the %type content type.', array('%type' => node_type_get_name($arg[3]))) . '
';
+ 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 lets you configure how fields should be displayed when %type content is rendered in the following contexts.', array('%type' => node_type_get_name($arg[3]))) . '
';
+ 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 lets you configure how fields should be displayed when %type content is rendered in the following contexts.', array('%type' => node_type_get_name($arg[3]))) . '
';
+ 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 'node/%/revisions':
- return '' . t('The revisions let you track differences between multiple versions of your content.') . '
';
+ return '' . t('Revisions allow you to track differences between multiple versions of your content, and revert back to older versions.') . '
';
case 'node/%/edit':
$node = node_load($arg[1]);