Changes
Title
unchanged
Themed translations (i18n)
Category
unchanged
How-tos
Yii version
unchanged
Tags
unchanged
Yii::t, t, translation, i18n, CPhpMessageSource, messages, theme, theming, themes
Content
changed
[...]
return array(
//...
'components'=>array(
'messages'=>array(
'class' => 'ThemedPhpMessageSource',
'cachingDuration'=>$isProduction?'3600':0,
),
)
);
```
Then in your 'themes/<yourtheme>/messages' directory, add your themed messages as you do for the application and for widgets.[...]