Explorar el Código

wxGUI: unicode character for copyright instead of (C)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@57140 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová hace 11 años
padre
commit
ea0e6a25dd
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      gui/wxpython/gui_core/ghelp.py

+ 1 - 1
gui/wxpython/gui_core/ghelp.py

@@ -787,7 +787,7 @@ def ShowAboutDialog(prgName, startYear):
     info.SetName(prgName)
     info.SetWebSite('http://grass.osgeo.org')
     year = grass.version()['date']
-    info.SetDescription('(C) %(start)s-%(end)s by the GRASS Development Team\n\n' % {'start': startYear, 'end': year} +
+    info.SetDescription('%(c)s %(start)s-%(end)s by the GRASS Development Team\n\n' % {'c': unichr(169), 'start': startYear, 'end': year} +
                         '\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.', 75)))