Index: advanced_help.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/advanced_help/advanced_help.module,v
retrieving revision 1.24
diff -u -r1.24 advanced_help.module
--- advanced_help.module	15 Sep 2008 19:16:10 -0000	1.24
+++ advanced_help.module	5 Oct 2008 21:09:51 -0000
@@ -106,7 +106,7 @@
     drupal_not_found();
   }
 
-  $breadcrumb[] = advanced_help_l('Help', 'admin/advanced_help');
+  $breadcrumb[] = advanced_help_l(t('Help'), 'admin/advanced_help');
 
   if (!isset($_POST['form_id'])) {
     $keys = search_get_keys();
@@ -172,7 +172,7 @@
     advanced_help_get_topic_hierarchy($topics);
     $items = advanced_help_get_tree($topics, $topics[$module]['']['children']);
 
-    $breadcrumb[] = advanced_help_l('Help', 'admin/advanced_help');
+    $breadcrumb[] = advanced_help_l(t('Help'), 'admin/advanced_help');
 
     drupal_set_title(t('@module help index', array('@module' => advanced_help_get_module_name($module))));
     $output .= theme('item_list', $items);
@@ -200,7 +200,7 @@
         else {
          $name = t($module_name);
         }
-        $items[] = advanced_help_l($name, "admin/advanced_help/$module");
+        $items[] = advanced_help_l(t($name), "admin/advanced_help/$module");
       }
     }
 
@@ -231,7 +231,7 @@
   $items = array();
   foreach ($topic_ids as $info) {
     list($module, $topic) = $info;
-    $item = advanced_help_l($topics[$module][$topic]['title'], "help/$module/$topic");
+    $item = advanced_help_l(t($topics[$module][$topic]['title']), "help/$module/$topic");
     if (!empty($topics[$module][$topic]['children']) && ($max_depth == -1 || $depth < $max_depth)) {
       $item .= theme('item_list', advanced_help_get_tree($topics, $topics[$module][$topic]['children'], $max_depth, $depth + 1));
     }
@@ -371,10 +371,10 @@
       break;
     }
 
-    $breadcrumb[] = advanced_help_l($parent['title'], "help/$pmodule/$ptopic");
+    $breadcrumb[] = advanced_help_l(t($parent['title']), "help/$pmodule/$ptopic");
   }
 
-  $breadcrumb[] = advanced_help_l(advanced_help_get_module_name($pmodule), "admin/advanced_help/$pmodule");
+  $breadcrumb[] = advanced_help_l(t(advanced_help_get_module_name($pmodule)), "admin/advanced_help/$pmodule");
   $breadcrumb[] = advanced_help_l(t('Help'), "admin/advanced_help");
 
   $output = advanced_help_view_topic($module, $topic, $popup);
@@ -556,13 +556,13 @@
 
         $navigation .= '<div class="help-previous">';
         if ($prev) {
-          $navigation .= advanced_help_l('<< ' . $topics[$prev[0]][$prev[1]]['title'], "help/$prev[0]/$prev[1]");
+          $navigation .= advanced_help_l(t('<< @topic_title', array('@topic_title' => $topics[$prev[0]][$prev[1]]['title'])), "help/$prev[0]/$prev[1]");
         }
         $navigation .= '</div>';
 
         $navigation .= '<div class="help-next">';
         if ($next) {
-          $navigation .= advanced_help_l($topics[$next[0]][$next[1]]['title'] . ' >>', "help/$next[0]/$next[1]");
+          $navigation .= advanced_help_l(t('@topic_title >>', array('@topic_title' => $topics[$next[0]][$next[1]]['title'])), "help/$next[0]/$next[1]");
         }
         $navigation .= '</div>';
 
