- Grid completado en 'Usuario', pendiente en Candidato. git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_IntranetNueva/trunk@17 77cfc57b-8ef4-1849-9df6-4a38aa5da120
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',
|
|
),
|
|
);
|