RELEASE 1.1.0

This commit is contained in:
Deon George
2009-06-30 20:46:00 +10:00
parent a08bc4e9e1
commit dd581eb5c8
191 changed files with 25012 additions and 10177 deletions

15
tools/po/make_mo_all Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
HOME=$PWD
cd ../../locale
for i in $(ls -1); do
if [ $i == 'CVS' ]; then
continue;
else
echo Processing: $i
cd $i/LC_MESSAGES
$HOME/make_mo
cd ../..
fi
done