view update-i18n.sh @ 84:51a12971e10e

specify the number of channels of the source to the filters
author lbajardsilogic
date Fri, 22 Jun 2007 13:35:26 +0000
parents d2300d85996d
children
line wrap: on
line source
#!/bin/sh

LUPDATE="lupdate"
LRELEASE="lrelease"

LANGUAGES="ru" "fr"

for LANG in $LANGUAGES; do
    $LUPDATE */*.h */*/*.h */*.cpp */*/*.cpp \
	-ts sv/i18n/sound-access_$LANG.ts
done

for LANG in $LANGUAGES; do
    $LRELEASE sv/i18n/sound-access_$LANG.ts
done