Skip to content

Commit

Permalink
Make error message translatable
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn authored and jef-n committed Apr 30, 2020
1 parent aa554b2 commit 0c1e720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/expression/qgsexpressionnodeimpl.cpp
Expand Up @@ -1276,7 +1276,7 @@ QVariant QgsExpressionNodeColumnRef::evalNode( QgsExpression *parent, const QgsE
return feature.attribute( mName );
}
}
parent->setEvalErrorString( QStringLiteral( "Column '%1' not found" ).arg( mName ) );
parent->setEvalErrorString( tr( "Column '%1' not found" ).arg( mName ) );
return QVariant();
}

Expand Down

0 comments on commit 0c1e720

Please sign in to comment.