In admin/config/regional/date-time/formats
I can configure date formats, for example M jS
, and map them to date types on admin/config/regional/date-time
, for example, "Short-term date".
Now I want to create a multilingual website, so I need to not only translate the names of the month or week, but also choose a different date format based on the language. That is, Apr 12th
is ok in English, but translating Apr into Abr will not be much better in Spanish: Abr 12th
- should be 12 Abr
. I need to translate the format itself, so instead of M jS
, the Spanish version of the website will use j M
How can i achieve this? I tried searching on admin/config/regional/translate/translate
for these date formats. The Apr
β Abr
considered there, but not the form itself. I cannot find strings like M jS
, etc.
source share