mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 11:42:49 -06:00
fix the digits spelling in bulgarian
This commit is contained in:
@@ -355,17 +355,23 @@ resource ResBul = ParamX ** open Prelude in {
|
||||
};
|
||||
|
||||
regAdjective : Str -> AForm => Str =
|
||||
\base -> table {
|
||||
ASg Masc Indef => base ;
|
||||
ASg Masc Def => (base+"èÿ") ;
|
||||
ASgMascDefNom => (base+"èÿò") ;
|
||||
ASg Fem Indef => (base+"a") ;
|
||||
ASg Fem Def => (base+"àòà") ;
|
||||
ASg Neut Indef => (base+"î") ;
|
||||
ASg Neut Def => (base+"îòî") ;
|
||||
APl Indef => (ia2e base+"è") ;
|
||||
APl Def => (ia2e base+"èòå")
|
||||
};
|
||||
\base ->
|
||||
let base0 : Str
|
||||
= case base of {
|
||||
x+"è" => x;
|
||||
x => x
|
||||
}
|
||||
in table {
|
||||
ASg Masc Indef => base ;
|
||||
ASg Masc Def => (base0+"èÿ") ;
|
||||
ASgMascDefNom => (base0+"èÿò") ;
|
||||
ASg Fem Indef => (base0+"a") ;
|
||||
ASg Fem Def => (base0+"àòà") ;
|
||||
ASg Neut Indef => (base0+"î") ;
|
||||
ASg Neut Def => (base0+"îòî") ;
|
||||
APl Indef => (ia2e base0+"è") ;
|
||||
APl Def => (ia2e base0+"èòå")
|
||||
};
|
||||
|
||||
-- For $Sentence$.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user