diff --git a/faq.install b/faq.install
index 33b59b4..0c4b2cd 100644
--- a/faq.install
+++ b/faq.install
@@ -83,12 +83,18 @@
  * Inserts the FAQ module's schema in the SQL database.
  */
 function faq_install() {
+  $t = get_t();
   variable_set('node_type_faq', array('status'));
-
+  
   // Ensure the FAQ node type is available.
   node_types_rebuild();
   $types = node_type_get_types();
   node_add_body_field($types['faq']);
+  
+  // Change the default label on the body field.
+  $body_instance = field_info_instance('node', 'body', 'faq');
+  $body_instance['label']  = $t('Answer');
+  field_update_instance($body_instance);
 }
 
 /**
