diff options
| author | Rubén Beltrán del Río <ben@nsovocal.com> | 2017-02-19 01:59:26 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-19 01:59:26 -0600 |
| commit | e5fdb2d460feed6beda8cac764b15f173b67159d (patch) | |
| tree | 8dd6321a5966b29c69d9750495dc9b72bfdceb8b /lib/controllers/main_menu.js | |
| parent | 7404eac982a0d928866aeddaa1a0ea4d1f2d3870 (diff) | |
Check the Account SID (#3)
* Add twilio config to readme
* Modify wording of main menu.
* Modify wording of recording message
* Add account sid setting to readme
* Add the twilio account sid to config
* Add check for accountSid
* Update paw to send AccountSid
Diffstat (limited to 'lib/controllers/main_menu.js')
| -rw-r--r-- | lib/controllers/main_menu.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/controllers/main_menu.js b/lib/controllers/main_menu.js index 461cff8..06e172b 100644 --- a/lib/controllers/main_menu.js +++ b/lib/controllers/main_menu.js @@ -13,9 +13,9 @@ internals.kMainMenuRoute = '/menus/main'; internals.kRecordingMenuRoute = '/menus/recording'; internals.kRandomMessageRoute = '/recordings/0'; internals.kLeaveMessageRoute = '/recordings'; -internals.kMenuMessage = 'Para dejar un mensaje, presiona 1. ' + - 'Para escuchar un mensaje al azar, presiona 2. ' + - 'Para escuchar un mensaje específico, presioan 3.'; // the message that will be shown +internals.kMenuMessage = 'Marca 1 para grabar mensaje. ' + + 'Marca 2 para escuchar mensaje al azar. ' + + 'Marca 3 si conoces el número de mensaje'; // the message that will be shown internals.kMenuInvalidResponseMessage = 'No entendí... Volviendo al menu principal.'; // invalid selection message internals.kMenuOptions = { leaveMessage: 1, |