ignore commented lines in the translation
diff --git a/common.php b/common.php
index 1028383..a66d36e 100644
--- a/common.php
+++ b/common.php
@@ -58,6 +58,9 @@
                 $thisphrase['notes'][] = $matches[1];
             }
         }
+        elseif (preg_match("/^ *#/", $line, $matches)) {
+            continue;
+        }
         elseif ($pos == 'phrase' && preg_match("/^([^:]+): ?(.*)$/", $line, $matches)) {
             $subs = explode(',' , $matches[1]);
             foreach($subs as $sub) {