maubot / reminder

A maubot plugin to remind you about things.
GNU Affero General Public License v3.0
42 stars 19 forks source link

German Locales not working when no "Message" was set #14

Closed lomion0815 closed 4 years ago

lomion0815 commented 4 years ago

Timedelta Matcher did not work if no message was set. See commit a1aba2dd768f21d9780534ce7ca8e6e624235c08 where German timedelta regex were missed. also including minor changes in the german regex.

tulir commented 4 years ago

Those regex changes don't seem to do anything :thinking:

lomion0815 commented 4 years ago

Singular is fixed in the regex.

Before: 1 Woche => no match 2 Wochen => match

rf"(?:(?P[-+]?\d+)\s?woche(?:n)?{td_sep_de})?" Now match for "1 Woche"

tulir commented 4 years ago

It already worked like that though? The regex wochen? matches both "woche" and "wochen"