16 lines
197 B
Bash
Executable File
16 lines
197 B
Bash
Executable File
#!/bin/sh
|
|
|
|
HOME=$PWD/$(dirname $0)
|
|
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
|