diff -r 6c1a9fd8361b -r 9dcc3529e002 mercurial/commands.py --- a/mercurial/commands.py Fri Aug 04 18:41:16 2017 +0200 +++ b/mercurial/commands.py Thu Aug 03 13:48:39 2017 +0200 @@ -4992,11 +4992,11 @@ ui.status(_('phases: %s\n') % ', '.join(t)) if obsolete.isenabled(repo, obsolete.createmarkersopt): - for trouble in ("unstable", "divergent", "bumped"): + for trouble in ("orphan", "divergent", "bumped"): numtrouble = len(repo.revs(trouble + "()")) # We write all the possibilities to ease translation troublemsg = { - "unstable": _("orphan: %d changesets"), + "orphan": _("orphan: %d changesets"), "divergent": _("content-divergent: %d changesets"), "bumped": _("phase-divergent: %d changesets"), }