Skip to content

Commit

Permalink
fr conj group 1 fix -eler -eter with ez suffix
Browse files Browse the repository at this point in the history
kariminf committed Jan 1, 2018
1 parent 9c00ad2 commit 71fe8e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fra/fra.morpho.js
Original file line number Diff line number Diff line change
@@ -868,8 +868,9 @@
}
verb += ending;
}
else { // not ending with -cer|-ger OR suffix not starting with a|o
else if (/^e[^z]*$/.test(suffix)) { // not ending with -cer|-ger OR suffix not starting with a|o
//Here we work just with silent endings (those suffixes starting with e)

if (/[ou]y$/.test(verb)) {//envoyer, payer
verb = verb.slice(0, -1) + "i";
}

0 comments on commit 71fe8e1

Please sign in to comment.