@@ -1527,7 +1527,7 @@ void QgsLocationBasedAlgorithm::process( QgsFeatureSource *targetSource,
1527
1527
void QgsLocationBasedAlgorithm::addPredicateParameter ()
1528
1528
{
1529
1529
std::unique_ptr< QgsProcessingParameterEnum > predicateParam ( new QgsProcessingParameterEnum ( QStringLiteral ( " PREDICATE" ),
1530
- QObject::tr ( " Where the features are (geometric predicate)" ),
1530
+ QObject::tr ( " Where the features (geometric predicate)" ),
1531
1531
predicateOptionsList (), true , QVariant::fromValue ( QList< int >() << 0 ) ) );
1532
1532
1533
1533
QVariantMap predicateMetadata;
@@ -1568,14 +1568,14 @@ QgsLocationBasedAlgorithm::Predicate QgsLocationBasedAlgorithm::reversePredicate
1568
1568
1569
1569
QStringList QgsLocationBasedAlgorithm::predicateOptionsList () const
1570
1570
{
1571
- return QStringList () << QObject::tr ( " intersects " )
1572
- << QObject::tr ( " contains " )
1573
- << QObject::tr ( " is disjoint" )
1574
- << QObject::tr ( " equals " )
1575
- << QObject::tr ( " touches " )
1576
- << QObject::tr ( " overlaps " )
1577
- << QObject::tr ( " within" )
1578
- << QObject::tr ( " crosses " );
1571
+ return QStringList () << QObject::tr ( " intersect " )
1572
+ << QObject::tr ( " contain " )
1573
+ << QObject::tr ( " disjoint" )
1574
+ << QObject::tr ( " equal " )
1575
+ << QObject::tr ( " touch " )
1576
+ << QObject::tr ( " overlap " )
1577
+ << QObject::tr ( " are within" )
1578
+ << QObject::tr ( " cross " );
1579
1579
}
1580
1580
1581
1581
0 commit comments