--- archive.inc	Thu Aug 30 22:14:22 2007
+++ archive.inc	Sun Sep 02 15:29:36 2007
@@ -422,7 +422,7 @@
   foreach ($date->years as $year) {
     $all_count += $year;
   }
-  $output .= '<li'. ($date->year?'':' class="selected"') .'>'. l('All', 'archive', array('title' => format_plural($all_count, '1 post', '@count posts'))) ."</li>\n";
+  $output .= '<li'. ($date->year?'':' class="selected"') .'>'. l(t('All'), 'archive', array('title' => format_plural($all_count, '1 post', '@count posts'))) ."</li>\n";
   for ($year = min($all_years); $year <= max($all_years); $year++) {
     $class = '';
     if ($year == $date->year) {
@@ -451,7 +451,7 @@
     $all_count += $month;
   }
   
-  $output .= '<li'. ($date->month?'':' class="selected"') .'>'. l('All', _archive_url($type, $date, $date->year), array('title' => format_plural($all_count, '1 post', '@count posts'))) ."</li>\n";
+  $output .= '<li'. ($date->month?'':' class="selected"') .'>'. l(t('All'), _archive_url($type, $date, $date->year), array('title' => format_plural($all_count, '1 post', '@count posts'))) ."</li>\n";
   $curr_month = date('n', time());
   $curr_year = date('Y', time());
   foreach (range(1, 12) as $month) {
@@ -464,7 +464,7 @@
       $class = ' class="future"';
     }
     $month_names = array('', 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
-    $output .= "<li$class>". ($posts > 0 ? l($month_names[$month], _archive_url($type, $date, 0, $month), array('title' => format_plural($posts, "1 post", "@count posts"))) : $month_names[$month]) ."</li>\n";
+    $output .= "<li$class>". ($posts > 0 ? l(t($month_names[$month]), _archive_url($type, $date, 0, $month), array('title' => format_plural($posts, "1 post", "@count posts"))) : t($month_names[$month])) ."</li>\n";
   }
   $output .= "</ul>\n";
   return $output;
@@ -488,7 +488,7 @@
     $all_count += $day;
   }
   
-  $output .= '<li'. ($date->day?'':' class="selected"') .'>'. l('All', _archive_url($type, $date, $date->year, $date->month), array('title' => format_plural($all_count, '1 post', '@count posts'))) ."</li>\n";
+  $output .= '<li'. ($date->day?'':' class="selected"') .'>'. l(t('All'), _archive_url($type, $date, $date->year, $date->month), array('title' => format_plural($all_count, '1 post', '@count posts'))) ."</li>\n";
   $curr_month = date('n', time());
   $curr_year = date('Y', time());
   $curr_day = date('j', time());
@@ -524,7 +524,7 @@
     $all_count += $t['count'];
   }
   
-  $output .= '<li'. ($type != 'all'?'':' class="selected"') .'>'. l('All', _archive_url('all', $date), array('title' => format_plural($all_count, '1 post', '@count posts'))) ."</li>\n";
+  $output .= '<li'. ($type != 'all'?'':' class="selected"') .'>'. l(t('All'), _archive_url('all', $date), array('title' => format_plural($all_count, '1 post', '@count posts'))) ."</li>\n";
   foreach ($types_count as $ft_key => $ft_value) {
     if (!$ft_value['count']) {
       continue;
