From 14f6fef438361f10cec88d933c385c8b9a3fcf19 Mon Sep 17 00:00:00 2001 From: "antti.arppe@iki.fi" Date: Thu, 27 Jun 2024 22:48:29 -0600 Subject: [PATCH] Switched the tag conversion for unspecified actor from X 'someone' to XPl 'people'. --- src/CreeDictionary/API/search/espt_crk.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/CreeDictionary/API/search/espt_crk.py b/src/CreeDictionary/API/search/espt_crk.py index 41dcaec3b..964bbd7db 100644 --- a/src/CreeDictionary/API/search/espt_crk.py +++ b/src/CreeDictionary/API/search/espt_crk.py @@ -33,6 +33,7 @@ "+Px3Pl", "+Px4Sg/Pl", "+PxX", + "+PxXPl", ], 3: [ # N: number @@ -65,6 +66,7 @@ "+4Sg/Pl", "+5Sg/Pl", "+X", + "+XPl", ], 3: [ # V: Person - object @@ -80,6 +82,7 @@ "+4Sg/PlO", "+5Sg/PlO", "+XO", + "+XPlO", ], } @@ -111,6 +114,7 @@ def passthrough_tags_to_tuples(passthrough_tags): "+12Pl", 2, ), # see https://github.com/UAlbertaALTLab/morphodict/issues/1005 + ("+XPl", "+X", 2), # Person - object ("+0SgO", (), 3), ( @@ -118,6 +122,7 @@ def passthrough_tags_to_tuples(passthrough_tags): "+12PlO", 3, ), + ("+XPlO", "+XO", 3), ( "+PV/pimi", ("PV/pimi+"), @@ -130,5 +135,6 @@ def passthrough_tags_to_tuples(passthrough_tags): noun_tag_map = TagMap( ("+Dim", "+Der/Dim", 2), ("+Px21Pl", "+Px12Pl", 2), + ("+PxXPl", "+PxX", 2), *passthrough_tags_to_tuples(noun_passthrough_tags) )