view update-i18n.sh @ 70:46af1af183ac

Highlight the button of the current theme in the search tab
author lbajardsilogic
date Wed, 13 Jun 2007 13:15:45 +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