diff --git a/brightcove_field/brightcove_field.module b/brightcove_field/brightcove_field.module
index aba8774..dd5f15f 100644
--- a/brightcove_field/brightcove_field.module
+++ b/brightcove_field/brightcove_field.module
@@ -283,7 +283,7 @@ function brightcove_field_browser_validate($element, &$form_state) {
       // Matched ID, check if the video exists.
       $video = brightcove_video_load($id);
       if (!$video || (is_null(brightcove_video_cache_get($id)) && $video->id != $id)) {
-        form_error($element, t('%name: Found no valid video with that name. Please note that it might take several minutes after the video has been uploaded in Brightcove Studio to appear in the API.', array('%name' => t($field['widget']['label']))));
+        form_error($element, t('%name: Found no valid video with that name. Please note that it might take several minutes after the video has been uploaded in Brightcove Studio to appear in the API.', array('%name' => $element['#title'])));
       }
     } else {
       // Didn't match ID, try looking up the video text at BC.
@@ -298,10 +298,10 @@ function brightcove_field_browser_validate($element, &$form_state) {
       }
       if (count($result) > 1) {
         // This title is ambiguous.
-        form_error($element, t('%name: Video title %title matched more than one video. In case of doubt, use text "title [id:ID_OF_THE_VIDEO]"', array('%title', $value, '%name' => t($field['widget']['label']))));
+        form_error($element, t('%name: Video title %title matched more than one video. In case of doubt, use text "title [id:ID_OF_THE_VIDEO]"', array('%title', $value, '%name' => $element['#title'])));
       } else if (count($result) == 0) {
         // No video found.
-        form_error($element, t('%name: Found no valid video with that name. Please note that it might take several minutes after the video has been uploaded in Brightcove Studio to appear in the API.', array('%name' => t($field['widget']['label']))));
+        form_error($element, t('%name: Found no valid video with that name. Please note that it might take several minutes after the video has been uploaded in Brightcove Studio to appear in the API.', array('%name' => $element['#title'])));
       } else {
         $id = $result[0]->id;
       }
