anki/qt/i18n/copy-qt-files

10 lines
211 B
Plaintext
Raw Normal View History

2020-01-02 22:59:00 +01:00
#!/bin/bash
set -e
2020-01-02 23:24:59 +01:00
out=../aqt_data/locale
2020-01-02 22:59:00 +01:00
mkdir -p $out
qtTranslations=$(python -c "from PyQt5.QtCore import *; print(QLibraryInfo.location(QLibraryInfo.TranslationsPath))")
2020-01-02 23:24:59 +01:00
rsync -a $qtTranslations/qt* $out