initial commit
This commit is contained in:
commit
9d20827c46
2469 changed files with 470994 additions and 0 deletions
15
src/yapsi_qt_translations.sh
Normal file
15
src/yapsi_qt_translations.sh
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
copy_qt_translations() {
|
||||
qtdir=$1
|
||||
for lang in "ru"; do
|
||||
file="$qtdir/translations/qt_$lang.qm"
|
||||
if test -a $file; then
|
||||
echo "Copying '$file'..."
|
||||
cp $file ../lang
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
# copy_qt_translations "/usr/share/qt4"
|
||||
# copy_qt_translations $QTDIR
|
||||
Reference in a new issue