Translate invitation and (un)subscription confirmation subjects.
[mailman.git] / generate_mo.sh
blobc6b8cea002331a607060880bf467597b00a3b294
1 #!/bin/bash
3 # This script generates .mo files from all the .po files in the source.
5 echo 'Generating mo files for GNU Mailman ...'
6 for file in `find -name 'mailman.po'`
7 do
8 echo $file
9 msgfmt $file -o ${file/po/mo} -v
10 done