2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00
Files
CATI_Tool/locale/mvlaunchpad.sh
Adam Zammit bd98a4a8f0 Fix issue with more than 2 character long locale code
Updated translations (thank you!)
2016-10-25 15:18:26 +11:00

10 lines
177 B
Bash
Executable File

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