2020-08-30 01:13:18 +02:00
|
|
|
import {Tag} from "../../../Logic/Tags";
|
2020-07-20 23:43:42 +02:00
|
|
|
import Translations from "../../../UI/i18n/Translations";
|
2020-07-31 17:38:03 +02:00
|
|
|
import {TagRenderingOptions} from "../../TagRenderingOptions";
|
2020-07-16 15:29:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
export default class PumpManual extends TagRenderingOptions {
|
|
|
|
constructor() {
|
2020-07-21 01:13:51 +02:00
|
|
|
const to = Translations.t.cyclofix.station.electric
|
2020-07-16 15:29:50 +02:00
|
|
|
super({
|
|
|
|
priority: 5,
|
2020-07-21 17:28:29 +02:00
|
|
|
question: to.question,
|
2020-07-16 15:29:50 +02:00
|
|
|
mappings: [
|
2020-07-21 17:28:29 +02:00
|
|
|
{k: new Tag("manual", "yes"), txt: to.manual},
|
|
|
|
{k: new Tag("manual", "no"), txt: to.electric}
|
2020-07-16 15:29:50 +02:00
|
|
|
]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|