root/tags/omega-1.0.0-rc3/tools/updateToPOT

Revision 773, 343 bytes (checked in by raphael, 1 year ago)

Dropped the include/security code
Updated Ubuntu config files

  • Property svn:executable set to *
Line 
1 #!/bin/sh
2
3 if [ ! -d language-files ]; then
4         if [ ! -d ../language-files ]; then
5             echo 'Neither language-files nor ../language-files are valid directories!'
6             exit 1
7         else
8             cd ../language-files
9         fi
10 else
11     cd language-files
12 fi
13
14
15
16 for i in *.po; do
17         echo $i
18         msgmerge -U $i ispCP.pot
19 done
Note: See TracBrowser for help on using the browser.