diff --git a/components/number.inc b/components/number.inc
index 9e837a0..00bc7ab 100644
--- a/components/number.inc
+++ b/components/number.inc
@@ -81,7 +81,7 @@ function _webform_edit_number($component) {
   );
   $form['display']['field_prefix'] = array(
     '#type' => 'textfield',
-    '#title' => t('Label placed to the left of the field'),
+    '#title' => t('Prefix text placed to the left of the field'),
     '#default_value' => $component['extra']['field_prefix'],
     '#description' => t('Examples: $, #, -.'),
     '#size' => 20,
@@ -91,7 +91,7 @@ function _webform_edit_number($component) {
   );
   $form['display']['field_suffix'] = array(
     '#type' => 'textfield',
-    '#title' => t('Label placed to the right of the field'),
+    '#title' => t('Postfix text placed to the right of the field'),
     '#default_value' => $component['extra']['field_suffix'],
     '#description' => t('Examples: lb, kg, %.'),
     '#size' => 20,
diff --git a/components/textfield.inc b/components/textfield.inc
index 0e45905..11e11ab 100644
--- a/components/textfield.inc
+++ b/components/textfield.inc
@@ -69,7 +69,7 @@ function _webform_edit_textfield($component) {
   );
   $form['display']['field_prefix'] = array(
     '#type' => 'textfield',
-    '#title' => t('Label placed to the left of the textfield'),
+    '#title' => t('Prefix text placed to the left of the textfield'),
     '#default_value' => $component['extra']['field_prefix'],
     '#description' => t('Examples: $, #, -.'),
     '#size' => 20,
@@ -79,7 +79,7 @@ function _webform_edit_textfield($component) {
   );
   $form['display']['field_suffix'] = array(
     '#type' => 'textfield',
-    '#title' => t('Label placed to the right of the textfield'),
+    '#title' => t('Postfix text placed to the right of the textfield'),
     '#default_value' => $component['extra']['field_suffix'],
     '#description' => t('Examples: lb, kg, %.'),
     '#size' => 20,
