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

Fix issue with more than 2 character long locale code

Updated translations (thank you!)
This commit is contained in:
Adam Zammit
2016-10-25 15:18:26 +11:00
parent 0849f7e936
commit bd98a4a8f0
47 changed files with 6541 additions and 1948 deletions

View File

@@ -2,6 +2,8 @@
for f in `find ./ -iname 'quexs-*.po'`; do
BASE=`basename $f .po`
DIR=`dirname $f`
L=${BASE:6:2}
L=${BASE:6}
L=${L,,}
L=${L/_/-}
mv $f $L/LC_MESSAGES/$L.po
done