mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 16:26:40 -04:00

Issues are now checked for in CI, so there's no need to break the build for everyone each time there's a problem with the gettext catalogs.
9 lines
224 B
Bash
Executable file
9 lines
224 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
out=../aqt_data/locale/qt
|
|
mkdir -p $out
|
|
|
|
qtTranslations=$(python -c "from PyQt5.QtCore import *; print(QLibraryInfo.location(QLibraryInfo.TranslationsPath))")
|
|
rsync -a $qtTranslations/qt* $out
|