Navigation Menu

Skip to content

Commit

Permalink
translation string fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Jan 17, 2015
1 parent 063b70d commit 6a65050
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/GridInvDist.py
Expand Up @@ -70,7 +70,7 @@ def defineCharacteristics(self):
self.addParameter(ParameterNumber(self.POWER,
self.tr('Power'), 0, 100.0, 2.0))
self.addParameter(ParameterNumber(self.SMOTHING,
self.tr('Smothing'), 0.0, 99999999.999999, 0.0))
self.tr('Smoothing'), 0.0, 99999999.999999, 0.0))
self.addParameter(ParameterNumber(self.RADIUS_1,
self.tr('Radius 1'), 0.0, 99999999.999999, 0.0))
self.addParameter(ParameterNumber(self.RADIUS_2,
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/Union.py
Expand Up @@ -213,7 +213,7 @@ def processAlgorithm(self, progress):
self.tr('Geometry exception while computing intersection'))
if not FEATURE_EXCEPT:
ProcessingLog.addToLog(ProcessingLog.LOG_WARNING,
self.tr('Feature exception while computing interesection'))
self.tr('Feature exception while computing intersection'))

def defineCharacteristics(self):
self.name = 'Union'
Expand Down
2 changes: 1 addition & 1 deletion src/python/qgspythonutilsimpl.cpp
Expand Up @@ -171,7 +171,7 @@ void QgsPythonUtilsImpl::initPython( QgisInterface* interface )
runString( "qgis.utils.initInterface(" + QString::number(( unsigned long ) interface ) + ")" );

// import QGIS user
error_msg = QObject::tr( "Couldn't load QGIS user." ) + "\n" + QObject::tr( "Python support will be disabled." );
error_msg = QObject::tr( "Couldn't load qgis.user." ) + "\n" + QObject::tr( "Python support will be disabled." );
if ( !runString( "import qgis.user", error_msg ) )
{
// Should we really bail because of this?!
Expand Down

0 comments on commit 6a65050

Please sign in to comment.