diff options
Diffstat (limited to 'modules/page/page.module')
-rw-r--r-- | modules/page/page.module | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/page/page.module b/modules/page/page.module index a6f81a100..6e33db148 100644 --- a/modules/page/page.module +++ b/modules/page/page.module @@ -4,7 +4,8 @@ $GLOBALS["format"] = array(0 => "HTML", 1 => "PHP", 2 => "text"); function page_node($field) { - $info = array("name" => "static page"); + $info["name"] = t("static page"); + $info["description"] = t("If you just want to add a static page with a link in the menu to your site, this would be the best choice. Unlike a story, a page by-passes the submission queue."); return $info[$field]; } |