Changeset 19

Show
Ignore:
Timestamp:
07/11/07 19:04:42 (10 months ago)
Author:
mjoc
Message:

Pagalbos lange pridėta nauja kortelė su projekto rėmėjo informacija.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/gui/helpwin.py

    r17 r19  
    127127      thPanel.SetSizer(vboxThP) 
    128128      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")) 
    129142       
    130143      vbox.Add(nb, 1, wx.ALL | wx.EXPAND, 3)