Codebase list mirage / 3168df59-45c6-4189-b127-48086d4a0afd/main update-po
3168df59-45c6-4189-b127-48086d4a0afd/main

Tree @3168df59-45c6-4189-b127-48086d4a0afd/main (Download .tar.gz)

update-po @3168df59-45c6-4189-b127-48086d4a0afd/main

6d7aa27
 
 
 
 
 
 
 
 
 
 
 
 
#!/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
)