diff --git a/tests/title.test b/tests/title.test
index b58635e..57a2a23 100644
--- a/tests/title.test
+++ b/tests/title.test
@@ -107,7 +107,7 @@ class TitleFieldReplacementTestCase extends DrupalWebTestCase {
             foreach ($entity_info['field replacement'] as $legacy_field => $info) {
               $path = $admin_path . '/replace/' . $legacy_field;
               $xpath = '//a[@href=:url and text()=:label]';
-              $args = array(':url' => url($path), ':label' => t('replace'));
+              $args = array(':url' => url($path), ':label' => t('Replace'));
               $targs = array('%legacy_field' => $legacy_field, '%entity_type' => $entity_type, '%bundle' => $bundle);
               $field_name = $info['field']['field_name'];
 
diff --git a/title.admin.inc b/title.admin.inc
index 743a46c..8c8e9c7 100644
--- a/title.admin.inc
+++ b/title.admin.inc
@@ -20,9 +20,9 @@ function title_form_field_ui_overview(&$form, &$form_state) {
       if (isset($field_replacement_info[$field_name])) {
         $form['fields'][$field_name]['field_replacement'] = array(
           '#type' => 'link',
-          '#title' => t('replace'),
+          '#title' => t('Replace'),
           '#href' => $admin_path . '/fields/replace/' . $field_name,
-          '#options' => array('attributes' => array('title' => t('Replace %field with a field instance.', array('%field' => $field_name)))),
+          '#options' => array('attributes' => array('title' => t('Replace %field with a customizable field instance that can be translated.', array('%field' => $field_name)))),
         );
       }
       else {
@@ -48,8 +48,8 @@ function title_field_replacement_form($form, $form_state, $entity_type, $bundle,
 
   $form['enabled'] = array(
     '#type' => 'checkbox',
-    '#title' => t('Replace %field with a field instance.', array('%field' => $field_name)),
-    '#description' => t('If this is enabled the %field legacy field will be replaced with a regular field and will disappear from the <em>Manage fields</em> page. It will get back if the replacing field instance is deleted.', array('%field' => $field_name)),
+    '#title' => t('Replace %field with a field instance', array('%field' => $field_name)),
+    '#description' => t('If this is enabled the %field will be replaced with a customizable field that can be translated.', array('%field' => $field_name)),
     '#default_value' => $enabled,
     '#disabled' => $enabled,
   );
diff --git a/title.core.inc b/title.core.inc
index c346717..9096044 100644
--- a/title.core.inc
+++ b/title.core.inc
@@ -39,7 +39,7 @@ function title_entity_info() {
         'field' => $field,
         'instance' => array(
           'label' => t('Title'),
-          'description' => t('A field replacing node title.'),
+          'description' => '',
         ) + $instance,
       ),
     ),
@@ -53,7 +53,7 @@ function title_entity_info() {
           'field' => $field,
           'instance' => array(
             'label' => t('Name'),
-            'description' => t('A field replacing taxonomy term name.'),
+            'description' => '',
           ) + $instance,
           'preprocess_key' => 'term_name',
         ),
@@ -64,7 +64,7 @@ function title_entity_info() {
           'instance' => array(
             'required' => FALSE,
             'label' => t('Description'),
-            'description' => t('A field replacing taxonomy term description.'),
+            'description' => '',
             'settings' => array(
               'text_processing' => 1,
             ),
@@ -87,7 +87,7 @@ function title_entity_info() {
           'field' => $field,
           'instance' => array(
             'label' => t('Subject'),
-            'description' => t('A field replacing comment subject.'),
+            'description' => '',
           ) + $instance,
           'preprocess_key' => 'title',
         ),
