diff --git custom_search.module custom_search.module
index a9095aa..bc147e1 100644
--- custom_search.module
+++ custom_search.module
@@ -193,7 +193,7 @@ function custom_search_form_alter(&$form, &$form_state, $form_id) {
         }
         foreach (module_implements('search_info') as $module) {
           if ($module != 'node' && $name = module_invoke($module, 'search_info')) {
-            if (in_array($module, $others)) $options['o-' . $module] = $name['title'];
+            if (in_array($module, $others)) $options['o-' . $module] = t($name['title']);
           }
         }
         if (count($options)) {
@@ -491,4 +491,4 @@ function _custom_search_filter_keys($val) {
  */
 function custom_search_filter_array($value = FALSE) {
   return $value !== 0;
-}
\ No newline at end of file
+}
