Variable: calendar-month-name-array
calendar-month-name-array is a customizable variable defined in
calendar.el.gz.
Value
["January" "February" "March" "April" "May" "June" "July" "August"
"September" "October" "November" "December"]
Documentation
Array of capitalized strings giving, in order, the month names.
If you change this without using customize after the calendar has loaded,
then you may also want to change calendar-month-abbrev-array.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/calendar.el.gz
(defcustom calendar-month-name-array
["January" "February" "March" "April" "May" "June"
"July" "August" "September" "October" "November" "December"]
"Array of capitalized strings giving, in order, the month names.
If you change this without using customize after the calendar has loaded,
then you may also want to change `calendar-month-abbrev-array'."
:group 'calendar
:initialize 'custom-initialize-default
:set (lambda (symbol value)
(let ((mcustomized (calendar-customized-p
'calendar-month-abbrev-array)))
(set symbol value)
(or mcustomized
(setq calendar-month-abbrev-array
(calendar-abbrev-construct calendar-month-name-array)))))
:type '(vector (string :tag "January")
(string :tag "February")
(string :tag "March")
(string :tag "April")
(string :tag "May")
(string :tag "June")
(string :tag "July")
(string :tag "August")
(string :tag "September")
(string :tag "October")
(string :tag "November")
(string :tag "December")))