Skip to content

Commit

Permalink
fix translation string
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@13043 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Mar 10, 2010
1 parent 8ffb723 commit 669d9bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/georeferencer/qgsgeorefplugingui.cpp
Expand Up @@ -1001,7 +1001,7 @@ void QgsGeorefPluginGui::saveGCPs()
}
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;
}

Expand Down Expand Up @@ -1109,7 +1109,7 @@ bool QgsGeorefPluginGui::writeWorldFile( QgsPoint origin, double pixelXSize, dou
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 );
Expand Down

0 comments on commit 669d9bd

Please sign in to comment.