You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
443 B

  1. module.exports = {
  2. login: {
  3. invalid: 'invalid name chosen',
  4. exists: 'username exists, please try another',
  5. allFields: 'please complete all fields',
  6. illegal: 'illegal characters in username',
  7. incorrect: 'invalid username and password',
  8. charExists: 'character name is taken',
  9. maxUsernameLength: 'username may not be longer than 32 characters'
  10. },
  11. createCharacter: {
  12. nameLength: 'name must be between 3 and 12 characters'
  13. }
  14. };