Changeset 21
- Timestamp:
- 08/26/07 23:42:41 (9 months ago)
- Files:
-
- trunk/lib/gui/helpwin.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/gui/helpwin.py
r19 r21 67 67 vbox.Add(scWinAbout, 1, wx.ALL | wx.EXPAND, 5) 68 68 69 self.buttonClose = wx.Button(self, 2002, _(" Close"))69 self.buttonClose = wx.Button(self, 2002, _("&Close")) 70 70 vbox.Add(self.buttonClose, 0, wx.ALL | wx.ALIGN_RIGHT, 5) 71 71 … … 103 103 vboxWrite.Add(labelWrite, 0, wx.ALL, 10) 104 104 writePanel.SetSizer(vboxWrite) 105 writePanel.SetFocus() 105 106 106 107 nb.AddPage(writePanel, _("Written By")) … … 143 144 vbox.Add(nb, 1, wx.ALL | wx.EXPAND, 3) 144 145 145 buttonClose = wx.Button(self, 2005, _(" Close"))146 buttonClose = wx.Button(self, 2005, _("&Close")) 146 147 vbox.Add(buttonClose, 0, wx.ALL | wx.ALIGN_RIGHT, 5) 147 148 … … 200 201 vbox.Add(wx.StaticLine(self, -1), 0, wx.ALL | wx.EXPAND, 5) 201 202 202 self.buttonCredits = wx.Button(self, 2004, _("C redits"))203 self.buttonCredits = wx.Button(self, 2004, _("C&redits")) 203 204 hboxButtons.Add(self.buttonCredits, 0, wx.ALL | wx.ALIGN_LEFT, 3) 204 205 205 self.buttonLicence = wx.Button(self, 2006, _(" Licence"))206 self.buttonLicence = wx.Button(self, 2006, _("&Licence")) 206 207 hboxButtons.Add(self.buttonLicence, 0, wx.ALL | wx.ALIGN_LEFT, 3) 207 208 208 self.buttonOK = wx.Button(self, 2003, _(" Close"))209 self.buttonOK = wx.Button(self, 2003, _("&Close")) 209 210 hboxButtons.Add(self.buttonOK, 0, wx.ALL | wx.ALIGN_RIGHT, 3) 210 211
