mapcomplete/Customizations/Questions/bike/ShopName.ts
Pieter Vander Vennet 400d268651 Full translations
2020-07-21 23:31:41 +02:00

19 lines
493 B
TypeScript

import {TagRenderingOptions} from "../../TagRendering";
import Translations from "../../../UI/i18n/Translations";
export default class ShopPump extends TagRenderingOptions {
constructor() {
const to = Translations.t.cyclofix.shop.qName
super({
priority: 5,
question: to.question,
freeform: {
key: "name",
renderTemplate: to.render,
template: to.template
}
})
}
}