view update-i18n.sh @ 167:2ac52ea3c1c4

video mouse events are in SDL now. The code is really better now, but there is a display bug when you zoom in, zoom out
author benoitrigolleau
date Fri, 16 Nov 2007 15:18:44 +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