Codebase list mirage / 8cf0df4 update-po
8cf0df4

Tree @8cf0df4 (Download .tar.gz)

update-po @8cf0df4raw · history · blame

#!/bin/sh
xgettext mirage.py
mv -f messages.po po/
(cd po
 for i in *.po
   do
   if [ "$i" = "messages.po" ]
     then
     continue
   fi
   msgmerge -U $i messages.po
 done
)