Replace Tag Filter with a transclusion of a language tiddler

<$list filter="[tag[contact]!prefix[Draft]!is[system]]" variable="mytitle">

For the german version of c contact plugin I need to replace a filter. Intead of the tag contact i want filter for the tag kontakt.

Yet I cannot figure out how to replace [tag[contact] with a transclusion of the language file $:/plugins/Xrizzy/Contacts/language/contact with kontakt.

Or is there a better approach?

Any hint is greatly apreciated. :sweat_smile:

Replace tag[contact] with tag{$:/plugins/Xrizzy/Contacts/language/contact}.

Also replace !prefix[Draft] with !has[draft.of] so it doesn’t depend on titles beginning with the literal “Draft”

Thus:

<$list filter="[tag{$:/plugins/Xrizzy/Contacts/language/contact}!has[draft.of]!is[system]]" variable="mytitle">

enjoy,
-e

There’s even !is[draft] which is synonymous.

Thank you so much Eric for the quick help. :smiling_face_with_three_hearts: :partying_face: