|
@@ -27,6 +27,7 @@ import time
|
|
|
import traceback
|
|
|
import getpass
|
|
|
import stat
|
|
|
+import textwrap
|
|
|
|
|
|
try:
|
|
|
import xml.etree.ElementTree as etree
|
|
@@ -552,9 +553,9 @@ if __name__ == "__main__":
|
|
|
info.SetIcon(wx.Icon(os.path.join(globalvar.ETCICONDIR, 'grass.ico'), wx.BITMAP_TYPE_ICO))
|
|
|
info.SetName(_('wxGUI Graphical Modeler'))
|
|
|
info.SetWebSite('http://grass.osgeo.org')
|
|
|
- info.SetDescription(_('(C) 2010 by the GRASS Development Team\n\n'
|
|
|
- 'This program is free software under the GNU General Public License'
|
|
|
- '(>=v2). Read the file COPYING that comes with GRASS for details.'))
|
|
|
+ info.SetDescription(_('(C) 2010 by the GRASS Development Team\n\n') +
|
|
|
+ '\n'.join(textwrap.wrap(_('This program is free software under the GNU General Public License'
|
|
|
+ '(>=v2). Read the file COPYING that comes with GRASS for details.'), 100)))
|
|
|
|
|
|
wx.AboutBox(info)
|
|
|
|