replace latin 'e' with cyrilic 'e' in the paradigms for Bulgarian

This commit is contained in:
kr.angelov
2013-10-04 13:24:33 +00:00
parent 747590b86d
commit 5043b6dfc4

View File

@@ -365,7 +365,7 @@ resource ResBul = ParamX ** open Prelude, Predef in {
ia2e : Str -> Str = -- to be used when the next syllable has vowel different from "à","ú","î" or "ó"
\s -> case s of {
x@(_*+_) + "ÿ" + y@(("á"|"â"|"ã"|"ä"|"æ"|"ç"|"ê"|"ë"|"ì"|"í"|"ï"|"ð"|"ñ"|"ò"|"ô"|"õ"|"ö"|"÷"|"ø"|"ù")*)
=> x+"e"+y;
=> x+"å"+y;
_ => s
};