From 2203f74d54c86e70cf2f6e9a44df8161b6b6a88a Mon Sep 17 00:00:00 2001 From: Neil Drumm Date: Wed, 29 Nov 2006 23:09:54 +0000 Subject: #99556 by RobRoy. Clean up content type editing field descriptions. --- modules/node/content_types.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc index 93aeda4d5..b2ba37818 100644 --- a/modules/node/content_types.inc +++ b/modules/node/content_types.inc @@ -77,7 +77,7 @@ function node_type_form($type = NULL) { '#title' => t('Name'), '#type' => 'textfield', '#default_value' => $type->name, - '#description' => t('The human-readable name of this content type. This text will be displayed as part of the list on the create content page. It is recommended that this name consists only of lowercase letters, numbers, and spaces. The name must be unique to this content type.'), + '#description' => t('The human-readable name of this content type. This text will be displayed as part of the list on the create content page. It is recommended that this name begins with a capital letter and consists only of letters, numbers, and spaces. This name must be unique to this content type.'), '#required' => TRUE, ); @@ -88,7 +88,7 @@ function node_type_form($type = NULL) { '#default_value' => $type->type, '#maxlength' => 32, '#required' => TRUE, - '#description' => t('The machine-readable name of this content type. This text will be used for constructing the URL of the create content page for this content type. This name may consist of only of lowercase letters, numbers, and underscores. Dashes are not allowed. Underscores will be converted into dashes when constructing the URL of the create content page. The name must be unique to this content type.'), + '#description' => t('The machine-readable name of this content type. This text will be used for constructing the URL of the create content page for this content type. This name may consist of only of lowercase letters, numbers, and underscores. Dashes are not allowed. Underscores will be converted into dashes when constructing the URL of the create content page. This name must be unique to this content type.'), ); } else { -- cgit v1.2.3