i18n_extract tool: replace the bundled lib with gettext forced to assume python, since it extracts more strings

This commit is contained in:
czaks 2013-07-03 01:37:48 -04:00 committed by Michael Foster
parent cb82c7d28a
commit 1f2b4e0181

View File

@ -42,6 +42,6 @@ foreach ($locales as $loc) {
xgettext -d tinyboard -L php --from-code utf-8 $join -c $(find ../../../../ -name \*.php)");
// Generate javascript.po
passthru("cd tools/inc/lib/jsgettext/;
php jsgettext.php -o ../../../../$locdir/LC_MESSAGES/javascript.po $(find ../../../../js/ -name \*.js)");
passthru("cd $locdir/LC_MESSAGES;
xgettext -d javascript -L Python --force-po --from-code utf-8 $join -c $(find ../../../../js/ -name \*.js)");
}