﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
2604	compile-messages.py fails on win32	Jarosław Zabiełło	hugo	"compile-messages.py script is too much UNIX related so it does not work for Windows. Fixing is easy. 

Instead of
{{{
os.environ['djangocompilemo'] = pf + '.mo'
os.environ['djangocompilepo'] = pf + '.po'
cmd = 'msgfmt -o ""$djangocompilemo"" ""$djangocompilepo""'
}}}
it should be 
{{{
cmd = 'msgfmt -o ""%s"" ""%s""' % (pf + '.mo', pf + '.po')
}}}"	defect	closed	Internationalization	dev	normal	fixed	win32 i18n		Unreviewed	0	0	0	0	0	0
