10 lines
266 B
Bash
10 lines
266 B
Bash
#!/bin/sh
|
|
|
|
intltool-update --pot
|
|
msguniq --no-location tuxpaint.pot > temp.tmp && mv -f temp.tmp tuxpaint.pot
|
|
for i in *.po ; do
|
|
msgmerge $i tuxpaint.pot > temp.tmp && mv -f temp.tmp $i
|
|
done
|
|
cd ..
|
|
intltool-merge -d -u po tuxpaint.desktop.in tuxpaint.desktop
|
|
cd po
|