View Single Post
Old 11-08-2021, 07:22 PM   #106
PeterT
Grand Sorcerer
PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.
 
Posts: 13,541
Karma: 78910202
Join Date: Nov 2007
Location: Toronto
Device: Libra H2O, Libra Colour
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

Last edited by PeterT; 11-08-2021 at 07:29 PM.
PeterT is offline   Reply With Quote