Skip to content

Commit 08ecab7

Browse files
author
jef
committed
fix translation string
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13043 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 26e23b6 commit 08ecab7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plugins/georeferencer/qgsgeorefplugingui.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ void QgsGeorefPluginGui::saveGCPs()
10011001
}
10021002
else
10031003
{
1004-
QMessageBox::information( this, tr( "Info" ), tr( "Enable to open GCP points file %1" ).arg( mGCPpointsFileName ) );
1004+
QMessageBox::information( this, tr( "Info" ), tr( "Unable to open GCP points file %1" ).arg( mGCPpointsFileName ) );
10051005
return;
10061006
}
10071007

@@ -1109,7 +1109,7 @@ bool QgsGeorefPluginGui::writeWorldFile( QgsPoint origin, double pixelXSize, dou
11091109
if ( !file.open( QIODevice::WriteOnly ) )
11101110
{
11111111
QMessageBox::critical( this, tr( "Error" ),
1112-
tr( "Could not write to " ) + mWorldFileName );
1112+
tr( "Could not write to %1" ).arg( mWorldFileName ) );
11131113
return false;
11141114
}
11151115
QTextStream stream( &file );

0 commit comments

Comments
 (0)