This repository has been archived on 2025-12-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
yachat/src/yapsi_qt_translations.sh

16 lines
269 B
Bash
Raw Normal View History

2025-12-25 01:37:49 +05:00
#!/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