view misc/update-i18n.sh @ 1257:f2105c5b0b12 piper

Pull out model creation into the transformer thread run(), so that all communications with the plugin server happen on a single thread. Then make the model accessor wait for them to be created (which still happens right at the start of processing) before returning.
author Chris Cannam
date Mon, 17 Oct 2016 14:18:23 +0100
parents bd3cb9d6db66
children
line wrap: on
line source
#!/bin/sh

LUPDATE="lupdate"
LRELEASE="lrelease"

if lupdate-qt5 -version >/dev/null 2>&1; then
    LUPDATE="lupdate-qt5"
    LRELEASE="lrelease-qt5"
fi

LANGUAGES="ru en_GB en_US cs_CZ"

for LANG in $LANGUAGES; do
    $LUPDATE \
	svcore/*/*.h svcore/*/*.cpp \
	svcore/*/*/*.h svcore/*/*/*.cpp \
	svgui/*/*.h svgui/*/*.cpp \
	svapp/*/*.h svapp/*/*.cpp \
	*/*.h */*.cpp \
	-ts i18n/sonic-visualiser_$LANG.ts
done

for LANG in $LANGUAGES; do
    $LRELEASE i18n/sonic-visualiser_$LANG.ts
done