mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
10 lines
177 B
Bash
Executable File
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
|