Skip to content

Commit

Permalink
remove translations for expression group to fix the UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustry authored and nirvn committed Oct 27, 2018
1 parent 7641869 commit f3643ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/expression/qgsexpressionfunction.cpp
Expand Up @@ -5015,7 +5015,7 @@ QgsArrayForeachExpressionFunction::QgsArrayForeachExpressionFunction()
: QgsExpressionFunction( QStringLiteral( "array_foreach" ), QgsExpressionFunction::ParameterList()
<< QgsExpressionFunction::Parameter( QStringLiteral( "array" ) )
<< QgsExpressionFunction::Parameter( QStringLiteral( "expression" ) ),
QCoreApplication::tr( "Arrays" ) )
QStringLiteral( "Arrays" ) )
{

}
Expand Down Expand Up @@ -5109,7 +5109,7 @@ QgsArrayFilterExpressionFunction::QgsArrayFilterExpressionFunction()
: QgsExpressionFunction( QStringLiteral( "array_filter" ), QgsExpressionFunction::ParameterList()
<< QgsExpressionFunction::Parameter( QStringLiteral( "array" ) )
<< QgsExpressionFunction::Parameter( QStringLiteral( "expression" ) ),
QCoreApplication::tr( "Arrays" ) )
QStringLiteral( "Arrays" ) )
{

}
Expand Down Expand Up @@ -5204,7 +5204,7 @@ QgsWithVariableExpressionFunction::QgsWithVariableExpressionFunction()
QgsExpressionFunction::Parameter( QStringLiteral( "name" ) )
<< QgsExpressionFunction::Parameter( QStringLiteral( "value" ) )
<< QgsExpressionFunction::Parameter( QStringLiteral( "expression" ) ),
QCoreApplication::tr( "General" ) )
QStringLiteral( "General" ) )
{

}
Expand Down

0 comments on commit f3643ef

Please sign in to comment.