Add tól to list of handled suffixes in NodaTimeSplitter

"tól" is a suffix equivalent to "after" in Hungarian.
This commit is contained in:
Joshua Ramon Enslin 2022-02-04 02:49:44 +01:00
parent d28618bb14
commit a4be5e876c
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -113,6 +113,7 @@ final class NodaTimeSplitter {
"eleje", "eleje",
"között", "között",
"töl", "töl",
"tól",
"januárig", "januárig",
"februárig", "februárig",
"márciusig", "márciusig",
@ -824,7 +825,7 @@ final class NodaTimeSplitter {
} }
// Endings beginning with a space // Endings beginning with a space
if (\preg_match("/(\-től)$/", $datum)) { if (\preg_match("/(\-től|\-tól)$/", $datum)) {
if (($spacePos = strrpos($datum, "-")) === false) { if (($spacePos = strrpos($datum, "-")) === false) {
return []; return [];
} }