I have seen some datepicker versions where the "today" button/bar under the calendar shows up as "Today". Mine has the calendar icon.
I don't want to reload a different version, because what I have is actually working, but I'm worried about end-users who won't necessarily know/assume that button means "today."
In the .js for datetimepicker, it selects the glyphicon calendar for the "today" button. If I disable that specific setting, there is nothing that shows up in the bar below the calendar.
icons: {
time: "glyphicon glyphicon-time",
date: "glyphicon glyphicon-calendar",
up: "glyphicon glyphicon-chevron-up",
down: "glyphicon glyphicon-chevron-down",
previous: "glyphicon glyphicon-chevron-left",
next: "glyphicon glyphicon-chevron-right",
today: "glyphicon glyphicon-calendar",
clear: "glyphicon glyphicon-trash",
close: "glyphicon glyphicon-remove"
},
What switch, setting, or icon can I use to make the button display the word "Today," instead?