15 lines
330 B
Bash
Executable File
15 lines
330 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Compileer de PO bestanden in de subdirectories
|
|
|
|
DIR=`dirname $0`
|
|
TALEN="nl en"
|
|
TEXTDOMAIN="di-secure"
|
|
|
|
for TAAL in $TALEN
|
|
do
|
|
echo "Compiling $TAAL..."
|
|
sed -e "s/
|
|
//g" < $DIR/$TAAL.po > $DIR/$TAAL/LC_MESSAGES/$TEXTDOMAIN.po
|
|
msgfmt -o $DIR/$TAAL/LC_MESSAGES/$TEXTDOMAIN.mo $DIR/$TAAL/LC_MESSAGES/$TEXTDOMAIN.po
|
|
done
|