97b9b94fc7
- translation files are now stored in a separate repo, and use a layout compatible with Pontoon - normalize the language code in aqt, so that old config settings and command line arguments are correctly handled - store Qt and gettext translations in separate subfolders - remove Crowdin scripts
10 lines
214 B
Bash
Executable File
10 lines
214 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
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
|