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 translations for window titles

Changeset 8c1e61013dfe

Parent 502c618df5c0

by Andrei Polushin

Changes to 6 files · Browse files at 8c1e61013dfe Showing diff from parent 502c618df5c0 Diff from another changeset...

 
19
20
21
22
 
23
24
25
 
19
20
21
 
22
23
24
25
@@ -19,7 +19,7 @@
  'Dialog for manipulating wctx.branch()'   def __init__(self, repo, oldbranchop, parent=None):   QDialog.__init__(self, parent) - self.setWindowTitle('%s - branch operation' % repo.displayname) + self.setWindowTitle(_('%s - branch operation') % repo.displayname)   self.setWindowIcon(qtlib.geticon('branch'))   layout = QVBoxLayout()   self.setLayout(layout)
 
642
643
644
645
 
646
647
648
 
936
937
938
939
 
940
941
942
 
642
643
644
 
645
646
647
648
 
936
937
938
 
939
940
941
942
@@ -642,7 +642,7 @@
  'Utility dialog for configuring uncommon settings'   def __init__(self, opts, userhistory, parent):   QDialog.__init__(self, parent) - self.setWindowTitle('%s - commit options' % parent.repo.displayname) + self.setWindowTitle(_('%s - commit options') % parent.repo.displayname)   self.repo = parent.repo     layout = QVBoxLayout() @@ -936,7 +936,7 @@
  commit.commitComplete.connect(self.postcommit)   commit.commitButtonEnable.connect(self.commitButton.setEnabled)   - self.setWindowTitle('%s - commit' % commit.repo.displayname) + self.setWindowTitle(_('%s - commit') % commit.repo.displayname)   self.commit = commit   self.commit.reload()   self.updateUndo()
 
892
893
894
895
 
896
897
898
 
892
893
894
 
895
896
897
898
@@ -892,7 +892,7 @@
  'Utility dialog for configuring uncommon options'   def __init__(self, parent):   QDialog.__init__(self, parent) - self.setWindowTitle('MQ options') + self.setWindowTitle(_('MQ options'))     layout = QFormLayout()   self.setLayout(layout)
 
67
68
69
70
 
71
72
73
 
67
68
69
 
70
71
72
73
@@ -67,7 +67,7 @@
  self.bb = bb   self.layout().addWidget(bb)   - self.setWindowTitle('%s - purge' % repo.displayname) + self.setWindowTitle(_('%s - purge') % repo.displayname)   self.setWindowIcon(qtlib.geticon('hg-purge'))   self.repo = repo  
 
41
42
43
44
 
45
46
47
 
41
42
43
 
44
45
46
47
@@ -41,7 +41,7 @@
  command = 'remove'   self.command = command   - self.setWindowTitle('%s - hg %s' % (repo.displayname, command)) + self.setWindowTitle(_('%s - hg %s') % (repo.displayname, command))   self.setWindowIcon(qtlib.geticon(ICONS[command]))     layout = QVBoxLayout()
 
1369
1370
1371
1372
 
1373
1374
1375
 
1369
1370
1371
 
1372
1373
1374
1375
@@ -1369,7 +1369,7 @@
  'Utility dialog for configuring uncommon options'   def __init__(self, opts, parent):   QDialog.__init__(self, parent) - self.setWindowTitle('%s - sync options' % parent.repo.displayname) + self.setWindowTitle(_('%s - sync options') % parent.repo.displayname)   self.repo = parent.repo     layout = QFormLayout()