diff -r f078d7358e90 -r ed99d3afef88 mercurial/commands.py --- a/mercurial/commands.py Thu Aug 03 14:01:51 2017 +0200 +++ b/mercurial/commands.py Thu Aug 03 14:08:39 2017 +0200 @@ -4992,13 +4992,13 @@ ui.status(_('phases: %s\n') % ', '.join(t)) if obsolete.isenabled(repo, obsolete.createmarkersopt): - for trouble in ("orphan", "contentdivergent", "bumped"): + for trouble in ("orphan", "contentdivergent", "phasedivergent"): numtrouble = len(repo.revs(trouble + "()")) # We write all the possibilities to ease translation troublemsg = { "orphan": _("orphan: %d changesets"), "contentdivergent": _("content-divergent: %d changesets"), - "bumped": _("phase-divergent: %d changesets"), + "phasedivergent": _("phase-divergent: %d changesets"), } if numtrouble > 0: ui.status(troublemsg[trouble] % numtrouble + "\n")