2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Updated translations from Launchpad

Added updatemo.sh script for updating mo files a bit faster
This commit is contained in:
azammitdcarf
2010-09-30 01:59:59 +00:00
parent 734ad7787e
commit 33dbbf8342
23 changed files with 21852 additions and 9509 deletions

6
locale/updatemo.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
for f in `find ./ -iname *.po`; do
BASE=`basename $f .po`
DIR=`dirname $f`
msgfmt $f -o $DIR/$BASE.mo
done