From f7e55f9f950bbd2dfc256bd30e32434b2468e70e Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Tue, 28 Jul 2026 23:37:44 +0200 Subject: [PATCH] Fix + add vlt. as uncertainty prefix --- src/NodaUncertaintyHelper.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NodaUncertaintyHelper.php b/src/NodaUncertaintyHelper.php index 07ecab9..86bb6da 100644 --- a/src/NodaUncertaintyHelper.php +++ b/src/NodaUncertaintyHelper.php @@ -51,6 +51,7 @@ final class NodaUncertaintyHelper { "vermutlich ", "Vermutlich ", "vmtl. ", + 'vlt.', "wahrscheinlich ", "Wahrscheinlich ", "wohl ", @@ -429,7 +430,7 @@ final class NodaUncertaintyHelper { } } - foreach (self::PLACE_UNCERTAINTY_SUFFIXES as $suffix) { + foreach (self::PERSINST_UNCERTAINTY_SUFFIXES as $suffix) { if (\mb_substr($value, \mb_strlen($suffix) * -1) === "$suffix") { $value = \mb_substr($value, 0, \mb_strlen($suffix) * -1); }