diff --git a/title.admin.inc b/title.admin.inc index 3cc7d24..8393858 100644 --- a/title.admin.inc +++ b/title.admin.inc @@ -20,7 +20,7 @@ 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('Convert to field'), '#href' => $admin_path . '/fields/replace/' . $field_name, '#options' => array('attributes' => array('title' => t('Replace %field with a field instance.', array('%field' => $field_name)))), ); @@ -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 Manage fields 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 current %field 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 db8a3b1..d394584 100644 --- a/title.core.inc +++ b/title.core.inc @@ -34,7 +34,7 @@ function title_entity_info() { 'field' => $field, 'instance' => array( 'label' => t('Title'), - 'description' => t('A field replacing node title.'), + 'description' => t('A field replacing the node title.'), ) + $instance, ), ), @@ -47,7 +47,7 @@ function title_entity_info() { 'field' => $field, 'instance' => array( 'label' => t('Name'), - 'description' => t('A field replacing taxonomy term name.'), + 'description' => t('A field replacing the taxonomy term name.'), ) + $instance, ), 'description' => array( @@ -57,7 +57,7 @@ function title_entity_info() { 'instance' => array( 'required' => FALSE, 'label' => t('Description'), - 'description' => t('A field replacing taxonomy term description.'), + 'description' => t('A field replacing the taxonomy term description.'), 'settings' => array( 'text_processing' => 1, ), @@ -80,7 +80,7 @@ function title_entity_info() { 'field' => $field, 'instance' => array( 'label' => t('Subject'), - 'description' => t('A field replacing comment subject.'), + 'description' => t('A field replacing the comment subject.'), ) + $instance, ), ),