Re: date format in agenda view

2022-01-28 Thread Juan Manuel Macías
Hi Uwe,

Uwe Brauer writes:

> How can I obtain the Spanish week names?

I have this in my init:

#+begin_src emacs-lisp
(setq calendar-week-start-day 1
  calendar-day-name-array ["domingo" "lunes" "martes" "miércoles"
   "jueves" "viernes" "sábado"]
  calendar-month-name-array ["enero" "febrero" "marzo" "abril" "mayo"
 "junio" "julio" "agosto" "septiembre"
 "octubre" "noviembre" "diciembre"])
#+end_src

(https://www.emacswiki.org/emacs/CalendarLocalization#toc18)

Best regards,

Juan Manuel 



Re: date format in agenda view

2022-01-28 Thread Uwe Brauer
>>> "JMM" == Juan Manuel Macías  writes:

> Hi Uwe,
> Uwe Brauer writes:

>> How can I obtain the Spanish week names?

> I have this in my init:

> #+begin_src emacs-lisp
> (setq calendar-week-start-day 1
>   calendar-day-name-array ["domingo" "lunes" "martes" "miércoles"
>  "jueves" "viernes" "sábado"]
>   calendar-month-name-array ["enero" "febrero" "marzo" "abril" "mayo"
>"junio" "julio" "agosto" "septiembre"
>"octubre" "noviembre" "diciembre"])
> #+end_src

Ha, thanks, I just realized I have this setting but embedded in a function in 
order to switch between English, Spanish and German. Memory☹️


smime.p7s
Description: S/MIME cryptographic signature


date format in agenda view

2022-01-28 Thread Uwe Brauer


Hi

I have set my language environment to spanish
and indeed org-time-stamp inserts <2022-01-28 vie>
Viernes=Friday

However I have an agenda file with entries like this 

* <2022-01-28 vie> dinner

But in agenda view it is displayed as 

Friday 28 January 2022
  file:   dinner


How can I obtain the Spanish week names?

Thanks 

Uwe Brauer