Skip to content

Commit

Permalink
Added certain Woods-specific spelling relaxation rules.
Browse files Browse the repository at this point in the history
  • Loading branch information
aarppe committed Mar 9, 2024
1 parent aeb9f2a commit aab77bd
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions src/fst/orthography/spellrelax.regex
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,23 @@ c (->) j, # English influence on spelling <c>
# TODO: figure out what conditions this (probably /o/ or /i/)
# These rules without context are EXCESSIVELY productive!
# y (->) w,
# w (->) y,
# w (->) y,,

{iw} (->) {ow}, # Misspelling based on assimilated pronunciation of underlying /i/ as /o/ before /w/
w (->) y || [ a | â | i | î | o | ô ] _ [ i | î ] ,,

[ {aw} | {iw} ] (->) {ow}, # Misspelling based on assimilated pronunciation of underlying /i/ as /o/ before /w/
{ow} (->) {iw},
{iyi} (->) [ î | i ], # Mishearing of vowel-glide-vowel cluster
{ow} (->) {aw},
[ {iyi} | {iwi} ] (->) [ î | i ], # Mishearing of vowel-glide-vowel cluster
{nwa} (->) {no} ,, # <nwa> is likely to be heard as <no>

{iy} (->) î || _ .#. ,,

# Special case
{thiniw} (->) {tiniw} || [ i | î ] _ ,,

[..] (->) h || _ .#. ,, # Excessive word-final pre-aspiration
{hk} (->) 0 , {sk} (->) s || _ .#. ,, # Excessive word-final deletion of 'hk'
h (->) 0 || [ a | i | o | â | î | ô ] _ [ c | k | p | t ] ,, # Missing preaspiration before stops
[..] (->) h || [ a | i | o | â | î | ô ] _ [ c | k | p | t ] ,, # Excessive preaspiration before stops

Expand All @@ -99,7 +108,7 @@ c (->) {tch}, # English influence on spelling <c>
c (->) {ts},, # Another English influence on spelling <c>

# Plains/Proto-Cree to Woods Cree
{th} (->) [ ý | y ] ,,
{th} (->) [ ý | y | ð ] ,,
[ î | i ] (->) [ ê | e ]

;
Expand Down

0 comments on commit aab77bd

Please sign in to comment.