Skip to content

Commit

Permalink
Fix treatment of /ł/-initial stems after 2PL.SBJ <as>
Browse files Browse the repository at this point in the history
  • Loading branch information
coxchristopher committed May 17, 2024
1 parent 2bd1649 commit 1eb570b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/fst/morphology/phonology.xfscript
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,12 @@ define encliticMidToHighTone a -> á, i -> í, o -> ó, u -> ú || _ "^Encl" .o.
# Morphophonological adjustments to consonants.
#

# Stems that begin with /l/ combine with 2PL as- either as (a|à)ł or, for
# some speakers, as (a|à)stł (e.g., /as+lí/ "you.PL are" -> [ałí] or [astłí]).
# We use the symbol 's2' to represent the /s/ in any 2PL inflectional chunks
# that are involved in this process.
define lInitialStemsSbjPl2 s2 l -> [ ł | s l ] ;
# Stems that begin with /l/ and /ł/ combine with 2PL as- either as (a|à)ł or,
# for some speakers, as (a|à)stł (e.g., /as+lí/ "you.PL are" -> [ałí] or
# [astłí], /ídas+łù/ "you.PL are driving" -> [ídałù] or [ídastłù]). We use
# the symbol 's2' to represent the /s/ in any 2PL inflectional chunks that
# are involved in this process.
define lInitialStemsSbjPl2 s2 [ l | ł ] -> [ ł | s l ] ;

# Phonotactic restriction: in general, /sl/ and /sł/ sequences should be
# resolved as /stł/ (e.g., /is+lí/ "I am" -> [istłí], /ídis+łù/ "I am driving"
Expand Down

0 comments on commit 1eb570b

Please sign in to comment.