--- ./fblikebutton.admin.inc
+++ ./fblikebutton.admin.inc
@@ -73,8 +73,8 @@
   $form['fblikebutton_dynamic_appearance']['fblikebutton_show_faces'] = array(
     '#type' => 'select',
     '#title' => t('Show faces in the box?'),
-    '#options' => array('show' => t('Show faces'), 'hide' => t('Do not show faces')),
-    '#default_value' => variable_get('fblikebutton_show_faces', 'show'),
+    '#options' => array('true' => t('Show faces'), 'false' => t('Do not show faces')),
+    '#default_value' => variable_get('fblikebutton_show_faces', 'true'),
     '#description' => t('Show profile pictures below the button. Only works if <em>Layout style</em> (found above) is set to <em>Standard</em> (otherwise, value is ignored).'),
   );
   $form['fblikebutton_dynamic_appearance']['fblikebutton_action'] = array(
@@ -160,8 +160,8 @@
   $form['fblikebutton_static_block_appearance']['fblikebutton_bl_show_faces'] = array(
     '#type' => 'select',
     '#title' => t('Display faces in the box'),
-    '#options' => array('show' => t('Show faces'), 'hide' => t('Do not show faces')),
-    '#default_value' => variable_get('fblikebutton_bl_show_faces', 'show'),
+    '#options' => array('true' => t('Show faces'), 'false' => t('Do not show faces')),
+    '#default_value' => variable_get('fblikebutton_bl_show_faces', 'true'),
     '#description' => t('Show profile pictures below the button. Only works with Standard layout'),
   );
   $form['fblikebutton_static_block_appearance']['fblikebutton_bl_action'] = array(

--- ./fblikebutton.module
+++ ./fblikebutton.module
@@ -220,8 +220,8 @@
   $font = $conf['font'];
 //  $send = $conf['send'];
   $other_css = $conf['other_css'];
-  $language = $conf['language'];
-  $params = "href={$webpage_to_like}&layout={$layout}&show_faces={$show_faces}&width={$width}px&font={$font}&height={$height}px&action={$action}&colorscheme={$colorscheme}&locale={$language}";
+  $language = ($conf['language']) ? '&language=' . $conf['language'] : '';
+  $params = "href={$webpage_to_like}&layout={$layout}&show_faces={$show_faces}&width={$width}&font={$font}&height={$height}&action={$action}&colorscheme={$colorscheme}{$language}";
   $src = htmlentities($params);
   $output = '<iframe src="https://www.facebook.com/plugins/like.php?' . $src . '" scrolling="no" frameborder="0" style="border: none; overflow: hidden; width: ' . $width . 'px; height: ' . $height . 'px;' . $other_css . '" allowTransparency="true"></iframe>';
   return $output;
