From 8524facfd29e08f959a7646599d26268cfb2b6f1 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 24 Aug 2017 19:01:27 +0300 Subject: [PATCH 1/2] Fix UttVP to not include 3rd person singular auxiliary --- src/basque/PhraseEus.gf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basque/PhraseEus.gf b/src/basque/PhraseEus.gf index 506074bdc..6b4e8674c 100644 --- a/src/basque/PhraseEus.gf +++ b/src/basque/PhraseEus.gf @@ -16,7 +16,7 @@ concrete PhraseEus of Phrase = CatEus ** open Prelude, ResEus in { UttIP ip = { s = ip.s ! Abs} ; UttIAdv iadv = iadv ; UttNP np = { s = np.s ! Abs} ; - UttVP vp = { s = linVP vp } ; + UttVP vp = { s = linVPPrc vp } ; UttAdv adv = adv ; UttCN n = {s = n.s ! Hau ++ artDef ! Sg ! Abs ! n.ph } ; UttCard n = n ; From 94235f96fa7a27eaeb0f242c3fc68df1719881b0 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Thu, 24 Aug 2017 19:02:09 +0300 Subject: [PATCH 2/2] add Basque to the library synopsis makefiles --- doc/Makefile | 1 + doc/MkExx.hs | 1 + doc/MkSynopsis.hs | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/Makefile b/doc/Makefile index 8c1358ecc..4fee45382 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -29,6 +29,7 @@ exx: exx-script gf -retain -s $(GF_alltenses)/TryDut.gfo api-examples-Dut.txt gf -retain -s $(GF_alltenses)/TryEng.gfo api-examples-Eng.txt gf -retain -s $(GF_alltenses)/TryEst.gfo api-examples-Est.txt + gf -retain -s $(GF_alltenses)/TryEus.gfo api-examples-Eus.txt gf -retain -s $(GF_alltenses)/TryFin.gfo api-examples-Fin.txt gf -retain -s $(GF_alltenses)/TryFre.gfo api-examples-Fre.txt gf -retain -s $(GF_alltenses)/TryGer.gfo api-examples-Ger.txt diff --git a/doc/MkExx.hs b/doc/MkExx.hs index cf011c4b9..bb7551c60 100644 --- a/doc/MkExx.hs +++ b/doc/MkExx.hs @@ -36,6 +36,7 @@ mkIdent = concatMap unspec where langsCoding = [ (("amharic", "Amh"),""), (("arabic", "Ara"),""), + (("basque", "Eus"),""), (("bulgarian","Bul"),""), (("catalan", "Cat"),"Romance"), (("danish", "Dan"),"Scand"), diff --git a/doc/MkSynopsis.hs b/doc/MkSynopsis.hs index 13c52c0ac..709de13d9 100644 --- a/doc/MkSynopsis.hs +++ b/doc/MkSynopsis.hs @@ -19,7 +19,7 @@ revealedLang = "Eng" -- all languages shown apiExxFiles = ["api-examples-" ++ lang ++ ".txt" | lang <- words -- "Eng Chi" - "Afr Bul Cat Chi Dan Dut Eng Est Fin Fre Ger Gre Hin Ice Ita Jpn Lav Mlt Mon Nep Nor Nno Pes Pnb Pol Ron Rus Snd Spa Swe Tha Urd" + "Afr Bul Cat Chi Dan Dut Eng Est Eus Fin Fre Ger Gre Hin Ice Ita Jpn Lav Mlt Mon Nep Nor Nno Pes Pnb Pol Ron Rus Snd Spa Swe Tha Urd" ] main = do @@ -244,6 +244,7 @@ syntaxAPI = srcPath "/api/Constructors.gf" structuralAPI = srcPath "/abstract/Structural.gf" paradigmFiles = [ ("Afrikaans", srcPath "/afrikaans/ParadigmsAfr.gf"), + ("Basque", srcPath "/basque/ParadigmsEus.gf"), ("Bulgarian", srcPath "/bulgarian/ParadigmsBul.gf"), ("Catalan", srcPath "/catalan/ParadigmsCat.gf"), ("Chinese", srcPath "/chinese/ParadigmsChi.gf"),