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...

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
 # branchop.py - branch operations dialog for TortoiseHg commit tool  #  # Copyright 2010 Steve Borho <steve@borho.org>  #  # This software may be used and distributed according to the terms of the  # GNU General Public License version 2, incorporated herein by reference.    import os    from PyQt4.QtCore import *  from PyQt4.QtGui import *    from tortoisehg.hgqt.i18n import _  from tortoisehg.util import hglib    from tortoisehg.hgqt import qtlib    class BranchOpDialog(QDialog):   '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)   wctx = repo[None]     if len(wctx.parents()) == 2:   lbl = QLabel('<b>'+_('Select branch of merge commit')+'</b>')   layout.addWidget(lbl)   branchCombo = QComboBox()   # If both parents belong to the same branch, do not duplicate the   # branch name in the branch select combo   branchlist = [p.branch() for p in wctx.parents()]   if branchlist[0] == branchlist[1]:   branchlist = [branchlist[0]]   for b in branchlist:   branchCombo.addItem(hglib.tounicode(b))   layout.addWidget(branchCombo)   else:   text = '<b>'+_('Changes take effect on next commit')+'</b>'   lbl = QLabel(text)   layout.addWidget(lbl)     grid = QGridLayout()   nochange = QRadioButton(_('No branch changes'))   newbranch = QRadioButton(_('Open a new named branch'))   closebranch = QRadioButton(_('Close current branch'))   branchCombo = QComboBox()   branchCombo.setEditable(True)     wbu = hglib.tounicode(wctx.branch())   for name in repo.namedbranches:   if name == wbu:   continue   branchCombo.addItem(name)   branchCombo.activated.connect(self.accept)     grid.addWidget(nochange, 0, 0)   grid.addWidget(newbranch, 1, 0)   grid.addWidget(branchCombo, 1, 1)   grid.addWidget(closebranch, 2, 0)   layout.addLayout(grid)     newbranch.toggled.connect(branchCombo.setEnabled)   branchCombo.setEnabled(False)   if oldbranchop is None:   nochange.setChecked(True)   elif oldbranchop == False:   closebranch.setChecked(True)   else:   assert type(oldbranchop) == QString   bc = branchCombo   names = [bc.itemText(i) for i in xrange(bc.count())]   if oldbranchop in names:   bc.setCurrentIndex(names.index(oldbranchop))   else:   bc.addItem(oldbranchop)   bc.setCurrentIndex(len(names))   newbranch.setChecked(True)   self.closebranch = closebranch     BB = QDialogButtonBox   bb = QDialogButtonBox(BB.Ok|BB.Cancel)   bb.accepted.connect(self.accept)   bb.rejected.connect(self.reject)   bb.button(BB.Ok).setAutoDefault(True)   layout.addWidget(bb)   self.bb = bb   self.branchCombo = branchCombo   QShortcut(QKeySequence('Ctrl+Return'), self, self.accept)   QShortcut(QKeySequence('Escape'), self, self.reject)     def accept(self):   '''Branch operation is one of:   None - leave wctx branch name untouched   False - close current branch   QString - open new named branch   '''   if self.branchCombo.isEnabled():   self.branchop = self.branchCombo.currentText()   elif self.closebranch.isChecked():   self.branchop = False   else:   self.branchop = None   QDialog.accept(self)
 
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()