2016-02-18 09:10:16 -06:00
|
|
|
@echo off
|
2016-06-29 10:00:13 -05:00
|
|
|
echo Generating file list..
|
|
|
|
dir ..\src\*.py /L /B /S > %TEMP%\listfile.txt
|
|
|
|
echo Generating .POT file...
|
2019-01-10 17:33:27 -06:00
|
|
|
xgettext --language=Python --from-code=utf-8 -o socializer.pot --keyword=_ -d socializer -f %TEMP%\listfile.txt -c --no-location --no-wrap
|
2016-06-29 10:00:13 -05:00
|
|
|
del %TEMP%\listfile.txt
|
|
|
|
echo Done.
|