Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

thgmq: fix capitalizations of context menu items

Changeset f390c0a6da90

Parent 007b5705db34

by Yuki KODAMA

Changes to one file · Browse files at f390c0a6da90 Showing diff from parent 007b5705db34 Diff from another changeset...

 
564
565
566
567
 
568
569
 
570
571
 
572
573
574
 
 
575
576
 
577
578
 
579
580
581
 
564
565
566
 
567
568
 
569
570
 
571
572
 
 
573
574
575
 
576
577
 
578
579
580
581
@@ -564,18 +564,18 @@
  is_next = row[MQ_INDEX] == self.number_applied()     if is_operable and not is_qtip and (not is_qparent or has_applied): - append(_('_goto'), self.goto_activated) + append(_('_Goto'), self.goto_activated)   if has_patch and not is_qparent: - append(_('_rename'), self.rename_activated) + append(_('_Rename'), self.rename_activated)   if has_applied and not is_qparent: - append(_('_finish applied'), self.finish_activated) + append(_('_Finish Applied'), self.finish_activated)   if not is_applied and not is_qparent: - append(_('_delete'), self.delete_activated) - append(_('delete --keep'), self.delete_keep_activated) + append(_('_Delete'), self.delete_activated) + append(_('Delete --keep'), self.delete_keep_activated)   if has_applied and not is_qparent: - append(_('f_old'), self.fold_activated) + append(_('F_old'), self.fold_activated)   if self.hasqup and not is_next: - append(_('make it _next'), self.mknext_activated) + append(_('Make It _Next'), self.mknext_activated)     if len(menu.get_children()) > 0:   menu.show_all()