--- entity_translation.orig.module	2012-11-21 13:27:35.000000000 +0100
+++ entity_translation.module	2013-03-19 11:12:44.000000000 +0100
@@ -803,6 +803,12 @@
     'entity_translation_language_tabs' => array(
       'render element' => 'element',
     ),
+    'entity_translation_overview' => array(
+      'variables' => array('elements' => NULL, 'header' => NULL),
+    ),
+    'entity_translation_overview_outdated' => array(
+      'variables' => array('message' => NULL),
+    ),
   );
 }
 
@@ -1514,6 +1520,25 @@
 }
 
 /**
+ * Theme wrapper for the entity translation language page.
+ */
+function theme_entity_translation_overview($variables){
+  $elements = $variables['elements'];
+  return theme('table', array(
+    'rows' => $elements,
+    'header' => $variables['header'],
+  ));
+}
+
+/**
+ * Theme wrapper for the entity translation language outdated traduction
+ */
+function theme_entity_translation_overview_outdated($variables){
+  $message = $variables['message'];
+  return ' - <span class="marker">' . $message . '</span>';
+}
+
+/**
  * Implements hook_form_FORM_ID_alter().
  *
  * Adds an option to enable field synchronization.
