mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
translation string fixes
This commit is contained in:
parent
063b70d492
commit
6a65050faf
@ -70,7 +70,7 @@ class GridInvDist(GdalAlgorithm):
|
||||
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,
|
||||
|
@ -213,7 +213,7 @@ class Union(GeoAlgorithm):
|
||||
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'
|
||||
|
@ -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?!
|
||||
|
Loading…
x
Reference in New Issue
Block a user