diff --git a/modules/field_ui/field_ui.admin.inc b/modules/field_ui/field_ui.admin.inc
index b594fac..cd3d627 100644
--- a/modules/field_ui/field_ui.admin.inc
+++ b/modules/field_ui/field_ui.admin.inc
@@ -351,13 +351,13 @@ function field_ui_field_overview_form($form, &$form_state, $entity_type, $bundle
       ),
       'type' => array(
         '#type' => 'link',
-        '#title' => t($field_types[$field['type']]['label']),
+        '#title' => $field_types[$field['type']]['label'],
         '#href' => $admin_field_path . '/field-settings',
         '#options' => array('attributes' => array('title' => t('Edit field settings.'))),
       ),
       'widget_type' => array(
         '#type' => 'link',
-        '#title' => t($widget_types[$instance['widget']['type']]['label']),
+        '#title' => $widget_types[$instance['widget']['type']]['label'],
         '#href' => $admin_field_path . '/widget-type',
         '#options' => array('attributes' => array('title' => t('Change widget type.'))),
       ),
