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
+1 -1
View File
@@ -17,7 +17,7 @@ module.exports = class EmojifyCommand extends Command {
type: 'string',
validate: text => {
if (letterTrans(text.toLowerCase(), dictionary, ' ').length < 2000) return true;
return 'Your text is too long.';
return 'Invalid text, your text is too long.';
},
parse: text => text.toLowerCase()
}