From: <dg...@us...> - 2010-01-25 21:45:23
|
Revision: 504 http://pytrainer.svn.sourceforge.net/pytrainer/?rev=504&view=rev Author: dgranda Date: 2010-01-25 21:45:15 +0000 (Mon, 25 Jan 2010) Log Message: ----------- Updated as some glade files were missed Modified Paths: -------------- pytrainer/trunk/utils/translator.sh Modified: pytrainer/trunk/utils/translator.sh =================================================================== --- pytrainer/trunk/utils/translator.sh 2010-01-24 19:39:12 UTC (rev 503) +++ pytrainer/trunk/utils/translator.sh 2010-01-25 21:45:15 UTC (rev 504) @@ -9,9 +9,9 @@ cd ../ # Extract translatable strings from input files -xgettext glade/pytrainer.glade -o ./messages.pot +xgettext glade/*.glade -o ./messages.pot if [ $? != 0 ]; then echo "WARNING: xgettext not found. Please install gettext package"; exit; fi -find ./ -iname "*.py" -exec xgettext -k_ -j -o ./messages.pot ./pytrainer/main.py {} \; +find ./ -iname "*.py" -exec xgettext -k_ -j -o ./messages.pot {} \; # Initializing translations for desired language msginit -i ./messages.pot -l $LANGUAGE -o ./locale/$LANGUAGE/LC_MESSAGES/pytrainer_$LANGUAGE.po_new This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |