This repository has been archived by the owner on Jul 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
template-lang.json
59 lines (57 loc) · 1.7 KB
/
template-lang.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"welcome":{
"title": "Welcome to B.Y.D Assistant!",
"message" :[
"Welcome to B.Y.D . How can I help?",
"This is your B.Y.D Assistant . How can I help?",
"Hello, B.Y.D Assistant here. What do you need?"
],
"reprompt" :[
"What is my command?",
"You can say: 'Help' or 'What can you do?' for assistance"
]
},
"help":
{
"title": "How I can help.",
"message" :[
"Currently, I can provide sales reports and create orders. Just say: show me the sales numbers, or, I need supplies.",
"I am able to tell you the quarterly sales figures and create a sales order. You just need to ask."
],
"reprompt" :[
"So, what's gonna be?"
]
},
"sales":
{
"title": "Sales Reports",
"message" :[
"The sales for the %QUARTER% quarter of %YEAR% are %AMOUNT% %CURRENCY%"
],
"reprompt" :[]
},
"noSales":
{
"title": "Sales Reports",
"message" :[
"I am sorry but there are no sales for the %QUARTER% quarter of %YEAR%"
],
"reprompt" :[]
},
"salesOrder":
{
"title": "Order Created",
"message" :[
"Your order %ORDER% was created successfuly. The total amount of your purchase is %AMOUNT% %CURRENCY%"
],
"reprompt" :[]
},
"noSalesOrder":
{
"title": "Couldn't create the order",
"message" :[
"I am sorry, there was a problem placing your order. Please try again later."
],
"reprompt" :[]
}
}