#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright 2004-2006 Zuza Software Foundation # # This file is part of translate. # # translate is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # translate is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with translate; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Converts Mozilla .dtd and .properties files to Gettext .po files""" from translate.convert import dtd2po from translate.convert import prop2po from translate.convert import html2po from translate.convert import mozfunny2prop from translate.storage import xpi from translate import __version__ from translate.convert import convert def main(argv=None): formats = {(None, "*"): ("*", convert.copytemplate), ("*", "*"): ("*", convert.copyinput), "*": ("*", convert.copyinput)} # handle formats that convert to .po files converters = [("dtd", dtd2po.convertdtd), ("properties", prop2po.convertprop), ("xhtml", html2po.converthtml), ("html", html2po.converthtml), ("it", mozfunny2prop.it2po), ("ini", mozfunny2prop.ini2po), ("inc", mozfunny2prop.inc2po)] for format, converter in converters: formats[(format, format)] = (format + ".po", converter) formats[format] = (format + ".po", converter) # handle search and replace replacer = convert.Replacer("en-US", "${locale}") for replaceformat in ("js", "rdf", "manifest"): formats[(None, replaceformat)] = (replaceformat, replacer.searchreplacetemplate) formats[(replaceformat, replaceformat)] = (replaceformat, replacer.searchreplaceinput) formats[replaceformat] = (replaceformat, replacer.searchreplaceinput) parser = convert.ArchiveConvertOptionParser(formats, usetemplates=True, usepots=True, description=__doc__, archiveformats={"xpi": xpi.XpiFile}) parser.add_duplicates_option() parser.passthrough.append("pot") parser.run(argv) if __name__ == '__main__': main()