summary: restore briefer commit status
authorMatt Mackall <mpm@selenic.com>
Tue, 20 Oct 2009 11:58:09 -0500
changeset 9619 c4a6ce16708a
parent 9618 d75a309a24b1
child 9620 a7ef354da662
summary: restore briefer commit status
mercurial/commands.py
--- a/mercurial/commands.py	Tue Oct 20 11:57:25 2009 -0500
+++ b/mercurial/commands.py	Tue Oct 20 11:58:09 2009 -0500
@@ -2907,10 +2907,9 @@
     st = list(repo.status(unknown=True))[:7]
     ms = merge_.mergestate(repo)
     st.append([f for f in ms if f == 'u'])
-    labels = [_('%d modified files'), _('%d added files'),
-              _('%d removed files'), _('%d deleted files'),
-              _('%d unknown files'), _('%d ignored files'),
-              _('%d unresolved files')]
+    labels = [_('%d modified'), _('%d added'), _('%d removed'),
+              _('%d deleted'), _('%d unknown'), _('%d ignored'),
+              _('%d unresolved')]
     t = []
     for s,l in zip(st, labels):
         if s: