### Eclipse Workspace Patch 1.0
#P l10n_server
Index: l10n_community/translate.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/l10n_server/l10n_community/Attic/translate.inc,v
retrieving revision 1.1.2.7.2.31
diff -u -r1.1.2.7.2.31 translate.inc
--- l10n_community/translate.inc	25 Jan 2010 20:43:32 -0000	1.1.2.7.2.31
+++ l10n_community/translate.inc	9 Feb 2010 07:49:14 -0000
@@ -525,9 +525,38 @@
   $labels[] = '';
   // Display the rest of the form in the last cell
   $row[] = array('data' => drupal_render($form), 'class' => 'last');
-  return theme('table', $labels, array($row), array('class' => 'l10n-server-filter'));
+ 
+
+  $output = '<div class="l10n-server-filter clear-block">';
+
+  $i = 0;
+  
+  foreach ($row as $filter) {
+      
+
+      $output .= '<div class="widget">';  
+      $output .= "<label>$labels[$i]</label>";
+
+  if (is_array($filter)) {
+    $filter = isset($filter['data']) ? $filter['data'] : '';
+  }
+
+   $output .= "<div>$filter</div>";
+   $output .= " </div>";
+   
+   $i++;
+
+    }
+ 
+  $output .= "</div>";
+  return $output;
+
 }
 
+
+
+
+
 /**
  * Theme function for l10n_community_translate_form.
  */
Index: l10n_community/l10n_community.css
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/l10n_server/l10n_community/Attic/l10n_community.css,v
retrieving revision 1.1.2.10.2.6
diff -u -r1.1.2.10.2.6 l10n_community.css
--- l10n_community/l10n_community.css	10 Sep 2009 09:15:03 -0000	1.1.2.10.2.6
+++ l10n_community/l10n_community.css	9 Feb 2010 07:49:14 -0000
@@ -206,3 +206,16 @@
 .l10n-community-string .original {
   display:none;
 }
+.l10n-server-filter label{
+  font-weight:bold;
+  color:#003150;
+}
+.l10n-server-filter .widget{
+  float:left; 
+  padding:0 1em 0 0; 
+  height:86px;
+}
+
+.l10n-server-filter .form-item {
+  margin-top:0
+}
\ No newline at end of file
