diff options
Diffstat (limited to 'pavement.py')
-rw-r--r-- | pavement.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pavement.py b/pavement.py index 2dbec0cf3..ae681c03f 100644 --- a/pavement.py +++ b/pavement.py @@ -271,7 +271,7 @@ def makepot(domain, p, excludes=[], includes="", endings=[".py"], xxargs=[]): f.close() - call(["xgettext", "--files-from=includes.txt", "--default-domain=%s" % domain] + xargs + xxargs) + call(["xgettext", "-L", "Python", "--add-comments=L10N", "--files-from=includes.txt", "--default-domain=%s" % domain] + xargs + xxargs) # replace charset und move file with open("%s.po" % domain, "rb") as f: |