View Single Post
Old 11-09-2021, 06:30 PM   #108
zielin
Member
zielin began at the beginning.
 
Posts: 10
Karma: 10
Join Date: Oct 2021
Device: Kobo Libra 2 & Kobo Elipsa
Quote:
Originally Posted by PeterT View Post
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
Hi PeterT,

I tried what you advised me and it works now!

Thank you very much for your help .

After reflection your logic was the good, my lack of coding knowledge had passed me next to this solution.
zielin is offline   Reply With Quote