diff --git a/includes/nodequeue.admin.inc b/includes/nodequeue.admin.inc
index 7946a5b..aec032c 100644
--- a/includes/nodequeue.admin.inc
+++ b/includes/nodequeue.admin.inc
@@ -28,6 +28,11 @@ function nodequeue_admin_settings($form, &$form_state) {
     '#default_value' => variable_get('nodequeue_autocomplete_limit', 10),
     '#description' => t('Number of node titles to show in the autocomplete search results.'),
   );
+  $form['nodequeue_autocomplete_show_lang'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Print the node language on autocomplete results'),
+    '#default_value' => variable_get('nodequeue_autocomplete_show_lang', 0),
+  );
   $form['nodequeue_view_per_queue'] = array(
     '#type' => 'checkbox',
     '#title' => t('Automatically create one view per queue'),
diff --git a/nodequeue.module b/nodequeue.module
index 0b8279a..c2131e1 100644
--- a/nodequeue.module
+++ b/nodequeue.module
@@ -2027,6 +2027,7 @@ function nodequeue_api_subqueues(&$queue, $node) {
  */
 function nodequeue_api_autocomplete($queue, $subqueue, $string) {
   $matches = array();
+  $show_lang = variable_get('nodequeue_autocomplete_show_lang', false);
   if (empty($string)) {
     return $matches;
   }
@@ -2040,6 +2041,10 @@ function nodequeue_api_autocomplete($queue, $subqueue, $string) {
     $query->condition('n.type', $queue->types, 'IN');
   }
 
+  if ($show_lang) {
+    $query->fields('n', array('language'));
+  }
+
   global $user;
   if (!user_access('administer nodes', $user)) {
     $query->condition(db_or()->condition('n.status', 1)->condition('n.uid', $user->uid));
@@ -2075,7 +2080,14 @@ function nodequeue_api_autocomplete($queue, $subqueue, $string) {
 
   foreach ($result as $node) {
     $id = nodequeue_get_content_id($queue, $node);
-    $matches[$node->nid] = check_plain($node->title) . " [nid: $id]";
+    if ($show_lang) {
+      $language = check_plain($node->language);
+      $text = "({$language}) ". check_plain($node->title) . " [nid: $id]";
+    }
+    else {
+      $text = check_plain($node->title) . " [nid: $id]";
+    }
+    $matches[$node->nid] = $text;
   }
 
   return $matches;
