Codebase list mirage / 98142ce update-po
98142ce

Tree @98142ce (Download .tar.gz)

update-po @98142ceraw · 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
)