How to translate the names of months in the calendar Events module?
I translated all the files containing the names of months (about 7! - Why?). Probably in this calendar, names of months are generated directly by PHP. How do they translate?
How to translate the names of months in the calendar Events module? I translated all the files containing the names of months (about 7! - Why?). Probably in this calendar, names of months are generated directly by PHP. How do they translate? |
Hi Did you find the answer ? |
I think you will need find all date function and procces it. for example ; $sDate = str_replace($sMonth, _t('_'.$sMonth), $sDate); break; } } PS: If possible do not write me personally, please try to ask on the forum first |
Hi Did you find the answer ? Yes. At the beginning of the file /inc/classes/BxDolCalendar.php I added: @setlocale(LC_TIME, 'pl_PL.UTF-8'); for the Polish language. |