Codebase list mirage / 963289c update-po
963289c

Tree @963289c (Download .tar.gz)

update-po @963289craw · 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
)