# HG changeset patch # User Martin Geisler # Date 2009-11-28 22:23:16 # Node ID 9b626a63f556a42126cf5ce3ff669a232443110b # Parent f8d7797911614305b29a643f3e59c61392ff0d0d commands: mark strings for translation diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -470,9 +470,9 @@ def branches(ui, repo, active=False, clo elif hn not in repo.branchheads(tag, closed=False): if not closed: continue - notice = ' (closed)' + notice = _(' (closed)') else: - notice = ' (inactive)' + notice = _(' (inactive)') rev = str(node).rjust(31 - encoding.colwidth(encodedtag)) data = encodedtag, rev, hexfunc(hn), notice ui.write("%s %s:%s%s\n" % data)