Improve help message

This commit is contained in:
Ivan Ivanov 2020-09-11 11:10:33 +03:00
parent e93be2f4a4
commit cbb47c7d50

View File

@ -92,8 +92,8 @@ QgsFields QgsFieldCalculatorAlgorithm::outputFields( const QgsFields & ) const
QString QgsFieldCalculatorAlgorithm::shortHelpString() const
{
return QObject::tr( "This algorithm computes a new vector layer with the same features of the input layer, "
"but with an additional attribute. The values of this new attribute are computed from each "
"feature using a mathematical formula, based on the properties and attributes of the feature."
"but either overwriting an existing attribute or adding additional attribute. The values of this "
"are computed from each feature using an expression, based on the properties and attributes of the feature."
"Note that selecting a value in \"Result in existing field\" will ignore all the rest of the "
"field settings." );
}