Changeset 19
- Timestamp:
- 07/11/07 19:04:42 (10 months ago)
- Files:
-
- trunk/lib/gui/helpwin.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/gui/helpwin.py
r17 r19 127 127 thPanel.SetSizer(vboxThP) 128 128 nb.AddPage(thPanel, _("Thanks To")) 129 130 131 # "Sponsor" panel 132 sponsorPanel = wx.Panel(nb, -1) 133 vboxSP = wx.BoxSizer(wx.VERTICAL) 134 sponsorString = _("OpenDict project is sponsored by IDILES.\n" 135 "Visit company's website at http://www.idiles.com.\n\n" 136 "Report problems by email address support@idiles.com.") 137 sponsor = enc.toWX(sponsorString) 138 labelSP = wx.StaticText(sponsorPanel, -1, sponsor) 139 vboxSP.Add(labelSP, 0, wx.ALL, 10) 140 sponsorPanel.SetSizer(vboxSP) 141 nb.AddPage(sponsorPanel, _("Sponsors")) 129 142 130 143 vbox.Add(nb, 1, wx.ALL | wx.EXPAND, 3)
