commands: mark strings for translation stable
authorMartin Geisler <mg@lazybytes.net>
Sat, 28 Nov 2009 23:23:16 +0100
branchstable
changeset 9951 9b626a63f556
parent 9943 f8d779791161
child 9952 5b149c88d9e8
commands: mark strings for translation
mercurial/commands.py
--- a/mercurial/commands.py	Thu Nov 26 10:51:17 2009 +0100
+++ b/mercurial/commands.py	Sat Nov 28 23:23:16 2009 +0100
@@ -470,9 +470,9 @@
                 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)