6 lines
182 B
Bash
6 lines
182 B
Bash
#!/bin/bash
|
|
# This script will update both the Qt and Json string translation files.
|
|
QT_PATH=~//Qt/5.15.2/clang_64/bin
|
|
$QT_PATH/lupdate ../src -ts qgc.ts
|
|
python3 qgc-lupdate-json.py
|