diff --git a/sites/all/modules/contrib/langcheck/langcheck.theme.inc b/sites/all/modules/contrib/langcheck/langcheck.theme.inc
index 52bea46..e565823 100644
--- a/sites/all/modules/contrib/langcheck/langcheck.theme.inc
+++ b/sites/all/modules/contrib/langcheck/langcheck.theme.inc
@@ -23,6 +23,7 @@
  */
 function theme_langcheck_check_batch_result($variables) {
   drupal_add_css(drupal_get_path('module', 'langcheck') . '/langcheck.css');
+  $system_info = system_get_info('module');
   $table = array(
     'header' => array(t('Module')),
     'rows' => array(),
@@ -40,7 +41,7 @@ function theme_langcheck_check_batch_result($variables) {
     $row = array();
     // Column: Module name.
     $row[] = array(
-      'data'   => $module,
+      'data'   => $system_info[$module]['name'] . ' (' . $module . ')',
       'header' => TRUE,
       'class'  => array(0 => (($excluded_module) ? 'excluded' : 'langcheck-state-' . floor($detail['state'] / 0.1))),
       'title'  => t('Total: @total, untranslated: @untranslated', array('@total' => $detail['total'], '@untranslated' => $detail['untranslated'])),
