mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
9 lines
211 B
Bash
Executable file
9 lines
211 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
out=../aqt_data/locale
|
|
mkdir -p $out
|
|
|
|
qtTranslations=$(python -c "from PyQt5.QtCore import *; print(QLibraryInfo.location(QLibraryInfo.TranslationsPath))")
|
|
rsync -a $qtTranslations/qt* $out
|