bernhard: thuban/Thuban/UI about.py,1.23,1.24

cvs@intevation.de cvs at intevation.de
Wed Oct 19 10:56:49 CEST 2005


Author: bernhard

Update of /thubanrepository/thuban/Thuban/UI
In directory doto:/tmp/cvs-serv14523/Thuban/UI

Modified Files:
	about.py 
Log Message:
* Thuban/UI/about.py: remove unused import of getdefaultlocale.
Added display of internal encoding to the about dialog text.

* Extensions/svgexport/__init__.py: changed version to "1.0.0+cvs".

Started to update the NEWS file.


Index: about.py
===================================================================
RCS file: /thubanrepository/thuban/Thuban/UI/about.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- about.py	5 Jul 2005 20:04:35 -0000	1.23
+++ about.py	19 Oct 2005 08:56:47 -0000	1.24
@@ -15,9 +15,7 @@
 
 from wxPython.wx import *
 
-from locale import getdefaultlocale
-
-from Thuban import _, internal_from_unicode
+from Thuban import _, internal_from_unicode, get_internal_encoding
 from Thuban.version import versions
 from Thuban.Model.resource import gdal_support_status
 
@@ -70,6 +68,9 @@
 
         for name, version in dyn_modules:
             text+= '\t%s %s\n' % (name, version)
+        text += '\n'
+
+        text += _('\tInternal encoding: %s\n') % get_internal_encoding()
         text += '\n'
 
         if gdal_support_status:





More information about the Thuban-devel mailing list

This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)