Skip to content

Commit 6a65050

Browse files
committed
translation string fixes
1 parent 063b70d commit 6a65050

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

python/plugins/processing/algs/gdal/GridInvDist.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def defineCharacteristics(self):
7070
self.addParameter(ParameterNumber(self.POWER,
7171
self.tr('Power'), 0, 100.0, 2.0))
7272
self.addParameter(ParameterNumber(self.SMOTHING,
73-
self.tr('Smothing'), 0.0, 99999999.999999, 0.0))
73+
self.tr('Smoothing'), 0.0, 99999999.999999, 0.0))
7474
self.addParameter(ParameterNumber(self.RADIUS_1,
7575
self.tr('Radius 1'), 0.0, 99999999.999999, 0.0))
7676
self.addParameter(ParameterNumber(self.RADIUS_2,

python/plugins/processing/algs/qgis/Union.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def processAlgorithm(self, progress):
213213
self.tr('Geometry exception while computing intersection'))
214214
if not FEATURE_EXCEPT:
215215
ProcessingLog.addToLog(ProcessingLog.LOG_WARNING,
216-
self.tr('Feature exception while computing interesection'))
216+
self.tr('Feature exception while computing intersection'))
217217

218218
def defineCharacteristics(self):
219219
self.name = 'Union'

src/python/qgspythonutilsimpl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ void QgsPythonUtilsImpl::initPython( QgisInterface* interface )
171171
runString( "qgis.utils.initInterface(" + QString::number(( unsigned long ) interface ) + ")" );
172172

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

0 commit comments

Comments
 (0)