-
Notifications
You must be signed in to change notification settings - Fork 11
/
languageStrings.js
22 lines (21 loc) · 1.32 KB
/
languageStrings.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
var languageStrings = {
"en": {
"translation": {
"FACTS": [
"Llamas are large animals. They can be 6 feet tall and reach between 280 and 450 pounds.",
"A Llama's body is covered with wool which can be black, gray, white or brown, with variety of patterns.",
"Llamas have excellent sight, smell and hearing, which are used for detection of potential danger.",
"Llamas are very social animals. They live in groups composed of up to 20 animals.",
"Llamas are known as animals that spit when provoked or threatened. They can spit at humans also, but they usually spit at each other to solve misunderstandings in the group. ",
"Llamas are very intelligent, but stubborn animals. When the load on its back is too heavy, a llama will refuse to carry it until some of the load is removed.",
"The lifespan of a llama is between 20 and 30 years."
],
"SKILL_NAME" : "LLama Facts",
"GET_FACT_MESSAGE" : "Here's your fact: ",
"HELP_MESSAGE" : "You can say tell me a llama fact, or, you can say exit... What can I help you with?",
"HELP_REPROMPT" : "What can I help you with?",
"STOP_MESSAGE" : "Goodbye!"
}
}
};
module.exports = languageStrings;