1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
// This is hopefully a config array for the messages
return array(
'sourcePath' => dirname(__FILE__) . DIRECTORY_SEPARATOR . '..', //root dir of all source
'messagePath' => dirname(__FILE__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'messages', //root dir of message translations
'languages' => array('de','en'), //array of lang codes to translate to, e.g. es_mx
'fileTypes' => array('php','js',), //array of extensions no dot all others excluded
'exclude' => array( //list of paths or files to exclude
'.svn',
'yiic',
'yiic.php',
'/gii',
'/messages',
),
//'translator' => 'Yii:t', //this is the default but lets be complete
);
?>
|