1. <?php
  2. return array(
  3.     'name' => array(
  4.         'not_empty' => 'Please enter your username.',
  5.     ),
  6.     'password' => array(
  7.         'matches' => 'Passwords doesn\'t match',
  8.         'not_empty' => 'Please enter your password'
  9.     ),
  10.     'email' => array(
  11.         'email' => 'Your email isn\'t valid',
  12.         'not_empty' => 'Please enter your email'
  13.     ),
  14.     'about-me' => array(
  15.         'max_lenght' => 'You cann\'ot exceed 300 characters limit'
  16.     ),
  17.     '_external' => array(
  18.         'username' => 'This username already exist'
  19.     )
  20. );