-
Notifications
You must be signed in to change notification settings - Fork 0
/
i18n.js
34 lines (31 loc) · 830 Bytes
/
i18n.js
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
/*
* Language specific configuration
*/
// Fixed console messages responses
exports.console = {
welcome: "\nHello I am %name%!",
info1: "Try saying, \"%name%, change your light to blue\" (or any other color) or \"%name%, what can you do?\"",
info2: "You can also say, \"%name%, tell me a joke!\" or \"%name%, tell me a poem!\"\n",
listening: ">>> Start listening",
noop: ""
};
// Fixed text responses
exports.responses = {
nocamera: "Sorry, but I think I am blind today.",
whatisee: "This is a ",
noidea: "Sorry, I don't know what this is.",
noop: ""
};
// Colors
exports.color = {
"on": "on",
"off": "off",
"blue": "blue",
"yellow": "yellow",
"green": "green",
"purple": "purple",
"orange": "orange",
"pink": "pink",
"red": "red",
"white": "white"
};