### Eclipse Workspace Patch 1.0
#P Archive
Index: archive.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/archive/Attic/archive.inc,v
retrieving revision 1.1.2.12
diff -u -r1.1.2.12 archive.inc
--- archive.inc	10 Nov 2007 19:08:13 -0000	1.1.2.12
+++ archive.inc	13 Nov 2007 17:01:48 -0000
@@ -26,10 +26,10 @@
     $title = t('Archive');
     $month_names = _get_month_names();
     if ($day) {
-      $title .= ' - '. t($month_names[$month]) .' '. $day .', '. $year;
+      $title .= ' - '. $month_names[$month] .' '. $day .', '. $year;
     }
     else if ($month) {
-      $title .= ' - '. t($month_names[$month]) .' '. $year;
+      $title .= ' - '. $month_names[$month] .' '. $year;
     }
     else if ($year) {
       $title .= ' - '. $year;
@@ -65,7 +65,7 @@
 }
 
 function _get_month_names(){
-  return array('', 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
+  return array('', t('Jan'), t('Feb'), t('Mar'), t('Apr'), t('May'), t('Jun'), t('Jul'), t('Aug'), t('Sep'), t('Oct'), t('Nov'), t('Dec'));
 }
 
 /**
