[QGIS Commit] r13043 - trunk/qgis/src/plugins/georeferencer

svn_qgis at osgeo.org svn_qgis at osgeo.org
Wed Mar 10 17:40:23 EST 2010


Author: jef
Date: 2010-03-10 17:40:21 -0500 (Wed, 10 Mar 2010)
New Revision: 13043

Modified:
   trunk/qgis/src/plugins/georeferencer/qgsgeorefplugingui.cpp
Log:
fix translation string

Modified: trunk/qgis/src/plugins/georeferencer/qgsgeorefplugingui.cpp
===================================================================
--- trunk/qgis/src/plugins/georeferencer/qgsgeorefplugingui.cpp	2010-03-10 22:19:31 UTC (rev 13042)
+++ trunk/qgis/src/plugins/georeferencer/qgsgeorefplugingui.cpp	2010-03-10 22:40:21 UTC (rev 13043)
@@ -1001,7 +1001,7 @@
   }
   else
   {
-    QMessageBox::information( this, tr( "Info" ), tr( "Enable to open GCP points file %1" ).arg( mGCPpointsFileName ) );
+    QMessageBox::information( this, tr( "Info" ), tr( "Unable to open GCP points file %1" ).arg( mGCPpointsFileName ) );
     return;
   }
 
@@ -1109,7 +1109,7 @@
   if ( !file.open( QIODevice::WriteOnly ) )
   {
     QMessageBox::critical( this, tr( "Error" ),
-                           tr( "Could not write to " ) + mWorldFileName );
+                           tr( "Could not write to %1" ).arg( mWorldFileName ) );
     return false;
   }
   QTextStream stream( &file );



More information about the QGIS-commit mailing list