
Originally Posted by
Vik
I've run into the same problem recently...
So, You may fix it as follows:
$month_number=date('m');
switch($month_number)
{
case '01': $temp='January in Hungarian';break;
case '02': $temp='February in Hungarian';break;
...
...
case '12': $temp='December in Hungarian';break;
}
define('TABLE_HEADING_NEW_PRODUCTS', 'New Products For '. $temp);
It should be done in /includes/languages/your_templates/hungarian.php
It works for me (I need Bulgarian on my site).
Hope that helps.