diff --git a/l10n_update.project.inc b/l10n_update.project.inc
index 71a3b3d..8891f01 100644
--- a/l10n_update.project.inc
+++ b/l10n_update.project.inc
@@ -189,9 +189,15 @@ function _l10n_update_project_info_list(&$projects, $list, $project_type, $disab
       $file->info['project'] = l10n_update_get_project_name($file);
     }
 
-    // If we still don't know the 'project', give up.
+    // If we still don't know the 'project', try 'l10n project'. If that 
+    // fails we give up.
     if (empty($file->info['project'])) {
-      continue;
+      if (isset($file->info['l10n project'])) {
+        $file->info['project'] = $file->info['l10n project'];
+      }
+      else {
+        continue;
+      }
     }
 
     // If we don't already know it, grab the change time on the .info file
