hg: avoid combining translated strings
authorMartin Geisler <mg@lazybytes.net>
Mon, 14 Sep 2009 23:48:25 +0200
changeset 9454 dafadd7ff07e
parent 9453 de414835d140
child 9455 176b7d42e6cc
hg: avoid combining translated strings Combining translated string fragments into bigger strings is bad practice because it removes context from the fragments. The translator sees the fragments in isolation and might not jump back to the source to see how a string like "%d files %s" is actually used.
mercurial/hg.py
--- a/mercurial/hg.py	Tue Sep 15 18:26:05 2009 +0200
+++ b/mercurial/hg.py	Mon Sep 14 23:48:25 2009 +0200
@@ -327,12 +327,8 @@
             dir_cleanup.cleanup()
 
 def _showstats(repo, stats):
-    stats = ((stats[0], _("updated")),
-             (stats[1], _("merged")),
-             (stats[2], _("removed")),
-             (stats[3], _("unresolved")))
-    note = ", ".join([_("%d files %s") % s for s in stats])
-    repo.ui.status("%s\n" % note)
+    repo.ui.status(_("%d files updated, %d files merged, "
+                     "%d files removed, %d files unresolved\n") % stats)
 
 def update(repo, node):
     """update the working directory to node, merging linear changes"""