diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-10-31 17:57:49 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-10-31 17:57:49 +0000 |
commit | a1652efe0e31b54875c39554d69d53c6fc68ee5f (patch) | |
tree | ae2c7a99fc80924007c81101732d42c27870f7e7 /modules/node | |
parent | 03e2ec64ab00cfdd911496885387eafe0cf31734 (diff) | |
download | brdo-a1652efe0e31b54875c39554d69d53c6fc68ee5f.tar.gz brdo-a1652efe0e31b54875c39554d69d53c6fc68ee5f.tar.bz2 |
- Patch #614396 by lisarex: clarify UI text on page for adding new content types.
Diffstat (limited to 'modules/node')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index faa3684a4..1b3f500e8 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -90,7 +90,7 @@ function node_help($path, $arg) { return ' '; // Return a non-null value so that the 'more help' link is shown. case 'admin/structure/types/add': - return '<p>' . t('Each piece of content is of a specific content type. Each <em>content type</em> can have different fields, behaviors, and permissions assigned to it.') . '</p>'; + return '<p>' . t('Individual content types can have different fields, behaviors, and permissions assigned to it.') . '</p>'; case 'admin/structure/types/manage/' . $arg[3] . '/fields': return '<p>' . t('This form lets you add, edit, and arrange fields within the %type content type.', array('%type' => node_type_get_name($arg[3]))) . '</p>'; |