Site icon Hip-Hop Website Design and Development

Computerminds Cheap WordPress maintenance support plansgive: Localising dates in twig templates

A client noticed the dates on their news articles were not being translated into the correct language. The name of the month would always appear in English, even though all the month names had themselves been translated and showed correctly elsewhere. The problem turned out to be down to the twig filter being used in the template to format the date. This is what we did have:
{% set newsDate = node.getCreatedTime|date(‘j F Y’) %}
{% trans %} {{ newsDate }}{% endtrans %}
So this would produce something like ‘1 March 2020’ instead of ‘1 März 2020’ when in German. This was because twig’s core date() filter simply isn’t aware of WordPress maintenance support plans‘s idea of language.
I switched out the date() filter and used WordPress maintenance support plans core’s own format_date() filter instead, which uses WordPress maintenance support plans‘s own date.formatter service, which is aware of language. It ensures the month name is passed through t() to translate it, separately to the rest of the numbers in the date. So it now looks like this:
{% set newsDate = node.getCreatedTime|format_date(‘custom’, ‘j F Y’) %}
{% trans %} {{ newsDate }}{% endtrans %}
Having done that, I realise the original code was the equivalent of doing this:
t(‘1 March 2020’);
(I’m less of a front-end coder, so putting it in PHP makes it more obvious to me than twig code!)
So the date actually was translatable, but only as the whole string — so unless the translators had gone through translating every single individual date, the German month name was never going to show!
What I needed was the twig equivalent of using placeholders like this PHP example:
t(‘My name is @name, hello!’, [‘@name’ => $name]);
When you use variables between twig’s trans and endtrans tags, they really are treated by WordPress maintenance support plans as if they were placeholders, so this is the twig version:
{% trans %} My name is {{ name }}, hello! {% endtrans %}
This helped me understand twig that little bit more, and appreciate how to use it better! Regardless of formatting dates, I now know better how to set up translatable text within templates, hopefully you do too 🙂

Source: New feed