TUN*_*R88 5 php translation internationalization yii fullcalendar
Yii在framework/i18n/data /%lang%.php文件中有很多翻译.以下是德语翻译
我想在我的Yii项目中使用Fullcalendar.要翻译此日历,我必须为当前语言提供一个monthNames/dayNames数组. Fullcalendar monthNames文档
Yii生成数组的最佳方法是什么:
['January', 'February', 'March', 'April', 'May', 'June', 'July',
'August', 'September', 'October', 'November', 'December']
Run Code Online (Sandbox Code Playgroud)
您可以使用json_encode
(或Yii native CJSON::encode()
)和Yii提供的数据生成:
json_encode(
include('path/to/yii/framework/i18n/data/de_de.php')['monthNames']['wide']
);
Run Code Online (Sandbox Code Playgroud)
(此语法需要PHP 5.4才能进行数组解除引用)
从Yii中的当前区域设置:
json_encode(
Yii::app()->locale->getMonthNames()
)
Run Code Online (Sandbox Code Playgroud)
请参见http://www.yiiframework.com/doc/api/1.1/CLocale#getMonthNames-detail
归档时间: |
|
查看次数: |
2977 次 |
最近记录: |