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

Added script to move files from launchpad to directory structure

Updated translations from launchpad (Thanks everyone who contributed!)
This commit is contained in:
azammitdcarf
2011-08-29 01:30:56 +00:00
parent aa3ab9df48
commit bff802a8da
27 changed files with 7478 additions and 1636 deletions

7
locale/mvlaunchpad.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
for f in `find ./ -iname 'quexs-*.po'`; do
BASE=`basename $f .po`
DIR=`dirname $f`
L=${BASE:6:2}
mv $f $L/LC_MESSAGES/$L.po
done