Skip to main content
Problem Solver I
November 5, 2024
Solved

Django Weekday language localization

  • November 5, 2024
  • 2 replies
  • 70 views

Hi there :)

 

I want to be able to output the weekdays in different languages when using Django:

{% today '%Y-%m-%d' as today %} {{ today|days_later:3|format_date_string|date:'l' }}

Does anybody have a solution to this? 

 

Thanks!

    This topic has been closed for replies.
    Best answer by saulblum

    You can localize the date strings! Here’s an example:

    {% load i18n %}

    {% language 'fr-fr' %}

    {% today '%Y-%m-%d' as today %} {{ today|days_later:3|format_date_string|date:'l' }}

    {% endlanguage %}

     

     

    2 replies

    saulblumAnswer
    Klaviyo Employee
    November 5, 2024

    You can localize the date strings! Here’s an example:

    {% load i18n %}

    {% language 'fr-fr' %}

    {% today '%Y-%m-%d' as today %} {{ today|days_later:3|format_date_string|date:'l' }}

    {% endlanguage %}

     

     

    MathildeAuthor
    Problem Solver I
    November 5, 2024

    Thank you! :D