--- nodequeue.module.orig	2009-05-08 18:26:24.000000000 +0100
+++ nodequeue.module	2009-05-08 18:25:21.000000000 +0100
@@ -938,6 +938,13 @@
 
   $output = '<tr id="nodequeue-row-'. $node->position .'" class="nodequeue-row '. ($node->position % 2 ? 'odd' : 'even') .'">';
   $output .= '<td>'. l($node->title, "node/$node->nid") .'</td>';
+  
+  // @LEAFISH - show a language column
+  $result = db_query_range('SELECT language FROM {node} WHERE nid = %d', $node->nid, 0, 1);
+  $row = db_fetch_object($result);
+  $output .= '<td>'. $row->language .'</td>';
+  // end @LEAFISH
+
   $output .= '<td>'. theme('username', $node) .'</td>';
   $output .= '<td>'. format_date($node->created) .'</td>';
   $output .= '<td>'. $buttons .'</td>';
@@ -974,6 +981,11 @@
   $output .= '<thead>';
   $output .= '<tr>';
   $output .= '<th class="nodequeue-node">'. t('Node') .'</th>';
+
+  // @LEAFISH add language column
+  $output .= '<th class="nodequeue-lang">'. t('Language') .'</th>';
+  // end @LEAFISH
+
   $output .= '<th class="nodequeue-author">'. t('Author') .'</th>';
   $output .= '<th class="nodequeue-date">'. t('Date') .'</th>';
   $output .= '<th class="nodequeue-operation">'. t('Operation') .'</th>';
