src/crypto.c: possible fix for memory leak related
[citadel.git] / webcit / po / create-pot.sh
1 #!/bin/bash
2
3 echo Updating webcit.pot from strings in the source code ...
4 xgettext \
5         --copyright-holder='The Citadel Project - http://www.citadel.org' \
6         -k_ \
7         -o webcit.pot \
8         ../src/*.c
9
10 for x in *.po
11 do
12         echo Merging webcit.pot into $x ...
13         msgmerge $x webcit.pot -o $x
14 done