Another merge conflict, translation strings

This commit is contained in:
shamoon
2024-09-23 11:51:38 -07:00
parent c0cb6e2d79
commit 9c9f95b0d7
2 changed files with 216 additions and 89 deletions

View File

@@ -234,20 +234,8 @@ export class FilterEditorComponent
return $localize`Without any tag`
}
case FILTER_HAS_CUSTOM_FIELDS_ANY:
return $localize`Custom fields include: ${
this.customFields.find((f) => f.id == +rule.value)?.name
}`
case FILTER_HAS_CUSTOM_FIELDS_ALL:
return $localize`Custom fields: ${
this.customFields.find((f) => f.id == +rule.value)?.name
}`
case FILTER_HAS_ANY_CUSTOM_FIELDS:
if (rule.value == 'false') {
return $localize`Without any custom field`
}
case FILTER_CUSTOM_FIELDS_LOOKUP:
return $localize`Custom fields query`
case FILTER_TITLE:
return $localize`Title: ${rule.value}`