* Fixed a multiselect bug in the mailbox view. Ctrl-click was selecting a message...
[citadel.git] / webcit / po / create-pot.sh
blobbb918d37318b4503eda13775f364542aae20ed99
1 #!/bin/bash
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 ../*.c ../static/t/*.html
10 for x in *.po
12 echo Merging webcit.pot into $x ...
13 msgmerge $x webcit.pot -o $x
14 done