Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. public $validationDomain = 'validation_errors';
  2.  
  3. public $validate = array(
  4. 'currency' => array(
  5. 'notempty' => array(
  6. 'rule' => array('notempty'),
  7. 'message' => 'Select a currency'
  8. ),
  9. ),
  10. 'title' => array(
  11. 'notempty' => array(
  12. 'rule' => array('notempty'),
  13. 'message' => 'Fill out a title'
  14. ),
  15. )
  16.  
  17. ... etc
  18. )
  19.  
  20. cake.bat i18n extract
  21.  
  22. ./Console/cake i18n extract --validation-domain validation_errors
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement