8

I am able to set the date language with (setq system-time-locale "LOCALE") but it doesn't affect the calendar.

How can I change the language of calendar?

Dan
  • 32,584
  • 6
  • 98
  • 168

1 Answers1

2

The Emacs Wiki node on calendar localization explains how to do this. For example, it shows that, for Italian, you would want to do:

(setq calendar-week-start-day 1
          calendar-day-name-array ["Domenica" "Lunedì" "Martedì" "Mercoledì" 
                                   "Giovedì" "Venerdì" "Sabato"]
          calendar-month-name-array ["Gennaio" "Febbraio" "Marzo" "Aprile" "Maggio"
                                     "Giugno" "Luglio" "Agosto" "Settembre" 
                                     "Ottobre" "Novembre" "Dicembre"])
Dan
  • 32,584
  • 6
  • 98
  • 168