]> git.deb.at Git - deb/packages.git/blobdiff - cron.d/500update_po
Initial Polish translation of sections file.
[deb/packages.git] / cron.d / 500update_po
index 89f5452b68013e2ace9c8e192ffa1e2260b7198e..5a84ea9bfb018a20b7deb4b2e39de7158d5d29c1 100755 (executable)
@@ -31,8 +31,9 @@ templates/html/error.tmpl
 templates/html/filelist.tmpl
 templates/html/foot.tmpl
 templates/html/head.tmpl
-templates/html/index.tmpl
-templates/html/menu.inc
+templates/html/homepage.tmpl
+templates/html/index_head.tmpl
+templates/html/index_foot.tmpl
 templates/html/messages.tmpl
 templates/html/newpkg.tmpl
 templates/html/search.tmpl
@@ -40,9 +41,11 @@ templates/html/search_contents.tmpl
 templates/html/show.tmpl
 templates/html/suite_index.tmpl
 templates/html/tag_index.tmpl
+templates/html/util.inc
 templates/rfc822/search.tmpl
 templates/rss/newpkg.tmpl
-templates/txt/index.tmpl
+templates/txt/index_head.tmpl
+templates/txt/index_foot.tmpl
 "
 podomains="pdo templates sections langs debtags"
 
@@ -77,7 +80,7 @@ done
 for domain in ${podomains}
 do
   perl -p -i -e "s,^#:\s*\Q${topdir}\E,#: .,go" ${domain}.pot.new
-  if [ ! -f ${domain}.pot.new ] || diff -I"POT-Creation-Date" -q ${domain}.pot.new ${domain}.pot >/dev/null 2>&1
+  if [ ! -f ${domain}.pot.new ] || diff -I"POT-Creation-Date" -I"^#: " -q ${domain}.pot.new ${domain}.pot >/dev/null 2>&1
   then
       echo "${domain}.pot unchanged"
       rm ${domain}.pot.new
@@ -96,3 +99,15 @@ do
       done
   fi
 done
+
+# print statistics
+for lang in ${polangs}
+do
+  echo
+  echo "Statistics about $lang:"
+  for po in *.${lang}.po
+  do
+    echo $po:
+    LANG=C msgfmt --statistics --check-format -o- $po >/dev/null
+  done
+done