comparison frontends/src/wix/main_window.py @ 459:cf005701624b

copyleft date update
author Goffi <goffi@goffi.org>
date Tue, 06 Mar 2012 09:07:24 +0100
parents 10b4f577d0c0
children 2a072735e459
comparison
equal deleted inserted replaced
458:094050fe461e 459:cf005701624b
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # -*- coding: utf-8 -*- 2 # -*- coding: utf-8 -*-
3 3
4 """ 4 """
5 wix: a SAT frontend 5 wix: a SAT frontend
6 Copyright (C) 2009, 2010, 2011 Jérôme Poisson (goffi@goffi.org) 6 Copyright (C) 2009, 2010, 2011, 2012 Jérôme Poisson (goffi@goffi.org)
7 7
8 This program is free software: you can redistribute it and/or modify 8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by 9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or 10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version. 11 (at your option) any later version.
374 374
375 def onAbout(self, e): 375 def onAbout(self, e):
376 about = wx.AboutDialogInfo() 376 about = wx.AboutDialogInfo()
377 about.SetName(APP_NAME) 377 about.SetName(APP_NAME)
378 about.SetVersion (unicode(self.bridge.getVersion())) 378 about.SetVersion (unicode(self.bridge.getVersion()))
379 about.SetCopyright(u"(C) 2009, 2010, 2011 Jérôme Poisson aka Goffi") 379 about.SetCopyright(u"(C) 2009, 2010, 2011, 2012 Jérôme Poisson aka Goffi")
380 about.SetDescription( _(u"%(name)s is a SàT (Salut à Toi) frontend\n"+ 380 about.SetDescription( _(u"%(name)s is a SàT (Salut à Toi) frontend\n"+
381 u"%(name)s is based on WxPython, and is the standard graphic interface of SàT") % {'name':APP_NAME}) 381 u"%(name)s is based on WxPython, and is the standard graphic interface of SàT") % {'name':APP_NAME})
382 about.SetWebSite(("http://www.goffi.org", "Goffi's non-hebdo (french)")) 382 about.SetWebSite(("http://www.goffi.org", "Goffi's non-hebdo (french)"))
383 about.SetDevelopers([ "Goffi (Jérôme Poisson)"]) 383 about.SetDevelopers([ "Goffi (Jérôme Poisson)"])
384 try: 384 try: