<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -54,7 +54,9 @@ Calendar.prototype = {
 			return this;
 		}
 		this.option = $.extend({
-			lang: 'ja',
+			lang : 'ja',
+			year : this.today.getFullYear(),
+			month: this.today.getMonth() + 1,
 			week: {
 				en  : ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
 				ja  : ['\u65e5', '\u6708', '\u706b', '\u6c34', '\u6728', '\u91d1', '\u571f']
@@ -67,12 +69,14 @@ Calendar.prototype = {
 				en: ['&lt;&lt;Prev', 'Next&gt;&gt;'],
 				ja: ['&lt;&lt;\u524d\u306e\u6708', '\u6b21\u306e\u6708&gt;&gt;']
 			},
-			year : this.today.getFullYear(),
-			month: this.today.getMonth() + 1,
-			moveTime: 700,
-			events: {},
+			todayLink: {
+				en: 'Today [%Y-%M-%D]',
+				ja: '\u4eca\u65e5 [%Y\u5e74%M\u6708%D\u65e5]'
+			},
+			moveTime : 700,
+			events   : {},
 			hideOther: false,
-			cssClass: 'jqueryCalendar',
+			cssClass : 'jqueryCalendar',
 			// Callback functions
 			addDay      : function() {},
 			addEvent    : this.addEventCallback,
@@ -154,11 +158,19 @@ Calendar.prototype = {
 	},
 
 	createTodayLink: function() {
+		var date = this.getKey(this.today).split('-');
+		var linkText = typeof this.option.todayLink === 'object'
+			? this.option.todayLink[this.option.lang] : this.option.todayLink;
 		var self = this;
 		this.table.after(
 			$('&lt;div /&gt;').addClass('todayLink').append(
 				$('&lt;a /&gt;')
-					.text(['Today [', self.getKey(self.today), ']'].join(''))
+					.text(
+						linkText
+							.replace(/%Y/i, date[0])
+							.replace(/%M/i, date[1])
+							.replace(/%D/i, date[2])
+					)
 					.attr('href', 'javascript:void(0)')
 					.click(function() {
 						self.option.month = self.today.getMonth() + 1;</diff>
      <filename>jquery.calendar.js</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>851e366049783ea0175f143e4a7b3190f6af1376</id>
    </parent>
  </parents>
  <author>
    <name>rewish</name>
    <email>rewish.org@gmail.com</email>
  </author>
  <url>http://github.com/rewish/jQuery.calendar/commit/5173e62e84c133c8d3b3a88c80e009c6e2f62810</url>
  <id>5173e62e84c133c8d3b3a88c80e009c6e2f62810</id>
  <committed-date>2009-10-31T12:35:07-07:00</committed-date>
  <authored-date>2009-10-31T12:35:07-07:00</authored-date>
  <message>&#20170;&#26085;&#12398;&#26085;&#20184;&#12408;&#12398;&#12522;&#12531;&#12463;&#25991;&#23383;&#12434;&#25351;&#23450;&#20986;&#26469;&#12427;&#12424;&#12358;&#12395;&#12375;&#12383;&#12290;</message>
  <tree>049344c2b916d0507f20ac914769425076469f09</tree>
  <committer>
    <name>rewish</name>
    <email>rewish.org@gmail.com</email>
  </committer>
</commit>
