Could you please advise on how to display Blog's date in local format (Polish)?
To be more specific I would like to display a date in long format in Polish "środa, 21 sierpnia 2024" Polska (UTC+2)
Many thanks for helping!
Best Regards

Code: Select all
<div class="blogitem">
<$HEADING$ class="blogsubject">$SUBJECT$</$HEADING$>
<p class="blogdate">
[b]<script type="text/javascript">document.write(date2polish('$DATE$'))</script>[/b]
</p>
<p class="blogthumb">$IMAGE$</p>
$TEXT$
<a class="blogbutton" href="$URL$" target="$TARGET$">$BUTTONTEXT$</a>
<p><span class="blogcomments">$LABEL$ <a style="color: black;" href="mailto:$EMAIL$?subject=$SUBJECT$">$EMAIL$</a></span> </p>
</div>
Code: Select all
DayT = new Array(7)
DayT[0] = "niedziela"
DayT[1] = "poniedziałek"
DayT[2] = "wtorek"
DayT[3] = "środa"
DayT[4] = "czwartek"
DayT[5] = "piątek"
DayT[6] = "sobota"
MonthT = new Array(12)
MonthT[0] = "stycznia"
MonthT[1] = "lutego"
MonthT[2] = "marca"
MonthT[3] = "kwietnia"
MonthT[4] = "maja"
MonthT[5] = "czerwca"
MonthT[6] = "lipca"
MonthT[7] = "sierpnia"
MonthT[8] = "września"
MonthT[9] = "października"
MonthT[10] = "listopada"
MonthT[11] = "grudnia"
function date2polish(dateT){
var tEMP = new Date(dateT);
var Day = tEMP.getDate();
var DayOW = tEMP.getDay();
var Month = tEMP.getMonth();
var Year = tEMP.getFullYear();
return DayT[DayOW] + " , " + Day + " " + MonthT[Month] + " , " + Year;
}