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

stable mq: user education

Changeset a36ea841846b

Parent 804a09d0d7b5

by Steve Borho

Changes to one file · Browse files at a36ea841846b Showing diff from parent 804a09d0d7b5 Diff from another changeset...

 
746
747
748
749
 
 
750
751
752
 
 
753
754
755
 
 
756
757
758
 
 
759
760
761
762
763
764
 
 
765
766
767
 
746
747
748
 
749
750
751
752
 
753
754
755
756
 
757
758
759
760
 
761
762
763
764
765
766
767
 
768
769
770
771
772
@@ -746,22 +746,27 @@
  layout = QFormLayout()   self.setLayout(layout)   - self.gitcb = QCheckBox(_('Force use of git extended diff format')) + self.gitcb = QCheckBox( + _('Force use of git extended diff format (--git)'))   layout.addRow(self.gitcb, None)   - self.forcecb = QCheckBox(_('Force push or pop')) + self.forcecb = QCheckBox( + _('Force push or pop (--force)'))   layout.addRow(self.forcecb, None)   - self.exactcb = QCheckBox(_('Apply patch to its recorded parent')) + self.exactcb = QCheckBox( + _('Apply patch to its recorded parent (--exact)'))   layout.addRow(self.exactcb, None)   - self.currentdatecb = QCheckBox(_('Update date field with current date')) + self.currentdatecb = QCheckBox( + _('Update date field with current date (--currentdate)'))   layout.addRow(self.currentdatecb, None)     self.datele = QLineEdit()   layout.addRow(QLabel(_('Specify an explicit date:')), self.datele)   - self.currentusercb = QCheckBox(_('Update author field with current user')) + self.currentusercb = QCheckBox( + _('Update author field with current user (--currentuser)'))   layout.addRow(self.currentusercb, None)     self.userle = QLineEdit()