Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

emacs org-mode language of time stamps

Depending on the computer I use, abbreviation for day names changes: it would be mon, tues, wed… on an american ubuntu and lun., mar., mer.… on a french ubuntu etc.

This is causing problem with the org-habit module of org-mode which stop working correctly when those format are mixed.

This localization is present even when I bypass my emacs configuration file using the -Q option.

How can I sort this out?

like image 606
M. Toya Avatar asked Mar 07 '15 09:03

M. Toya


1 Answers

;; System locale to use for formatting time values.
(setq system-time-locale "C")         ; Make sure that the weekdays in the
                                      ; time stamps of your Org mode files and
                                      ; in the agenda appear in English.
like image 120
fniessen Avatar answered Oct 15 '22 16:10

fniessen