Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.1, 1.1.1, and 1.1.2

commit: improve branch creation dialog

Refs #1084

Changeset b25b1abdfcd8

Parent f5aebd808adb

by Steve Borho

Changes to one file · Browse files at b25b1abdfcd8 Showing diff from parent f5aebd808adb Diff from another changeset...

 
1125
1126
1127
1128
1129
 
 
 
 
1130
1131
1132
 
1125
1126
1127
 
 
1128
1129
1130
1131
1132
1133
1134
@@ -1125,8 +1125,10 @@
  (_('&Yes'), _('&No'), _('&Cancel')), 2, 2).run()   else:   resp = gdialog.CustomPrompt(_('Confirm New Branch'), - _('Create new named branch "%s" with this commit?') % - self.nextbranch, + _('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 - Cancel this commit') % self.nextbranch,   self, (_('&Yes'), _('&No'), _('&Cancel')), 2, 2).run()   if resp == 0:   self.repo.dirstate.setbranch(self.nextbranch)