Hi, I'm working on polish translation but EN.php doesn't have words to translate like name of months. How to change that?
Below example of DRAFTs section.
Below example of DRAFTs section.

function date_dropdowns( $date='', $simple_mode=0 ){
global $FUNCS, $PAGE;
//TODO: allow localization
$arrMonths = array('01'=>'January', '02'=>'February', '03'=>'March', '04'=>'April',
'05'=>'May', '06'=>'June', '07'=>'July', '08'=>'August',
'09'=>'September', '10'=>'October', '11'=>'November', '12'=>'December');
$t['month01'] = 'January';
$t['month02'] = 'February';
$t['month03'] = 'March';
$t['month04'] = 'April';
$t['month05'] = 'May';
$t['month06'] = 'June';
$t['month07'] = 'July';
$t['month08'] = 'August';
$t['month09'] = 'September';
$t['month10'] = 'October';
$t['month11'] = 'November';
$t['month12'] = 'December';
function date_dropdowns( $date='', $simple_mode=0 ){
global $FUNCS, $PAGE;
//TODO: allow localization
$arrMonths = array('01'=>$FUNCS->t('month01'), '02'=>$FUNCS->t('month02'), '03'=>$FUNCS->t('month03'), '04'=>$FUNCS->t('month04'),
'05'=>$FUNCS->t('month05'), '06'=>$FUNCS->t('month06'), '07'=>$FUNCS->t('month07'), '08'=>$FUNCS->t('month08'),
'09'=>$FUNCS->t('month09'), '10'=>$FUNCS->t('month10'), '11'=>$FUNCS->t('month11'), '12'=>$FUNCS->t('month12'));
<cms:set month01 = "Январь" />
<cms:set month02 = "Февраль" />
<cms:set month03 = "Март" />
<cms:set month04 = "Апрель" />
<cms:set month05 = "Май" />
<cms:set month06 = "Июнь" />
<cms:set month07 = "Июль" />
<cms:set month08 = "Август" />
<cms:set month09 = "Сентябрь" />
<cms:set month10 = "Октябрь" />
<cms:set month11 = "Ноябрь" />
<cms:set month12 = "Декабрь" />
<cms:config_form_view>
<cms:persist k_publish_date="<cms:show frm_my_publish_date />" />
<cms:field 'my_publish_date' label=seminar_data>
<cms:input name=k_field_input_name type='datetime' format='ymd' fields_separator=',' default_time="<cms:if k_cur_form_mode='edit' && k_page_date!='0000-00-00 00:00:00'><cms:show k_page_date /><cms:else />@current</cms:if>" required='1' months="<cms:show month01 />, <cms:show month02 />, <cms:show month03 />, <cms:show month04 />, <cms:show month05 />, <cms:show month06 />, <cms:show month07 />, <cms:show month08 />, <cms:show month09 />, <cms:show month10 />, <cms:show month11 />, <cms:show month12 />" />
</cms:field>
</cms:config_form_view>
ERROR: Tag "datetime" - 'months' attribute requires 12 months.
define( 'K_ADMIN_LANG', 'RU' );
$t['month01'] = 'Январь';
$t['month02'] = 'Февраль';
$t['month03'] = 'Март';
$t['month04'] = 'Апрель';
$t['month05'] = 'Май';
$t['month06'] = 'Июнь';
$t['month07'] = 'Июль';
$t['month08'] = 'Август';
$t['month09'] = 'Сентябрь';
$t['month10'] = 'Октябрь';
$t['month11'] = 'Ноябрь';
$t['month12'] = 'Декабрь';
$arrMonths = array(
'01'=>$FUNCS->t('month01'),
'02'=>$FUNCS->t('month02'),
'03'=>$FUNCS->t('month03'),
'04'=>$FUNCS->t('month04'),
'05'=>$FUNCS->t('month05'),
'06'=>$FUNCS->t('month06'),
'07'=>$FUNCS->t('month07'),
'08'=>$FUNCS->t('month08'),
'09'=>$FUNCS->t('month09'),
'10'=>$FUNCS->t('month10'),
'11'=>$FUNCS->t('month11'),
'12'=>$FUNCS->t('month12')
);