compile-strings.sh 251 B

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