config.php 535 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * This is the configuration for generating message translations
  4. * for the Yii requirement checker. It is used by the 'yiic message' command.
  5. */
  6. return array(
  7. 'sourcePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
  8. 'messagePath'=>dirname(__FILE__),
  9. 'languages'=>array('zh_cn','zh_tw','de','es','el','sv','he','nl','pt','ru','it','fr','ja','pl','hu','ro','id','vi','bg','uk','cs'),
  10. 'fileTypes'=>array('php'),
  11. 'overwrite'=>true,
  12. 'translator'=>'t',
  13. 'exclude'=>array(
  14. '.gitignore',
  15. '/messages',
  16. '/views',
  17. ),
  18. );