Skip Menu |

This queue is for tickets about the DateTime-Format-Flexible CPAN distribution.

Report information
The Basics
Id: 77721
Status: resolved
Priority: 0/
Queue: DateTime-Format-Flexible

People
Owner: Nobody in particular
Requestors: TMUELLER [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.21
Fixed in: 0.22



Subject: Typo in german language plugin
Hi, this nice module works as expected, except there is a small type in the german language plugin, which prevents it from parsing correct timestrings. German Saturday "Samstag" is written using single m, while in the plugin it matches for "Sammstag" with double-m. @@ -37,7 +37,7 @@ qr{\bMi(?:ttwoch)?\b}i => 3, # Wednesday qr{\bDo(?:nnerstag)?\b}i => 4, # Thursday qr{\bFr(?:eitag)?\b}i => 5, # Friday - qr{\bSa(?:mmstag)?\b}i => 6, # Saturday + qr{\bSa(?:mstag)?\b}i => 6, # Saturday qr{\bSonnabend\b}i => 6, # Saturday qr{\bSo(?:nntag)?\b}i => 7, # Sunday ); Thanks for contributing this module :)
This has been fixed in version 0.22. Thanks for the report!
On Mon Jun 11 04:41:33 2012, cpan@punch.net wrote: Show quoted text
> This has been fixed in version 0.22. > > Thanks for the report!
Thanks for the fast fix.