On our client's website, there's a blog posts page.This page contains a repeater web part.
In this web part, there's a transformation that transforms the 'created' datetime field from individual blog post fields to something like this:
15 November 2021This is being executed correctly for all cultures (including en-gb and en-us).
But for the English global (gd-gb) culture, it shows the date like this (which seems to be Scottish)
15 dhen t-Samhain 2021In the transformation, this is transformation method for displaying the date:
{% FormatDateTime(created, @dd MMMM yyyy@) %}We've checked and the {%CurrentDocument.DocumentCulture#%} correctly contains gd-gb as a culture.Would anyone know how to correct this?
↧