diff options
Diffstat (limited to 'modules/page.module')
-rw-r--r-- | modules/page.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/page.module b/modules/page.module index acc4bc6be..3f59513d3 100644 --- a/modules/page.module +++ b/modules/page.module @@ -144,9 +144,9 @@ function page_form(&$node, &$help, &$error) { $output .= implode("", taxonomy_node_form("page", $node)); } - $output .= form_textarea("Body", "body", $node->body, 60, 20); - $output .= form_textfield("Navigation link header", "link", $node->link, 60, 64, "To make the page show up on the navigation links enter the name of the link, otherwise leave blank."); - $output .= form_select("Type", "format", $node->format, array(0 => "HTML / text", 1 => "PHP")); + $output .= form_textarea(t("Body"), "body", $node->body, 60, 20); + $output .= form_textfield(t("Navigation link header"), "link", $node->link, 60, 64, t("To make the page show up on the navigation links enter the name of the link, otherwise leave blank.")); + $output .= form_select(t("Type"), "format", $node->format, array(0 => "HTML / text", 1 => "PHP")); return $output; } |