From 5043b6dfc402764b08e8bd93ae70d711c7e29e72 Mon Sep 17 00:00:00 2001 From: "kr.angelov" Date: Fri, 4 Oct 2013 13:24:33 +0000 Subject: [PATCH] replace latin 'e' with cyrilic 'e' in the paradigms for Bulgarian --- lib/src/bulgarian/ResBul.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/bulgarian/ResBul.gf b/lib/src/bulgarian/ResBul.gf index afa215667..1c5365bee 100644 --- a/lib/src/bulgarian/ResBul.gf +++ b/lib/src/bulgarian/ResBul.gf @@ -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 };