1
0
forked from GitHub/gf-rgl

Hrv compiles with make install (but with lots of functions from MissingHrv)

This commit is contained in:
Aarne Ranta
2022-09-30 11:50:15 +02:00
parent 0b7ad68400
commit a27e502233
3 changed files with 14 additions and 20 deletions

View File

@@ -1,17 +1,4 @@
Code,Name,Directory,Functor,Unlexer,Present,All,Try,Symbolic,Compatibility,Synopsis Code,Name,Directory,Functor,Unlexer,Present,All,Try,Symbolic,Compatibility,Synopsis
Afr,Afrikaans,afrikaans,,,,,,n,,y
Amh,Amharic,amharic,,,,,n,n,,n
Ara,Arabic,arabic,,,,,,y,,y
Bul,Bulgarian,bulgarian,,,y,,,,,y
Cat,Catalan,catalan,Romance,,y,,,,y,y
Cgg,Rukiga,rukiga,,,y,y,n,n,y,y
Chi,Chinese (simplified),chinese,,,,,,,,y
Cze,Czech,czech,,,,,,n,,y
Dan,Danish,danish,Scand,,y,,,,,y
Dut,Dutch,dutch,,,y,,,,,y
Eng,English,english,,,y,,,,y,y
Est,Estonian,estonian,,,,,,,,y
Eus,Basque,basque,,,,,,,,y
Fin,Finnish,finnish,,,y,,,,y,y Fin,Finnish,finnish,,,y,,,,y,y
Fre,French,french,Romance,,y,,,,y,y Fre,French,french,Romance,,y,,,,y,y
Ger,German,german,,,y,,,,,y Ger,German,german,,,y,,,,,y
@@ -19,6 +6,7 @@ Grc,Ancient Greek,ancient_greek,,,y,,n,n,,n
Gre,Greek,greek,,,,,,,,y Gre,Greek,greek,,,,,,,,y
Heb,Hebrew,hebrew,,,,,n,n,,n Heb,Hebrew,hebrew,,,,,n,n,,n
Hin,Hindi,hindi,Hindustani,to_devanagari,y,,,,,y Hin,Hindi,hindi,Hindustani,to_devanagari,y,,,,,y
Hrv,Croatian,croatian,,,,,,y,,n
Hun,Hungarian,hungarian,,,n,y,y,y,n,n Hun,Hungarian,hungarian,,,n,y,y,y,n,n
Ice,Icelandic,icelandic,,,,,,n,,y Ice,Icelandic,icelandic,,,,,,n,,y
Ina,Interlingua,interlingua,,,y,,n,n,,n Ina,Interlingua,interlingua,,,y,,n,n,,n
1 Code Name Directory Functor Unlexer Present All Try Symbolic Compatibility Synopsis
Afr Afrikaans afrikaans n y
Amh Amharic amharic n n n
Ara Arabic arabic y y
Bul Bulgarian bulgarian y y
Cat Catalan catalan Romance y y y
Cgg Rukiga rukiga y y n n y y
Chi Chinese (simplified) chinese y
Cze Czech czech n y
Dan Danish danish Scand y y
Dut Dutch dutch y y
Eng English english y y y
Est Estonian estonian y
Eus Basque basque y
2 Fin Finnish finnish y y y
3 Fre French french Romance y y y
4 Ger German german y y
6 Gre Greek greek y
7 Heb Hebrew hebrew n n n
8 Hin Hindi hindi Hindustani to_devanagari y y
9 Hrv Croatian croatian y n
10 Hun Hungarian hungarian n y y y n n
11 Ice Icelandic icelandic n y
12 Ina Interlingua interlingua y n n n

View File

@@ -2,6 +2,7 @@
concrete AllHrv of AllHrvAbs = concrete AllHrv of AllHrvAbs =
LangHrv, LangHrv,
ExtendHrv ExtendHrv,
MissingHrv
; ;

View File

@@ -1,4 +1,4 @@
resource MissingHrv = open GrammarHrv, Prelude in { resource MissingHrv = open GrammarHrv, SymbolHrv, Prelude, PredefCnc in {
-- temporary definitions to enable the compilation of RGL API -- temporary definitions to enable the compilation of RGL API
oper AAnter : Ant = notYet "AAnter" ; oper AAnter : Ant = notYet "AAnter" ;
@@ -47,7 +47,6 @@ oper OrdSuperl : A -> Ord = notYet "OrdSuperl" ;
oper PPartNP : NP -> V2 -> NP = notYet "PPartNP" ; oper PPartNP : NP -> V2 -> NP = notYet "PPartNP" ;
oper PassV2 : V2 -> VP = notYet "PassV2" ; oper PassV2 : V2 -> VP = notYet "PassV2" ;
oper PositAdvAdj : A -> Adv = notYet "PositAdvAdj" ; oper PositAdvAdj : A -> Adv = notYet "PositAdvAdj" ;
oper PossPron : Pron -> Quant = notYet "PossPron" ;
oper PredSCVP : SC -> VP -> Cl = notYet "PredSCVP" ; oper PredSCVP : SC -> VP -> Cl = notYet "PredSCVP" ;
oper PredetNP : Predet -> NP -> NP = notYet "PredetNP" ; oper PredetNP : Predet -> NP -> NP = notYet "PredetNP" ;
oper PrepIP : Prep -> IP -> IAdv = notYet "PrepIP" ; oper PrepIP : Prep -> IP -> IAdv = notYet "PrepIP" ;
@@ -90,13 +89,19 @@ oper UttImpSg : Pol -> Imp -> Utt = notYet "UttImpSg" ;
oper UttQS : QS -> Utt = notYet "UttQS" ; oper UttQS : QS -> Utt = notYet "UttQS" ;
oper UttVP : VP -> Utt = notYet "UttVP" ; oper UttVP : VP -> Utt = notYet "UttVP" ;
oper by8agent_Prep : Prep = notYet "by8agent_Prep" ; oper by8agent_Prep : Prep = notYet "by8agent_Prep" ;
oper it_Pron : Pron = notYet "it_Pron" ;
oper they_Pron : Pron = notYet "they_Pron" ;
oper we_Pron : Pron = notYet "we_Pron" ;
oper whatSg_IP : IP = notYet "whatSg_IP" ; oper whatSg_IP : IP = notYet "whatSg_IP" ;
oper which_IQuant : IQuant = notYet "which_IQuant" ; oper which_IQuant : IQuant = notYet "which_IQuant" ;
oper whoSg_IP : IP = notYet "whoSg_IP" ; oper whoSg_IP : IP = notYet "whoSg_IP" ;
oper youPl_Pron : Pron = notYet "youPl_Pron" ;
oper youPol_Pron : Pron = notYet "youPol_Pron" ; oper youPol_Pron : Pron = notYet "youPol_Pron" ;
oper BaseSymb : Symb -> Symb -> [Symb] = notYet "BaseSymb" ;
oper CNIntNP : CN -> PredefCnc.Int -> NP = notYet "CNIntNP" ;
oper CNNumNP : CN -> Card -> NP = notYet "CNumNP" ;
oper CNSymbNP : Det -> CN -> [Symb] -> NP = notYet "CNSymbNP" ;
oper ConsSymb : Symb -> [Symb] -> [Symb] = notYet "ConsSymb" ;
oper FloatPN : PredefCnc.Float -> PN = notYet "FloatPN" ;
oper NumPN : Card -> PN = notYet "NumPN" ;
oper SymbOrd : Symb -> Ord = notYet "SymbOrd" ;
oper SymbS : Symb -> S = notYet "SymbS" ;
} }