Translation

This commit is contained in:
Pieter Vander Vennet 2020-07-21 17:28:29 +02:00
parent 10202c17d6
commit 6ce60a79b2

View file

@ -8,10 +8,10 @@ export default class PumpManual extends TagRenderingOptions {
const to = Translations.t.cyclofix.station.electric
super({
priority: 5,
question: to.question.Render(),
question: to.question,
mappings: [
{k: new Tag("manual", "yes"), txt: to.manual.Render()},
{k: new Tag("manual", "no"), txt: to.electric.Render()}
{k: new Tag("manual", "yes"), txt: to.manual},
{k: new Tag("manual", "no"), txt: to.electric}
]
});
}