config.php 679 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * This is the configuration for generating message translations
  4. * for the Yii framework. It is used by the 'yiic message' command.
  5. */
  6. return array(
  7. 'sourcePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
  8. 'messagePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'messages',
  9. 'languages'=>array('fi','zh_cn','zh_tw','ca','de','el','es','sv','he','nl','pt','pt_br','ru','it','fr','ja','pl','hu','ro','id','vi','bg','lv','sk','uk','ko_kr','kk','cs','da'),
  10. 'fileTypes'=>array('php'),
  11. 'overwrite'=>true,
  12. 'exclude'=>array(
  13. '.svn',
  14. '.gitignore',
  15. 'yiilite.php',
  16. 'yiit.php',
  17. '/i18n/data',
  18. '/messages',
  19. '/vendors',
  20. '/web/js',
  21. ),
  22. );