babel icon indicating copy to clipboard operation
babel copied to clipboard

Full date format has changed for en_GB

Open jma opened this issue 1 year ago • 1 comments

Overview Description

Since version 2.15.0, the comma disappears from the full date format for the British locale.

Steps to Reproduce

Run the following code on version 2.14.0

from datetime import datetime
from babel.dates import format_date
format_date(datetime(2024, 5, 6), 'full', locale='en_GB')

gives 'Monday, 6 May 2024'.

Using the version 1.15.0, it gives 'Monday 6 May 2024'.

The "comma" is missing.

jma avatar May 06 '24 08:05 jma

So it would seem! 😄

Please see https://github.com/unicode-org/cldr/pull/3231 for the PR that changed this in the CLDR data.

akx avatar May 07 '24 07:05 akx

Closing since there's nothing we can do about this on the Babel side of the fence.

akx avatar Jul 17 '24 15:07 akx