Skip to content

Commit

Permalink
better wording for error message
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Mar 30, 2012
1 parent aeb9211 commit fab607f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/fTools/tools/doDefineProj.py
Expand Up @@ -66,7 +66,7 @@ def updateProj1(self, layerName):
if crs.isValid():
self.inRef.insert(crs.authid() + " - " + crs.description())
else:
self.inRef.insert( self.tr( "Unknown CRS" ) )
self.inRef.insert( self.tr( "Missing or invalid CRS" ) )

def updateProj2(self, layerName):
self.outRef.clear()
Expand All @@ -75,7 +75,7 @@ def updateProj2(self, layerName):
if crs.isValid():
self.outRef.insert(crs.authid() + " - " + crs.description())
else:
self.outRef.insert( self.tr( "Unknown CRS" ) )
self.outRef.insert( self.tr( "Missing or invalid CRS" ) )

def accept(self):
self.buttonOk.setEnabled( False )
Expand Down

0 comments on commit fab607f

Please sign in to comment.