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

stable i18n: add contexts for 'None'

Changeset 58ad9b701971

Parent 6b1688cf7302

by Wagner Bruna

Changes to 3 files · Browse files at 58ad9b701971 Showing diff from parent 6b1688cf7302 Diff from another changeset...

 
432
433
434
435
 
436
437
438
 
432
433
434
 
435
436
437
438
@@ -432,7 +432,7 @@
  self.allbutton.setShortcut(QKeySequence.SelectAll)   self.allbutton.clicked.connect(self.selectAll)   self.nonebutton = QToolButton() - self.nonebutton.setText(_('None')) + self.nonebutton.setText(_('None', 'files'))   self.nonebutton.setShortcut(QKeySequence.New)   self.nonebutton.clicked.connect(self.selectNone)   hbox.addStretch(1)
 
191
192
193
194
 
195
196
197
 
191
192
193
 
194
195
196
197
@@ -191,7 +191,7 @@
  self._stdMenu.addSeparator()   qsci = QsciScintilla   wrapmenu = QMenu(_('Wrap'), self) - for name, mode in ((_('None'), qsci.WrapNone), + for name, mode in ((_('None', 'wrap mode'), qsci.WrapNone),   (_('Word'), qsci.WrapWord),   (_('Character'), qsci.WrapCharacter)):   def mkaction(n, m):
 
129
130
131
132
 
133
134
135
 
129
130
131
 
132
133
134
135
@@ -129,7 +129,7 @@
  self.allbutton.setToolTip(_('Check all files'))   self.allbutton.clicked.connect(self.checkAll)   self.nonebutton = QToolButton() - self.nonebutton.setText(_('None')) + self.nonebutton.setText(_('None', 'files'))   self.nonebutton.setToolTip(_('Uncheck all files'))   self.nonebutton.clicked.connect(self.checkNone)   hcbox = QHBoxLayout()