Index: node.module =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.module,v retrieving revision 1.827 diff -u -r1.827 node.module --- node.module 4 Jun 2007 16:46:48 -0000 1.827 +++ node.module 5 Jun 2007 12:25:48 -0000 @@ -3053,7 +3053,7 @@ $form['body'] = array( '#type' => 'textarea', - '#title' => check_plain($label), + '#title' => check_plain(t($label)), '#default_value' => $include ? $node->body : ($node->teaser . $node->body), '#rows' => 20, '#required' => ($word_count > 0)); @@ -3072,7 +3072,7 @@ if ($type->has_title) { $form['title'] = array( '#type' => 'textfield', - '#title' => check_plain($type->title_label), + '#title' => check_plain(t($type->title_label)), '#required' => TRUE, '#default_value' => $node->title, '#weight' => -5,