Prechádzať zdrojové kódy

wxGUI/start up: remove sentence about setting default region, it was already moved to a different dialog

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@64597 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 10 rokov pred
rodič
commit
373853e40b
1 zmenil súbory, kde vykonal 2 pridanie a 3 odobranie
  1. 2 3
      gui/wxpython/gis_set.py

+ 2 - 3
gui/wxpython/gis_set.py

@@ -506,9 +506,8 @@ class GRASSStartup(wx.Frame):
             self.lbmapsets.SetSelection(0)
             self.SetLocation(self.gisdbase, gWizard.location, 'PERMANENT')
             if gWizard.georeffile:
-                message = _("Do you want to import <%(name)s> to the newly created location? "
-                            "The location's default region will be set from this imported "
-                            "map.") % {'name': gWizard.georeffile}
+                message = _("Do you want to import <%(name)s> to the newly created location?") % \
+                    {'name': gWizard.georeffile}
                 dlg = wx.MessageDialog(parent = self,
                                        message = message,
                                        caption = _("Import data?"),