I think you want
Code:
; Localization (translate Month and Day names)
;
;; Set day names, Lundi -> Dimanche (7 words)
;; Use {day} in the format string to use this.
;
days=Lun Mar Mer Jeu Ven Sam Dim
;
;; Set month names, Janvier -> Decembre (12 words)
;; Use {month} in the format string to use this.
;
months=Jan Fev Mar Avr Mai Jui Juil Aou Sep Oct Nov Dec
;
also you need to change the %a and %b in the format entry to {day} and {month} so NOT
Code:
format=%a %b %d %H:%M
BUT
Code:
format={day} {month} %d %H:%M