Fix messages to sound more natural
This commit is contained in:
@@ -23,12 +23,12 @@ alexaApp.express({
|
|||||||
const responseMessages = {
|
const responseMessages = {
|
||||||
WELCOME:'We are Saburly. Team of design and build software. We are located in Bosnia and Herzegovina. To ask us about our services, say: what do you do? If you want to know about technologies say: what do you know? If you\'re interested in projects we worked on, say: tell me about your projects. If you want to know about how we approach work, say: tell me about your process. If you are confused, just say: help!',
|
WELCOME:'We are Saburly. Team of design and build software. We are located in Bosnia and Herzegovina. To ask us about our services, say: what do you do? If you want to know about technologies say: what do you know? If you\'re interested in projects we worked on, say: tell me about your projects. If you want to know about how we approach work, say: tell me about your process. If you are confused, just say: help!',
|
||||||
PROCESS: 'We collaborate closely with our clients at each step of the developmentprocess. From designing the UX to developing the front-end andarchitecting the back-end.',
|
PROCESS: 'We collaborate closely with our clients at each step of the developmentprocess. From designing the UX to developing the front-end andarchitecting the back-end.',
|
||||||
SERVICES: 'We are a team of creative, open minded, skilled and fun loving engineers that ship success every day. Here are the 3 things we can do for you: UX and UI design, web development and mobile development.',
|
SERVICES: 'We are a team of creative, open minded, skilled and fun loving engineers that ship success every day. Here are the 3 things we can do for you: UX and UI design, web development, and mobile development.',
|
||||||
TECHNOLOGIES: 'Some of the technologies we use are: html5, react, nodejs, ruby, amazon aws, docker, jenkins, elastic etc.',
|
TECHNOLOGIES: 'Some of the technologies we use are: html5, react, nodejs, ruby, amazon aws, docker, jenkins, elastic, etc.',
|
||||||
PROJECTS: 'Some of our projects are: Agritech IoT Solution, real-estate search website, online shop for baby products, students registry for Ministry of Education etc.',
|
PROJECTS: 'Some of our projects are: Agritech IoT Solution, real-estate search website, online shop for baby products, students registry for Ministry of Education, etc.',
|
||||||
WELCOME_REPROMPT: 'For instructions on what you can say, please say help!',
|
WELCOME_REPROMPT: 'For instructions on what you can say, please say: help.',
|
||||||
HELP: 'To ask us about our services, say: what do you do? If you want to know about technologies say: what do you know? If you\'re interested in projects we worked on, say: tell me about your projects. If you want to know about how we approach work, say: tell me about your process.',
|
HELP: 'To ask us about our services, say: what do you do? If you want to know about technologies say: what do you know? If you\'re interested in projects we worked on, say: tell me about your projects. If you want to know about how we approach work, say: tell me about your process.',
|
||||||
STOP: 'Goodbye!'
|
STOP: 'Goodbye, and stay Saburly.'
|
||||||
};
|
};
|
||||||
|
|
||||||
alexaApp.launch(function(request, response) {
|
alexaApp.launch(function(request, response) {
|
||||||
@@ -36,7 +36,7 @@ alexaApp.launch(function(request, response) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
alexaApp.intent("AMAZON.HelpIntent", {
|
alexaApp.intent("AMAZON.HelpIntent", {
|
||||||
utterances: [],
|
utterances: [],
|
||||||
},
|
},
|
||||||
function (request, response) {
|
function (request, response) {
|
||||||
response.say(responseMessages.HELP).shouldEndSession(false);
|
response.say(responseMessages.HELP).shouldEndSession(false);
|
||||||
@@ -44,7 +44,7 @@ alexaApp.intent("AMAZON.HelpIntent", {
|
|||||||
);
|
);
|
||||||
|
|
||||||
alexaApp.intent("AMAZON.StopIntent", {
|
alexaApp.intent("AMAZON.StopIntent", {
|
||||||
utterances: [],
|
utterances: [],
|
||||||
},
|
},
|
||||||
function (request, response) {
|
function (request, response) {
|
||||||
response.say(responseMessages.STOP);
|
response.say(responseMessages.STOP);
|
||||||
@@ -52,7 +52,7 @@ alexaApp.intent("AMAZON.StopIntent", {
|
|||||||
);
|
);
|
||||||
|
|
||||||
alexaApp.intent("AMAZON.CancelIntent", {
|
alexaApp.intent("AMAZON.CancelIntent", {
|
||||||
utterances: [],
|
utterances: [],
|
||||||
},
|
},
|
||||||
function (request, response) {
|
function (request, response) {
|
||||||
response.say(responseMessages.STOP);
|
response.say(responseMessages.STOP);
|
||||||
|
|||||||
Reference in New Issue
Block a user