I toggle language setting ('en' or 'ru') for CJuiDateTimePicker in yii:
$this->widget('ext.CJuiDateTimePicker.CJuiDateTimePicker',array(
'model'=>$model,
'attribute'=>'Begin',
'language'=> substr(Yii::app()->getLanguage(), 0, 2), // Yii::app()->language,
// 'options'=>$options,
));
but the widget still shows Chinese characters for months in case of English language setting ('en'):
I followed this comment with no avail: http://www.yiiframework.com/extension/juidatetimepicker/#c12617 What's wrong?