summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-29 23:09:54 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-29 23:09:54 +0000
commit2203f74d54c86e70cf2f6e9a44df8161b6b6a88a (patch)
treed1b4bf913139f5d5b4ead9c9e53ed87c0a01bb9e
parent1fb7148854a866cf01112abf49a9c910bb281951 (diff)
downloadbrdo-2203f74d54c86e70cf2f6e9a44df8161b6b6a88a.tar.gz
brdo-2203f74d54c86e70cf2f6e9a44df8161b6b6a88a.tar.bz2
#99556 by RobRoy. Clean up content type editing field descriptions.
-rw-r--r--modules/node/content_types.inc4
1 files 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 <em>create content</em> page. It is recommended that this name consists only of lowercase letters, numbers, and <strong>spaces</strong>. 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 <em>create content</em> page. It is recommended that this name begins with a capital letter and consists only of letters, numbers, and <strong>spaces</strong>. 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 <em>create content</em> 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 <em>create content</em> 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 <em>create content</em> 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 <em>create content</em> page. This name must be unique to this content type.'),
);
}
else {