Add phone number to bikeshop

This commit is contained in:
Pieter Vander Vennet 2020-07-27 00:14:41 +02:00
parent 21280fd156
commit 68929e4067
11 changed files with 34 additions and 8 deletions

View file

@ -1,4 +1,5 @@
import {UIEventSource} from "./UIEventSource";
import {TagDependantUIElement} from "../Customizations/UIElementConstructor";
export abstract class UIElement {

View file

@ -461,7 +461,19 @@ export default class Translations {
}),
noNameCategory: new T({
nl: "{category} zonder naam"
})
}),
questions: {
phoneNumberOf: new T({
en: "What is the phone number of {category}?",
nl: "Wat is het telefoonnummer van {category}?"
}),
phoneNumberIs: new T({
en: "The phone number of this {category} is <a href='tel:{phone}'>{phone}</a>",
nl: "Het telefoonnummer van {category} is <a href='tel:{phone}'>{phone}</a>"
})
}
}
}