# HG changeset patch # User Matt Mackall # Date 2009-10-20 16:58:09 # Node ID c4a6ce16708aa71a08adde511595391451be6fcf # Parent d75a309a24b1a76b7ccf45a13180f04b775cd557 summary: restore briefer commit status diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -2907,10 +2907,9 @@ def summary(ui, repo): 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: