feat(editor): Filter component + implement in If node (#7490)
New Filter component + implementation in If node (v2) <img width="3283" alt="image" src="https://github.com/n8n-io/n8n/assets/8850410/35c379ef-4b62-4d06-82e7-673d4edcd652"> --------- Co-authored-by: Giulio Andreini <andreini@netseven.it> Co-authored-by: Michael Kret <michael.k@radency.com>
This commit is contained in:
@@ -2289,6 +2289,52 @@
|
||||
"executionUsage.button.upgrade": "Upgrade plan",
|
||||
"executionUsage.expired.text": "Your trial is over. Upgrade now to keep your data.",
|
||||
"executionUsage.ranOutOfExecutions.text": "You’re out of executions. Upgrade your plan to keep automating.",
|
||||
"filter.operatorGroup.basic": "Basic",
|
||||
"filter.operatorGroup.string": "String",
|
||||
"filter.operatorGroup.number": "Number",
|
||||
"filter.operatorGroup.date": "Date & Time",
|
||||
"filter.operatorGroup.boolean": "Boolean",
|
||||
"filter.operatorGroup.array": "Array",
|
||||
"filter.operatorGroup.object": "Object",
|
||||
"filter.operator.equals": "is equal to",
|
||||
"filter.operator.notEquals": "is not equal to",
|
||||
"filter.operator.contains": "contains",
|
||||
"filter.operator.notContains": "does not contain",
|
||||
"filter.operator.startsWith": "starts with",
|
||||
"filter.operator.notStartsWith": "does not start with",
|
||||
"filter.operator.endsWith": "ends with",
|
||||
"filter.operator.notEndsWith": "does not end with",
|
||||
"filter.operator.exists": "exists",
|
||||
"filter.operator.notExists": "does not exist",
|
||||
"filter.operator.regex": "matches regex",
|
||||
"filter.operator.notRegex": "does not match regex",
|
||||
"filter.operator.gt": "is greater than",
|
||||
"filter.operator.lt": "is less than",
|
||||
"filter.operator.gte": "is greater than or equal",
|
||||
"filter.operator.lte": "is less than or equal",
|
||||
"filter.operator.after": "is after",
|
||||
"filter.operator.before": "is before",
|
||||
"filter.operator.afterOrEquals": "is after or equal",
|
||||
"filter.operator.beforeOrEquals": "is before or equal",
|
||||
"filter.operator.true": "is true",
|
||||
"filter.operator.false": "is false",
|
||||
"filter.operator.lengthEquals": "length equal to",
|
||||
"filter.operator.lengthNotEquals": "length not equal to",
|
||||
"filter.operator.lengthGt": "length greater than",
|
||||
"filter.operator.lengthLt": "length less than",
|
||||
"filter.operator.lengthGte": "length greater than or equal",
|
||||
"filter.operator.lengthLte": "length less than or equal",
|
||||
"filter.operator.empty": "is empty",
|
||||
"filter.operator.notEmpty": "is not empty",
|
||||
"filter.combinator.or": "OR",
|
||||
"filter.combinator.and": "AND",
|
||||
"filter.addCondition": "Add condition",
|
||||
"filter.removeCondition": "Remove condition",
|
||||
"filter.maxConditions": "Maximum conditions reached",
|
||||
"filter.condition.resolvedTrue": "This condition is true for the first input item",
|
||||
"filter.condition.resolvedFalse": "This condition is false for the first input item",
|
||||
"filter.condition.placeholderLeft": "value1",
|
||||
"filter.condition.placeholderRight": "value2",
|
||||
"templateSetup.title": "Setup '{name}' template",
|
||||
"templateSetup.instructions": "You need {0} account to setup this template",
|
||||
"templateSetup.skip": "Skip",
|
||||
|
||||
Reference in New Issue
Block a user