# HG changeset patch # User Cédric Duval # Date 1248430840 -7200 # Node ID b6cb3af61582d79c0af507e138d2b375f81ff4b6 # Parent d8244ebcedc29c456d11060b564cb55a23a2a0ac gendoc: don't translate topic strings twice (issue1760) diff -r d8244ebcedc2 -r b6cb3af61582 doc/gendoc.py --- a/doc/gendoc.py Thu Jul 23 15:25:47 2009 -0500 +++ b/doc/gendoc.py Fri Jul 24 12:20:40 2009 +0200 @@ -5,7 +5,7 @@ sys.path.append(os.path.join('..', 'mercurial', 'pure')) from mercurial import demandimport; demandimport.enable() from mercurial.commands import table, globalopts -from mercurial.i18n import gettext, _ +from mercurial.i18n import _ from mercurial.help import helptable def get_desc(docstr): @@ -102,11 +102,9 @@ # print topics for names, section, doc in helptable: - underlined(gettext(section).upper()) + underlined(section.upper()) if callable(doc): doc = doc() - else: - doc = gettext(doc) ui.write(doc) ui.write("\n")