mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-25 01:16:52 +01:00
changed how translatable messages in validators are specified. updated message extractor command. updated requirement checker.
17 lines
426 B
PHP
17 lines
426 B
PHP
<?php
|
|
/**
|
|
* This is the configuration for generating message translations
|
|
* for the Yii requirement checker. It is used by the 'yiic message' command.
|
|
*/
|
|
return array(
|
|
'sourcePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
|
|
'messagePath'=>dirname(__FILE__),
|
|
'languages'=>array('zh','zh_cn'),
|
|
'fileTypes'=>array('php'),
|
|
'translator'=>'t',
|
|
'exclude'=>array(
|
|
'.svn',
|
|
'/messages',
|
|
'/views',
|
|
),
|
|
); |