அறுபது ஆண்டுகள்: திருத்தங்களுக்கு இடையிலான வேறுபாடு

உள்ளடக்கம் நீக்கப்பட்டது உள்ளடக்கம் சேர்க்கப்பட்டது
சி Gowtham Sampathஆல் செய்யப்பட்ட கடைசித் தொகுப்புக்கு முன்நிலையாக்கப்பட்டது
வரிசை 398:
| 2046–2047
|}
 
==Algorithm for getting tamil year name==
<syntaxhighlight lang="javascript">
tamilYear: function (y, m, d) {
if(y === undefined){
y = today.getFullYear ();
m = today.getMonth();
d = today.getDate();
}
//Tamil new year start at april month.
//ToDO caluculate the before 14 date of april
if(m <= 4 )
if(d <= 14)
y = y - 1;
taYear = ((y + 53) % 60) + 1;
return taYear;
}
</syntaxhighlight>
 
 
For more details see [https://github.com/ThaniThamizhAkarathiKalanjiyam/jquery-ui/blob/master/external/TamilCalendar/calendar_ta.js open source code here]
 
==இம் முறையிலுள்ள குறைபாடுகள்==
"https://ta.wikipedia.org/wiki/அறுபது_ஆண்டுகள்" இலிருந்து மீள்விக்கப்பட்டது