Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Georeferencer fix: do not translate GDAL parameter strings
git-svn-id: http://svn.osgeo.org/qgis/trunk@13053 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
borysiasty committed Mar 14, 2010
1 parent 8442dd0 commit da05647
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions i18n/qgis_pl_PL.ts
Expand Up @@ -23898,7 +23898,7 @@ Czy chcesz nadpisać relację [%2]?</translation>
<message>
<location filename="../src/plugins/georeferencer/qgstransformsettingsdialogbase.ui" line="101"/>
<source>NONE</source>
<translation>brak</translation>
<translation>NONE</translation>
</message>
<message>
<location filename="../src/plugins/georeferencer/qgstransformsettingsdialogbase.ui" line="106"/>
Expand All @@ -23913,7 +23913,7 @@ Czy chcesz nadpisać relację [%2]?</translation>
<message>
<location filename="../src/plugins/georeferencer/qgstransformsettingsdialogbase.ui" line="116"/>
<source>DEFLATE</source>
<translation type="unfinished"></translation>
<translation>DEFLATE</translation>
</message>
<message>
<location filename="../src/plugins/georeferencer/qgstransformsettingsdialogbase.ui" line="124"/>
Expand Down
10 changes: 5 additions & 5 deletions src/plugins/georeferencer/qgsgeorefplugingui.cpp
Expand Up @@ -1374,15 +1374,15 @@ QString QgsGeorefPluginGui::convertResamplingEnumToString( QgsImageWarper::Resam
switch ( resampling )
{
case QgsImageWarper::NearestNeighbour:
return tr( "near" );
return "near";
case QgsImageWarper::Bilinear:
return tr( "bilinear" );
return "bilinear";
case QgsImageWarper::Cubic:
return tr( "cubic" );
return "cubic";
case QgsImageWarper::CubicSpline:
return tr( "cubicspline" );
return "cubicspline";
case QgsImageWarper::Lanczos:
return tr( "lanczons" );
return "lanczons";
}
return "";
}
Expand Down

0 comments on commit da05647

Please sign in to comment.