deluge/generate_pot.py

90 lines
2.8 KiB
Python
Raw Normal View History

#!/usr/bin/env python
#
# This script creates the deluge.pot template file for translators
#
import os
import re
import sys
from version import get_version
from subprocess import call
from datetime import datetime
# Paths to exclude
EXCLUSIONS = [
"deluge/scripts",
"deluge/i18n",
"deluge/tests",
]
webui_js_dir = "deluge/ui/web/js/deluge-all"
infiles_list= "infiles.list"
pot_filepath = os.path.join("deluge", "i18n", "deluge.pot")
re_exc_plugin_build = re.compile("deluge\/plugins\/.*\/build")
xgettext_cmd = [
"xgettext",
"--from-code=UTF-8",
"-kN_:1",
"-f%s" % infiles_list,
"-o%s" % pot_filepath,
"--package-name=%s" % "Deluge",
"--copyright-holder=%s" % "Deluge Team",
"--package-version=%s" % get_version(prefix='deluge-', suffix='.dev0'),
"--msgid-bugs-address=%s" % "http://deluge-torrent.org",
]
to_translate = []
for (dirpath, dirnames, filenames) in os.walk("deluge"):
for filename in filenames:
if dirpath not in EXCLUSIONS and not re_exc_plugin_build.match(dirpath):
filepath = os.path.join(dirpath, filename)
if os.path.splitext(filepath)[1] in (".py", ".glade"):
to_translate.append(filepath)
elif filename.endswith(".in"):
call(["intltool-extract", "--quiet", "--type=gettext/ini", filepath])
to_translate.append(filepath + ".h")
elif filename.endswith(".ui"):
call(["intltool-extract", "--quiet", "--type=gettext/glade", filepath])
to_translate.append(filepath + ".h")
with open(infiles_list, "wb") as f:
for line in to_translate:
f.write(line + "\n")
# Create pot file from file list
call(xgettext_cmd)
# find javascript files
js_to_translate=[]
for (dirpath, dirnames, filenames) in os.walk(webui_js_dir):
for filename in filenames:
if os.path.splitext(filename)[1] == ".js":
js_to_translate.append(os.path.join(dirpath, filename))
with open(infiles_list, "wb") as f:
for line in js_to_translate:
f.write(line + "\n")
# Force xgettext language to parse javascript and update pot file
output = call(xgettext_cmd + ["--language=Python", "-j"])
print "====== Javascript 'unterminated string' warnings can be ignored ======"
# Replace YEAR and PACKAGE in the copyright message
with open(pot_filepath, "r") as f:
lines = f.readlines()
with open(pot_filepath, "w") as f:
for line in lines:
if "YEAR" in line:
line = line.replace("YEAR", str(datetime.now().year))
elif "PACKAGE" in line:
line = line.replace("PACKAGE", "Deluge")
f.write(line)
# Clean up temp files
os.remove(infiles_list)
for filepath in to_translate:
if filepath.endswith(".h"):
os.remove(filepath)
print "Created %s" % pot_filepath