diff --git a/tablefield.module b/tablefield.module
index 73554c2..3d3fe72 100644
--- a/tablefield.module
+++ b/tablefield.module
@@ -27,6 +27,11 @@ function tablefield_theme() {
         'rows' => NULL,
       ),
     ),
+    'tablefield_rebuild_table_button' => array(
+      'arguments' => array(
+        'field_name' => NULL,
+      ),
+    ),
   );
 }
 
@@ -216,6 +221,13 @@ function tablefield_widget_info() {
 }
 
 /**
+ * Theme the label for the "Rebuild Table" button
+ */
+function theme_tablefield_rebuild_table_button($field_name) {
+  return t('Rebuild Table');
+}
+
+/**
  * Implementation of FAPI hook_elements().
  */
 function tablefield_elements() {
@@ -422,7 +434,7 @@ function tablefield_process($element, $edit, $form_state, $form) {
   );
   $element['tablefield']['rebuild'] = array(
     '#type' => 'button',
-    '#value' => t('Rebuild Table'),
+    '#value' => theme('tablefield_rebuild_table_button', $field['field_name']),
     '#attributes' => array('class' => 'tablefield-rebuild'),
   );
 
