hgext/transplant.py
branchstable
changeset 19496 607191a45f8c
parent 19480 7c0bb2b75aa8
child 19951 d51c4d85ec23
equal deleted inserted replaced
19495:9aee3d014394 19496:607191a45f8c
   683 
   683 
   684 def extsetup(ui):
   684 def extsetup(ui):
   685     revset.symbols['transplanted'] = revsettransplanted
   685     revset.symbols['transplanted'] = revsettransplanted
   686     templatekw.keywords['transplanted'] = kwtransplanted
   686     templatekw.keywords['transplanted'] = kwtransplanted
   687     cmdutil.unfinishedstates.append(
   687     cmdutil.unfinishedstates.append(
   688         ['series', True, _('transplant in progress'),
   688         ['series', True, False, _('transplant in progress'),
   689          _("use 'hg transplant --continue' or 'hg update' to abort")])
   689          _("use 'hg transplant --continue' or 'hg update' to abort")])
   690 
   690 
   691 # tell hggettext to extract docstrings from these functions:
   691 # tell hggettext to extract docstrings from these functions:
   692 i18nfunctions = [revsettransplanted, kwtransplanted]
   692 i18nfunctions = [revsettransplanted, kwtransplanted]