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 :)