dealing with an array in translations yii

if i have this in my translation file:

‘monthNames’ =>

array(‘wide’ =>

array (


  1 => 'januari',


  2 => 'februari',


  3 => 'maart',


  4 => 'april',


  5 => 'mei',


  6 => 'juni',


  7 => 'juli',


  8 => 'augustus',


  9 => 'september',


  10 => 'oktober',


  11 => 'november',


  12 => 'december',


)),

how do i get the value januari out of this with

echo Yii::t(‘filename’, ‘????????’) ;

/* Moved from Feature Requests to General Discussion */

Why not use Yii::app()-dateFormatter->formatMonth()?

/Tommy