mercurial/destutil.py
changeset 43114 8197b395710e
parent 43077 687b865b95ad
child 43117 8ff1ecfadcd1
equal deleted inserted replaced
43113:37af48031d6f 43114:8197b395710e
   180         b'merge': (
   180         b'merge': (
   181             _(
   181             _(
   182                 b"multiple matching bookmarks to merge -"
   182                 b"multiple matching bookmarks to merge -"
   183                 b" please merge with an explicit rev or bookmark"
   183                 b" please merge with an explicit rev or bookmark"
   184             ),
   184             ),
   185             _(b"run 'hg heads' to see all heads"),
   185             _(b"run 'hg heads' to see all heads, specify rev with -r"),
   186         ),
   186         ),
   187         b'rebase': (
   187         b'rebase': (
   188             _(
   188             _(
   189                 b"multiple matching bookmarks to rebase -"
   189                 b"multiple matching bookmarks to rebase -"
   190                 b" please rebase to an explicit rev or bookmark"
   190                 b" please rebase to an explicit rev or bookmark"
   191             ),
   191             ),
   192             _(b"run 'hg heads' to see all heads"),
   192             _(b"run 'hg heads' to see all heads, specify destination with -d"),
   193         ),
   193         ),
   194     },
   194     },
   195     # no other matching divergent bookmark
   195     # no other matching divergent bookmark
   196     b'nootherbookmarks': {
   196     b'nootherbookmarks': {
   197         b'merge': (
   197         b'merge': (
   198             _(
   198             _(
   199                 b"no matching bookmark to merge - "
   199                 b"no matching bookmark to merge - "
   200                 b"please merge with an explicit rev or bookmark"
   200                 b"please merge with an explicit rev or bookmark"
   201             ),
   201             ),
   202             _(b"run 'hg heads' to see all heads"),
   202             _(b"run 'hg heads' to see all heads, specify rev with -r"),
   203         ),
   203         ),
   204         b'rebase': (
   204         b'rebase': (
   205             _(
   205             _(
   206                 b"no matching bookmark to rebase - "
   206                 b"no matching bookmark to rebase - "
   207                 b"please rebase to an explicit rev or bookmark"
   207                 b"please rebase to an explicit rev or bookmark"
   208             ),
   208             ),
   209             _(b"run 'hg heads' to see all heads"),
   209             _(b"run 'hg heads' to see all heads, specify destination with -d"),
   210         ),
   210         ),
   211     },
   211     },
   212     # branch have too many unbookmarked heads, no obvious destination
   212     # branch have too many unbookmarked heads, no obvious destination
   213     b'toomanyheads': {
   213     b'toomanyheads': {
   214         b'merge': (
   214         b'merge': (
   215             _(b"branch '%s' has %d heads - please merge with an explicit rev"),
   215             _(b"branch '%s' has %d heads - please merge with an explicit rev"),
   216             _(b"run 'hg heads .' to see heads"),
   216             _(b"run 'hg heads .' to see heads, specify rev with -r"),
   217         ),
   217         ),
   218         b'rebase': (
   218         b'rebase': (
   219             _(b"branch '%s' has %d heads - please rebase to an explicit rev"),
   219             _(b"branch '%s' has %d heads - please rebase to an explicit rev"),
   220             _(b"run 'hg heads .' to see heads"),
   220             _(b"run 'hg heads .' to see heads, specify destination with -d"),
   221         ),
   221         ),
   222     },
   222     },
   223     # branch have no other unbookmarked heads
   223     # branch have no other unbookmarked heads
   224     b'bookmarkedheads': {
   224     b'bookmarkedheads': {
   225         b'merge': (
   225         b'merge': (
   226             _(b"heads are bookmarked - please merge with an explicit rev"),
   226             _(b"heads are bookmarked - please merge with an explicit rev"),
   227             _(b"run 'hg heads' to see all heads"),
   227             _(b"run 'hg heads' to see all heads, specify rev with -r"),
   228         ),
   228         ),
   229         b'rebase': (
   229         b'rebase': (
   230             _(b"heads are bookmarked - please rebase to an explicit rev"),
   230             _(b"heads are bookmarked - please rebase to an explicit rev"),
   231             _(b"run 'hg heads' to see all heads"),
   231             _(b"run 'hg heads' to see all heads, specify destination with -d"),
   232         ),
   232         ),
   233     },
   233     },
   234     # branch have just a single heads, but there is other branches
   234     # branch have just a single heads, but there is other branches
   235     b'nootherbranchheads': {
   235     b'nootherbranchheads': {
   236         b'merge': (
   236         b'merge': (
   237             _(b"branch '%s' has one head - please merge with an explicit rev"),
   237             _(b"branch '%s' has one head - please merge with an explicit rev"),
   238             _(b"run 'hg heads' to see all heads"),
   238             _(b"run 'hg heads' to see all heads, specify rev with -r"),
   239         ),
   239         ),
   240         b'rebase': (
   240         b'rebase': (
   241             _(b"branch '%s' has one head - please rebase to an explicit rev"),
   241             _(b"branch '%s' has one head - please rebase to an explicit rev"),
   242             _(b"run 'hg heads' to see all heads"),
   242             _(b"run 'hg heads' to see all heads, specify destination with -d"),
   243         ),
   243         ),
   244     },
   244     },
   245     # repository have a single head
   245     # repository have a single head
   246     b'nootherheads': {
   246     b'nootherheads': {
   247         b'merge': (_(b'nothing to merge'), None),
   247         b'merge': (_(b'nothing to merge'), None),