import {Tag} from "../../Logic/Tags"; import Translations from "../../UI/i18n/Translations"; import {TagRenderingOptions} from "../TagRenderingOptions"; import Translation from "../../UI/i18n/Translation"; export class NameInline extends TagRenderingOptions{ constructor(category: string | Translation ) { super({ question: "", freeform: { renderTemplate: "{name}", template: Translations.t.general.nameInlineQuestion.Subs({category: category}), key: "name", extraTags: new Tag("noname", "") // Remove 'noname=yes' }, mappings: [ {k: new Tag("noname","yes"), txt: Translations.t.general.noNameCategory.Subs({category: category})}, {k: null, txt: category} ] }); } }