Files
aiscr-qgis-amcr-viewer/scripts/compile-strings.sh
T
David Spáčil ff73f32b16 Init commit
2026-02-10 15:28:10 +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