Files
aiscr-qgis-amcr-viewer/amcr_viewer/scripts/compile-strings.sh
T
David Spáčil 69b6edce96 Fixed structure
2026-02-11 14:45:27 +01:00

13 lines
251 B
Bash

#!/bin/bash
LRELEASE=$1
LOCALES=$2
for LOCALE in ${LOCALES}
do
echo "Processing: ${LOCALE}.ts"
# Note we don't use pylupdate with qt .pro file approach as it is flakey
# about what is made available.
$LRELEASE i18n/${LOCALE}.ts
done