10 lines
220 B
Plaintext
10 lines
220 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
out=../anki-qt/aqt_data/locale
|
||
|
mkdir -p $out
|
||
|
|
||
|
qtTranslations=$(python -c "from PyQt5.QtCore import *; print(QLibraryInfo.location(QLibraryInfo.TranslationsPath))")
|
||
|
rsync -av $qtTranslations/qt* $out
|