2020-07-29 13:16:21 +02:00
|
|
|
import {UIElement} from "../../UI/UIElement";
|
|
|
|
import Translations from "../../UI/i18n/Translations";
|
2020-07-31 17:38:03 +02:00
|
|
|
import {TagRenderingOptions} from "../TagRenderingOptions";
|
2020-07-29 13:16:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
export default class Website extends TagRenderingOptions {
|
|
|
|
constructor(category: string | UIElement) {
|
|
|
|
super({
|
|
|
|
question: Translations.t.general.questions.websiteOf.Subs({category: category}),
|
|
|
|
freeform: {
|
2020-07-29 15:55:50 +02:00
|
|
|
renderTemplate: Translations.t.general.questions.websiteIs,
|
2020-07-30 09:59:30 +02:00
|
|
|
template: "$$$",
|
2020-07-29 20:09:25 +02:00
|
|
|
key: "website"
|
2020-07-29 13:16:21 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|