--- trunk/sites/all/modules/contrib/timeago/timeago.module (revision 472)
+++ trunk/sites/all/modules/contrib/timeago/timeago.module (revision 473)
@@ -18,8 +18,14 @@
  */
 function timeago_format_date($timestamp, $date = NULL) {
   $path = drupal_get_path('module', 'timeago');
+  global $language;
   drupal_add_js($path .'/jquery.timeago.js');
-  drupal_add_js($path .'/timeago.js');
+  if(file_exists($path .'/jquery.timeago.'.$language->language.'.js')){
+    drupal_add_js($path .'/jquery.timeago.base.js');
+    drupal_add_js($path .'/jquery.timeago.'.$language->language.'.js');
+  } else {
+    drupal_add_js($path .'/timeago.js');
+  }
   if (!isset($date)) {
     $date = format_date($timestamp);
   }
