2020-08-30 01:13:18 +02:00
|
|
|
import { Tag } from "../../../Logic/Tags";
|
2020-07-29 13:16:21 +02:00
|
|
|
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 ParkingCovered extends TagRenderingOptions {
|
|
|
|
constructor() {
|
|
|
|
const key = 'covered'
|
|
|
|
const to = Translations.t.cyclofix.parking.covered
|
|
|
|
super({
|
|
|
|
priority: 15,
|
|
|
|
question: to.question.Render(),
|
|
|
|
mappings: [
|
|
|
|
{k: new Tag(key, "yes"), txt: to.yes},
|
|
|
|
{k: new Tag(key, "no"), txt: to.no}
|
|
|
|
]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|