# HG changeset patch # User Matt Mackall # Date 1256057889 18000 # Node ID c4a6ce16708aa71a08adde511595391451be6fcf # Parent d75a309a24b1a76b7ccf45a13180f04b775cd557 summary: restore briefer commit status diff -r d75a309a24b1 -r c4a6ce16708a 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: