Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.4, 2.0.5, and 2.1

stable i18n: add contexts for tab tooltips

Changeset 44b859a4e798

Parent 7562f0e8dc7b

by Wagner Bruna

Changes to one file · Browse files at 44b859a4e798 Showing diff from parent 7562f0e8dc7b Diff from another changeset...

 
156
157
158
159
 
160
161
162
163
 
164
165
166
167
 
168
169
170
171
 
172
173
174
175
 
176
177
178
179
180
 
181
182
183
 
185
186
187
188
 
189
190
191
 
156
157
158
 
159
160
161
162
 
163
164
165
166
 
167
168
169
170
 
171
172
173
174
 
175
176
177
178
179
 
180
181
182
183
 
185
186
187
 
188
189
190
191
@@ -156,28 +156,28 @@
  w.showMessage.connect(self.showMessage)   w.updateToRevision.connect(lambda rev: self.updateToRevision())   self.logTabIndex = idx = tt.addTab(w, qtlib.geticon('hg-log'), '') - tt.setTabToolTip(idx, _("Revision details")) + tt.setTabToolTip(idx, _("Revision details", "tab tooltip"))     self.commitDemand = w = DemandWidget('createCommitWidget', self)   self.commitTabIndex = idx = tt.addTab(w, qtlib.geticon('hg-commit'), '') - tt.setTabToolTip(idx, _("Commit")) + tt.setTabToolTip(idx, _("Commit", "tab tooltip"))     self.syncDemand = w = DemandWidget('createSyncWidget', self)   self.syncTabIndex = idx = tt.addTab(w, qtlib.geticon('thg-sync'), '') - tt.setTabToolTip(idx, _("Synchronize")) + tt.setTabToolTip(idx, _("Synchronize", "tab tooltip"))     self.manifestDemand = w = DemandWidget('createManifestWidget', self)   self.manifestTabIndex = idx = tt.addTab(w, qtlib.geticon('hg-annotate'), '') - tt.setTabToolTip(idx, _('Manifest')) + tt.setTabToolTip(idx, _("Manifest", "tab tooltip"))     self.grepDemand = w = DemandWidget('createGrepWidget', self)   self.grepTabIndex = idx = tt.addTab(w, qtlib.geticon('hg-grep'), '') - tt.setTabToolTip(idx, _("Search")) + tt.setTabToolTip(idx, _("Search", "tab tooltip"))     self.mqDemand = w = DemandWidget('createMQWidget', self)   if 'mq' in self.repo.extensions():   self.mqTabIndex = idx = tt.addTab(w, qtlib.geticon('thg-mq'), '') - tt.setTabToolTip(idx, _("Patch Queue")) + tt.setTabToolTip(idx, _("Patch Queue", "tab tooltip"))   self.namedTabs['mq'] = idx   else:   self.mqTabIndex = -1 @@ -185,7 +185,7 @@
  self.pbranchDemand = w = DemandWidget('createPatchBranchWidget', self)   if 'pbranch' in self.repo.extensions():   self.pbranchTabIndex = idx = tt.addTab(w, qtlib.geticon('branch'), '') - tt.setTabToolTip(idx, _("Patch Branch")) + tt.setTabToolTip(idx, _("Patch Branch", "tab tooltip"))   self.namedTabs['pbranch'] = idx   else:   self.pbranchTabIndex = -1