forked from GitHub/gf-rgl
fix when inflecting multi-token strings ending in y
See mail on gf-dev 2018-01-15
This commit is contained in:
@@ -373,7 +373,7 @@ mkInterj : Str -> Interj
|
|||||||
_ + ("io" | "oo") => w + "s" ; -- radio, bamboo
|
_ + ("io" | "oo") => w + "s" ; -- radio, bamboo
|
||||||
_ + ("s" | "z" | "x" | "sh" | "ch" | "o") => w + "es" ; -- bus, hero
|
_ + ("s" | "z" | "x" | "sh" | "ch" | "o") => w + "es" ; -- bus, hero
|
||||||
_ + ("a" | "o" | "u" | "e") + "y" => w + "s" ; -- boy
|
_ + ("a" | "o" | "u" | "e") + "y" => w + "s" ; -- boy
|
||||||
x + "y" => x + "ies" ; -- fly
|
_ + "y" => init w + "ies" ; -- fly
|
||||||
_ => w + "s" -- car
|
_ => w + "s" -- car
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user