16 lines
201 B
Bash
Executable File
16 lines
201 B
Bash
Executable File
#!/bin/bash
|
|
|
|
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
|