Change some strings

This commit is contained in:
Daniel Odendahl Jr
2017-09-13 02:08:06 +00:00
parent e0b823062d
commit caba065235
32 changed files with 51 additions and 50 deletions
+3 -3
View File
@@ -17,17 +17,17 @@ module.exports = class StrawpollCommand extends Command {
type: 'string',
validate: title => {
if (title.length < 200) return true;
return 'Please keep the title under 200 characters.';
return 'Invalid title, please keep the title under 200 characters.';
}
},
{
key: 'options',
prompt: 'What options do you want to be able to pick from? Maximum of 30.',
prompt: 'What options do you want to be able to pick from? You may have a maximum of 30.',
type: 'string',
infinite: true,
validate: choice => {
if (choice.length < 140) return true;
return 'Please keep choices under 140 characters each.';
return 'Invalid option, please keep options under 140 characters each.';
}
}
]