~twitter-scope-team/twitter-scope/trunk

5 by Chris Wayne
CMake + i18n
1
#!/bin/bash
2
set -e
3
93 by Kyle Nitzsche
update source tree for translations
4
POT="twitter.pot"
5 by Chris Wayne
CMake + i18n
5
6
pos=$(ls | grep \.po$)
7
8
for po in $pos; do
9
    msgmerge -o $po.tmp $po $POT
10
    mv $po.tmp $po
11
done
12
13
exit 0
14