annotate misc/update-i18n.sh @ 1976:810a0b8f5472 c++14

Requiring c++14 is not going to work for Travis (because we want to support a Qt version too old to know about the c++14 config flag) or for our AppImage build (because we want to run on distros to old to support the relevant gcc ABI). So instead we try to confine the C++ standard selection to one place (config/noconfig) and revert to c++11 if the compiler is too old to know about c++14. All of the actual SV code remains c++11, and we assume we build against an older version of capnproto when we want to perform a c++11 build.
author Chris Cannam
date Fri, 31 Aug 2018 13:41:27 +0100
parents bd3cb9d6db66
children
rev   line source
Chris@378 1 #!/bin/sh
Chris@378 2
Chris@378 3 LUPDATE="lupdate"
Chris@378 4 LRELEASE="lrelease"
Chris@378 5
Chris@1098 6 if lupdate-qt5 -version >/dev/null 2>&1; then
Chris@1098 7 LUPDATE="lupdate-qt5"
Chris@1098 8 LRELEASE="lrelease-qt5"
Chris@378 9 fi
Chris@378 10
Chris@378 11 LANGUAGES="ru en_GB en_US cs_CZ"
Chris@378 12
Chris@378 13 for LANG in $LANGUAGES; do
Chris@382 14 $LUPDATE \
Chris@1098 15 svcore/*/*.h svcore/*/*.cpp \
Chris@1098 16 svcore/*/*/*.h svcore/*/*/*.cpp \
Chris@1098 17 svgui/*/*.h svgui/*/*.cpp \
Chris@1098 18 svapp/*/*.h svapp/*/*.cpp \
Chris@382 19 */*.h */*.cpp \
Chris@382 20 -ts i18n/sonic-visualiser_$LANG.ts
Chris@378 21 done
Chris@378 22
Chris@378 23 for LANG in $LANGUAGES; do
Chris@382 24 $LRELEASE i18n/sonic-visualiser_$LANG.ts
Chris@378 25 done
Chris@378 26