Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.1, 2.0.2, and 2.0.3

stable commit: remove confusing text from branch messages and move actions to buttons

Changeset 6d1eb24f51cf

Parent c33cf0de7cf1

by timeless

Changes to one file · Browse files at 6d1eb24f51cf Showing diff from parent c33cf0de7cf1 Diff from another changeset...

 
518
519
520
521
522
523
524
 
 
 
 
 
525
526
527
528
529
530
531
 
 
 
 
 
532
533
534
 
518
519
520
 
 
 
 
521
522
523
524
525
526
527
528
 
 
 
 
529
530
531
532
533
534
535
536
@@ -518,17 +518,19 @@
  resp = qtlib.CustomPrompt(_('Confirm Branch Change'),   _('Named branch "%s" already exists, '   'last used in revision %d\n' - 'Yes\t- Make commit restarting this named branch\n' - 'No\t- Make commit without changing branch\n' - 'Cancel\t- Cancel this commit') % (self.branchop, rev), - self, (_('&Yes'), _('&No'), _('Cancel')), 2, 2).run() + ) % (self.branchop, rev), + self, + (_('Restart &Branch'), + _('&Commit to current branch'), + _('Cancel')), 2, 2).run()   else:   resp = qtlib.CustomPrompt(_('Confirm New Branch'),   _('Create new named branch "%s" with this commit?\n' - 'Yes\t- Start new branch with this commit\n' - 'No\t- Make commit without branch change\n' - 'Cancel\t- Cancel this commit') % self.branchop, - self, (_('&Yes'), _('&No'), _('Cancel')), 2, 2).run() + ) % self.branchop, + self, + (_('Create &Branch'), + _('&Commit to current branch'), + _('Cancel')), 2, 2).run()   if resp == 0:   newbranch = True   commandlines.append(['branch', '--repository', repo.root,