mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-05-27 17:08:54 -06:00
Merge pull request #439 from harisont/master
Use the definite article 'lo' instead of 'il' even when next word starts with 'y' in Italian
This commit is contained in:
@@ -16,12 +16,10 @@ oper
|
|||||||
"Sb" ; "Sc" ; "Sd" ; "Sf" ; "Sg" ; "Sh" ; "Sl" ; "Sm" ; "Sn" ; "Sp" ; "Sq" ; "Sr" ; "St" ; "Sv"
|
"Sb" ; "Sc" ; "Sd" ; "Sf" ; "Sg" ; "Sh" ; "Sl" ; "Sm" ; "Sn" ; "Sp" ; "Sq" ; "Sr" ; "St" ; "Sv"
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
z : Strs = strs {
|
xyz : Strs = strs {
|
||||||
"z" ; "Z"
|
"x" ; "X" ;
|
||||||
} ;
|
"z" ; "Z" ;
|
||||||
|
"y" ; "Y"
|
||||||
x : Strs = strs {
|
|
||||||
"x" ; "X"
|
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
gn : Strs = strs {
|
gn : Strs = strs {
|
||||||
@@ -38,7 +36,7 @@ oper
|
|||||||
|
|
||||||
elision : (_,_,_ : Str) -> Str = \il, l', lo ->
|
elision : (_,_,_ : Str) -> Str = \il, l', lo ->
|
||||||
let ll = case last l' of {"'" => l' ++ Predef.BIND ; _ => l'} in
|
let ll = case last l' of {"'" => l' ++ Predef.BIND ; _ => l'} in
|
||||||
pre {il ; ll / vocale ; lo / sImpuro ; lo / z ; lo / x ; lo / gn ; lo / pn ; lo / ps } ;
|
pre {il ; ll / vocale ; lo / sImpuro ; lo / xyz ; lo / gn ; lo / pn ; lo / ps } ;
|
||||||
--- pre {vocale => l' ; sImpuro => lo ; _ => il} ; --- doesn't work properly 15/4/2014
|
--- pre {vocale => l' ; sImpuro => lo ; _ => il} ; --- doesn't work properly 15/4/2014
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user