Mercurial > libervia-backend
comparison frontends/src/wix/main_window.py @ 228:b1794cbb88e5
2011 copyright upgrade
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 05 Jan 2011 18:52:38 +0100 |
parents | 533507bb4e32 |
children | 0806a65a5fa9 |
comparison
equal
deleted
inserted
replaced
227:533507bb4e32 | 228:b1794cbb88e5 |
---|---|
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 Jérôme Poisson (goffi@goffi.org) | 6 Copyright (C) 2009, 2010, 2011 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. |
377 | 377 |
378 def onAbout(self, e): | 378 def onAbout(self, e): |
379 about = wx.AboutDialogInfo() | 379 about = wx.AboutDialogInfo() |
380 about.SetName(APP_NAME) | 380 about.SetName(APP_NAME) |
381 about.SetVersion (unicode(self.bridge.getVersion())) | 381 about.SetVersion (unicode(self.bridge.getVersion())) |
382 about.SetCopyright(u"(C) 2009,2010 Jérôme Poisson aka Goffi") | 382 about.SetCopyright(u"(C) 2009, 2010, 2011 Jérôme Poisson aka Goffi") |
383 about.SetDescription( _(u"%(name)s is a SàT (Salut à Toi) frontend\n"+ | 383 about.SetDescription( _(u"%(name)s is a SàT (Salut à Toi) frontend\n"+ |
384 u"%(name)s is based on WxPython, and is the standard graphic interface of SàT") % {'name':APP_NAME}) | 384 u"%(name)s is based on WxPython, and is the standard graphic interface of SàT") % {'name':APP_NAME}) |
385 about.SetWebSite(("http://www.goffi.org", "Goffi's non-hebdo (french)")) | 385 about.SetWebSite(("http://www.goffi.org", "Goffi's non-hebdo (french)")) |
386 about.SetDevelopers([ "Goffi (Jérôme Poisson)"]) | 386 about.SetDevelopers([ "Goffi (Jérôme Poisson)"]) |
387 try: | 387 try: |