29 lines
771 B
PHP
29 lines
771 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* This is the configuration for generating message translations
|
||
|
|
* for the Yii framework. It is used by the 'yiic message' command.
|
||
|
|
*/
|
||
|
|
return array(
|
||
|
|
'sourcePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
|
||
|
|
'messagePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'messages',
|
||
|
|
'languages'=>array('es'),
|
||
|
|
'fileTypes'=>array('php'),
|
||
|
|
'translator' => 'Yii::t',
|
||
|
|
'overwrite'=>true,
|
||
|
|
'exclude'=>array(
|
||
|
|
'.git',
|
||
|
|
'.svn',
|
||
|
|
'yiilite.php',
|
||
|
|
'yiit.php',
|
||
|
|
'/index.php',
|
||
|
|
'/assets',
|
||
|
|
'/extensions',
|
||
|
|
'/gii',
|
||
|
|
'/messages',
|
||
|
|
'/migrations',
|
||
|
|
'/runtime',
|
||
|
|
'/tests',
|
||
|
|
'/vendors',
|
||
|
|
),
|
||
|
|
);
|