2006-02-19 06:21:31 +08:00
|
|
|
#!/usr/bin/env python
|
2005-11-04 12:59:46 +08:00
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import getopt
|
|
|
|
|
2006-01-19 08:54:15 +08:00
|
|
|
def compile_messages():
|
|
|
|
basedir = None
|
2005-11-04 12:59:46 +08:00
|
|
|
|
2006-01-19 08:54:15 +08:00
|
|
|
if os.path.isdir(os.path.join('conf', 'locale')):
|
|
|
|
basedir = os.path.abspath(os.path.join('conf', 'locale'))
|
|
|
|
elif os.path.isdir('locale'):
|
|
|
|
basedir = os.path.abspath('locale')
|
|
|
|
else:
|
|
|
|
print "this script should be run from the django svn tree or your project or app tree"
|
|
|
|
sys.exit(1)
|
2005-11-04 12:59:46 +08:00
|
|
|
|
2006-01-19 08:54:15 +08:00
|
|
|
for (dirpath, dirnames, filenames) in os.walk(basedir):
|
2006-01-19 09:06:12 +08:00
|
|
|
for f in filenames:
|
|
|
|
if f.endswith('.po'):
|
|
|
|
sys.stderr.write('processing file %s in %s\n' % (f, dirpath))
|
|
|
|
pf = os.path.splitext(os.path.join(dirpath, f))[0]
|
2006-01-19 08:54:15 +08:00
|
|
|
cmd = 'msgfmt -o "%s.mo" "%s.po"' % (pf, pf)
|
|
|
|
os.system(cmd)
|
2005-11-04 12:59:46 +08:00
|
|
|
|
2006-01-19 08:54:15 +08:00
|
|
|
if __name__ == "__main__":
|
|
|
|
compile_messages()
|