├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .travis.yml ├── Config.hs ├── LICENSE ├── Makefile ├── README.md ├── RELEASE.md ├── Setup.bat ├── Setup.hs ├── Setup.sh ├── doc ├── .gitignore ├── AbsFunDoc.hs ├── Compare.hs ├── CountLines.hs ├── DocExtend.hs ├── German.dot ├── German.png ├── Globes.hs ├── Grammar.dot ├── Grammar.png ├── Lang.dot ├── Lang.png ├── Makefile ├── Resource-HOWTO.txt ├── Syntax.dot ├── Syntax.png ├── absfuns.html ├── example-tables.gfs ├── gfdoc │ ├── Adjective.html │ ├── Adverb.html │ ├── Cat.html │ ├── Common.html │ ├── Conjunction.html │ ├── Extra.html │ ├── Grammar.html │ ├── Idiom.html │ ├── Lang.html │ ├── Lexicon.html │ ├── Makefile │ ├── Noun.html │ ├── Numeral.html │ ├── Phrase.html │ ├── Question.html │ ├── Relative.html │ ├── Sentence.html │ ├── Structural.html │ ├── Symbol.html │ ├── Syntax.png │ ├── Tense.html │ ├── Text.html │ ├── Verb.html │ └── sources.txt ├── languages │ ├── Makefile │ ├── gf-english-1.txt │ ├── gf-english-2.txt │ ├── gf-english.html │ ├── gf-general-1.txt │ ├── gf-general-2.txt │ ├── paint-abstract.png │ ├── paint-concrete.png │ └── revealpopup.css ├── missing-in-rgl-Grammar.tsv ├── rgl-publications.txt ├── rgl-tutorial │ ├── Syntax.jpg │ ├── abs-and-cnc.jpg │ ├── abstract.jpg │ ├── align-zero.png │ ├── arabnum.jpg │ ├── arav.jpg │ ├── categories.jpg │ ├── clever-align.jpg │ ├── dutparse.jpg │ ├── engdut.jpg │ ├── facemod.jpg │ ├── hindi.jpg │ ├── index.t2t │ ├── langdep.png │ ├── molto_logo.png │ ├── parse.jpg │ ├── phrasebook.png │ ├── testdep.jpg │ ├── zero-fridge.jpg │ └── zero-tree.jpg ├── show_missing.py ├── status.txt ├── synopsis │ ├── Makefile │ ├── MkExx.hs │ ├── MkExxTable.hs │ ├── MkSynopsis.hs │ ├── additional.txt │ ├── api-examples.txt │ ├── browse.txt │ ├── categories-intro.txt │ ├── categories.dot │ ├── example.txt │ ├── intro.txt │ ├── quicklinks.html │ ├── quicklinks.js │ ├── synopsis.css │ └── template.html ├── tour │ ├── Makefile │ ├── MkTour.hs │ ├── tour.txt │ └── tourSwe.html ├── translation.dot ├── translation.png └── translation.txt ├── haskell └── Numeral.hs ├── languages.csv ├── mkPresent ├── src ├── Clone.hs ├── FileHierarchy.png ├── Lang.labels ├── MkExx.hs ├── README.md ├── TEMPLATE │ ├── AdjectiveTMP.gf │ ├── AdverbTMP.gf │ ├── AllTMP.gf │ ├── AllTMPAbs.gf │ ├── CatTMP.gf │ ├── ConjunctionTMP.gf │ ├── ConstructionTMP.gf │ ├── ExtendTMP.gf │ ├── GrammarTMP.gf │ ├── IdiomTMP.gf │ ├── LangTMP.gf │ ├── LexiconTMP.gf │ ├── MissingTMP.gf │ ├── NamesTMP.gf │ ├── NounTMP.gf │ ├── NumeralTMP.gf │ ├── ParadigmsTMP.gf │ ├── PhraseTMP.gf │ ├── QuestionTMP.gf │ ├── README.md │ ├── RelativeTMP.gf │ ├── ResTMP.gf │ ├── SentenceTMP.gf │ ├── StructuralTMP.gf │ ├── SymbolTMP.gf │ ├── VerbTMP.gf │ └── unittest │ │ ├── nouns.gftest │ │ └── sentences.gftest ├── abstract │ ├── Adjective.gf │ ├── Adverb.gf │ ├── Backward.gf │ ├── Cat.gf │ ├── Common.gf │ ├── Compatibility.gf │ ├── Conjunction.gf │ ├── Construction.gf │ ├── Documentation.gf │ ├── Extend.gf │ ├── Extra.gf │ ├── Grammar.gf │ ├── Idiom.gf │ ├── Lang.gf │ ├── Lexicon.gf │ ├── MarkHTML.gf │ ├── Markup.gf │ ├── Names.gf │ ├── Noun.gf │ ├── Numeral.gf │ ├── NumeralTransfer.gf │ ├── Phrase.gf │ ├── Question.gf │ ├── Relative.gf │ ├── Sentence.gf │ ├── Structural.gf │ ├── Symbol.gf │ ├── Tense.gf │ ├── Terminology.gf │ ├── Text.gf │ ├── Transfer.gf │ └── Verb.gf ├── afrikaans │ ├── AdjectiveAfr.gf │ ├── AdverbAfr.gf │ ├── AllAfr.gf │ ├── AllAfrAbs.gf │ ├── CatAfr.gf │ ├── ConjunctionAfr.gf │ ├── DocumentationAfr.gf │ ├── ExtendAfr.gf │ ├── ExtraAfr.gf │ ├── ExtraAfrAbs.gf │ ├── GrammarAfr.gf │ ├── IdiomAfr.gf │ ├── IrregAfr.gf │ ├── IrregAfrAbs.gf │ ├── LangAfr.gf │ ├── LexiconAfr.gf │ ├── MorphoAfr.gf │ ├── NamesAfr.gf │ ├── NounAfr.gf │ ├── NumeralAfr.gf │ ├── ParadigmsAfr.gf │ ├── PhraseAfr.gf │ ├── QuestionAfr.gf │ ├── RelativeAfr.gf │ ├── ResAfr.gf │ ├── SentenceAfr.gf │ ├── StructuralAfr.gf │ ├── SymbolAfr.gf │ └── VerbAfr.gf ├── albanian │ ├── AdjectiveSqi.gf │ ├── AllSqi.gf │ ├── AllSqiAbs.gf │ ├── CatSqi.gf │ ├── DocumentationSqi.gf │ ├── GrammarSqi.gf │ ├── LangSqi.gf │ ├── LexiconSqi.gf │ ├── MorphoSqi.gf │ ├── NounSqi.gf │ ├── NumeralSqi.gf │ ├── ParadigmsSqi.gf │ ├── PhraseSqi.gf │ ├── ResSqi.gf │ └── StructuralSqi.gf ├── amharic │ ├── AdjectiveAmh.gf │ ├── AdverbAmh.gf │ ├── AllAmh.gf │ ├── AllAmhAbs.gf │ ├── CatAmh.gf │ ├── ConjunctionAmh.gf │ ├── ExtAmh.gf │ ├── ExtAmhAbs.gf │ ├── GrammarAmh.gf │ ├── IdiomAmh.gf │ ├── IrregAmh.gf │ ├── LangAmh.gf │ ├── LexAmhTran.gf │ ├── LexiconAmh.gf │ ├── LexiconMlt.gf │ ├── MorphoAmh.gf │ ├── NounAmh.gf │ ├── NumeralAmh.gf │ ├── Numerals.gf │ ├── OrthoAmh.gf │ ├── ParadigmsAmh.gf │ ├── PatternsAmh.gf │ ├── PhraseAmh.gf │ ├── QuestionAmh.gf │ ├── RelativeAmh.gf │ ├── ResAmh.gf │ ├── SentenceAmh.gf │ ├── StructuralAmh.gf │ ├── SymbolAmh.gf │ ├── VerbAmh.gf │ ├── amharic.gf │ └── transliterateAmh.gf ├── ancient_greek │ ├── AccentsGrc.gf │ ├── AdjectiveGrc.gf │ ├── AdverbGrc.gf │ ├── AllGrc.gf │ ├── AllGrcAbs.gf │ ├── BackwardGrc.gf │ ├── Bornemann.gf │ ├── BornemannGrc.gf │ ├── BugGrc.gf │ ├── CatGrc.gf │ ├── CombinatorsGrc.gf │ ├── ConjunctionGrc.gf │ ├── ConstructionGrc.gf │ ├── ConstructorsGrc.gf │ ├── DocumentationGrc.gf │ ├── DocumentationGrcFunctor.gf │ ├── ExtraGrc.gf │ ├── ExtraGrcAbs.gf │ ├── GrammarGrc.gf │ ├── IdiomGrc.gf │ ├── IrregGrc.gf │ ├── IrregGrcAbs.gf │ ├── LangExtra.gf │ ├── LangExtraGrc.gf │ ├── LangGrc.gf │ ├── LexiconGrc.gf │ ├── Makefile │ ├── MorphoGrc.gf │ ├── NounGrc.gf │ ├── NumeralGrc.gf │ ├── OverloadGrc.gf │ ├── ParadigmsGrc.gf │ ├── PhonoGrc.gf │ ├── PhraseGrc.gf │ ├── QuestionGrc.gf │ ├── RelativeGrc.gf │ ├── ResGrc.gf │ ├── SentenceGrc.gf │ ├── StructuralGrc.gf │ ├── SymbolGrc.gf │ ├── SymbolicGrc.gf │ ├── SyntaxGrc.gf │ ├── TenseGrc.gf │ ├── TerminologyGrc.gf │ ├── TransferGrcAbs.gf │ ├── VerbGrc.gf │ ├── adjectivesBR.gfs │ ├── adjectivesBR.gold │ ├── bornemann │ ├── nounsBR.gfs │ ├── nounsBR.gold │ ├── verbsBR.gfs │ └── verbsBR.gold ├── api │ ├── Browse.gf │ ├── BrowseEng.gf │ ├── Combinators.gf │ ├── CombinatorsAfr.gf │ ├── CombinatorsAra.gf │ ├── CombinatorsBul.gf │ ├── CombinatorsCat.gf │ ├── CombinatorsChi.gf │ ├── CombinatorsCze.gf │ ├── CombinatorsDan.gf │ ├── CombinatorsDut.gf │ ├── CombinatorsEng.gf │ ├── CombinatorsEst.gf │ ├── CombinatorsEus.gf │ ├── CombinatorsFin.gf │ ├── CombinatorsFre.gf │ ├── CombinatorsGer.gf │ ├── CombinatorsGre.gf │ ├── CombinatorsHin.gf │ ├── CombinatorsHrv.gf │ ├── CombinatorsHun.gf │ ├── CombinatorsIce.gf │ ├── CombinatorsIna.gf │ ├── CombinatorsIta.gf │ ├── CombinatorsJpn.gf │ ├── CombinatorsKor.gf │ ├── CombinatorsLat.gf │ ├── CombinatorsLav.gf │ ├── CombinatorsMay.gf │ ├── CombinatorsMlt.gf │ ├── CombinatorsMon.gf │ ├── CombinatorsNep.gf │ ├── CombinatorsNno.gf │ ├── CombinatorsNor.gf │ ├── CombinatorsPes.gf │ ├── CombinatorsPnb.gf │ ├── CombinatorsPol.gf │ ├── CombinatorsPor.gf │ ├── CombinatorsRon.gf │ ├── CombinatorsRus.gf │ ├── CombinatorsSco.gf │ ├── CombinatorsSlo.gf │ ├── CombinatorsSnd.gf │ ├── CombinatorsSom.gf │ ├── CombinatorsSpa.gf │ ├── CombinatorsSwe.gf │ ├── CombinatorsTam.gf │ ├── CombinatorsTha.gf │ ├── CombinatorsTur.gf │ ├── CombinatorsUrd.gf │ ├── Constructors.gf │ ├── ConstructorsAfr.gf │ ├── ConstructorsAra.gf │ ├── ConstructorsBul.gf │ ├── ConstructorsCat.gf │ ├── ConstructorsChi.gf │ ├── ConstructorsCze.gf │ ├── ConstructorsDan.gf │ ├── ConstructorsDut.gf │ ├── ConstructorsEng.gf │ ├── ConstructorsEst.gf │ ├── ConstructorsEus.gf │ ├── ConstructorsFin.gf │ ├── ConstructorsFre.gf │ ├── ConstructorsGer.gf │ ├── ConstructorsGre.gf │ ├── ConstructorsHin.gf │ ├── ConstructorsHrv.gf │ ├── ConstructorsHun.gf │ ├── ConstructorsIce.gf │ ├── ConstructorsIna.gf │ ├── ConstructorsIta.gf │ ├── ConstructorsJpn.gf │ ├── ConstructorsKor.gf │ ├── ConstructorsLat.gf │ ├── ConstructorsLav.gf │ ├── ConstructorsMay.gf │ ├── ConstructorsMlt.gf │ ├── ConstructorsMon.gf │ ├── ConstructorsNep.gf │ ├── ConstructorsNno.gf │ ├── ConstructorsNor.gf │ ├── ConstructorsPes.gf │ ├── ConstructorsPnb.gf │ ├── ConstructorsPol.gf │ ├── ConstructorsPor.gf │ ├── ConstructorsRon.gf │ ├── ConstructorsRus.gf │ ├── ConstructorsSco.gf │ ├── ConstructorsSlo.gf │ ├── ConstructorsSnd.gf │ ├── ConstructorsSom.gf │ ├── ConstructorsSpa.gf │ ├── ConstructorsSwe.gf │ ├── ConstructorsTam.gf │ ├── ConstructorsTha.gf │ ├── ConstructorsTur.gf │ ├── ConstructorsUrd.gf │ ├── LangAPI.gf │ ├── MkBrowse.hs │ ├── Symbolic.gf │ ├── SymbolicAra.gf │ ├── SymbolicBul.gf │ ├── SymbolicCat.gf │ ├── SymbolicChi.gf │ ├── SymbolicCze.gf │ ├── SymbolicDan.gf │ ├── SymbolicDut.gf │ ├── SymbolicEng.gf │ ├── SymbolicEst.gf │ ├── SymbolicEus.gf │ ├── SymbolicFin.gf │ ├── SymbolicFre.gf │ ├── SymbolicGer.gf │ ├── SymbolicGre.gf │ ├── SymbolicHin.gf │ ├── SymbolicHrv.gf │ ├── SymbolicHun.gf │ ├── SymbolicIce.gf │ ├── SymbolicIta.gf │ ├── SymbolicJpn.gf │ ├── SymbolicKor.gf │ ├── SymbolicLat.gf │ ├── SymbolicLav.gf │ ├── SymbolicMay.gf │ ├── SymbolicMlt.gf │ ├── SymbolicNno.gf │ ├── SymbolicNor.gf │ ├── SymbolicPes.gf │ ├── SymbolicPnb.gf │ ├── SymbolicPol.gf │ ├── SymbolicPor.gf │ ├── SymbolicRon.gf │ ├── SymbolicRus.gf │ ├── SymbolicSco.gf │ ├── SymbolicSlo.gf │ ├── SymbolicSnd.gf │ ├── SymbolicSom.gf │ ├── SymbolicSpa.gf │ ├── SymbolicSwe.gf │ ├── SymbolicTam.gf │ ├── SymbolicTha.gf │ ├── SymbolicUrd.gf │ ├── Syntax.gf │ ├── SyntaxAfr.gf │ ├── SyntaxAra.gf │ ├── SyntaxBul.gf │ ├── SyntaxCat.gf │ ├── SyntaxChi.gf │ ├── SyntaxCze.gf │ ├── SyntaxDan.gf │ ├── SyntaxDut.gf │ ├── SyntaxEng.gf │ ├── SyntaxEst.gf │ ├── SyntaxEus.gf │ ├── SyntaxFin.gf │ ├── SyntaxFre.gf │ ├── SyntaxGer.gf │ ├── SyntaxGre.gf │ ├── SyntaxHin.gf │ ├── SyntaxHrv.gf │ ├── SyntaxHun.gf │ ├── SyntaxIce.gf │ ├── SyntaxIna.gf │ ├── SyntaxIta.gf │ ├── SyntaxJpn.gf │ ├── SyntaxKor.gf │ ├── SyntaxLat.gf │ ├── SyntaxLav.gf │ ├── SyntaxMay.gf │ ├── SyntaxMlt.gf │ ├── SyntaxMon.gf │ ├── SyntaxNep.gf │ ├── SyntaxNno.gf │ ├── SyntaxNor.gf │ ├── SyntaxPes.gf │ ├── SyntaxPnb.gf │ ├── SyntaxPol.gf │ ├── SyntaxPor.gf │ ├── SyntaxRon.gf │ ├── SyntaxRus.gf │ ├── SyntaxSco.gf │ ├── SyntaxSlo.gf │ ├── SyntaxSnd.gf │ ├── SyntaxSom.gf │ ├── SyntaxSpa.gf │ ├── SyntaxSwe.gf │ ├── SyntaxTam.gf │ ├── SyntaxTha.gf │ ├── SyntaxTur.gf │ ├── SyntaxUrd.gf │ ├── TryAfr.gf │ ├── TryAra.gf │ ├── TryBul.gf │ ├── TryCat.gf │ ├── TryChi.gf │ ├── TryCze.gf │ ├── TryDan.gf │ ├── TryDut.gf │ ├── TryEng.gf │ ├── TryEst.gf │ ├── TryEus.gf │ ├── TryFin.gf │ ├── TryFre.gf │ ├── TryGer.gf │ ├── TryGre.gf │ ├── TryHin.gf │ ├── TryHrv.gf │ ├── TryHun.gf │ ├── TryIce.gf │ ├── TryIna.gf │ ├── TryIta.gf │ ├── TryJpn.gf │ ├── TryKor.gf │ ├── TryLat.gf │ ├── TryLav.gf │ ├── TryMay.gf │ ├── TryMlt.gf │ ├── TryMon.gf │ ├── TryNep.gf │ ├── TryNno.gf │ ├── TryNor.gf │ ├── TryPes.gf │ ├── TryPnb.gf │ ├── TryPol.gf │ ├── TryPor.gf │ ├── TryRon.gf │ ├── TryRus.gf │ ├── TrySco.gf │ ├── TrySlo.gf │ ├── TrySnd.gf │ ├── TrySom.gf │ ├── TrySpa.gf │ ├── TrySwe.gf │ ├── TryTam.gf │ ├── TryTha.gf │ ├── TryTur.gf │ ├── TryUrd.gf │ ├── abstract_to_api │ │ ├── AbsParadigmsEng.gf │ │ ├── AbsParadigmsEngAbs.gf │ │ ├── AbsParadigmsEngapi.gf │ │ ├── AbsParadigmsSweAbs.gf │ │ ├── AbsParadigmsSweI.gf │ │ ├── AbsParadigmsSweapi.gf │ │ ├── AbsToAPI.gf │ │ ├── AbsToAPIAbs.gf │ │ ├── AbsToAPIapi.gf │ │ └── ConvertLex.hs │ ├── libraryBrowser │ │ ├── LargeLibraryBrowser.gf │ │ ├── LargeLibraryBrowserAPI.gf │ │ ├── LargeLibraryBrowserEng.gf │ │ ├── LibraryBrowser.gf │ │ ├── LibraryBrowserAPI.gf │ │ ├── LibraryBrowserBul.gf │ │ ├── LibraryBrowserChi.gf │ │ ├── LibraryBrowserDut.gf │ │ ├── LibraryBrowserEng.gf │ │ ├── LibraryBrowserIta.gf │ │ ├── LibraryBrowserSpa.gf │ │ ├── LibraryBrowserSwe.gf │ │ ├── Makefile │ │ ├── MkLang.hs │ │ ├── MkLinAPI.hs │ │ ├── README │ │ └── api.treebank │ └── minimals.txt ├── arabic │ ├── AdjectiveAra.gf │ ├── AdverbAra.gf │ ├── AllAra.gf │ ├── AllAraAbs.gf │ ├── CatAra.gf │ ├── ConjunctionAra.gf │ ├── ConstructionAra.gf │ ├── DocumentationAra.gf │ ├── ExtAra.gf │ ├── ExtendAra.gf │ ├── GrammarAra.gf │ ├── IdiomAra.gf │ ├── IrregAra.gf │ ├── LangAra.gf │ ├── LexiconAra.gf │ ├── MissingAra.gf │ ├── MorphoAra.gf │ ├── NamesAra.gf │ ├── NounAra.gf │ ├── NumeralAra.gf │ ├── OrthoAra.gf │ ├── ParadigmsAra.gf │ ├── PatternsAra.gf │ ├── PhraseAra.gf │ ├── QuestionAra.gf │ ├── README.md │ ├── RelativeAra.gf │ ├── ResAra.gf │ ├── SentenceAra.gf │ ├── StructuralAra.gf │ ├── SymbolAra.gf │ ├── VerbAra.gf │ └── wiktionary │ │ ├── Makefile │ │ ├── MoreAra.gf │ │ ├── WordNetAra.gf │ │ ├── arabic_utilities.py │ │ ├── read_wiktionary.py │ │ └── to_wordnet.py ├── armenian │ ├── AdjectiveHye.gf │ ├── AllHye.gf │ ├── AllHyeAbs.gf │ ├── CatHye.gf │ ├── DocumentationHye.gf │ ├── GrammarHye.gf │ ├── LangHye.gf │ ├── LexiconHye.gf │ ├── MorphoHye.gf │ ├── NounHye.gf │ ├── ParadigmsHye.gf │ ├── PhraseHye.gf │ └── ResHye.gf ├── bantu │ ├── AdjectiveBantu.gf │ ├── AdverbBantu.gf │ ├── CatBantu.gf │ ├── CommonBantu.gf │ ├── ConjunctionBantu.gf │ ├── DiffBantu.gf │ ├── NounBantu.gf │ ├── PhraseBantu.gf │ ├── QuestionBantu.gf │ ├── RelativeBantu.gf │ ├── ResBantu.gf │ ├── SentenceBantu.gf │ ├── Symbol10Bantu.gf │ ├── Tense10Bantu.gf │ └── VerbBantu.gf ├── basque │ ├── AditzTrinkoak.gf │ ├── AdjectiveEus.gf │ ├── AdverbEus.gf │ ├── AllEus.gf │ ├── AllEusAbs.gf │ ├── CatEus.gf │ ├── ConjunctionEus.gf │ ├── ConstructionEus.gf │ ├── DocumentationEus.gf │ ├── ExtendEus.gf │ ├── ExtraEus.gf │ ├── ExtraEusAbs.gf │ ├── GrammarEus.gf │ ├── IdiomEus.gf │ ├── LangEus.gf │ ├── LexiconEus.gf │ ├── MissingEus.gf │ ├── NounEus.gf │ ├── NumeralEus.gf │ ├── ParadigmsEus.gf │ ├── ParamEus.gf │ ├── PhraseEus.gf │ ├── QuestionEus.gf │ ├── README.md │ ├── RelativeEus.gf │ ├── ResEus.gf │ ├── SentenceEus.gf │ ├── StructuralEus.gf │ ├── SymbolEus.gf │ ├── VerbEus.gf │ └── tests │ │ ├── README.md │ │ ├── prepnp.gfs │ │ ├── relative.gfs │ │ ├── ukanDio.gfs │ │ ├── ukanDu.gfs │ │ └── ukanZaio.gfs ├── belarusian │ ├── AdjectiveBel.gf │ ├── AllBel.gf │ ├── AllBelAbs.gf │ ├── CatBel.gf │ ├── DocumentationBel.gf │ ├── GrammarBel.gf │ ├── LangBel.gf │ ├── LexiconBel.gf │ ├── MorphoBel.gf │ ├── NounBel.gf │ ├── ParadigmsBel.gf │ ├── PhraseBel.gf │ └── ResBel.gf ├── bulgarian │ ├── AdjectiveBul.gf │ ├── AdverbBul.gf │ ├── AllBul.gf │ ├── AllBulAbs.gf │ ├── CatBul.gf │ ├── CompatibilityBul.gf │ ├── ConjunctionBul.gf │ ├── ConstructionBul.gf │ ├── DocumentationBul.gf │ ├── ExtendBul.gf │ ├── ExtraBul.gf │ ├── ExtraBulAbs.gf │ ├── GrammarBul.gf │ ├── IdiomBul.gf │ ├── LangBul.gf │ ├── LexiconBul.gf │ ├── MorphoBul.gf │ ├── MorphoFunsBul.gf │ ├── NamesBul.gf │ ├── NounBul.gf │ ├── NumeralBul.gf │ ├── ParadigmsBul.gf │ ├── PhraseBul.gf │ ├── QuestionBul.gf │ ├── RelativeBul.gf │ ├── ResBul.gf │ ├── SentenceBul.gf │ ├── StructuralBul.gf │ ├── SymbolBul.gf │ ├── TenseBul.gf │ ├── TextBul.gf │ └── VerbBul.gf ├── catalan │ ├── AdjectiveCat.gf │ ├── AdverbCat.gf │ ├── AllCat.gf │ ├── AllCatAbs.gf │ ├── BeschCat.gf │ ├── CatCat.gf │ ├── CompatibilityCat.gf │ ├── ConjunctionCat.gf │ ├── ConstructionCat.gf │ ├── DiffCat.gf │ ├── DocumentationCat.gf │ ├── DocumentationCatFunctor.gf │ ├── ExtendCat.gf │ ├── ExtraCat.gf │ ├── ExtraCatAbs.gf │ ├── ExtraRomanceCat.gf │ ├── GrammarCat.gf │ ├── IdiomCat.gf │ ├── IrregCat.gf │ ├── IrregCatAbs.gf │ ├── LangCat.gf │ ├── LexiconCat.gf │ ├── MakeStructuralCat.gf │ ├── MorphoCat.gf │ ├── NamesCat.gf │ ├── NounCat.gf │ ├── NumeralCat.gf │ ├── ParadigmsCat.gf │ ├── PhonoCat.gf │ ├── PhraseCat.gf │ ├── QuestionCat.gf │ ├── README.md │ ├── RelativeCat.gf │ ├── ResCat.gf │ ├── SentenceCat.gf │ ├── StructuralCat.gf │ ├── SymbolCat.gf │ ├── TenseCat.gf │ ├── TerminologyCat.gf │ └── VerbCat.gf ├── chinese │ ├── AdjectiveChi.gf │ ├── AdverbChi.gf │ ├── AllChi.gf │ ├── AllChiAbs.gf │ ├── CatChi.gf │ ├── ConjunctionChi.gf │ ├── ConstructionChi.gf │ ├── DocumentationChi.gf │ ├── ExtendChi.gf │ ├── ExtraChi.gf │ ├── ExtraChiAbs.gf │ ├── GrammarChi.gf │ ├── IdiomChi.gf │ ├── LangChi.gf │ ├── LexiconChi.gf │ ├── NamesChi.gf │ ├── NounChi.gf │ ├── NumeralChi.gf │ ├── ParadigmsChi.gf │ ├── PhraseChi.gf │ ├── QuestionChi.gf │ ├── README │ ├── RelativeChi.gf │ ├── ResChi.gf │ ├── SentenceChi.gf │ ├── StructuralChi.gf │ ├── SymbolChi.gf │ ├── TenseChi.gf │ ├── TextChi.gf │ ├── VerbChi.gf │ ├── chinese-log.txt │ ├── classifiersChi.txt │ ├── eng_chi2.txt │ ├── pinyin │ │ ├── ConstructionChi.gf │ │ ├── ExtraChi.gf │ │ ├── LexiconChi.gf │ │ ├── Makefile │ │ ├── MkPinyin.hs │ │ ├── NumeralChi.gf │ │ ├── ParadigmsChi.gf │ │ ├── Pinyin.hs │ │ ├── ResChi.gf │ │ ├── StructuralChi.gf │ │ ├── SymbolChi.gf │ │ └── pinyin.txt │ ├── sysu │ │ ├── Assign_1.gf │ │ ├── Assign_10.gf │ │ ├── Assign_11.gf │ │ ├── Assign_12.gf │ │ ├── Assign_13.gf │ │ ├── Assign_14.gf │ │ ├── Assign_15.gf │ │ ├── Assign_16.gf │ │ ├── Assign_17.gf │ │ ├── Assign_18.gf │ │ ├── Assign_19.gf │ │ ├── Assign_2.gf │ │ ├── Assign_20.gf │ │ ├── Assign_21.gf │ │ ├── Assign_3.gf │ │ ├── Assign_31.gf │ │ ├── Assign_32.gf │ │ ├── Assign_4.gf │ │ ├── Assign_5.gf │ │ ├── Assign_6.gf │ │ ├── Assign_7.gf │ │ ├── Assign_8.gf │ │ └── Assign_9.gf │ └── unittest │ │ ├── adjectives.gftest │ │ ├── adverbial.gftest │ │ ├── complements.gftest │ │ ├── conjunctions.gftest │ │ ├── future.gftest │ │ ├── negation.gftest │ │ ├── numerals.gftest │ │ ├── passive.gftest │ │ ├── pronouns.gftest │ │ ├── quantifier.gftest │ │ ├── relative.gftest │ │ └── tenses.gftest ├── common │ ├── CommonX.gf │ ├── ConstructX.gf │ ├── ExtendFunctor.gf │ ├── MarkHTMLX.gf │ ├── Overload.gf │ ├── ParamX.gf │ ├── TenseX.gf │ └── TextX.gf ├── croatian │ ├── AdjectiveHrv.gf │ ├── AdverbHrv.gf │ ├── AllHrv.gf │ ├── AllHrvAbs.gf │ ├── CatHrv.gf │ ├── ConjunctionHrv.gf │ ├── ExtendHrv.gf │ ├── GrammarHrv.gf │ ├── IdiomHrv.gf │ ├── LangHrv.gf │ ├── LexiconHrv.gf │ ├── MissingHrv.gf │ ├── NounHrv.gf │ ├── NumeralHrv.gf │ ├── ParadigmsHrv.gf │ ├── PhraseHrv.gf │ ├── QuestionHrv.gf │ ├── RelativeHrv.gf │ ├── ResHrv.gf │ ├── SentenceHrv.gf │ ├── StructuralHrv.gf │ ├── SymbolHrv.gf │ ├── TableExtResHrv.gf │ ├── TenseHrv.gf │ ├── TextHrv.gf │ ├── VerbHrv.gf │ ├── aw-needed.txt │ ├── gold-test.txt │ ├── testHrv.gfs │ └── wiktionary │ │ ├── MorphoDictHrv.gf │ │ ├── MorphoDictHrvAbs.gf │ │ ├── extract.py │ │ ├── izvor.html │ │ ├── notes.txt │ │ ├── smart-results.txt │ │ └── test-smart.gfs ├── czech │ ├── AdjectiveCze.gf │ ├── AdverbCze.gf │ ├── AllCze.gf │ ├── AllCzeAbs.gf │ ├── CatCze.gf │ ├── ConjunctionCze.gf │ ├── ExtendCze.gf │ ├── GrammarCze.gf │ ├── IdiomCze.gf │ ├── LangCze.gf │ ├── LexiconCze.gf │ ├── MissingCze.gf │ ├── NounCze.gf │ ├── NumeralCze.gf │ ├── ParadigmsCze.gf │ ├── PhraseCze.gf │ ├── QuestionCze.gf │ ├── RelativeCze.gf │ ├── ResCze.gf │ ├── SentenceCze.gf │ ├── StructuralCze.gf │ ├── SymbolCze.gf │ ├── TenseCze.gf │ ├── TextCze.gf │ └── VerbCze.gf ├── danish │ ├── AdjectiveDan.gf │ ├── AdverbDan.gf │ ├── AllDan.gf │ ├── AllDanAbs.gf │ ├── CatDan.gf │ ├── ConjunctionDan.gf │ ├── DiffDan.gf │ ├── DocumentationDan.gf │ ├── ExtendDan.gf │ ├── ExtraDan.gf │ ├── ExtraDanAbs.gf │ ├── ExtraScandDan.gf │ ├── GrammarDan.gf │ ├── IdiomDan.gf │ ├── IrregDan.gf │ ├── IrregDanAbs.gf │ ├── LangDan.gf │ ├── LexiconDan.gf │ ├── MakeStructuralDan.gf │ ├── MathDan.gf │ ├── MorphoDan.gf │ ├── NamesDan.gf │ ├── NounDan.gf │ ├── NumeralDan.gf │ ├── ParadigmsDan.gf │ ├── PhraseDan.gf │ ├── QuestionDan.gf │ ├── RelativeDan.gf │ ├── ResDan.gf │ ├── SentenceDan.gf │ ├── StructuralDan.gf │ ├── SymbolDan.gf │ ├── TenseDan.gf │ └── VerbDan.gf ├── demo │ ├── Compile.hs │ ├── Makefile │ ├── MkMini.hs │ ├── ResourceDemo.gf │ ├── ResourceDemo.pgf_info │ ├── ResourceDemoAPI.gf │ └── ResourceDemoEng.gf ├── dep.labels ├── dutch │ ├── AdjectiveDut.gf │ ├── AdverbDut.gf │ ├── AllDut.gf │ ├── AllDutAbs.gf │ ├── CatDut.gf │ ├── ConjunctionDut.gf │ ├── ConstructionDut.gf │ ├── DocumentationDut.gf │ ├── DocumentationDutEng.gf │ ├── DocumentationDutFunctor.gf │ ├── ExtDut.gf │ ├── ExtendDut.gf │ ├── ExtraDut.gf │ ├── ExtraDutAbs.gf │ ├── GrammarDut.gf │ ├── IdiomDut.gf │ ├── IrregDut.gf │ ├── IrregDutAbs.gf │ ├── LangDut.gf │ ├── LexiconDut.gf │ ├── MakeStructuralDut.gf │ ├── MkIrreg.hs │ ├── NamesDut.gf │ ├── NounDut.gf │ ├── NumeralDut.gf │ ├── ParadigmsDut.gf │ ├── PhraseDut.gf │ ├── QuestionDut.gf │ ├── RelativeDut.gf │ ├── ResDut.gf │ ├── SentenceDut.gf │ ├── StructuralDut.gf │ ├── SymbolDut.gf │ ├── TerminologyDut.gf │ ├── VerbDut.gf │ ├── irregs │ └── tagged │ │ ├── LangDutTagged.gf │ │ ├── README │ │ └── ResDut.gf ├── egekusii │ ├── AdjectiveGus.gf │ ├── AdverbGus.gf │ ├── CatGus.gf │ ├── ConjunctionGus.gf │ ├── DiffGus.gf │ ├── GrammarGus.gf │ ├── IdiomGus.gf │ ├── LangGus.gf │ ├── LexiconGus.gf │ ├── MorphoGus.gf │ ├── NounGus.gf │ ├── NumeralGus.gf │ ├── ParadigmsGus.gf │ ├── PhraseGus.gf │ ├── QuestionGus.gf │ ├── RelativeGus.gf │ ├── ResGus.gf │ ├── SentenceGus.gf │ ├── StructuralGus.gf │ └── VerbGus.gf ├── english │ ├── AdjectiveEng.gf │ ├── AdverbEng.gf │ ├── AllEng.gf │ ├── AllEngAbs.gf │ ├── BackwardEng.gf │ ├── CatEng.gf │ ├── CompatibilityEng.gf │ ├── ConjunctionEng.gf │ ├── ConstructionEng.gf │ ├── DictEng.gf │ ├── DictEngAbs.gf │ ├── DocumentationEng.gf │ ├── DocumentationEngFunctor.gf │ ├── DocumentationEngSwe.gf │ ├── ExtendEng.gf │ ├── ExtraEng.gf │ ├── ExtraEngAbs.gf │ ├── GrammarEng.gf │ ├── IdiomEng.gf │ ├── IrregEng.gf │ ├── IrregEngAbs.gf │ ├── LangEng.gf │ ├── LangEng.labels │ ├── LexiconEng.gf │ ├── MakeStructuralEng.gf │ ├── MarkupEng.gf │ ├── MorphoEng.gf │ ├── NamesEng.gf │ ├── NounEng.gf │ ├── NumeralEng.gf │ ├── OverloadEng.gf │ ├── ParadigmsEng.gf │ ├── ParseEngAbs.gf │ ├── PhraseEng.gf │ ├── QuestionEng.gf │ ├── RelativeEng.gf │ ├── ResEng.gf │ ├── SentenceEng.gf │ ├── StructuralEng.gf │ ├── SymbolEng.gf │ ├── TerminologyEng.gf │ ├── VerbEng.gf │ ├── treebank.txt │ └── unittest │ │ ├── relative.gftest │ │ └── vps2.gftest ├── estonian │ ├── AdjectiveEst.gf │ ├── AdverbEst.gf │ ├── AllEst.gf │ ├── AllEstAbs.gf │ ├── CatEst.gf │ ├── ConjunctionEst.gf │ ├── ConstructionEst.gf │ ├── DictEst.gf │ ├── DictEstAbs.gf │ ├── DocumentationEst.gf │ ├── DocumentationEstEng.gf │ ├── DocumentationEstFunctor.gf │ ├── ExtendEst.gf │ ├── ExtraEst.gf │ ├── ExtraEstAbs.gf │ ├── GrammarEst.gf │ ├── HjkEst.gf │ ├── IdiomEst.gf │ ├── IrregEst.gf │ ├── LangEst.gf │ ├── LexiconEst.gf │ ├── MakeStructuralEst.gf │ ├── MorphoEst.gf │ ├── NamesEst.gf │ ├── NounEst.gf │ ├── NumeralEst.gf │ ├── ParadigmsEst.gf │ ├── PhraseEst.gf │ ├── QuestionEst.gf │ ├── README.md │ ├── RelativeEst.gf │ ├── ResEst.gf │ ├── SentenceEst.gf │ ├── StructuralEst.gf │ ├── SymbolEst.gf │ ├── TerminologyEst.gf │ ├── VerbEst.gf │ └── unittest │ │ ├── comitative.gftest │ │ └── interrogative-agreement.gftest ├── faroese │ ├── AdjectiveFao.gf │ ├── AllFao.gf │ ├── AllFaoAbs.gf │ ├── CatFao.gf │ ├── DocumentationFao.gf │ ├── GrammarFao.gf │ ├── LangFao.gf │ ├── LexiconFao.gf │ ├── MorphoFao.gf │ ├── NounFao.gf │ ├── ParadigmsFao.gf │ ├── PhraseFao.gf │ └── ResFao.gf ├── finnish │ ├── AdjectiveFin.gf │ ├── AdverbFin.gf │ ├── AllFin.gf │ ├── AllFinAbs.gf │ ├── CatFin.gf │ ├── CompatibilityFin.gf │ ├── ConjunctionFin.gf │ ├── ConstructionFin.gf │ ├── DictCompFin.gf │ ├── DictCompFinAbs.gf │ ├── DictFin.gf │ ├── DictFinAbs.gf │ ├── DocumentationFin.gf │ ├── DocumentationFinEng.gf │ ├── DocumentationFinFunctor.gf │ ├── ExtendFin.gf │ ├── ExtraFin.gf │ ├── ExtraFinAbs.gf │ ├── GrammarFin.gf │ ├── IdiomFin.gf │ ├── IrregFin.gf │ ├── Kotus.gf │ ├── LangFin.gf │ ├── LangFin.labels │ ├── LexiconFin.gf │ ├── MakeStructuralFin.gf │ ├── MarkupFin.gf │ ├── MorphoFin.gf │ ├── NamesFin.gf │ ├── NewDictFin.gf │ ├── NewDictFinAbs.gf │ ├── NounFin.gf │ ├── NumeralFin.gf │ ├── OldDictFin.gf │ ├── OldDictFinAbs.gf │ ├── ParadigmsFin.gf │ ├── PhraseFin.gf │ ├── QuestionFin.gf │ ├── README.md │ ├── RelativeFin.gf │ ├── ResFin.gf │ ├── SentenceFin.gf │ ├── StemFin.gf │ ├── StructuralFin.gf │ ├── SymbolFin.gf │ ├── TerminologyFin.gf │ ├── VerbFin.gf │ ├── frequency │ │ ├── Freq.hs │ │ ├── FreqGrammarFin.gf │ │ ├── FreqGrammarFinAbs.gf │ │ ├── Makefile │ │ ├── prelFreqFin │ │ ├── prelFreqFinAbs │ │ └── src │ │ │ ├── README │ │ │ └── suomen-sanomalehtikielen-taajuussanasto-utf8.txt │ ├── infinitives │ │ ├── Infinitive.gf │ │ ├── InfinitiveFin.gf │ │ ├── InterpretInfinitives.hs │ │ └── Makefile │ ├── kotus │ │ ├── Kotus.hs │ │ ├── Makefile │ │ ├── prelDictCompFin │ │ ├── prelDictCompFinAbs │ │ ├── prelDictFin │ │ ├── prelDictFinAbs │ │ ├── src │ │ │ ├── DictEng.senses │ │ │ ├── DictEngFin.senses │ │ │ ├── Kotus.hs │ │ │ ├── LookupWordnet.hs │ │ │ ├── Wordnet.hs │ │ │ ├── kotus-sanalista.dtd │ │ │ ├── kotus-sanalista_v1.xml │ │ │ └── wn-kotus.txt │ │ └── uusisuomi │ │ │ ├── Makefile │ │ │ ├── MkLex.hs │ │ │ ├── MyDiff.hs │ │ │ └── bootstrapping.txt │ ├── stemmed │ │ ├── ElimPredef.hs │ │ ├── MkGFLex.hs │ │ ├── ParseFin.gf │ │ ├── StemFin.gf │ │ ├── WNKotus.gf │ │ └── log.txt │ ├── tagged │ │ ├── LangFin.gf │ │ ├── LargeFin.gf │ │ ├── LargeFinAbs.gf │ │ ├── StemFin.gf │ │ ├── TagFin.gf │ │ ├── WordsFin.gf │ │ └── WordsFinAbs.gf │ └── wordnet │ │ ├── Adven_fi.txt │ │ ├── Aen_fi.txt │ │ ├── FreqFin.hs │ │ ├── LUEMINUT_fst │ │ ├── Nen_fi.txt │ │ ├── README_fst │ │ ├── V2en_fi.txt │ │ ├── VSen_fi.txt │ │ ├── Ven_fi.txt │ │ └── taajuus.txt ├── french │ ├── AdjectiveFre.gf │ ├── AdverbFre.gf │ ├── AllFre.gf │ ├── AllFreAbs.gf │ ├── BeschFre.gf │ ├── CatFre.gf │ ├── CompatibilityFre.gf │ ├── ConjunctionFre.gf │ ├── ConstructionFre.gf │ ├── DictFre.gf │ ├── DictFreAbs.gf │ ├── DiffFre.gf │ ├── DocumentationFre.gf │ ├── DocumentationFreEng.gf │ ├── DocumentationFreFunctor.gf │ ├── ExtendFre.gf │ ├── ExtraFre.gf │ ├── ExtraFreAbs.gf │ ├── ExtraRomanceFre.gf │ ├── GrammarFre.gf │ ├── IdiomFre.gf │ ├── IrregFre.gf │ ├── IrregFreAbs.gf │ ├── LangFre.gf │ ├── LexiconFre.gf │ ├── MakeStructuralFre.gf │ ├── MarkupFre.gf │ ├── MkWikt.hs │ ├── MorphoFre.gf │ ├── NamesFre.gf │ ├── NounFre.gf │ ├── NumeralFre.gf │ ├── ParadigmsFre.gf │ ├── PhonoFre.gf │ ├── PhraseFre.gf │ ├── QuestionFre.gf │ ├── RelativeFre.gf │ ├── ResFre.gf │ ├── SentenceFre.gf │ ├── StructuralFre.gf │ ├── SymbolFre.gf │ ├── TenseFre.gf │ ├── TerminologyFre.gf │ ├── V1_DictEngFre.gf │ ├── VerbFre.gf │ ├── exper │ │ ├── ConstructionFre.gf │ │ ├── ExtraFre.gf │ │ ├── IdiomFre.gf │ │ └── TranslateFre.gf │ └── unittests │ │ └── attributive-predicative.gftest ├── gaelic │ ├── AdjectiveGla.gf │ ├── AdverbGla.gf │ ├── AllGla.gf │ ├── AllGlaAbs.gf │ ├── CatGla.gf │ ├── ConjunctionGla.gf │ ├── ConstructionGla.gf │ ├── DocumentationGla.gf │ ├── ExtendGla.gf │ ├── GrammarGla.gf │ ├── IdiomGla.gf │ ├── LangGla.gf │ ├── LexiconGla.gf │ ├── MissingGla.gf │ ├── MorphoGla.gf │ ├── NamesGla.gf │ ├── NounGla.gf │ ├── NumeralGla.gf │ ├── ParadigmsGla.gf │ ├── PhraseGla.gf │ ├── QuestionGla.gf │ ├── RelativeGla.gf │ ├── ResGla.gf │ ├── SentenceGla.gf │ ├── StructuralGla.gf │ ├── SymbolGla.gf │ └── VerbGla.gf ├── german │ ├── AdjectiveGer.gf │ ├── AdverbGer.gf │ ├── AllGer.gf │ ├── AllGerAbs.gf │ ├── CatGer.gf │ ├── ConjunctionGer.gf │ ├── ConstructionGer.gf │ ├── DictGer.gf │ ├── DictGerAbs.gf │ ├── DictVerbsGer.gf │ ├── DictVerbsGerAbs.gf │ ├── DocumentationGer.gf │ ├── DocumentationGerEng.gf │ ├── DocumentationGerFunctor.gf │ ├── ExtGer.gf │ ├── ExtendGer.gf │ ├── ExtraGer.gf │ ├── ExtraGerAbs.gf │ ├── GrammarGer.gf │ ├── IdiomGer.gf │ ├── IrregGer.gf │ ├── IrregGerAbs.gf │ ├── LangGer.gf │ ├── LexiconGer.gf │ ├── MakeStructuralGer.gf │ ├── MarkupGer.gf │ ├── MorphoGer.gf │ ├── NamesGer.gf │ ├── NounGer.gf │ ├── NumeralGer.gf │ ├── ParadigmsGer.gf │ ├── ParseGer.gf │ ├── PhraseGer.gf │ ├── QuestionGer.gf │ ├── RelativeGer.gf │ ├── ResGer.gf │ ├── SentenceGer.gf │ ├── StructuralGer.gf │ ├── SymbolGer.gf │ ├── TenseGer.gf │ ├── TerminologyGer.gf │ └── VerbGer.gf ├── greek │ ├── AdjectiveGre.gf │ ├── AdverbGre.gf │ ├── AllGre.gf │ ├── AllGreAbs.gf │ ├── BeschGre.gf │ ├── CatGre.gf │ ├── CommonGre.gf │ ├── ConjunctionGre.gf │ ├── DocumentationGre.gf │ ├── ExtraGre.gf │ ├── ExtraGreAbs.gf │ ├── GrammarGre.gf │ ├── IdiomGre.gf │ ├── LangGre.gf │ ├── LexiconGre.gf │ ├── MakeStructuralGre.gf │ ├── NounGre.gf │ ├── NumeralGre.gf │ ├── ParadigmsGre.gf │ ├── PhraseGre.gf │ ├── QuestionGre.gf │ ├── RelativeGre.gf │ ├── ResGre.gf │ ├── SentenceGre.gf │ ├── StructuralGre.gf │ ├── SymbolGre.gf │ ├── TenseGre.gf │ ├── TextGre.gf │ └── VerbGre.gf ├── greenlandic │ ├── NumeralKal.gf │ └── ResKal.gf ├── hebrew │ ├── AdjectiveHeb.gf │ ├── AdverbHeb.gf │ ├── AllHeb.gf │ ├── AllHebAbs.gf │ ├── CatHeb.gf │ ├── GrammarHeb.gf │ ├── LangHeb.gf │ ├── LexiconHeb.gf │ ├── MorphoHeb.gf │ ├── NounHeb.gf │ ├── ParadigmsHeb.gf │ ├── PatternsHeb.gf │ ├── PhraseHeb.gf │ ├── ResHeb.gf │ ├── SentenceHeb.gf │ ├── StructuralHeb.gf │ ├── TenseHeb.gf │ └── VerbHeb.gf ├── hindi │ ├── AdjectiveHin.gf │ ├── AdverbHin.gf │ ├── AllHin.gf │ ├── AllHinAbs.gf │ ├── CatHin.gf │ ├── ConjunctionHin.gf │ ├── ConstructionHin.gf │ ├── DictHinMath.gf │ ├── DictHinWSJ.gf │ ├── DiffHin.gf │ ├── DocumentationHin.gf │ ├── ExtendHin.gf │ ├── ExtraHin.gf │ ├── ExtraHinAbs.gf │ ├── GrammarHin.gf │ ├── IdiomHin.gf │ ├── LangHin.gf │ ├── LexiconHin.gf │ ├── MorphoHin.gf │ ├── NounHin.gf │ ├── NumeralHin.gf │ ├── ParadigmsHin.gf │ ├── PhraseHin.gf │ ├── QuestionHin.gf │ ├── README │ ├── RelativeHin.gf │ ├── ResHin.gf │ ├── SentenceHin.gf │ ├── StructuralHin.gf │ ├── SymbolHin.gf │ ├── VerbHin.gf │ ├── src │ │ ├── DiffHin.gf │ │ ├── ExtraHin.gf │ │ ├── IdiomHin.gf │ │ ├── LexiconHin.gf │ │ ├── MorphoHin.gf │ │ ├── NumeralHin.gf │ │ └── StructuralHin.gf │ └── translit.gfs ├── hindustani │ ├── AdjectiveHindustani.gf │ ├── AdverbHindustani.gf │ ├── CatHindustani.gf │ ├── CommonHindustani.gf │ ├── ConjunctionHindustani.gf │ ├── DiffHindustani.gf │ ├── ExtraHindustani.gf │ ├── ExtraHindustaniAbs.gf │ ├── NounHindustani.gf │ ├── PhraseHindustani.gf │ ├── QuestionHindustani.gf │ ├── RelativeHindustani.gf │ ├── ResHindustani.gf │ ├── SentenceHindustani.gf │ ├── StringsHindustani.gf │ ├── SymbolHindustani.gf │ └── VerbHindustani.gf ├── hungarian │ ├── AdjectiveHun.gf │ ├── AdverbHun.gf │ ├── AllHun.gf │ ├── AllHunAbs.gf │ ├── CatHun.gf │ ├── ConjunctionHun.gf │ ├── ConstructionHun.gf │ ├── ExtendHun.gf │ ├── GrammarHun.gf │ ├── IdiomHun.gf │ ├── LangHun.gf │ ├── LexiconHun.gf │ ├── MissingHun.gf │ ├── NounHun.gf │ ├── NounMorphoHun.gf │ ├── NumeralHun.gf │ ├── ParadigmsHun.gf │ ├── ParamHun.gf │ ├── PhraseHun.gf │ ├── QuestionHun.gf │ ├── README.md │ ├── RelativeHun.gf │ ├── ResHun.gf │ ├── SentenceHun.gf │ ├── StructuralHun.gf │ ├── SymbolHun.gf │ ├── VerbHun.gf │ └── unittest │ │ ├── adjective.gftest │ │ ├── dative.gftest │ │ ├── determiners.gftest │ │ ├── inflection │ │ ├── alma.gftest │ │ ├── falu.gftest │ │ ├── férfi.gftest │ │ ├── fű.gftest │ │ ├── inflection_placeholder.gfs │ │ ├── kő.gftest │ │ ├── ló.gftest │ │ ├── madár.gftest │ │ ├── mkInflection.sh │ │ ├── név.gftest │ │ ├── nő.gftest │ │ ├── szerelem.gftest │ │ ├── sör.gftest │ │ ├── tó.gftest │ │ ├── víz.gftest │ │ └── év.gftest │ │ ├── numerals.gftest │ │ └── relative.gftest ├── icelandic │ ├── AdjectiveIce.gf │ ├── AdverbIce.gf │ ├── AllIce.gf │ ├── AllIceAbs.gf │ ├── CatIce.gf │ ├── ConjunctionIce.gf │ ├── ConstructionIce.gf │ ├── DictIce.gf │ ├── DictIceAbs.gf │ ├── DocumentationIce.gf │ ├── DocumentationIceEng.gf │ ├── DocumentationIceFunctor.gf │ ├── ExtraIce.gf │ ├── ExtraIceAbs.gf │ ├── GrammarIce.gf │ ├── IdiomIce.gf │ ├── IrregIce.gf │ ├── IrregIceAbs.gf │ ├── LangIce.gf │ ├── LangIce.labels │ ├── LexiconIce.gf │ ├── MakeStructuralIce.gf │ ├── Miniresource.gf │ ├── MiniresourceIce.gf │ ├── MorphoIce.gf │ ├── NounIce.gf │ ├── NumeralIce.gf │ ├── ParadigmsIce.gf │ ├── PhraseIce.gf │ ├── QuestionIce.gf │ ├── README.md │ ├── RelativeIce.gf │ ├── ResIce.gf │ ├── SentenceIce.gf │ ├── SmallDictIce.gf │ ├── SmallDictIceAbs.gf │ ├── StructuralIce.gf │ ├── SymbolIce.gf │ ├── TenseX.gf │ ├── TerminologyIce.gf │ ├── Test.gf │ ├── TestIce.gf │ ├── VerbIce.gf │ ├── WiktIrregIce.gf │ └── wiktionary │ │ └── CheckWithWiktionary.hs ├── interlingua │ ├── AdjectiveIna.gf │ ├── AdverbIna.gf │ ├── AllIna.gf │ ├── AllInaAbs.gf │ ├── CatIna.gf │ ├── ConjunctionIna.gf │ ├── DocumentationIna.gf │ ├── ExtendIna.gf │ ├── ExtraIna.gf │ ├── GrammarIna.gf │ ├── IdiomIna.gf │ ├── IrregIna.gf │ ├── IrregInaAbs.gf │ ├── LangIna.gf │ ├── LexiconIna.gf │ ├── MorphoIna.gf │ ├── NamesIna.gf │ ├── NounIna.gf │ ├── NumeralIna.gf │ ├── OverloadIna.gf │ ├── ParadigmsIna.gf │ ├── PhraseIna.gf │ ├── QuestionIna.gf │ ├── RelativeIna.gf │ ├── ResIna.gf │ ├── ResIna2.gf │ ├── SentenceIna.gf │ ├── StructuralIna.gf │ ├── SymbolIna.gf │ └── VerbIna.gf ├── italian │ ├── AdjectiveIta.gf │ ├── AdverbIta.gf │ ├── AllIta.gf │ ├── AllItaAbs.gf │ ├── BeschIta.gf │ ├── CatIta.gf │ ├── CompatibilityIta.gf │ ├── ConjunctionIta.gf │ ├── ConstructionIta.gf │ ├── DiffIta.gf │ ├── DocumentationIta.gf │ ├── DocumentationItaFunctor.gf │ ├── ExtendIta.gf │ ├── ExtraIta.gf │ ├── ExtraItaAbs.gf │ ├── ExtraRomanceIta.gf │ ├── GrammarIta.gf │ ├── IdiomIta.gf │ ├── IrregIta.gf │ ├── IrregItaAbs.gf │ ├── LangIta.gf │ ├── LexiconIta.gf │ ├── MakeStructuralIta.gf │ ├── MarkupIta.gf │ ├── MorphoIta.gf │ ├── NamesIta.gf │ ├── NounIta.gf │ ├── NumeralIta.gf │ ├── ParadigmsIta.gf │ ├── PhonoIta.gf │ ├── PhraseIta.gf │ ├── QuestionIta.gf │ ├── RelativeIta.gf │ ├── ResIta.gf │ ├── SentenceIta.gf │ ├── StructuralIta.gf │ ├── SymbolIta.gf │ ├── TenseIta.gf │ ├── TerminologyIta.gf │ └── VerbIta.gf ├── japanese │ ├── AdjectiveJpn.gf │ ├── AdverbJpn.gf │ ├── AllJpn.gf │ ├── AllJpnAbs.gf │ ├── CatJpn.gf │ ├── CommonJpn.gf │ ├── ConjunctionJpn.gf │ ├── ConstructionJpn.gf │ ├── DocumentationJpn.gf │ ├── ExtraJpn.gf │ ├── ExtraJpnAbs.gf │ ├── GrammarJpn.gf │ ├── IdiomJpn.gf │ ├── LangJpn.gf │ ├── LexiconJpn.gf │ ├── NounJpn.gf │ ├── NumeralJpn.gf │ ├── ParadigmsJpn.gf │ ├── PhraseJpn.gf │ ├── QuestionJpn.gf │ ├── RelativeJpn.gf │ ├── ResJpn.gf │ ├── SentenceJpn.gf │ ├── StructuralJpn.gf │ ├── SymbolJpn.gf │ ├── TenseJpn.gf │ ├── TextJpn.gf │ └── VerbJpn.gf ├── kazakh │ ├── AllKaz.gf │ ├── AllKazAbs.gf │ ├── CatKaz.gf │ ├── DocumentationKaz.gf │ ├── GrammarKaz.gf │ ├── LangKaz.gf │ ├── LexiconKaz.gf │ ├── MorphoKaz.gf │ ├── ParadigmsKaz.gf │ ├── PhraseKaz.gf │ └── ResKaz.gf ├── kikamba │ ├── AdjectiveKam.gf │ ├── AdverbKam.gf │ ├── CatKam.gf │ ├── ConjunctionKam.gf │ ├── DiffKam.gf │ ├── GrammarKam.gf │ ├── IdiomKam.gf │ ├── LangKam.gf │ ├── LexiconKam.gf │ ├── MorphoKam.gf │ ├── NounKam.gf │ ├── NumeralKam.gf │ ├── ParadigmsKam.gf │ ├── PhraseKam.gf │ ├── QuestionKam.gf │ ├── RelativeKam.gf │ ├── ResKam.gf │ ├── SentenceKam.gf │ ├── StructuralKam.gf │ └── VerbKam.gf ├── korean │ ├── AdjectiveKor.gf │ ├── AdverbKor.gf │ ├── AllKor.gf │ ├── AllKorAbs.gf │ ├── CatKor.gf │ ├── ConjunctionKor.gf │ ├── ConstructionKor.gf │ ├── ExtendKor.gf │ ├── GrammarKor.gf │ ├── Hangul.gf │ ├── HangulReplaceVowel.gf │ ├── IdiomKor.gf │ ├── LangKor.gf │ ├── LexiconKor.gf │ ├── MissingKor.gf │ ├── NamesKor.gf │ ├── NounKor.gf │ ├── NumeralKor.gf │ ├── ParadigmsKor.gf │ ├── ParamKor.gf │ ├── PhraseKor.gf │ ├── QuestionKor.gf │ ├── RelativeKor.gf │ ├── ResKor.gf │ ├── SentenceKor.gf │ ├── StructuralKor.gf │ ├── SymbolKor.gf │ ├── VerbKor.gf │ └── unittest │ │ ├── adjective.gftest │ │ ├── adverb.gftest │ │ ├── imperative.gftest │ │ ├── inflection.gftest │ │ ├── relative.gftest │ │ └── subjcases.gftest ├── latin │ ├── AdjectiveLat.gf │ ├── AdverbLat.gf │ ├── AllLat.gf │ ├── AllLatAbs.gf │ ├── CatLat.gf │ ├── ConjunctionLat.gf │ ├── ConstructionLat.gf │ ├── DictLat.gf │ ├── DictLatAbs.gf │ ├── DocumentationLat.gf │ ├── ExtendLat.gf │ ├── ExtraLat.gf │ ├── ExtraLatAbs.gf │ ├── GrammarLat.gf │ ├── IdiomLat.gf │ ├── IrregLat.gf │ ├── IrregLatAbs.gf │ ├── LangLat.gf │ ├── LexiconLat.gf │ ├── MissingLat.gf │ ├── MorphoLat.gf │ ├── NounLat.gf │ ├── NumeralLat.gf │ ├── OverloadLat.gf │ ├── ParadigmsLat.gf │ ├── PhraseLat.gf │ ├── QuestionLat.gf │ ├── README.md │ ├── RelativeLat.gf │ ├── ResLat.gf │ ├── SentenceLat.gf │ ├── StructuralLat.gf │ ├── SymbolLat.gf │ ├── VerbLat.gf │ ├── mkMissing.hs │ └── mkMissing.sh ├── latvian │ ├── AdjectiveLav.gf │ ├── AdverbLav.gf │ ├── AllLav.gf │ ├── AllLavAbs.gf │ ├── CatLav.gf │ ├── CompatibilityLav.gf │ ├── ConjunctionLav.gf │ ├── DictLav.gf │ ├── DictLavAbs.gf │ ├── DocumentationLav.gf │ ├── ExtendLav.gf │ ├── ExtraLav.gf │ ├── ExtraLavAbs.gf │ ├── GrammarLav.gf │ ├── IdiomLav.gf │ ├── LangLav.gf │ ├── LexiconLav.gf │ ├── MakeStructuralLav.gf │ ├── MorphoLav.gf │ ├── NamesLav.gf │ ├── NounLav.gf │ ├── NumeralLav.gf │ ├── ParadigmsAdjectivesLav.gf │ ├── ParadigmsLav.gf │ ├── ParadigmsNounsLav.gf │ ├── ParadigmsPronounsLav.gf │ ├── ParadigmsVerbsLav.gf │ ├── PhraseLav.gf │ ├── QuestionLav.gf │ ├── RelativeLav.gf │ ├── ResLav.gf │ ├── SentenceLav.gf │ ├── StructuralLav.gf │ ├── SymbolLav.gf │ └── VerbLav.gf ├── lithuanian │ ├── AdjectiveLit.gf │ ├── AdverbLit.gf │ ├── AllLit.gf │ ├── AllLitAbs.gf │ ├── CatLit.gf │ ├── ConjunctionLit.gf │ ├── ExtendLit.gf │ ├── ExtraLit.gf │ ├── ExtraLitAbs.gf │ ├── GrammarLit.gf │ ├── IdiomLit.gf │ ├── LangLit.gf │ ├── LexiconLit.gf │ ├── MorphoAdjectiveLit.gf │ ├── MorphoLit.gf │ ├── MorphoNounLit.gf │ ├── MorphoPronounLit.gf │ ├── MorphoVerbLit.gf │ ├── NounLit.gf │ ├── NumeralLit.gf │ ├── ParadigmsAdjectiveLit.gf │ ├── ParadigmsLit-old.gf │ ├── ParadigmsLit.gf │ ├── ParadigmsNounLit.gf │ ├── ParadigmsPronounLit.gf │ ├── ParadigmsVerbLit.gf │ ├── PhraseLit.gf │ ├── QuestionLit.gf │ ├── RelativeLit.gf │ ├── ResLit.gf │ ├── SentenceLit.gf │ ├── StructuralLit.gf │ ├── SymbolLit.gf │ └── VerbLit.gf ├── macedonian │ ├── AllMkd.gf │ ├── AllMkdAbs.gf │ ├── CatMkd.gf │ ├── DocumentationMkd.gf │ ├── GrammarMkd.gf │ ├── LangMkd.gf │ ├── LexiconMkd.gf │ ├── MorphoMkd.gf │ ├── ParadigmsMkd.gf │ ├── PhraseMkd.gf │ ├── ResMkd.gf │ └── StructuralMkd.gf ├── malay │ ├── AdjectiveMay.gf │ ├── AdverbMay.gf │ ├── AllMay.gf │ ├── AllMayAbs.gf │ ├── CatMay.gf │ ├── ConjunctionMay.gf │ ├── ConstructionMay.gf │ ├── ExtendMay.gf │ ├── GrammarMay.gf │ ├── IdiomMay.gf │ ├── LangMay.gf │ ├── LexiconMay.gf │ ├── MissingMay.gf │ ├── NounMay.gf │ ├── NumeralMay.gf │ ├── ParadigmsMay.gf │ ├── ParamMay.gf │ ├── PhraseMay.gf │ ├── QuestionMay.gf │ ├── RelativeMay.gf │ ├── ResMay.gf │ ├── SentenceMay.gf │ ├── StructuralMay.gf │ ├── SymbolMay.gf │ ├── VerbMay.gf │ └── unittest │ │ ├── complements.gftest │ │ ├── negation.gftest │ │ ├── numerals.gftest │ │ ├── passive.gftest │ │ ├── pronouns.gftest │ │ ├── questions.gftest │ │ ├── relative.gftest │ │ ├── tenses.gftest │ │ └── verbal_affixes.gftest ├── maltese │ ├── AdjectiveMlt.gf │ ├── AdverbMlt.gf │ ├── AllMlt.gf │ ├── AllMltAbs.gf │ ├── CatMlt.gf │ ├── ConjunctionMlt.gf │ ├── DictMlt.gf │ ├── DictMltAbs.gf │ ├── ExtraMlt.gf │ ├── ExtraMltAbs.gf │ ├── GrammarMlt.gf │ ├── IdiomMlt.gf │ ├── IrregMlt.gf │ ├── IrregMltAbs.gf │ ├── LangMlt.gf │ ├── LexiconMlt.gf │ ├── MorphoMlt.gf │ ├── NamesMlt.gf │ ├── NounMlt.gf │ ├── NumeralMlt.gf │ ├── ParadigmsMlt.gf │ ├── PhraseMlt.gf │ ├── QuestionMlt.gf │ ├── README.md │ ├── RelativeMlt.gf │ ├── ResMlt.gf │ ├── SentenceMlt.gf │ ├── StructuralMlt.gf │ ├── SymbolMlt.gf │ └── VerbMlt.gf ├── mongolian │ ├── AdjectiveMon.gf │ ├── AdverbMon.gf │ ├── AllMon.gf │ ├── AllMonAbs.gf │ ├── CatMon.gf │ ├── ConjunctionMon.gf │ ├── DictMon.gf │ ├── DictMonAbs.gf │ ├── DocumentationMon.gf │ ├── ExtendMon.gf │ ├── ExtraLexMon.gf │ ├── ExtraMon.gf │ ├── ExtraMonAbs.gf │ ├── FoodsMon.gf │ ├── GrammarMon.gf │ ├── IdiomMon.gf │ ├── IrregMon.gf │ ├── LangMon.gf │ ├── LexiconMon.gf │ ├── MakeStructuralMon.gf │ ├── MorphoMon.gf │ ├── NounMon.gf │ ├── NumeralMon.gf │ ├── NumeralTransferMon.gf │ ├── ParadigmsMon.gf │ ├── ParadigmsMonI.gf │ ├── ParadigmsMonO.gf │ ├── PhraseMon.gf │ ├── QuestionMon.gf │ ├── RelativeMon.gf │ ├── ResFoodsMon.gf │ ├── ResMon.gf │ ├── SentenceMon.gf │ ├── StructuralMon.gf │ ├── SymbolMon.gf │ ├── TenseMon.gf │ ├── TextMon.gf │ └── VerbMon.gf ├── morphodict │ ├── Makefile │ ├── MkMorphodict.hs │ ├── MorphoDictAra.gf │ ├── MorphoDictChi.gf │ ├── MorphoDictChiAbs.gf │ ├── MorphoDictEng.config │ ├── MorphoDictEng.gf │ ├── MorphoDictEng.header │ ├── MorphoDictEngAbs.gf │ ├── MorphoDictEngAbs.header │ ├── MorphoDictFin.config │ ├── MorphoDictFin.gf │ ├── MorphoDictFin.header │ ├── MorphoDictFinAbs.gf │ ├── MorphoDictFinAbs.header │ ├── MorphoDictFre.gf │ ├── MorphoDictFreAbs.gf │ ├── MorphoDictGer.gf │ ├── MorphoDictGerAbs.gf │ ├── MorphoDictIta.gf │ ├── MorphoDictIta.header │ ├── MorphoDictItaAbs.gf │ ├── MorphoDictItaAbs.header │ ├── MorphoDictPor.gf │ ├── MorphoDictPorAbs.gf │ ├── MorphoDictSpa.gf │ ├── MorphoDictSpaAbs.gf │ ├── MorphoDictSwe.config │ ├── MorphoDictSwe.gf │ ├── MorphoDictSwe.header │ ├── MorphoDictSweAbs.gf │ ├── MorphoDictSweAbs.header │ ├── README.md │ ├── get_dict.py │ ├── morphodict.cabal │ ├── saldo │ │ ├── Saldo.header │ │ ├── SaldoGF.hs │ │ └── SaldoSwe.header │ ├── stack.yaml │ ├── stack.yaml.lock │ └── utils │ │ ├── fixAMost.sh │ │ ├── only_homonyms.sh │ │ └── remove_duplicates.py ├── nepali │ ├── AdjectiveNep.gf │ ├── AdverbNep.gf │ ├── AllNep.gf │ ├── AllNepAbs.gf │ ├── CatNep.gf │ ├── ConjunctionNep.gf │ ├── GrammarNep.gf │ ├── IdiomNep.gf │ ├── LangNep.gf │ ├── LexiconNep.gf │ ├── MorphoNep.gf │ ├── NounNep.gf │ ├── NumeralNep.gf │ ├── ParadigmsNep.gf │ ├── PhraseNep.gf │ ├── QuestionNep.gf │ ├── README │ ├── RelativeNep.gf │ ├── ResNep.gf │ ├── SentenceNep.gf │ ├── StructuralNep.gf │ ├── SymbolNep.gf │ ├── VerbNep.gf │ ├── src │ │ ├── AdjectiveNep.gf │ │ ├── AdverbNep.gf │ │ ├── IdiomNep.gf │ │ ├── LexiconNep.gf │ │ ├── MorphoNep.gf │ │ ├── NumeralNep.gf │ │ ├── PhraseNep.gf │ │ ├── QuestionNep.gf │ │ ├── RelativeNep.gf │ │ ├── ResNep.gf │ │ ├── SentenceNep.gf │ │ ├── StructuralNep.gf │ │ ├── SymbolNep.gf │ │ └── VerbNep.gf │ └── translit.gfs ├── norwegian │ ├── AdjectiveNor.gf │ ├── AdverbNor.gf │ ├── AllNor.gf │ ├── AllNorAbs.gf │ ├── CatNor.gf │ ├── ConjunctionNor.gf │ ├── DiffNor.gf │ ├── DocumentationNor.gf │ ├── ExtendNor.gf │ ├── ExtraNor.gf │ ├── ExtraNorAbs.gf │ ├── ExtraScandNor.gf │ ├── GrammarNor.gf │ ├── IdiomNor.gf │ ├── IrregNor.gf │ ├── IrregNorAbs.gf │ ├── LangNor.gf │ ├── LexiconNor.gf │ ├── MathNor.gf │ ├── MorphoNor.gf │ ├── NamesNor.gf │ ├── NounNor.gf │ ├── NumeralNor.gf │ ├── ParadigmsNor.gf │ ├── PhraseNor.gf │ ├── QuestionNor.gf │ ├── RelativeNor.gf │ ├── ResNor.gf │ ├── SentenceNor.gf │ ├── StructuralNor.gf │ ├── SymbolNor.gf │ ├── TenseNor.gf │ └── VerbNor.gf ├── nynorsk │ ├── AdjectiveNno.gf │ ├── AdverbNno.gf │ ├── AllNno.gf │ ├── AllNnoAbs.gf │ ├── CatNno.gf │ ├── ConjunctionNno.gf │ ├── DiffNno.gf │ ├── DocumentationNno.gf │ ├── ExtendNno.gf │ ├── ExtraNno.gf │ ├── ExtraNnoAbs.gf │ ├── ExtraScandNno.gf │ ├── GrammarNno.gf │ ├── IdiomNno.gf │ ├── IrregNno.gf │ ├── IrregNnoAbs.gf │ ├── LangNno.gf │ ├── LexiconNno.gf │ ├── MathNno.gf │ ├── MorphoNno.gf │ ├── NamesNno.gf │ ├── NounNno.gf │ ├── NumeralNno.gf │ ├── ParadigmsNno.gf │ ├── PhraseNno.gf │ ├── QuestionNno.gf │ ├── RelativeNno.gf │ ├── ResNno.gf │ ├── SentenceNno.gf │ ├── StructuralNno.gf │ ├── SymbolNno.gf │ ├── TenseNno.gf │ └── VerbNno.gf ├── persian │ ├── AdjectivePes.gf │ ├── AdverbPes.gf │ ├── AllPes.gf │ ├── AllPesAbs.gf │ ├── CatPes.gf │ ├── ConjunctionPes.gf │ ├── ConstructionPes.gf │ ├── ExtendPes.gf │ ├── ExtraPes.gf │ ├── ExtraPesAbs.gf │ ├── GrammarPes.gf │ ├── IdiomPes.gf │ ├── LangPes.gf │ ├── LexiconPes.gf │ ├── MorphoPes.gf │ ├── NounPes.gf │ ├── NumeralPes.gf │ ├── ParadigmsPes.gf │ ├── PhrasePes.gf │ ├── QuestionPes.gf │ ├── README │ ├── RelativePes.gf │ ├── ResPes.gf │ ├── SentencePes.gf │ ├── StructuralPes.gf │ ├── SymbolPes.gf │ ├── TextPes.gf │ └── VerbPes.gf ├── polish │ ├── AdjectiveMorphoPol.gf │ ├── AdjectivePol.gf │ ├── AdverbPol.gf │ ├── AllPol.gf │ ├── AllPolAbs.gf │ ├── CatPol.gf │ ├── ConjunctionPol.gf │ ├── DocumentationPol.gf │ ├── ExtendPol.gf │ ├── ExtraPol.gf │ ├── ExtraPolAbs.gf │ ├── GrammarPol.gf │ ├── IdiomPol.gf │ ├── LangPol.gf │ ├── LexiconNounPol.gf │ ├── LexiconPol.gf │ ├── MorphoPol.gf │ ├── NamesPol.gf │ ├── NounMorphoPol.gf │ ├── NounPol.gf │ ├── NumeralPol.gf │ ├── OrigMorphoPol.gf │ ├── OrigNounMorphoPol.gf │ ├── OverloadPol.gf │ ├── ParadigmsPol.gf │ ├── PhrasePol.gf │ ├── PronounMorphoPol.gf │ ├── QuestionPol.gf │ ├── RelativePol.gf │ ├── ResPol.gf │ ├── SentencePol.gf │ ├── StructuralPol.gf │ ├── SymbolPol.gf │ ├── VerbMorphoPol.gf │ └── VerbPol.gf ├── portuguese │ ├── AdjectivePor.gf │ ├── AdverbPor.gf │ ├── AllPor.gf │ ├── AllPorAbs.gf │ ├── BeschPor.gf │ ├── CatPor.gf │ ├── CompatibilityPor.gf │ ├── ConjunctionPor.gf │ ├── ConstructionPor.gf │ ├── DictPor.gf │ ├── DictPorAbs.gf │ ├── DiffPor.gf │ ├── DocumentationPor.gf │ ├── DocumentationPorFunctor.gf │ ├── ExtendPor.gf │ ├── ExtraPor.gf │ ├── ExtraPorAbs.gf │ ├── ExtraRomancePor.gf │ ├── GrammarPor.gf │ ├── IdiomPor.gf │ ├── IrregPor.gf │ ├── IrregPorAbs.gf │ ├── LangPor.gf │ ├── LangPor.labels │ ├── LexiconPor.gf │ ├── MakeStructuralPor.gf │ ├── MorphoPor.gf │ ├── NamesPor.gf │ ├── NounPor.gf │ ├── NumeralPor.gf │ ├── ParadigmsPor.gf │ ├── PhonoPor.gf │ ├── PhrasePor.gf │ ├── QuestionPor.gf │ ├── README │ ├── RelativePor.gf │ ├── ResPor.gf │ ├── SentencePor.gf │ ├── StructuralPor.gf │ ├── SymbolPor.gf │ ├── TensePor.gf │ ├── TerminologyPor.gf │ ├── TextPor.gf │ └── VerbPor.gf ├── prelude │ ├── Coordination.gf │ ├── Formal.gf │ ├── HTML.gf │ ├── Latex.gf │ ├── Maybe.gf │ ├── Precedence.gf │ ├── Predef.gf │ ├── PredefAbs.gf │ ├── PredefCnc.gf │ └── Prelude.gf ├── punjabi │ ├── AdjectivePnb.gf │ ├── AdverbPnb.gf │ ├── AllPnb.gf │ ├── AllPnbAbs.gf │ ├── CatPnb.gf │ ├── ConjunctionPnb.gf │ ├── ExtraPnb.gf │ ├── ExtraPnbAbs.gf │ ├── GrammarPnb.gf │ ├── IdiomPnb.gf │ ├── LangPnb.gf │ ├── LexiconPnb.gf │ ├── MakeStructuralPnb.gf │ ├── MorphoPnb.gf │ ├── NounPnb.gf │ ├── NumeralPnb.gf │ ├── ParadigmsPnb.gf │ ├── PhrasePnb.gf │ ├── QuestionPnb.gf │ ├── README │ ├── RelativePnb.gf │ ├── ResPnb.gf │ ├── SentencePnb.gf │ ├── StructuralPnb.gf │ ├── SymbolPnb.gf │ ├── VerbPnb.gf │ ├── src │ │ ├── AdjectivePnb.gf │ │ ├── AdverbPnb.gf │ │ ├── ExtraPnb.gf │ │ ├── IdiomPnb.gf │ │ ├── LexiconPnb.gf │ │ ├── MorphoPnb.gf │ │ ├── NumeralPnb.gf │ │ ├── QuestionPnb.gf │ │ ├── RelativePnb.gf │ │ ├── ResPnb.gf │ │ ├── SentencePnb.gf │ │ ├── StructuralPnb.gf │ │ ├── SymbolPnb.gf │ │ └── VerbPnb.gf │ └── translit.gfs ├── romance │ ├── AdjectiveRomance.gf │ ├── AdverbRomance.gf │ ├── CatRomance.gf │ ├── CommonRomance.gf │ ├── ConjunctionRomance.gf │ ├── DiffRomance.gf │ ├── ExtRomance.gf │ ├── ExtendRomanceFunctor.gf │ ├── ExtraRomance.gf │ ├── ExtraRomanceAbs.gf │ ├── MarkupRomance.gf │ ├── NounRomance.gf │ ├── PhraseRomance.gf │ ├── QuestionRomance.gf │ ├── README │ ├── RelativeRomance.gf │ ├── ResRomance.gf │ ├── SentenceRomance.gf │ ├── SymbolRomance.gf │ ├── TenseRomance.gf │ ├── VerbRomance.gf │ └── exper │ │ ├── CatRomance.gf │ │ ├── QuestionRomance.gf │ │ ├── RelativeRomance.gf │ │ ├── ResRomance.gf │ │ └── SentenceRomance.gf ├── romanian │ ├── AdjectiveRon.gf │ ├── AdverbRon.gf │ ├── AllRon.gf │ ├── AllRonAbs.gf │ ├── BeschRon.gf │ ├── CatRon.gf │ ├── ConjunctionRon.gf │ ├── DocumentationRon.gf │ ├── ExtendRon.gf │ ├── ExtraRon.gf │ ├── ExtraRonAbs.gf │ ├── GrammarRon.gf │ ├── IdiomRon.gf │ ├── LangRon.gf │ ├── LexiconRon.gf │ ├── MorphoRon.gf │ ├── NamesRon.gf │ ├── NounRon.gf │ ├── NumeralRon.gf │ ├── ParadigmsRon.gf │ ├── PhonoRon.gf │ ├── PhraseRon.gf │ ├── QuestionRon.gf │ ├── RelativeRon.gf │ ├── ResRon.gf │ ├── SentenceRon.gf │ ├── StructuralRon.gf │ ├── SymbolRon.gf │ ├── TenseRon.gf │ └── VerbRon.gf ├── rukiga │ ├── .unimplemented_func_lines.txt │ ├── .unimplented_func_lines.txt │ ├── AdjectiveCgg.gf │ ├── AdverbCgg.gf │ ├── AllCgg.gf │ ├── AllCggAbs.gf │ ├── CatCgg.gf │ ├── CompatibilityCgg.gf │ ├── ConjunctionCgg.gf │ ├── GrammarCgg.gf │ ├── IdiomCgg.gf │ ├── LangCgg.gf │ ├── Lexicon.gf │ ├── LexiconCgg.gf │ ├── LexiconExtra.gf │ ├── LexiconExtraCgg.gf │ ├── NP-treebank.txt │ ├── NounCgg.gf │ ├── NounPhrases.txt │ ├── NumeralCgg.gf │ ├── OverloadCgg.gf │ ├── ParadigmsCgg.gf │ ├── PhraseCgg.gf │ ├── QuestionCgg.gf │ ├── RelativeCgg.gf │ ├── ResCgg.gf │ ├── ResCggOld.gf │ ├── SentenceCgg.gf │ ├── SentenceCggExtra.gf │ ├── SentenceExtra.gf │ ├── SentenceExtraCgg.gf │ ├── StructuralCgg.gf │ ├── StructuralCggClean.gf │ ├── StructuralCggOld.gf │ ├── SymbolCgg.gf │ ├── TenseExtra.gf │ ├── TenseExtraCgg.gf │ ├── VerbCgg.gf │ ├── _grpha_1.dot │ ├── _grpha_1.png │ ├── _grphp_1.dot │ ├── _grphp_1.png │ ├── all_func.txt │ ├── cgg-eng-treebank.txt │ ├── file1.txt │ ├── file2.txt │ ├── implemented_func_lines.txt │ ├── implemented_func_list.text │ ├── implemented_funcs_list.txt │ ├── most_used_function_rgl.txt │ ├── test.treebank │ ├── trees.english │ ├── trees.test │ ├── ud-rgl-trees.txt │ ├── unimplemented_func.txt │ ├── unimplemented_func_lines.txt │ ├── unimplemented_functions.text │ └── unimplented_func_lines.txt ├── russian │ ├── AdjectiveRus.gf │ ├── AdverbRus.gf │ ├── AllRus.gf │ ├── AllRusAbs.gf │ ├── CatRus.gf │ ├── ConjunctionRus.gf │ ├── ConstructionRus.gf │ ├── DictRus.gf │ ├── DictRusAbs.gf │ ├── DocumentationRus.gf │ ├── DocumentationRusEng.gf │ ├── DocumentationRusFunctor.gf │ ├── ExtendRus.gf │ ├── ExtraRus.gf │ ├── ExtraRusAbs.gf │ ├── GrammarRus.gf │ ├── IdiomRus.gf │ ├── InflectionRus.gf │ ├── LangRus.gf │ ├── LexiconRus.gf │ ├── MorphoRus.gf │ ├── NamesRus.gf │ ├── NounRus.gf │ ├── NumeralRus.gf │ ├── ParadigmsRus.gf │ ├── ParamRus.gf │ ├── PhraseRus.gf │ ├── QuestionRus.gf │ ├── README.md │ ├── RelativeRus.gf │ ├── ResRus.gf │ ├── SentenceRus.gf │ ├── StructuralRus.gf │ ├── SymbolRus.gf │ ├── TenseRus.gf │ ├── TerminologyRus.gf │ ├── TextRus.gf │ ├── VerbRus.gf │ ├── references.txt │ ├── resource.gfs │ ├── test_api.treebank │ ├── test_api_treebank.gfs │ ├── test_failing.gfs │ ├── test_failing.treebank │ ├── test_resource.treebank │ ├── test_result.treebank │ ├── test_rus_grammar.gfs │ ├── todo.txt │ └── v1 │ │ ├── AdjectiveRus.gf │ │ ├── AdverbRus.gf │ │ ├── AllRus.gf │ │ ├── AllRusAbs.gf │ │ ├── CatRus.gf │ │ ├── ConjunctionRus.gf │ │ ├── ConstructionRus.gf │ │ ├── DictRus.gf │ │ ├── DictRusAbs.gf │ │ ├── DocumentationRus.gf │ │ ├── ExtraLexRus.gf │ │ ├── ExtraRus.gf │ │ ├── ExtraRusAbs.gf │ │ ├── GrammarRus.gf │ │ ├── IdiomRus.gf │ │ ├── LangRus.gf │ │ ├── LexiconRus.gf │ │ ├── MorphoRus.gf │ │ ├── NounRus.gf │ │ ├── NumeralRus.gf │ │ ├── ParadigmsRus.gf │ │ ├── PhraseRus.gf │ │ ├── QuestionRus.gf │ │ ├── RelativeRus.gf │ │ ├── ResRus.gf │ │ ├── SentenceRus.gf │ │ ├── StructuralRus.gf │ │ ├── SymbolRus.gf │ │ └── VerbRus.gf ├── scandinavian │ ├── AdjectiveScand.gf │ ├── AdverbScand.gf │ ├── CatScand.gf │ ├── CommonScand.gf │ ├── ConjunctionScand.gf │ ├── DiffScand.gf │ ├── ExtEngAbs.gf │ ├── ExtraScand.gf │ ├── ExtraScandAbs.gf │ ├── MarkupScand.gf │ ├── NamesScand.gf │ ├── NounScand.gf │ ├── PhraseScand.gf │ ├── QuestionScand.gf │ ├── RelativeScand.gf │ ├── ResScand.gf │ ├── SentenceScand.gf │ ├── SymbolScand.gf │ ├── TenseScand.gf │ └── VerbScand.gf ├── scots │ ├── AdjectiveSco.gf │ ├── AdverbSco.gf │ ├── AllSco.gf │ ├── AllScoAbs.gf │ ├── CatSco.gf │ ├── ConjunctionSco.gf │ ├── ConstructionSco.gf │ ├── DocumentationSco.gf │ ├── ExtendSco.gf │ ├── GrammarSco.gf │ ├── IdiomSco.gf │ ├── LangSco.gf │ ├── LexiconSco.gf │ ├── NamesSco.gf │ ├── NounSco.gf │ ├── NumeralSco.gf │ ├── ParadigmsSco.gf │ ├── PhraseSco.gf │ ├── QuestionSco.gf │ ├── RelativeSco.gf │ ├── ResSco.gf │ ├── SentenceSco.gf │ ├── StructuralSco.gf │ ├── SymbolSco.gf │ └── VerbSco.gf ├── sindhi │ ├── AdjectiveSnd.gf │ ├── AdverbSnd.gf │ ├── AllSnd.gf │ ├── AllSndAbs.gf │ ├── CatSnd.gf │ ├── ConjunctionSnd.gf │ ├── ExtraSnd.gf │ ├── ExtraSndAbs.gf │ ├── GrammarSnd.gf │ ├── IdiomSnd.gf │ ├── LangSnd.gf │ ├── LexiconSnd.gf │ ├── MakeStructuralSnd.gf │ ├── MorphoSnd.gf │ ├── NounSnd.gf │ ├── NumeralSnd.gf │ ├── ParadigmsSnd.gf │ ├── PhraseSnd.gf │ ├── QuestionSnd.gf │ ├── RelativeSnd.gf │ ├── ResSnd.gf │ ├── SentenceSnd.gf │ ├── StructuralSnd.gf │ ├── SymbolSnd.gf │ ├── VerbSnd.gf │ └── src │ │ ├── AdjectiveSnd.gf │ │ ├── AdverbSnd.gf │ │ ├── ExtraSnd.gf │ │ ├── IdiomSnd.gf │ │ ├── LexiconSnd.gf │ │ ├── MorphoSnd.gf │ │ ├── NumeralSnd.gf │ │ ├── QuestionSnd.gf │ │ ├── RelativeSnd.gf │ │ ├── ResSnd.gf │ │ ├── SentenceSnd.gf │ │ ├── StructuralSnd.gf │ │ ├── SymbolSnd.gf │ │ └── VerbSnd.gf ├── slovak │ ├── AdjectiveSlo.gf │ ├── AdverbSlo.gf │ ├── AllSlo.gf │ ├── AllSloAbs.gf │ ├── CatSlo.gf │ ├── ConjunctionSlo.gf │ ├── ExtendSlo.gf │ ├── GrammarSlo.gf │ ├── IdiomSlo.gf │ ├── LangSlo.gf │ ├── LexiconSlo.gf │ ├── MissingSlo.gf │ ├── NounSlo.gf │ ├── NumeralSlo.gf │ ├── ParadigmsSlo.gf │ ├── PhraseSlo.gf │ ├── QuestionSlo.gf │ ├── RelativeSlo.gf │ ├── ResSlo.gf │ ├── SentenceSlo.gf │ ├── StructuralSlo.gf │ ├── SymbolSlo.gf │ ├── TenseSlo.gf │ ├── TextSlo.gf │ └── VerbSlo.gf ├── slovenian │ ├── AdjectiveSlv.gf │ ├── AdverbSlv.gf │ ├── AllSlv.gf │ ├── AllSlvAbs.gf │ ├── CatSlv.gf │ ├── ConjunctionSlv.gf │ ├── ConstructionSlv.gf │ ├── DocumentationSlv.gf │ ├── ExtendSlv.gf │ ├── GrammarSlv.gf │ ├── IdiomSlv.gf │ ├── LangSlv.gf │ ├── LexiconSlv.gf │ ├── NamesSlv.gf │ ├── NounSlv.gf │ ├── NumeralSlv.gf │ ├── ParadigmsSlv.gf │ ├── PhraseSlv.gf │ ├── QuestionSlv.gf │ ├── ResSlv.gf │ ├── SentenceSlv.gf │ ├── StructuralSlv.gf │ ├── VerbSlv.gf │ └── convert.py ├── somali │ ├── AdjectiveSom.gf │ ├── AdverbSom.gf │ ├── AllSom.gf │ ├── AllSomAbs.gf │ ├── CatSom.gf │ ├── ConjunctionSom.gf │ ├── ConstructionSom.gf │ ├── ExtendSom.gf │ ├── GrammarSom.gf │ ├── IdiomSom.gf │ ├── LangSom.gf │ ├── LexiconSom.gf │ ├── MissingSom.gf │ ├── NamesSom.gf │ ├── NounSom.gf │ ├── NumeralSom.gf │ ├── ParadigmsSom.gf │ ├── ParamSom.gf │ ├── PhraseSom.gf │ ├── QuestionSom.gf │ ├── README.md │ ├── RelativeSom.gf │ ├── ResSom.gf │ ├── SentenceSom.gf │ ├── StructuralSom.gf │ ├── SymbolSom.gf │ ├── VerbSom.gf │ └── unittest │ │ ├── ap.gftest │ │ ├── cl.gftest │ │ ├── inflection.gftest │ │ ├── num.gftest │ │ ├── qcl.gftest │ │ └── vp.gftest ├── spanish │ ├── AdjectiveSpa.gf │ ├── AdverbSpa.gf │ ├── AllSpa.gf │ ├── AllSpaAbs.gf │ ├── BeschSpa.gf │ ├── CatSpa.gf │ ├── CompatibilitySpa.gf │ ├── ConjunctionSpa.gf │ ├── ConstructionSpa.gf │ ├── DictSpa.gf │ ├── DictSpaAbs.gf │ ├── DiffSpa.gf │ ├── DocumentationSpa.gf │ ├── DocumentationSpaFunctor.gf │ ├── ExtendSpa.gf │ ├── ExtraRomanceSpa.gf │ ├── ExtraSpa.gf │ ├── ExtraSpaAbs.gf │ ├── GrammarSpa.gf │ ├── IdiomSpa.gf │ ├── IrregSpa.gf │ ├── IrregSpaAbs.gf │ ├── LangSpa.gf │ ├── LexiconSpa.gf │ ├── MakeStructuralSpa.gf │ ├── MarkupSpa.gf │ ├── MorphoSpa.gf │ ├── NamesSpa.gf │ ├── NounSpa.gf │ ├── NumeralSpa.gf │ ├── ParadigmsSpa.gf │ ├── PhonoSpa.gf │ ├── PhraseSpa.gf │ ├── QuestionSpa.gf │ ├── README.md │ ├── RelativeSpa.gf │ ├── ResSpa.gf │ ├── SentenceSpa.gf │ ├── StructuralSpa.gf │ ├── SymbolSpa.gf │ ├── TenseSpa.gf │ ├── TerminologySpa.gf │ ├── TextSpa.gf │ └── VerbSpa.gf ├── swahili │ ├── AdjectiveSwa.gf │ ├── AdverbSwa.gf │ ├── AllSwa.gf │ ├── AllSwaAbs.gf │ ├── CatSwa.gf │ ├── ConjunctionSwa.gf │ ├── DiffSwa.gf │ ├── GrammarSwa.gf │ ├── IdiomSwa.gf │ ├── LangSwa.gf │ ├── LexiconSwa.gf │ ├── MorphoSwa.gf │ ├── NamesSwa.gf │ ├── NounSwa.gf │ ├── NumeralSwa.gf │ ├── ParadigmsSwa.gf │ ├── PhraseSwa.gf │ ├── QuestionSwa.gf │ ├── README.md │ ├── RelativeSwa.gf │ ├── ResSwa.gf │ ├── SentenceSwa.gf │ ├── StructuralSwa.gf │ ├── VerbSwa.gf │ └── old │ │ ├── AdjectiveSwa.gf │ │ ├── AdverbSwa.gf │ │ ├── BackwardSwa.gf │ │ ├── CatSwa.gf │ │ ├── CompatibilitySwa.gf │ │ ├── ConjunctionSwa.gf │ │ ├── ExtraSwa.gf │ │ ├── ExtraSwaAbs.gf │ │ ├── GrammarSwa.gf │ │ ├── IdiomSwa.gf │ │ ├── IrregSwa.gf │ │ ├── IrregSwaAbs.gf │ │ ├── LangSwa.gf │ │ ├── LexiconSwa.gf │ │ ├── MakeStructuralSwa.gf │ │ ├── MorphoSwa.gf │ │ ├── NounSwa.gf │ │ ├── NumeralSwa.gf │ │ ├── OverloadSwa.gf │ │ ├── ParadigmsSwa.gf │ │ ├── PhraseSwa.gf │ │ ├── QuestionSwa.gf │ │ ├── RelativeSwa.gf │ │ ├── ResSwa.gf │ │ ├── SentenceSwa.gf │ │ ├── StructuralSwa.gf │ │ ├── SymbolSwa.gf │ │ ├── VerbSwa.gf │ │ └── noun0.gf ├── swedish │ ├── AdjectiveSwe.gf │ ├── AdverbSwe.gf │ ├── AllSwe.gf │ ├── AllSweAbs.gf │ ├── CatSwe.gf │ ├── CompatibilitySwe.gf │ ├── ConjunctionSwe.gf │ ├── ConstructionSwe.gf │ ├── DictSwe.gf │ ├── DictSweAbs.gf │ ├── DiffSwe.gf │ ├── DocumentationSwe.gf │ ├── ExtendSwe.gf │ ├── ExtraScandSwe.gf │ ├── ExtraSwe.gf │ ├── ExtraSweAbs.gf │ ├── GrammarSwe.gf │ ├── IdiomSwe.gf │ ├── IrregSwe.gf │ ├── IrregSweAbs.gf │ ├── Konstruktikon.gf │ ├── KonstruktikonSwe.gf │ ├── LangSwe.gf │ ├── LangSwe.labels │ ├── LexiconSwe.gf │ ├── MakeStructuralSwe.gf │ ├── MarkupSwe.gf │ ├── MorphoSwe.gf │ ├── NamesSwe.gf │ ├── NewDictSwe.gf │ ├── NewDictSweAbs.gf │ ├── NounSwe.gf │ ├── NumeralSwe.gf │ ├── OldDictSwe.gf │ ├── OldDictSweAbs.gf │ ├── ParadigmsSwe.gf │ ├── PhraseSwe.gf │ ├── QuestionSwe.gf │ ├── README.md │ ├── RelativeSwe.gf │ ├── ResSwe.gf │ ├── SentenceSwe.gf │ ├── StructuralSwe.gf │ ├── SymbolSwe.gf │ ├── TenseSwe.gf │ ├── TerminologySwe.gf │ ├── VerbSwe.gf │ └── folketslexikon │ │ ├── ImportFolketsLexikon.hs │ │ └── Makefile ├── tamil │ ├── AdjectiveTam.gf │ ├── AdverbTam.gf │ ├── AllTam.gf │ ├── AllTamAbs.gf │ ├── CatTam.gf │ ├── ConjunctionTam.gf │ ├── ConstructionTam.gf │ ├── ExtendTam.gf │ ├── GrammarTam.gf │ ├── IdiomTam.gf │ ├── LangTam.gf │ ├── LexiconTam.gf │ ├── NounTam.gf │ ├── NumeralTam.gf │ ├── ParadigmsTam.gf │ ├── ParamTam.gf │ ├── PhraseTam.gf │ ├── QuestionTam.gf │ ├── README.md │ ├── RelativeTam.gf │ ├── ResTam.gf │ ├── SentenceTam.gf │ ├── StructuralTam.gf │ ├── SymbolTam.gf │ └── VerbTam.gf ├── telugu │ ├── AdjectiveTel.gf │ ├── AdverbTel.gf │ ├── AllTel.gf │ ├── AllTelAbs.gf │ ├── BackwardTel.gf │ ├── CatTel.gf │ ├── ConjunctionTel.gf │ ├── GrammarTel.gf │ ├── IdiomTel.gf │ ├── IrregTel.gf │ ├── LangTel.gf │ ├── LexiconTel.gf │ ├── MorphoTel.gf │ ├── NounTel.gf │ ├── NumeralTel.gf │ ├── ParadigmsTel.gf │ ├── PhraseTel.gf │ ├── QuestionTel.gf │ ├── RelativeTel.gf │ ├── ResTel.gf │ ├── SentenceTel.gf │ ├── StructuralTel.gf │ └── VerbTel.gf ├── test.probs ├── thai │ ├── AdjectiveTha.gf │ ├── AdverbTha.gf │ ├── AllTha.gf │ ├── AllThaAbs.gf │ ├── CatTha.gf │ ├── ConjunctionTha.gf │ ├── ConstructionTha.gf │ ├── DocumentationTha.gf │ ├── ExtraTha.gf │ ├── GrammarTha.gf │ ├── IdiomTha.gf │ ├── IrregTha.gf │ ├── LangTha.gf │ ├── LexiconTha.gf │ ├── MorphoTha.gf │ ├── NamesTha.gf │ ├── NounTha.gf │ ├── NumeralTha.gf │ ├── OverloadTha.gf │ ├── ParadigmsTha.gf │ ├── PhraseTha.gf │ ├── QuestionTha.gf │ ├── RelativeTha.gf │ ├── ResTha.gf │ ├── SentenceTha.gf │ ├── StringsTha.gf │ ├── StructuralTha.gf │ ├── SymbolTha.gf │ ├── TextTha.gf │ ├── ThaiScript.hs │ ├── VerbTha.gf │ └── src │ │ ├── MkLex.hs │ │ ├── OldStringsTha.gf │ │ ├── swadesh.txt │ │ └── test.txt ├── turkish │ ├── AdjectiveTur.gf │ ├── AdverbTur.gf │ ├── AllTur.gf │ ├── AllTurAbs.gf │ ├── CatTur.gf │ ├── ConjunctionTur.gf │ ├── DictTur.gf │ ├── DictTurAbs.gf │ ├── DocumentationTur.gf │ ├── ExtendTur.gf │ ├── GrammarTur.gf │ ├── HarmonyTur.gf │ ├── IdiomTur.gf │ ├── IrregTur.gf │ ├── IrregTurAbs.gf │ ├── LangTur.gf │ ├── LexiconTur.gf │ ├── NamesTur.gf │ ├── NounTur.gf │ ├── NumeralTur.gf │ ├── ParadigmsTur.gf │ ├── PhraseTur.gf │ ├── QuestionTur.gf │ ├── RelativeTur.gf │ ├── ResTur.gf │ ├── SentenceTur.gf │ ├── StructuralTur.gf │ ├── SuffixTur.gf │ ├── SymbolTur.gf │ └── VerbTur.gf ├── ukrainian │ ├── AdjectiveUkr.gf │ ├── AllUkr.gf │ ├── AllUkrAbs.gf │ ├── CatUkr.gf │ ├── DocumentationUkr.gf │ ├── GrammarUkr.gf │ ├── LangUkr.gf │ ├── LexiconUkr.gf │ ├── MorphoUkr.gf │ ├── NounUkr.gf │ ├── ParadigmsUkr.gf │ ├── PhraseUkr.gf │ └── ResUkr.gf ├── urdu │ ├── AdjectiveUrd.gf │ ├── AdverbUrd.gf │ ├── AllUrd.gf │ ├── AllUrdAbs.gf │ ├── CatUrd.gf │ ├── ConjunctionUrd.gf │ ├── ConstructionUrd.gf │ ├── DictUrd.gf │ ├── DictUrdMath.gf │ ├── DiffUrd.gf │ ├── DocumentationUrd.gf │ ├── ExtendUrd.gf │ ├── ExtraUrd.gf │ ├── ExtraUrdAbs.gf │ ├── FullSensMathAbs.gf │ ├── FullSensMathUrd.gf │ ├── GrammarUrd.gf │ ├── IdiomUrd.gf │ ├── LangUrd.gf │ ├── LexiconUrd.gf │ ├── LinearizeAbs.gf │ ├── LinearizeUrd.gf │ ├── LinkedDictAbs.gf │ ├── LinkedDictUrd.gf │ ├── MakeStructuralUrd.gf │ ├── MorphoUrd.gf │ ├── NounUrd.gf │ ├── NumeralUrd.gf │ ├── ParadigmsUrd.gf │ ├── PhraseUrd.gf │ ├── QuestionUrd.gf │ ├── README │ ├── RelativeUrd.gf │ ├── ResUrd.gf │ ├── SentenceUrd.gf │ ├── StructuralUrd.gf │ ├── SymbolUrd.gf │ ├── TextUrd.gf │ ├── VerbUrd.gf │ ├── src │ │ ├── DiffUrd.gf │ │ ├── ExtraUrd.gf │ │ ├── IdiomUrd.gf │ │ ├── LexiconUrd.gf │ │ ├── MorphoUrd.gf │ │ ├── NumeralUrd.gf │ │ ├── StructuralUrd.gf │ │ └── TextUrd.gf │ └── translit.gfs └── zulu │ ├── AdjectiveZul.gf │ ├── AdverbZul.gf │ ├── AllZul.gf │ ├── AllZulAbs.gf │ ├── BackwardZul.gf │ ├── CatExtZul.gf │ ├── CatZul.gf │ ├── ChunkFunctor.gf │ ├── ChunkZul.gf │ ├── CompatibilityZul.gf │ ├── ConjunctionZul.gf │ ├── ConstructionZul.gf │ ├── DocumentationZul.gf │ ├── ExtendZul.gf │ ├── ExtraExtZul.gf │ ├── GrammarZul.gf │ ├── IdiomZul.gf │ ├── LangZul.gf │ ├── LexiconZul.gf │ ├── MarkupZul.gf │ ├── NounExtZul.gf │ ├── NounZul.gf │ ├── NumeralZul.gf │ ├── OverloadZul.gf │ ├── PChunkZul.gf │ ├── ParadigmsZul.gf │ ├── PhraseExtZul.gf │ ├── PhraseZul.gf │ ├── QuestionZul.gf │ ├── README.md │ ├── RelativeExtZul.gf │ ├── RelativeZul.gf │ ├── ResZul.gf │ ├── SentenceZul.gf │ ├── StructuralZul.gf │ ├── SymbolZul.gf │ ├── TempExtZul.gf │ ├── TerminologyZul.gf │ ├── VerbExtZul.gf │ ├── VerbZul.gf │ ├── abstract_ext │ ├── CatExt.gf │ ├── ExtraExt.gf │ ├── NounExt.gf │ ├── PChunk.gf │ ├── PhraseExt.gf │ ├── RelativeExt.gf │ ├── TempExt.gf │ └── VerbExt.gf │ ├── grammar_ext │ ├── DevLexLang.gf │ ├── DevLexLangZul.gf │ ├── MonoLexChunk.gf │ ├── MonoLexChunkZul.gf │ ├── MonoLexLang.gf │ ├── MonoLexLangZul.gf │ ├── MultiLexChunk.gf │ ├── MultiLexChunkZul.gf │ ├── MultiLexLang.gf │ ├── MultiLexLangZul.gf │ ├── NguniChunk.gf │ ├── NguniChunkZul.gf │ ├── NguniGrammar.gf │ ├── NguniGrammarZul.gf │ ├── NguniLang.gf │ ├── NguniLangZul.gf │ ├── NguniSyntax.gf │ └── NguniSyntaxZul.gf │ └── lexica │ ├── DevLex.gf │ ├── DevLexZul.gf │ ├── MonoLex.gf │ ├── MonoLexZul.gf │ ├── MultiLex.gf │ └── MultiLexZul.gf ├── tests ├── french │ └── bescherelle │ │ ├── 07aimer.gfs │ │ ├── 07aimer.out │ │ ├── 08placer.gfs │ │ ├── 08placer.out │ │ ├── 09manger.gfs │ │ ├── 09manger.out │ │ ├── 10peser.gfs │ │ ├── 10peser.out │ │ ├── 11ceder.gfs │ │ ├── 11ceder.out │ │ ├── 11céder.gfs │ │ ├── 11céder.out │ │ ├── 12jeter.gfs │ │ ├── 12jeter.out │ │ ├── 13modeler.gfs │ │ ├── 13modeler.out │ │ ├── 14creer.gfs │ │ ├── 14creer.out │ │ ├── 14créer.gfs │ │ ├── 14créer.out │ │ ├── 15assieger.gfs │ │ ├── 15assieger.out │ │ ├── 15assiéger.gfs │ │ ├── 15assiéger.out │ │ ├── 16apprecier.gfs │ │ ├── 16apprecier.out │ │ ├── 16apprécier.gfs │ │ ├── 16apprécier.out │ │ ├── 17payer.gfs │ │ ├── 17payer.out │ │ ├── 18broyer.gfs │ │ ├── 18broyer.out │ │ ├── 19envoyer.gfs │ │ ├── 19envoyer.out │ │ ├── 20finir.gfs │ │ ├── 20finir.out │ │ ├── 21hair.gfs │ │ ├── 21hair.out │ │ ├── 21haïr.gfs │ │ ├── 21haïr.out │ │ ├── 23aller.gfs │ │ ├── 23aller.out │ │ ├── 24tenir.gfs │ │ ├── 24tenir.out │ │ ├── 25acquerir.gfs │ │ ├── 25acquerir.out │ │ ├── 25acquérir.gfs │ │ ├── 25acquérir.out │ │ ├── 26sentir.gfs │ │ ├── 26sentir.out │ │ ├── 27vetir.gfs │ │ ├── 27vetir.out │ │ ├── 27vêtir.gfs │ │ ├── 27vêtir.out │ │ ├── 28couvrir.gfs │ │ ├── 28couvrir.out │ │ ├── 29cueillir.gfs │ │ ├── 29cueillir.out │ │ ├── 30assaillir.gfs │ │ ├── 30assaillir.out │ │ ├── 31faillir.gfs │ │ ├── 31faillir.out │ │ ├── 32bouillir.gfs │ │ ├── 32bouillir.out │ │ ├── 33dormir.gfs │ │ ├── 33dormir.out │ │ ├── 34courir.gfs │ │ ├── 34courir.out │ │ ├── 35mourir.gfs │ │ ├── 35mourir.out │ │ ├── 36servir.gfs │ │ ├── 36servir.out │ │ ├── 37fuir.gfs │ │ ├── 37fuir.out │ │ ├── 38ouir.gfs │ │ ├── 38ouir.out │ │ ├── 38ouïr.gfs │ │ ├── 38ouïr.out │ │ ├── 39gesir.gfs │ │ ├── 39gesir.out │ │ ├── 39gésir.gfs │ │ ├── 39gésir.out │ │ ├── 40recevoir.gfs │ │ ├── 40recevoir.out │ │ ├── 41voir.gfs │ │ ├── 41voir.out │ │ ├── 42pourvoir.gfs │ │ ├── 42pourvoir.out │ │ ├── 43savoir.gfs │ │ ├── 43savoir.out │ │ ├── 44devoir.gfs │ │ ├── 44devoir.out │ │ ├── 45pouvoir.gfs │ │ ├── 45pouvoir.out │ │ ├── 46mouvoir.gfs │ │ ├── 46mouvoir.out │ │ ├── 47pleuvoir.gfs │ │ ├── 47pleuvoir.out │ │ ├── 48falloir.gfs │ │ ├── 48falloir.out │ │ ├── 49valoir.gfs │ │ ├── 49valoir.out │ │ ├── 50vouloir.gfs │ │ ├── 50vouloir.out │ │ ├── 51asseoir.gfs │ │ ├── 51asseoir.out │ │ ├── 52seoir.gfs │ │ ├── 52seoir.out │ │ ├── 53messeoir.gfs │ │ ├── 53messeoir.out │ │ ├── 54surseoir.gfs │ │ ├── 54surseoir.out │ │ ├── 55choir.gfs │ │ ├── 55choir.out │ │ ├── 56echoir.gfs │ │ ├── 56echoir.out │ │ ├── 56échoir.gfs │ │ ├── 56échoir.out │ │ ├── 57dechoir.gfs │ │ ├── 57dechoir.out │ │ ├── 57déchoir.gfs │ │ ├── 57déchoir.out │ │ ├── 58rendre.gfs │ │ ├── 58rendre.out │ │ ├── 59prendre.gfs │ │ ├── 59prendre.out │ │ ├── 60battre.gfs │ │ ├── 60battre.out │ │ ├── 61mettre.gfs │ │ ├── 61mettre.out │ │ ├── 62peindre.gfs │ │ ├── 62peindre.out │ │ ├── 63joindre.gfs │ │ ├── 63joindre.out │ │ ├── 64craindre.gfs │ │ ├── 64craindre.out │ │ ├── 65vaincre.gfs │ │ ├── 65vaincre.out │ │ ├── 66traire.gfs │ │ ├── 66traire.out │ │ ├── 67faire.gfs │ │ ├── 67faire.out │ │ ├── 68plaire.gfs │ │ ├── 68plaire.out │ │ ├── 69connaitre.gfs │ │ ├── 69connaitre.out │ │ ├── 69connaître.gfs │ │ ├── 69connaître.out │ │ ├── 70naitre.gfs │ │ ├── 70naitre.out │ │ ├── 70naître.gfs │ │ ├── 70naître.out │ │ ├── 71paitre.gfs │ │ ├── 71paitre.out │ │ ├── 71paître.gfs │ │ ├── 71paître.out │ │ ├── 72repaitre.gfs │ │ ├── 72repaitre.out │ │ ├── 72repaître.gfs │ │ ├── 72repaître.out │ │ ├── 73croitre.gfs │ │ ├── 73croitre.out │ │ ├── 73croître.gfs │ │ ├── 73croître.out │ │ ├── 74croire.gfs │ │ ├── 74croire.out │ │ ├── 75boire.gfs │ │ ├── 75boire.out │ │ ├── 76clore.gfs │ │ ├── 76clore.out │ │ ├── 77conclure.gfs │ │ ├── 77conclure.out │ │ ├── 78absoudre.gfs │ │ ├── 78absoudre.out │ │ ├── 79coudre.gfs │ │ ├── 79coudre.out │ │ ├── 80moudre.gfs │ │ ├── 80moudre.out │ │ ├── 81suivre.gfs │ │ ├── 81suivre.out │ │ ├── 82vivre.gfs │ │ ├── 82vivre.out │ │ ├── 83lire.gfs │ │ ├── 83lire.out │ │ ├── 84dire.gfs │ │ ├── 84dire.out │ │ ├── 85rire.gfs │ │ ├── 85rire.out │ │ ├── 86ecrire.gfs │ │ ├── 86ecrire.out │ │ ├── 86écrire.gfs │ │ ├── 86écrire.out │ │ ├── 87confire.gfs │ │ ├── 87confire.out │ │ ├── 88cuire.gfs │ │ └── 88cuire.out ├── german │ ├── TestLang.gf │ ├── TestLangEng.gf │ ├── TestLangGer.gf │ ├── TestLexiconEng.gf │ ├── TestLexiconGer.gf │ ├── TestLexiconGerAbs.gf │ ├── examples.dub.out │ ├── examples.eng.out │ ├── examples.eng.txt │ ├── examples.eng2ger.out │ ├── examples.neg.out │ ├── examples.pos.out │ ├── examples.txt │ ├── infinitives.gfs │ ├── infinitives.lin.out │ ├── infinitives.trees │ ├── object-order.README │ ├── object-order.gfs │ ├── passive.dub.out │ ├── passive.gfs │ ├── passive.neg.out │ ├── passive.pos.out │ ├── passive.trees │ ├── passive.txt │ ├── vp-paradigm.README │ ├── vp-paradigm.diff │ ├── vp-paradigm.gfs │ └── vp-paradigm.out ├── readme.rst └── run.hs ├── treebanks ├── README ├── numeral-trees.txt ├── rgl-api-trees.txt ├── rgl-exx.txt └── ud-rgl-trees.txt └── unittest ├── README.md ├── unittest-example.gftest └── unittest.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/.travis.yml -------------------------------------------------------------------------------- /Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/Config.hs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/RELEASE.md -------------------------------------------------------------------------------- /Setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/Setup.bat -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/Setup.hs -------------------------------------------------------------------------------- /Setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/Setup.sh -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/AbsFunDoc.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/AbsFunDoc.hs -------------------------------------------------------------------------------- /doc/Compare.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/Compare.hs -------------------------------------------------------------------------------- /doc/CountLines.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/CountLines.hs -------------------------------------------------------------------------------- /doc/DocExtend.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/DocExtend.hs -------------------------------------------------------------------------------- /doc/German.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/German.dot -------------------------------------------------------------------------------- /doc/German.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/German.png -------------------------------------------------------------------------------- /doc/Globes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/Globes.hs -------------------------------------------------------------------------------- /doc/Grammar.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/Grammar.dot -------------------------------------------------------------------------------- /doc/Grammar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/Grammar.png -------------------------------------------------------------------------------- /doc/Lang.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/Lang.dot -------------------------------------------------------------------------------- /doc/Lang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/Lang.png -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/Resource-HOWTO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/Resource-HOWTO.txt -------------------------------------------------------------------------------- /doc/Syntax.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/Syntax.dot -------------------------------------------------------------------------------- /doc/Syntax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/Syntax.png -------------------------------------------------------------------------------- /doc/absfuns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/absfuns.html -------------------------------------------------------------------------------- /doc/example-tables.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/example-tables.gfs -------------------------------------------------------------------------------- /doc/gfdoc/Adjective.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Adjective.html -------------------------------------------------------------------------------- /doc/gfdoc/Adverb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Adverb.html -------------------------------------------------------------------------------- /doc/gfdoc/Cat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Cat.html -------------------------------------------------------------------------------- /doc/gfdoc/Common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Common.html -------------------------------------------------------------------------------- /doc/gfdoc/Extra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Extra.html -------------------------------------------------------------------------------- /doc/gfdoc/Grammar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Grammar.html -------------------------------------------------------------------------------- /doc/gfdoc/Idiom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Idiom.html -------------------------------------------------------------------------------- /doc/gfdoc/Lang.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Lang.html -------------------------------------------------------------------------------- /doc/gfdoc/Lexicon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Lexicon.html -------------------------------------------------------------------------------- /doc/gfdoc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Makefile -------------------------------------------------------------------------------- /doc/gfdoc/Noun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Noun.html -------------------------------------------------------------------------------- /doc/gfdoc/Numeral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Numeral.html -------------------------------------------------------------------------------- /doc/gfdoc/Phrase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Phrase.html -------------------------------------------------------------------------------- /doc/gfdoc/Question.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Question.html -------------------------------------------------------------------------------- /doc/gfdoc/Relative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Relative.html -------------------------------------------------------------------------------- /doc/gfdoc/Sentence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Sentence.html -------------------------------------------------------------------------------- /doc/gfdoc/Structural.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Structural.html -------------------------------------------------------------------------------- /doc/gfdoc/Symbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Symbol.html -------------------------------------------------------------------------------- /doc/gfdoc/Syntax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Syntax.png -------------------------------------------------------------------------------- /doc/gfdoc/Tense.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Tense.html -------------------------------------------------------------------------------- /doc/gfdoc/Text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Text.html -------------------------------------------------------------------------------- /doc/gfdoc/Verb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/Verb.html -------------------------------------------------------------------------------- /doc/gfdoc/sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/gfdoc/sources.txt -------------------------------------------------------------------------------- /doc/languages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/languages/Makefile -------------------------------------------------------------------------------- /doc/languages/gf-english-2.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | +Syntax: English-specific rules+ 4 | 5 | -------------------------------------------------------------------------------- /doc/rgl-publications.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/rgl-publications.txt -------------------------------------------------------------------------------- /doc/rgl-tutorial/arav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/rgl-tutorial/arav.jpg -------------------------------------------------------------------------------- /doc/show_missing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/show_missing.py -------------------------------------------------------------------------------- /doc/status.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/status.txt -------------------------------------------------------------------------------- /doc/synopsis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/synopsis/Makefile -------------------------------------------------------------------------------- /doc/synopsis/MkExx.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/synopsis/MkExx.hs -------------------------------------------------------------------------------- /doc/synopsis/browse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/synopsis/browse.txt -------------------------------------------------------------------------------- /doc/synopsis/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/synopsis/example.txt -------------------------------------------------------------------------------- /doc/synopsis/intro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/synopsis/intro.txt -------------------------------------------------------------------------------- /doc/synopsis/synopsis.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/synopsis/synopsis.css -------------------------------------------------------------------------------- /doc/tour/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/tour/Makefile -------------------------------------------------------------------------------- /doc/tour/MkTour.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/tour/MkTour.hs -------------------------------------------------------------------------------- /doc/tour/tour.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/tour/tour.txt -------------------------------------------------------------------------------- /doc/tour/tourSwe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/tour/tourSwe.html -------------------------------------------------------------------------------- /doc/translation.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/translation.dot -------------------------------------------------------------------------------- /doc/translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/translation.png -------------------------------------------------------------------------------- /doc/translation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/doc/translation.txt -------------------------------------------------------------------------------- /haskell/Numeral.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/haskell/Numeral.hs -------------------------------------------------------------------------------- /languages.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/languages.csv -------------------------------------------------------------------------------- /mkPresent: -------------------------------------------------------------------------------- 1 | grep -v "\-\-\# notpresent" $1 2 | -------------------------------------------------------------------------------- /src/Clone.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/Clone.hs -------------------------------------------------------------------------------- /src/FileHierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/FileHierarchy.png -------------------------------------------------------------------------------- /src/Lang.labels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/Lang.labels -------------------------------------------------------------------------------- /src/MkExx.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/MkExx.hs -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/README.md -------------------------------------------------------------------------------- /src/TEMPLATE/AdverbTMP.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/TEMPLATE/AdverbTMP.gf -------------------------------------------------------------------------------- /src/TEMPLATE/AllTMP.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/TEMPLATE/AllTMP.gf -------------------------------------------------------------------------------- /src/TEMPLATE/AllTMPAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/TEMPLATE/AllTMPAbs.gf -------------------------------------------------------------------------------- /src/TEMPLATE/CatTMP.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/TEMPLATE/CatTMP.gf -------------------------------------------------------------------------------- /src/TEMPLATE/ExtendTMP.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/TEMPLATE/ExtendTMP.gf -------------------------------------------------------------------------------- /src/TEMPLATE/IdiomTMP.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/TEMPLATE/IdiomTMP.gf -------------------------------------------------------------------------------- /src/TEMPLATE/LangTMP.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/TEMPLATE/LangTMP.gf -------------------------------------------------------------------------------- /src/TEMPLATE/NamesTMP.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/TEMPLATE/NamesTMP.gf -------------------------------------------------------------------------------- /src/TEMPLATE/NounTMP.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/TEMPLATE/NounTMP.gf -------------------------------------------------------------------------------- /src/TEMPLATE/PhraseTMP.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/TEMPLATE/PhraseTMP.gf -------------------------------------------------------------------------------- /src/TEMPLATE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/TEMPLATE/README.md -------------------------------------------------------------------------------- /src/TEMPLATE/ResTMP.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/TEMPLATE/ResTMP.gf -------------------------------------------------------------------------------- /src/TEMPLATE/SymbolTMP.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/TEMPLATE/SymbolTMP.gf -------------------------------------------------------------------------------- /src/TEMPLATE/VerbTMP.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/TEMPLATE/VerbTMP.gf -------------------------------------------------------------------------------- /src/abstract/Adjective.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Adjective.gf -------------------------------------------------------------------------------- /src/abstract/Adverb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Adverb.gf -------------------------------------------------------------------------------- /src/abstract/Backward.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Backward.gf -------------------------------------------------------------------------------- /src/abstract/Cat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Cat.gf -------------------------------------------------------------------------------- /src/abstract/Common.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Common.gf -------------------------------------------------------------------------------- /src/abstract/Extend.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Extend.gf -------------------------------------------------------------------------------- /src/abstract/Extra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Extra.gf -------------------------------------------------------------------------------- /src/abstract/Grammar.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Grammar.gf -------------------------------------------------------------------------------- /src/abstract/Idiom.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Idiom.gf -------------------------------------------------------------------------------- /src/abstract/Lang.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Lang.gf -------------------------------------------------------------------------------- /src/abstract/Lexicon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Lexicon.gf -------------------------------------------------------------------------------- /src/abstract/MarkHTML.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/MarkHTML.gf -------------------------------------------------------------------------------- /src/abstract/Markup.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Markup.gf -------------------------------------------------------------------------------- /src/abstract/Names.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Names.gf -------------------------------------------------------------------------------- /src/abstract/Noun.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Noun.gf -------------------------------------------------------------------------------- /src/abstract/Numeral.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Numeral.gf -------------------------------------------------------------------------------- /src/abstract/Phrase.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Phrase.gf -------------------------------------------------------------------------------- /src/abstract/Question.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Question.gf -------------------------------------------------------------------------------- /src/abstract/Relative.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Relative.gf -------------------------------------------------------------------------------- /src/abstract/Sentence.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Sentence.gf -------------------------------------------------------------------------------- /src/abstract/Symbol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Symbol.gf -------------------------------------------------------------------------------- /src/abstract/Tense.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Tense.gf -------------------------------------------------------------------------------- /src/abstract/Text.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Text.gf -------------------------------------------------------------------------------- /src/abstract/Transfer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Transfer.gf -------------------------------------------------------------------------------- /src/abstract/Verb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/abstract/Verb.gf -------------------------------------------------------------------------------- /src/afrikaans/AllAfr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/afrikaans/AllAfr.gf -------------------------------------------------------------------------------- /src/afrikaans/CatAfr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/afrikaans/CatAfr.gf -------------------------------------------------------------------------------- /src/afrikaans/ExtraAfr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/afrikaans/ExtraAfr.gf -------------------------------------------------------------------------------- /src/afrikaans/IdiomAfr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/afrikaans/IdiomAfr.gf -------------------------------------------------------------------------------- /src/afrikaans/IrregAfr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/afrikaans/IrregAfr.gf -------------------------------------------------------------------------------- /src/afrikaans/LangAfr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/afrikaans/LangAfr.gf -------------------------------------------------------------------------------- /src/afrikaans/NamesAfr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/afrikaans/NamesAfr.gf -------------------------------------------------------------------------------- /src/afrikaans/NounAfr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/afrikaans/NounAfr.gf -------------------------------------------------------------------------------- /src/afrikaans/ResAfr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/afrikaans/ResAfr.gf -------------------------------------------------------------------------------- /src/afrikaans/VerbAfr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/afrikaans/VerbAfr.gf -------------------------------------------------------------------------------- /src/albanian/AllSqi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/albanian/AllSqi.gf -------------------------------------------------------------------------------- /src/albanian/AllSqiAbs.gf: -------------------------------------------------------------------------------- 1 | abstract AllSqiAbs = 2 | Lang 3 | ** {} 4 | -------------------------------------------------------------------------------- /src/albanian/CatSqi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/albanian/CatSqi.gf -------------------------------------------------------------------------------- /src/albanian/LangSqi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/albanian/LangSqi.gf -------------------------------------------------------------------------------- /src/albanian/MorphoSqi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/albanian/MorphoSqi.gf -------------------------------------------------------------------------------- /src/albanian/NounSqi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/albanian/NounSqi.gf -------------------------------------------------------------------------------- /src/albanian/PhraseSqi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/albanian/PhraseSqi.gf -------------------------------------------------------------------------------- /src/albanian/ResSqi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/albanian/ResSqi.gf -------------------------------------------------------------------------------- /src/amharic/AdverbAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/AdverbAmh.gf -------------------------------------------------------------------------------- /src/amharic/AllAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/AllAmh.gf -------------------------------------------------------------------------------- /src/amharic/AllAmhAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/AllAmhAbs.gf -------------------------------------------------------------------------------- /src/amharic/CatAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/CatAmh.gf -------------------------------------------------------------------------------- /src/amharic/ExtAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/ExtAmh.gf -------------------------------------------------------------------------------- /src/amharic/ExtAmhAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/ExtAmhAbs.gf -------------------------------------------------------------------------------- /src/amharic/GrammarAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/GrammarAmh.gf -------------------------------------------------------------------------------- /src/amharic/IdiomAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/IdiomAmh.gf -------------------------------------------------------------------------------- /src/amharic/IrregAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/IrregAmh.gf -------------------------------------------------------------------------------- /src/amharic/LangAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/LangAmh.gf -------------------------------------------------------------------------------- /src/amharic/LexAmhTran.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/LexAmhTran.gf -------------------------------------------------------------------------------- /src/amharic/LexiconAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/LexiconAmh.gf -------------------------------------------------------------------------------- /src/amharic/LexiconMlt.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/LexiconMlt.gf -------------------------------------------------------------------------------- /src/amharic/MorphoAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/MorphoAmh.gf -------------------------------------------------------------------------------- /src/amharic/NounAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/NounAmh.gf -------------------------------------------------------------------------------- /src/amharic/NumeralAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/NumeralAmh.gf -------------------------------------------------------------------------------- /src/amharic/Numerals.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/Numerals.gf -------------------------------------------------------------------------------- /src/amharic/OrthoAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/OrthoAmh.gf -------------------------------------------------------------------------------- /src/amharic/PhraseAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/PhraseAmh.gf -------------------------------------------------------------------------------- /src/amharic/ResAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/ResAmh.gf -------------------------------------------------------------------------------- /src/amharic/SymbolAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/SymbolAmh.gf -------------------------------------------------------------------------------- /src/amharic/VerbAmh.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/VerbAmh.gf -------------------------------------------------------------------------------- /src/amharic/amharic.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/amharic/amharic.gf -------------------------------------------------------------------------------- /src/api/Browse.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/Browse.gf -------------------------------------------------------------------------------- /src/api/BrowseEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/BrowseEng.gf -------------------------------------------------------------------------------- /src/api/Combinators.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/Combinators.gf -------------------------------------------------------------------------------- /src/api/CombinatorsAfr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsAfr.gf -------------------------------------------------------------------------------- /src/api/CombinatorsAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsAra.gf -------------------------------------------------------------------------------- /src/api/CombinatorsBul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsBul.gf -------------------------------------------------------------------------------- /src/api/CombinatorsCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsCat.gf -------------------------------------------------------------------------------- /src/api/CombinatorsChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsChi.gf -------------------------------------------------------------------------------- /src/api/CombinatorsCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsCze.gf -------------------------------------------------------------------------------- /src/api/CombinatorsDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsDan.gf -------------------------------------------------------------------------------- /src/api/CombinatorsDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsDut.gf -------------------------------------------------------------------------------- /src/api/CombinatorsEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsEng.gf -------------------------------------------------------------------------------- /src/api/CombinatorsEst.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsEst.gf -------------------------------------------------------------------------------- /src/api/CombinatorsEus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsEus.gf -------------------------------------------------------------------------------- /src/api/CombinatorsFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsFin.gf -------------------------------------------------------------------------------- /src/api/CombinatorsFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsFre.gf -------------------------------------------------------------------------------- /src/api/CombinatorsGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsGer.gf -------------------------------------------------------------------------------- /src/api/CombinatorsGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsGre.gf -------------------------------------------------------------------------------- /src/api/CombinatorsHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsHin.gf -------------------------------------------------------------------------------- /src/api/CombinatorsHrv.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsHrv.gf -------------------------------------------------------------------------------- /src/api/CombinatorsHun.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsHun.gf -------------------------------------------------------------------------------- /src/api/CombinatorsIce.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsIce.gf -------------------------------------------------------------------------------- /src/api/CombinatorsIna.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsIna.gf -------------------------------------------------------------------------------- /src/api/CombinatorsIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsIta.gf -------------------------------------------------------------------------------- /src/api/CombinatorsJpn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsJpn.gf -------------------------------------------------------------------------------- /src/api/CombinatorsKor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsKor.gf -------------------------------------------------------------------------------- /src/api/CombinatorsLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsLat.gf -------------------------------------------------------------------------------- /src/api/CombinatorsLav.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsLav.gf -------------------------------------------------------------------------------- /src/api/CombinatorsMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsMay.gf -------------------------------------------------------------------------------- /src/api/CombinatorsMlt.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsMlt.gf -------------------------------------------------------------------------------- /src/api/CombinatorsMon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsMon.gf -------------------------------------------------------------------------------- /src/api/CombinatorsNep.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsNep.gf -------------------------------------------------------------------------------- /src/api/CombinatorsNno.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsNno.gf -------------------------------------------------------------------------------- /src/api/CombinatorsNor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsNor.gf -------------------------------------------------------------------------------- /src/api/CombinatorsPes.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsPes.gf -------------------------------------------------------------------------------- /src/api/CombinatorsPnb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsPnb.gf -------------------------------------------------------------------------------- /src/api/CombinatorsPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsPol.gf -------------------------------------------------------------------------------- /src/api/CombinatorsPor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsPor.gf -------------------------------------------------------------------------------- /src/api/CombinatorsRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsRon.gf -------------------------------------------------------------------------------- /src/api/CombinatorsRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsRus.gf -------------------------------------------------------------------------------- /src/api/CombinatorsSco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsSco.gf -------------------------------------------------------------------------------- /src/api/CombinatorsSlo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsSlo.gf -------------------------------------------------------------------------------- /src/api/CombinatorsSnd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsSnd.gf -------------------------------------------------------------------------------- /src/api/CombinatorsSom.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsSom.gf -------------------------------------------------------------------------------- /src/api/CombinatorsSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsSpa.gf -------------------------------------------------------------------------------- /src/api/CombinatorsSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsSwe.gf -------------------------------------------------------------------------------- /src/api/CombinatorsTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsTam.gf -------------------------------------------------------------------------------- /src/api/CombinatorsTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsTha.gf -------------------------------------------------------------------------------- /src/api/CombinatorsTur.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsTur.gf -------------------------------------------------------------------------------- /src/api/CombinatorsUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/CombinatorsUrd.gf -------------------------------------------------------------------------------- /src/api/Constructors.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/Constructors.gf -------------------------------------------------------------------------------- /src/api/LangAPI.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/LangAPI.gf -------------------------------------------------------------------------------- /src/api/MkBrowse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/MkBrowse.hs -------------------------------------------------------------------------------- /src/api/Symbolic.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/Symbolic.gf -------------------------------------------------------------------------------- /src/api/SymbolicAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicAra.gf -------------------------------------------------------------------------------- /src/api/SymbolicBul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicBul.gf -------------------------------------------------------------------------------- /src/api/SymbolicCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicCat.gf -------------------------------------------------------------------------------- /src/api/SymbolicChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicChi.gf -------------------------------------------------------------------------------- /src/api/SymbolicCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicCze.gf -------------------------------------------------------------------------------- /src/api/SymbolicDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicDan.gf -------------------------------------------------------------------------------- /src/api/SymbolicDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicDut.gf -------------------------------------------------------------------------------- /src/api/SymbolicEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicEng.gf -------------------------------------------------------------------------------- /src/api/SymbolicEst.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicEst.gf -------------------------------------------------------------------------------- /src/api/SymbolicEus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicEus.gf -------------------------------------------------------------------------------- /src/api/SymbolicFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicFin.gf -------------------------------------------------------------------------------- /src/api/SymbolicFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicFre.gf -------------------------------------------------------------------------------- /src/api/SymbolicGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicGer.gf -------------------------------------------------------------------------------- /src/api/SymbolicGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicGre.gf -------------------------------------------------------------------------------- /src/api/SymbolicHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicHin.gf -------------------------------------------------------------------------------- /src/api/SymbolicHrv.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicHrv.gf -------------------------------------------------------------------------------- /src/api/SymbolicHun.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicHun.gf -------------------------------------------------------------------------------- /src/api/SymbolicIce.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicIce.gf -------------------------------------------------------------------------------- /src/api/SymbolicIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicIta.gf -------------------------------------------------------------------------------- /src/api/SymbolicJpn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicJpn.gf -------------------------------------------------------------------------------- /src/api/SymbolicKor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicKor.gf -------------------------------------------------------------------------------- /src/api/SymbolicLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicLat.gf -------------------------------------------------------------------------------- /src/api/SymbolicLav.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicLav.gf -------------------------------------------------------------------------------- /src/api/SymbolicMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicMay.gf -------------------------------------------------------------------------------- /src/api/SymbolicMlt.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicMlt.gf -------------------------------------------------------------------------------- /src/api/SymbolicNno.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicNno.gf -------------------------------------------------------------------------------- /src/api/SymbolicNor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicNor.gf -------------------------------------------------------------------------------- /src/api/SymbolicPes.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicPes.gf -------------------------------------------------------------------------------- /src/api/SymbolicPnb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicPnb.gf -------------------------------------------------------------------------------- /src/api/SymbolicPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicPol.gf -------------------------------------------------------------------------------- /src/api/SymbolicPor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicPor.gf -------------------------------------------------------------------------------- /src/api/SymbolicRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicRon.gf -------------------------------------------------------------------------------- /src/api/SymbolicRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicRus.gf -------------------------------------------------------------------------------- /src/api/SymbolicSco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicSco.gf -------------------------------------------------------------------------------- /src/api/SymbolicSlo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicSlo.gf -------------------------------------------------------------------------------- /src/api/SymbolicSnd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicSnd.gf -------------------------------------------------------------------------------- /src/api/SymbolicSom.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicSom.gf -------------------------------------------------------------------------------- /src/api/SymbolicSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicSpa.gf -------------------------------------------------------------------------------- /src/api/SymbolicSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicSwe.gf -------------------------------------------------------------------------------- /src/api/SymbolicTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicTam.gf -------------------------------------------------------------------------------- /src/api/SymbolicTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicTha.gf -------------------------------------------------------------------------------- /src/api/SymbolicUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SymbolicUrd.gf -------------------------------------------------------------------------------- /src/api/Syntax.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/Syntax.gf -------------------------------------------------------------------------------- /src/api/SyntaxAfr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxAfr.gf -------------------------------------------------------------------------------- /src/api/SyntaxAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxAra.gf -------------------------------------------------------------------------------- /src/api/SyntaxBul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxBul.gf -------------------------------------------------------------------------------- /src/api/SyntaxCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxCat.gf -------------------------------------------------------------------------------- /src/api/SyntaxChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxChi.gf -------------------------------------------------------------------------------- /src/api/SyntaxCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxCze.gf -------------------------------------------------------------------------------- /src/api/SyntaxDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxDan.gf -------------------------------------------------------------------------------- /src/api/SyntaxDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxDut.gf -------------------------------------------------------------------------------- /src/api/SyntaxEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxEng.gf -------------------------------------------------------------------------------- /src/api/SyntaxEst.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxEst.gf -------------------------------------------------------------------------------- /src/api/SyntaxEus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxEus.gf -------------------------------------------------------------------------------- /src/api/SyntaxFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxFin.gf -------------------------------------------------------------------------------- /src/api/SyntaxFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxFre.gf -------------------------------------------------------------------------------- /src/api/SyntaxGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxGer.gf -------------------------------------------------------------------------------- /src/api/SyntaxGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxGre.gf -------------------------------------------------------------------------------- /src/api/SyntaxHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxHin.gf -------------------------------------------------------------------------------- /src/api/SyntaxHrv.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxHrv.gf -------------------------------------------------------------------------------- /src/api/SyntaxHun.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxHun.gf -------------------------------------------------------------------------------- /src/api/SyntaxIce.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxIce.gf -------------------------------------------------------------------------------- /src/api/SyntaxIna.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxIna.gf -------------------------------------------------------------------------------- /src/api/SyntaxIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxIta.gf -------------------------------------------------------------------------------- /src/api/SyntaxJpn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxJpn.gf -------------------------------------------------------------------------------- /src/api/SyntaxKor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxKor.gf -------------------------------------------------------------------------------- /src/api/SyntaxLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxLat.gf -------------------------------------------------------------------------------- /src/api/SyntaxLav.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxLav.gf -------------------------------------------------------------------------------- /src/api/SyntaxMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxMay.gf -------------------------------------------------------------------------------- /src/api/SyntaxMlt.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxMlt.gf -------------------------------------------------------------------------------- /src/api/SyntaxMon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxMon.gf -------------------------------------------------------------------------------- /src/api/SyntaxNep.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxNep.gf -------------------------------------------------------------------------------- /src/api/SyntaxNno.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxNno.gf -------------------------------------------------------------------------------- /src/api/SyntaxNor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxNor.gf -------------------------------------------------------------------------------- /src/api/SyntaxPes.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxPes.gf -------------------------------------------------------------------------------- /src/api/SyntaxPnb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxPnb.gf -------------------------------------------------------------------------------- /src/api/SyntaxPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxPol.gf -------------------------------------------------------------------------------- /src/api/SyntaxPor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxPor.gf -------------------------------------------------------------------------------- /src/api/SyntaxRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxRon.gf -------------------------------------------------------------------------------- /src/api/SyntaxRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxRus.gf -------------------------------------------------------------------------------- /src/api/SyntaxSco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxSco.gf -------------------------------------------------------------------------------- /src/api/SyntaxSlo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxSlo.gf -------------------------------------------------------------------------------- /src/api/SyntaxSnd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxSnd.gf -------------------------------------------------------------------------------- /src/api/SyntaxSom.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxSom.gf -------------------------------------------------------------------------------- /src/api/SyntaxSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxSpa.gf -------------------------------------------------------------------------------- /src/api/SyntaxSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxSwe.gf -------------------------------------------------------------------------------- /src/api/SyntaxTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxTam.gf -------------------------------------------------------------------------------- /src/api/SyntaxTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxTha.gf -------------------------------------------------------------------------------- /src/api/SyntaxTur.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxTur.gf -------------------------------------------------------------------------------- /src/api/SyntaxUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/SyntaxUrd.gf -------------------------------------------------------------------------------- /src/api/TryAfr.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryAfr.gf -------------------------------------------------------------------------------- /src/api/TryAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryAra.gf -------------------------------------------------------------------------------- /src/api/TryBul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryBul.gf -------------------------------------------------------------------------------- /src/api/TryCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryCat.gf -------------------------------------------------------------------------------- /src/api/TryChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryChi.gf -------------------------------------------------------------------------------- /src/api/TryCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryCze.gf -------------------------------------------------------------------------------- /src/api/TryDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryDan.gf -------------------------------------------------------------------------------- /src/api/TryDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryDut.gf -------------------------------------------------------------------------------- /src/api/TryEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryEng.gf -------------------------------------------------------------------------------- /src/api/TryEst.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryEst.gf -------------------------------------------------------------------------------- /src/api/TryEus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryEus.gf -------------------------------------------------------------------------------- /src/api/TryFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryFin.gf -------------------------------------------------------------------------------- /src/api/TryFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryFre.gf -------------------------------------------------------------------------------- /src/api/TryGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryGer.gf -------------------------------------------------------------------------------- /src/api/TryGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryGre.gf -------------------------------------------------------------------------------- /src/api/TryHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryHin.gf -------------------------------------------------------------------------------- /src/api/TryHrv.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryHrv.gf -------------------------------------------------------------------------------- /src/api/TryHun.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryHun.gf -------------------------------------------------------------------------------- /src/api/TryIce.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryIce.gf -------------------------------------------------------------------------------- /src/api/TryIna.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryIna.gf -------------------------------------------------------------------------------- /src/api/TryIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryIta.gf -------------------------------------------------------------------------------- /src/api/TryJpn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryJpn.gf -------------------------------------------------------------------------------- /src/api/TryKor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryKor.gf -------------------------------------------------------------------------------- /src/api/TryLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryLat.gf -------------------------------------------------------------------------------- /src/api/TryLav.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryLav.gf -------------------------------------------------------------------------------- /src/api/TryMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryMay.gf -------------------------------------------------------------------------------- /src/api/TryMlt.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryMlt.gf -------------------------------------------------------------------------------- /src/api/TryMon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryMon.gf -------------------------------------------------------------------------------- /src/api/TryNep.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryNep.gf -------------------------------------------------------------------------------- /src/api/TryNno.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryNno.gf -------------------------------------------------------------------------------- /src/api/TryNor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryNor.gf -------------------------------------------------------------------------------- /src/api/TryPes.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryPes.gf -------------------------------------------------------------------------------- /src/api/TryPnb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryPnb.gf -------------------------------------------------------------------------------- /src/api/TryPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryPol.gf -------------------------------------------------------------------------------- /src/api/TryPor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryPor.gf -------------------------------------------------------------------------------- /src/api/TryRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryRon.gf -------------------------------------------------------------------------------- /src/api/TryRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryRus.gf -------------------------------------------------------------------------------- /src/api/TrySco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TrySco.gf -------------------------------------------------------------------------------- /src/api/TrySlo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TrySlo.gf -------------------------------------------------------------------------------- /src/api/TrySnd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TrySnd.gf -------------------------------------------------------------------------------- /src/api/TrySom.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TrySom.gf -------------------------------------------------------------------------------- /src/api/TrySpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TrySpa.gf -------------------------------------------------------------------------------- /src/api/TrySwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TrySwe.gf -------------------------------------------------------------------------------- /src/api/TryTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryTam.gf -------------------------------------------------------------------------------- /src/api/TryTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryTha.gf -------------------------------------------------------------------------------- /src/api/TryTur.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryTur.gf -------------------------------------------------------------------------------- /src/api/TryUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/TryUrd.gf -------------------------------------------------------------------------------- /src/api/minimals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/api/minimals.txt -------------------------------------------------------------------------------- /src/arabic/AdverbAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/AdverbAra.gf -------------------------------------------------------------------------------- /src/arabic/AllAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/AllAra.gf -------------------------------------------------------------------------------- /src/arabic/AllAraAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/AllAraAbs.gf -------------------------------------------------------------------------------- /src/arabic/CatAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/CatAra.gf -------------------------------------------------------------------------------- /src/arabic/ExtAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/ExtAra.gf -------------------------------------------------------------------------------- /src/arabic/ExtendAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/ExtendAra.gf -------------------------------------------------------------------------------- /src/arabic/GrammarAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/GrammarAra.gf -------------------------------------------------------------------------------- /src/arabic/IdiomAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/IdiomAra.gf -------------------------------------------------------------------------------- /src/arabic/IrregAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/IrregAra.gf -------------------------------------------------------------------------------- /src/arabic/LangAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/LangAra.gf -------------------------------------------------------------------------------- /src/arabic/LexiconAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/LexiconAra.gf -------------------------------------------------------------------------------- /src/arabic/NamesAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/NamesAra.gf -------------------------------------------------------------------------------- /src/arabic/NounAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/NounAra.gf -------------------------------------------------------------------------------- /src/arabic/OrthoAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/OrthoAra.gf -------------------------------------------------------------------------------- /src/arabic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/README.md -------------------------------------------------------------------------------- /src/arabic/ResAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/ResAra.gf -------------------------------------------------------------------------------- /src/arabic/VerbAra.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/arabic/VerbAra.gf -------------------------------------------------------------------------------- /src/armenian/AllHye.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/armenian/AllHye.gf -------------------------------------------------------------------------------- /src/armenian/AllHyeAbs.gf: -------------------------------------------------------------------------------- 1 | abstract AllHyeAbs = 2 | Lang 3 | ** {} -------------------------------------------------------------------------------- /src/armenian/CatHye.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/armenian/CatHye.gf -------------------------------------------------------------------------------- /src/armenian/ResHye.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/armenian/ResHye.gf -------------------------------------------------------------------------------- /src/bantu/CatBantu.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/bantu/CatBantu.gf -------------------------------------------------------------------------------- /src/bantu/DiffBantu.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/bantu/DiffBantu.gf -------------------------------------------------------------------------------- /src/bantu/NounBantu.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/bantu/NounBantu.gf -------------------------------------------------------------------------------- /src/bantu/ResBantu.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/bantu/ResBantu.gf -------------------------------------------------------------------------------- /src/bantu/VerbBantu.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/bantu/VerbBantu.gf -------------------------------------------------------------------------------- /src/basque/AllEus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/basque/AllEus.gf -------------------------------------------------------------------------------- /src/basque/CatEus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/basque/CatEus.gf -------------------------------------------------------------------------------- /src/basque/ExtraEus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/basque/ExtraEus.gf -------------------------------------------------------------------------------- /src/basque/IdiomEus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/basque/IdiomEus.gf -------------------------------------------------------------------------------- /src/basque/LangEus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/basque/LangEus.gf -------------------------------------------------------------------------------- /src/basque/NounEus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/basque/NounEus.gf -------------------------------------------------------------------------------- /src/basque/ParamEus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/basque/ParamEus.gf -------------------------------------------------------------------------------- /src/basque/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/basque/README.md -------------------------------------------------------------------------------- /src/basque/ResEus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/basque/ResEus.gf -------------------------------------------------------------------------------- /src/basque/VerbEus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/basque/VerbEus.gf -------------------------------------------------------------------------------- /src/belarusian/AllBelAbs.gf: -------------------------------------------------------------------------------- 1 | abstract AllBelAbs = 2 | Lang 3 | ** {} -------------------------------------------------------------------------------- /src/catalan/AllCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/catalan/AllCat.gf -------------------------------------------------------------------------------- /src/catalan/CatCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/catalan/CatCat.gf -------------------------------------------------------------------------------- /src/catalan/DiffCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/catalan/DiffCat.gf -------------------------------------------------------------------------------- /src/catalan/LangCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/catalan/LangCat.gf -------------------------------------------------------------------------------- /src/catalan/NounCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/catalan/NounCat.gf -------------------------------------------------------------------------------- /src/catalan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/catalan/README.md -------------------------------------------------------------------------------- /src/catalan/ResCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/catalan/ResCat.gf -------------------------------------------------------------------------------- /src/catalan/VerbCat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/catalan/VerbCat.gf -------------------------------------------------------------------------------- /src/chinese/AllChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/chinese/AllChi.gf -------------------------------------------------------------------------------- /src/chinese/CatChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/chinese/CatChi.gf -------------------------------------------------------------------------------- /src/chinese/LangChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/chinese/LangChi.gf -------------------------------------------------------------------------------- /src/chinese/NounChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/chinese/NounChi.gf -------------------------------------------------------------------------------- /src/chinese/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/chinese/README -------------------------------------------------------------------------------- /src/chinese/ResChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/chinese/ResChi.gf -------------------------------------------------------------------------------- /src/chinese/TextChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/chinese/TextChi.gf -------------------------------------------------------------------------------- /src/chinese/VerbChi.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/chinese/VerbChi.gf -------------------------------------------------------------------------------- /src/common/CommonX.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/common/CommonX.gf -------------------------------------------------------------------------------- /src/common/Overload.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/common/Overload.gf -------------------------------------------------------------------------------- /src/common/ParamX.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/common/ParamX.gf -------------------------------------------------------------------------------- /src/common/TenseX.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/common/TenseX.gf -------------------------------------------------------------------------------- /src/common/TextX.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/common/TextX.gf -------------------------------------------------------------------------------- /src/croatian/AllHrv.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/croatian/AllHrv.gf -------------------------------------------------------------------------------- /src/croatian/CatHrv.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/croatian/CatHrv.gf -------------------------------------------------------------------------------- /src/croatian/ResHrv.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/croatian/ResHrv.gf -------------------------------------------------------------------------------- /src/czech/AdverbCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/czech/AdverbCze.gf -------------------------------------------------------------------------------- /src/czech/AllCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/czech/AllCze.gf -------------------------------------------------------------------------------- /src/czech/AllCzeAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/czech/AllCzeAbs.gf -------------------------------------------------------------------------------- /src/czech/CatCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/czech/CatCze.gf -------------------------------------------------------------------------------- /src/czech/ExtendCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/czech/ExtendCze.gf -------------------------------------------------------------------------------- /src/czech/IdiomCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/czech/IdiomCze.gf -------------------------------------------------------------------------------- /src/czech/LangCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/czech/LangCze.gf -------------------------------------------------------------------------------- /src/czech/NounCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/czech/NounCze.gf -------------------------------------------------------------------------------- /src/czech/PhraseCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/czech/PhraseCze.gf -------------------------------------------------------------------------------- /src/czech/ResCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/czech/ResCze.gf -------------------------------------------------------------------------------- /src/czech/SymbolCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/czech/SymbolCze.gf -------------------------------------------------------------------------------- /src/czech/TenseCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/czech/TenseCze.gf -------------------------------------------------------------------------------- /src/czech/TextCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/czech/TextCze.gf -------------------------------------------------------------------------------- /src/czech/VerbCze.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/czech/VerbCze.gf -------------------------------------------------------------------------------- /src/danish/AllDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/danish/AllDan.gf -------------------------------------------------------------------------------- /src/danish/CatDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/danish/CatDan.gf -------------------------------------------------------------------------------- /src/danish/DiffDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/danish/DiffDan.gf -------------------------------------------------------------------------------- /src/danish/ExtraDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/danish/ExtraDan.gf -------------------------------------------------------------------------------- /src/danish/IdiomDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/danish/IdiomDan.gf -------------------------------------------------------------------------------- /src/danish/IrregDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/danish/IrregDan.gf -------------------------------------------------------------------------------- /src/danish/LangDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/danish/LangDan.gf -------------------------------------------------------------------------------- /src/danish/MathDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/danish/MathDan.gf -------------------------------------------------------------------------------- /src/danish/NamesDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/danish/NamesDan.gf -------------------------------------------------------------------------------- /src/danish/NounDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/danish/NounDan.gf -------------------------------------------------------------------------------- /src/danish/ResDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/danish/ResDan.gf -------------------------------------------------------------------------------- /src/danish/TenseDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/danish/TenseDan.gf -------------------------------------------------------------------------------- /src/danish/VerbDan.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/danish/VerbDan.gf -------------------------------------------------------------------------------- /src/demo/Compile.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/demo/Compile.hs -------------------------------------------------------------------------------- /src/demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/demo/Makefile -------------------------------------------------------------------------------- /src/demo/MkMini.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/demo/MkMini.hs -------------------------------------------------------------------------------- /src/dep.labels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dep.labels -------------------------------------------------------------------------------- /src/dutch/AdverbDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/AdverbDut.gf -------------------------------------------------------------------------------- /src/dutch/AllDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/AllDut.gf -------------------------------------------------------------------------------- /src/dutch/AllDutAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/AllDutAbs.gf -------------------------------------------------------------------------------- /src/dutch/CatDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/CatDut.gf -------------------------------------------------------------------------------- /src/dutch/ExtDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/ExtDut.gf -------------------------------------------------------------------------------- /src/dutch/ExtendDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/ExtendDut.gf -------------------------------------------------------------------------------- /src/dutch/ExtraDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/ExtraDut.gf -------------------------------------------------------------------------------- /src/dutch/IdiomDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/IdiomDut.gf -------------------------------------------------------------------------------- /src/dutch/IrregDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/IrregDut.gf -------------------------------------------------------------------------------- /src/dutch/LangDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/LangDut.gf -------------------------------------------------------------------------------- /src/dutch/MkIrreg.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/MkIrreg.hs -------------------------------------------------------------------------------- /src/dutch/NamesDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/NamesDut.gf -------------------------------------------------------------------------------- /src/dutch/NounDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/NounDut.gf -------------------------------------------------------------------------------- /src/dutch/PhraseDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/PhraseDut.gf -------------------------------------------------------------------------------- /src/dutch/ResDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/ResDut.gf -------------------------------------------------------------------------------- /src/dutch/SymbolDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/SymbolDut.gf -------------------------------------------------------------------------------- /src/dutch/VerbDut.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/VerbDut.gf -------------------------------------------------------------------------------- /src/dutch/irregs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/dutch/irregs -------------------------------------------------------------------------------- /src/egekusii/CatGus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/egekusii/CatGus.gf -------------------------------------------------------------------------------- /src/egekusii/ResGus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/egekusii/ResGus.gf -------------------------------------------------------------------------------- /src/english/AllEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/english/AllEng.gf -------------------------------------------------------------------------------- /src/english/CatEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/english/CatEng.gf -------------------------------------------------------------------------------- /src/english/DictEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/english/DictEng.gf -------------------------------------------------------------------------------- /src/english/LangEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/english/LangEng.gf -------------------------------------------------------------------------------- /src/english/NounEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/english/NounEng.gf -------------------------------------------------------------------------------- /src/english/ResEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/english/ResEng.gf -------------------------------------------------------------------------------- /src/english/VerbEng.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/english/VerbEng.gf -------------------------------------------------------------------------------- /src/estonian/AllEst.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/estonian/AllEst.gf -------------------------------------------------------------------------------- /src/estonian/CatEst.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/estonian/CatEst.gf -------------------------------------------------------------------------------- /src/estonian/HjkEst.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/estonian/HjkEst.gf -------------------------------------------------------------------------------- /src/estonian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/estonian/README.md -------------------------------------------------------------------------------- /src/estonian/ResEst.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/estonian/ResEst.gf -------------------------------------------------------------------------------- /src/faroese/AllFao.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/faroese/AllFao.gf -------------------------------------------------------------------------------- /src/faroese/AllFaoAbs.gf: -------------------------------------------------------------------------------- 1 | abstract AllFaoAbs = 2 | Lang 3 | ** {} -------------------------------------------------------------------------------- /src/faroese/CatFao.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/faroese/CatFao.gf -------------------------------------------------------------------------------- /src/faroese/LangFao.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/faroese/LangFao.gf -------------------------------------------------------------------------------- /src/faroese/NounFao.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/faroese/NounFao.gf -------------------------------------------------------------------------------- /src/faroese/ResFao.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/faroese/ResFao.gf -------------------------------------------------------------------------------- /src/finnish/AllFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/finnish/AllFin.gf -------------------------------------------------------------------------------- /src/finnish/CatFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/finnish/CatFin.gf -------------------------------------------------------------------------------- /src/finnish/DictFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/finnish/DictFin.gf -------------------------------------------------------------------------------- /src/finnish/Kotus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/finnish/Kotus.gf -------------------------------------------------------------------------------- /src/finnish/LangFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/finnish/LangFin.gf -------------------------------------------------------------------------------- /src/finnish/NounFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/finnish/NounFin.gf -------------------------------------------------------------------------------- /src/finnish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/finnish/README.md -------------------------------------------------------------------------------- /src/finnish/ResFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/finnish/ResFin.gf -------------------------------------------------------------------------------- /src/finnish/StemFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/finnish/StemFin.gf -------------------------------------------------------------------------------- /src/finnish/VerbFin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/finnish/VerbFin.gf -------------------------------------------------------------------------------- /src/finnish/frequency/prelFreqFinAbs: -------------------------------------------------------------------------------- 1 | abstract FreqFinAbs = Cat, Structural ** { 2 | 3 | -------------------------------------------------------------------------------- /src/french/AllFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/AllFre.gf -------------------------------------------------------------------------------- /src/french/BeschFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/BeschFre.gf -------------------------------------------------------------------------------- /src/french/CatFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/CatFre.gf -------------------------------------------------------------------------------- /src/french/DictFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/DictFre.gf -------------------------------------------------------------------------------- /src/french/DiffFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/DiffFre.gf -------------------------------------------------------------------------------- /src/french/ExtraFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/ExtraFre.gf -------------------------------------------------------------------------------- /src/french/IdiomFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/IdiomFre.gf -------------------------------------------------------------------------------- /src/french/IrregFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/IrregFre.gf -------------------------------------------------------------------------------- /src/french/LangFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/LangFre.gf -------------------------------------------------------------------------------- /src/french/MkWikt.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/MkWikt.hs -------------------------------------------------------------------------------- /src/french/NamesFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/NamesFre.gf -------------------------------------------------------------------------------- /src/french/NounFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/NounFre.gf -------------------------------------------------------------------------------- /src/french/PhonoFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/PhonoFre.gf -------------------------------------------------------------------------------- /src/french/ResFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/ResFre.gf -------------------------------------------------------------------------------- /src/french/TenseFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/TenseFre.gf -------------------------------------------------------------------------------- /src/french/VerbFre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/french/VerbFre.gf -------------------------------------------------------------------------------- /src/gaelic/AllGla.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/gaelic/AllGla.gf -------------------------------------------------------------------------------- /src/gaelic/AllGlaAbs.gf: -------------------------------------------------------------------------------- 1 | abstract AllGlaAbs = 2 | Lang 3 | ** {} -------------------------------------------------------------------------------- /src/gaelic/CatGla.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/gaelic/CatGla.gf -------------------------------------------------------------------------------- /src/gaelic/IdiomGla.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/gaelic/IdiomGla.gf -------------------------------------------------------------------------------- /src/gaelic/LangGla.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/gaelic/LangGla.gf -------------------------------------------------------------------------------- /src/gaelic/NamesGla.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/gaelic/NamesGla.gf -------------------------------------------------------------------------------- /src/gaelic/NounGla.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/gaelic/NounGla.gf -------------------------------------------------------------------------------- /src/gaelic/ResGla.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/gaelic/ResGla.gf -------------------------------------------------------------------------------- /src/gaelic/VerbGla.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/gaelic/VerbGla.gf -------------------------------------------------------------------------------- /src/german/AllGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/german/AllGer.gf -------------------------------------------------------------------------------- /src/german/CatGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/german/CatGer.gf -------------------------------------------------------------------------------- /src/german/DictGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/german/DictGer.gf -------------------------------------------------------------------------------- /src/german/ExtGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/german/ExtGer.gf -------------------------------------------------------------------------------- /src/german/ExtraGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/german/ExtraGer.gf -------------------------------------------------------------------------------- /src/german/IdiomGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/german/IdiomGer.gf -------------------------------------------------------------------------------- /src/german/IrregGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/german/IrregGer.gf -------------------------------------------------------------------------------- /src/german/LangGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/german/LangGer.gf -------------------------------------------------------------------------------- /src/german/NamesGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/german/NamesGer.gf -------------------------------------------------------------------------------- /src/german/NounGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/german/NounGer.gf -------------------------------------------------------------------------------- /src/german/ParseGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/german/ParseGer.gf -------------------------------------------------------------------------------- /src/german/ResGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/german/ResGer.gf -------------------------------------------------------------------------------- /src/german/TenseGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/german/TenseGer.gf -------------------------------------------------------------------------------- /src/german/VerbGer.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/german/VerbGer.gf -------------------------------------------------------------------------------- /src/greek/AdverbGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/AdverbGre.gf -------------------------------------------------------------------------------- /src/greek/AllGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/AllGre.gf -------------------------------------------------------------------------------- /src/greek/AllGreAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/AllGreAbs.gf -------------------------------------------------------------------------------- /src/greek/BeschGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/BeschGre.gf -------------------------------------------------------------------------------- /src/greek/CatGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/CatGre.gf -------------------------------------------------------------------------------- /src/greek/CommonGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/CommonGre.gf -------------------------------------------------------------------------------- /src/greek/ExtraGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/ExtraGre.gf -------------------------------------------------------------------------------- /src/greek/IdiomGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/IdiomGre.gf -------------------------------------------------------------------------------- /src/greek/LangGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/LangGre.gf -------------------------------------------------------------------------------- /src/greek/NounGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/NounGre.gf -------------------------------------------------------------------------------- /src/greek/PhraseGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/PhraseGre.gf -------------------------------------------------------------------------------- /src/greek/ResGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/ResGre.gf -------------------------------------------------------------------------------- /src/greek/SymbolGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/SymbolGre.gf -------------------------------------------------------------------------------- /src/greek/TenseGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/TenseGre.gf -------------------------------------------------------------------------------- /src/greek/TextGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/TextGre.gf -------------------------------------------------------------------------------- /src/greek/VerbGre.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/greek/VerbGre.gf -------------------------------------------------------------------------------- /src/hebrew/AllHeb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hebrew/AllHeb.gf -------------------------------------------------------------------------------- /src/hebrew/CatHeb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hebrew/CatHeb.gf -------------------------------------------------------------------------------- /src/hebrew/LangHeb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hebrew/LangHeb.gf -------------------------------------------------------------------------------- /src/hebrew/NounHeb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hebrew/NounHeb.gf -------------------------------------------------------------------------------- /src/hebrew/ResHeb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hebrew/ResHeb.gf -------------------------------------------------------------------------------- /src/hebrew/TenseHeb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hebrew/TenseHeb.gf -------------------------------------------------------------------------------- /src/hebrew/VerbHeb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hebrew/VerbHeb.gf -------------------------------------------------------------------------------- /src/hindi/AdverbHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/AdverbHin.gf -------------------------------------------------------------------------------- /src/hindi/AllHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/AllHin.gf -------------------------------------------------------------------------------- /src/hindi/AllHinAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/AllHinAbs.gf -------------------------------------------------------------------------------- /src/hindi/CatHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/CatHin.gf -------------------------------------------------------------------------------- /src/hindi/DiffHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/DiffHin.gf -------------------------------------------------------------------------------- /src/hindi/ExtendHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/ExtendHin.gf -------------------------------------------------------------------------------- /src/hindi/ExtraHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/ExtraHin.gf -------------------------------------------------------------------------------- /src/hindi/IdiomHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/IdiomHin.gf -------------------------------------------------------------------------------- /src/hindi/LangHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/LangHin.gf -------------------------------------------------------------------------------- /src/hindi/MorphoHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/MorphoHin.gf -------------------------------------------------------------------------------- /src/hindi/NounHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/NounHin.gf -------------------------------------------------------------------------------- /src/hindi/PhraseHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/PhraseHin.gf -------------------------------------------------------------------------------- /src/hindi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/README -------------------------------------------------------------------------------- /src/hindi/ResHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/ResHin.gf -------------------------------------------------------------------------------- /src/hindi/SymbolHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/SymbolHin.gf -------------------------------------------------------------------------------- /src/hindi/VerbHin.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/VerbHin.gf -------------------------------------------------------------------------------- /src/hindi/translit.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/hindi/translit.gfs -------------------------------------------------------------------------------- /src/icelandic/Test.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/icelandic/Test.gf -------------------------------------------------------------------------------- /src/interlingua/IrregInaAbs.gf: -------------------------------------------------------------------------------- 1 | abstract IrregInaAbs = Cat ** { 2 | } 3 | -------------------------------------------------------------------------------- /src/italian/AllIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/italian/AllIta.gf -------------------------------------------------------------------------------- /src/italian/CatIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/italian/CatIta.gf -------------------------------------------------------------------------------- /src/italian/DiffIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/italian/DiffIta.gf -------------------------------------------------------------------------------- /src/italian/LangIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/italian/LangIta.gf -------------------------------------------------------------------------------- /src/italian/NounIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/italian/NounIta.gf -------------------------------------------------------------------------------- /src/italian/ResIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/italian/ResIta.gf -------------------------------------------------------------------------------- /src/italian/VerbIta.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/italian/VerbIta.gf -------------------------------------------------------------------------------- /src/japanese/AllJpn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/japanese/AllJpn.gf -------------------------------------------------------------------------------- /src/japanese/CatJpn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/japanese/CatJpn.gf -------------------------------------------------------------------------------- /src/japanese/ResJpn.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/japanese/ResJpn.gf -------------------------------------------------------------------------------- /src/kazakh/AllKaz.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/kazakh/AllKaz.gf -------------------------------------------------------------------------------- /src/kazakh/CatKaz.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/kazakh/CatKaz.gf -------------------------------------------------------------------------------- /src/kazakh/LangKaz.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/kazakh/LangKaz.gf -------------------------------------------------------------------------------- /src/kazakh/ResKaz.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/kazakh/ResKaz.gf -------------------------------------------------------------------------------- /src/kikamba/CatKam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/kikamba/CatKam.gf -------------------------------------------------------------------------------- /src/kikamba/DiffKam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/kikamba/DiffKam.gf -------------------------------------------------------------------------------- /src/kikamba/LangKam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/kikamba/LangKam.gf -------------------------------------------------------------------------------- /src/kikamba/NounKam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/kikamba/NounKam.gf -------------------------------------------------------------------------------- /src/kikamba/ResKam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/kikamba/ResKam.gf -------------------------------------------------------------------------------- /src/kikamba/VerbKam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/kikamba/VerbKam.gf -------------------------------------------------------------------------------- /src/korean/AllKor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/korean/AllKor.gf -------------------------------------------------------------------------------- /src/korean/CatKor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/korean/CatKor.gf -------------------------------------------------------------------------------- /src/korean/Hangul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/korean/Hangul.gf -------------------------------------------------------------------------------- /src/korean/IdiomKor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/korean/IdiomKor.gf -------------------------------------------------------------------------------- /src/korean/LangKor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/korean/LangKor.gf -------------------------------------------------------------------------------- /src/korean/NamesKor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/korean/NamesKor.gf -------------------------------------------------------------------------------- /src/korean/NounKor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/korean/NounKor.gf -------------------------------------------------------------------------------- /src/korean/ParamKor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/korean/ParamKor.gf -------------------------------------------------------------------------------- /src/korean/ResKor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/korean/ResKor.gf -------------------------------------------------------------------------------- /src/korean/VerbKor.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/korean/VerbKor.gf -------------------------------------------------------------------------------- /src/latin/AdverbLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/AdverbLat.gf -------------------------------------------------------------------------------- /src/latin/AllLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/AllLat.gf -------------------------------------------------------------------------------- /src/latin/AllLatAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/AllLatAbs.gf -------------------------------------------------------------------------------- /src/latin/CatLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/CatLat.gf -------------------------------------------------------------------------------- /src/latin/DictLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/DictLat.gf -------------------------------------------------------------------------------- /src/latin/ExtendLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/ExtendLat.gf -------------------------------------------------------------------------------- /src/latin/ExtraLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/ExtraLat.gf -------------------------------------------------------------------------------- /src/latin/IdiomLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/IdiomLat.gf -------------------------------------------------------------------------------- /src/latin/IrregLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/IrregLat.gf -------------------------------------------------------------------------------- /src/latin/LangLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/LangLat.gf -------------------------------------------------------------------------------- /src/latin/MorphoLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/MorphoLat.gf -------------------------------------------------------------------------------- /src/latin/NounLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/NounLat.gf -------------------------------------------------------------------------------- /src/latin/PhraseLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/PhraseLat.gf -------------------------------------------------------------------------------- /src/latin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/README.md -------------------------------------------------------------------------------- /src/latin/ResLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/ResLat.gf -------------------------------------------------------------------------------- /src/latin/SymbolLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/SymbolLat.gf -------------------------------------------------------------------------------- /src/latin/VerbLat.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/VerbLat.gf -------------------------------------------------------------------------------- /src/latin/mkMissing.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/mkMissing.hs -------------------------------------------------------------------------------- /src/latin/mkMissing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latin/mkMissing.sh -------------------------------------------------------------------------------- /src/latvian/AllLav.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latvian/AllLav.gf -------------------------------------------------------------------------------- /src/latvian/CatLav.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latvian/CatLav.gf -------------------------------------------------------------------------------- /src/latvian/DictLav.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latvian/DictLav.gf -------------------------------------------------------------------------------- /src/latvian/LangLav.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latvian/LangLav.gf -------------------------------------------------------------------------------- /src/latvian/NounLav.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latvian/NounLav.gf -------------------------------------------------------------------------------- /src/latvian/ResLav.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latvian/ResLav.gf -------------------------------------------------------------------------------- /src/latvian/VerbLav.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/latvian/VerbLav.gf -------------------------------------------------------------------------------- /src/malay/AdverbMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/malay/AdverbMay.gf -------------------------------------------------------------------------------- /src/malay/AllMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/malay/AllMay.gf -------------------------------------------------------------------------------- /src/malay/AllMayAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/malay/AllMayAbs.gf -------------------------------------------------------------------------------- /src/malay/CatMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/malay/CatMay.gf -------------------------------------------------------------------------------- /src/malay/ExtendMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/malay/ExtendMay.gf -------------------------------------------------------------------------------- /src/malay/IdiomMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/malay/IdiomMay.gf -------------------------------------------------------------------------------- /src/malay/LangMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/malay/LangMay.gf -------------------------------------------------------------------------------- /src/malay/NounMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/malay/NounMay.gf -------------------------------------------------------------------------------- /src/malay/ParamMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/malay/ParamMay.gf -------------------------------------------------------------------------------- /src/malay/PhraseMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/malay/PhraseMay.gf -------------------------------------------------------------------------------- /src/malay/ResMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/malay/ResMay.gf -------------------------------------------------------------------------------- /src/malay/SymbolMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/malay/SymbolMay.gf -------------------------------------------------------------------------------- /src/malay/VerbMay.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/malay/VerbMay.gf -------------------------------------------------------------------------------- /src/maltese/AllMlt.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/maltese/AllMlt.gf -------------------------------------------------------------------------------- /src/maltese/CatMlt.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/maltese/CatMlt.gf -------------------------------------------------------------------------------- /src/maltese/DictMlt.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/maltese/DictMlt.gf -------------------------------------------------------------------------------- /src/maltese/LangMlt.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/maltese/LangMlt.gf -------------------------------------------------------------------------------- /src/maltese/NounMlt.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/maltese/NounMlt.gf -------------------------------------------------------------------------------- /src/maltese/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/maltese/README.md -------------------------------------------------------------------------------- /src/maltese/ResMlt.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/maltese/ResMlt.gf -------------------------------------------------------------------------------- /src/maltese/VerbMlt.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/maltese/VerbMlt.gf -------------------------------------------------------------------------------- /src/morphodict/MorphoDictChiAbs.gf: -------------------------------------------------------------------------------- 1 | abstract MorphoDictChiAbs = 2 | Cat [N,A,V,Adv,Prep] ** 3 | {} 4 | -------------------------------------------------------------------------------- /src/morphodict/saldo/Saldo.header: -------------------------------------------------------------------------------- 1 | abstract Saldo = Cat [N,A,V,PN,Adv,Prep] ** { 2 | -------------------------------------------------------------------------------- /src/nepali/AllNep.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nepali/AllNep.gf -------------------------------------------------------------------------------- /src/nepali/CatNep.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nepali/CatNep.gf -------------------------------------------------------------------------------- /src/nepali/IdiomNep.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nepali/IdiomNep.gf -------------------------------------------------------------------------------- /src/nepali/LangNep.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nepali/LangNep.gf -------------------------------------------------------------------------------- /src/nepali/NounNep.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nepali/NounNep.gf -------------------------------------------------------------------------------- /src/nepali/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nepali/README -------------------------------------------------------------------------------- /src/nepali/ResNep.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nepali/ResNep.gf -------------------------------------------------------------------------------- /src/nepali/VerbNep.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nepali/VerbNep.gf -------------------------------------------------------------------------------- /src/nynorsk/AllNno.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nynorsk/AllNno.gf -------------------------------------------------------------------------------- /src/nynorsk/CatNno.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nynorsk/CatNno.gf -------------------------------------------------------------------------------- /src/nynorsk/DiffNno.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nynorsk/DiffNno.gf -------------------------------------------------------------------------------- /src/nynorsk/LangNno.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nynorsk/LangNno.gf -------------------------------------------------------------------------------- /src/nynorsk/MathNno.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nynorsk/MathNno.gf -------------------------------------------------------------------------------- /src/nynorsk/NounNno.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nynorsk/NounNno.gf -------------------------------------------------------------------------------- /src/nynorsk/ResNno.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nynorsk/ResNno.gf -------------------------------------------------------------------------------- /src/nynorsk/VerbNno.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/nynorsk/VerbNno.gf -------------------------------------------------------------------------------- /src/persian/AllPes.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/persian/AllPes.gf -------------------------------------------------------------------------------- /src/persian/CatPes.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/persian/CatPes.gf -------------------------------------------------------------------------------- /src/persian/LangPes.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/persian/LangPes.gf -------------------------------------------------------------------------------- /src/persian/NounPes.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/persian/NounPes.gf -------------------------------------------------------------------------------- /src/persian/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/persian/README -------------------------------------------------------------------------------- /src/persian/ResPes.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/persian/ResPes.gf -------------------------------------------------------------------------------- /src/persian/TextPes.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/persian/TextPes.gf -------------------------------------------------------------------------------- /src/persian/VerbPes.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/persian/VerbPes.gf -------------------------------------------------------------------------------- /src/polish/AllPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/polish/AllPol.gf -------------------------------------------------------------------------------- /src/polish/CatPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/polish/CatPol.gf -------------------------------------------------------------------------------- /src/polish/ExtraPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/polish/ExtraPol.gf -------------------------------------------------------------------------------- /src/polish/IdiomPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/polish/IdiomPol.gf -------------------------------------------------------------------------------- /src/polish/LangPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/polish/LangPol.gf -------------------------------------------------------------------------------- /src/polish/NamesPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/polish/NamesPol.gf -------------------------------------------------------------------------------- /src/polish/NounPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/polish/NounPol.gf -------------------------------------------------------------------------------- /src/polish/ResPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/polish/ResPol.gf -------------------------------------------------------------------------------- /src/polish/VerbPol.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/polish/VerbPol.gf -------------------------------------------------------------------------------- /src/portuguese/PhonoPor.gf: -------------------------------------------------------------------------------- 1 | resource PhonoPor = open Prelude in { 2 | 3 | } ; 4 | -------------------------------------------------------------------------------- /src/portuguese/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/portuguese/README -------------------------------------------------------------------------------- /src/prelude/Formal.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/prelude/Formal.gf -------------------------------------------------------------------------------- /src/prelude/HTML.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/prelude/HTML.gf -------------------------------------------------------------------------------- /src/prelude/Latex.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/prelude/Latex.gf -------------------------------------------------------------------------------- /src/prelude/Maybe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/prelude/Maybe.gf -------------------------------------------------------------------------------- /src/prelude/Predef.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/prelude/Predef.gf -------------------------------------------------------------------------------- /src/prelude/Prelude.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/prelude/Prelude.gf -------------------------------------------------------------------------------- /src/punjabi/AllPnb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/punjabi/AllPnb.gf -------------------------------------------------------------------------------- /src/punjabi/CatPnb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/punjabi/CatPnb.gf -------------------------------------------------------------------------------- /src/punjabi/LangPnb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/punjabi/LangPnb.gf -------------------------------------------------------------------------------- /src/punjabi/NounPnb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/punjabi/NounPnb.gf -------------------------------------------------------------------------------- /src/punjabi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/punjabi/README -------------------------------------------------------------------------------- /src/punjabi/ResPnb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/punjabi/ResPnb.gf -------------------------------------------------------------------------------- /src/punjabi/VerbPnb.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/punjabi/VerbPnb.gf -------------------------------------------------------------------------------- /src/romance/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/romance/README -------------------------------------------------------------------------------- /src/romanian/AllRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/romanian/AllRon.gf -------------------------------------------------------------------------------- /src/romanian/AllRonAbs.gf: -------------------------------------------------------------------------------- 1 | abstract AllRonAbs = 2 | Lang, Extend 3 | ** {} ; 4 | -------------------------------------------------------------------------------- /src/romanian/CatRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/romanian/CatRon.gf -------------------------------------------------------------------------------- /src/romanian/ResRon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/romanian/ResRon.gf -------------------------------------------------------------------------------- /src/rukiga/AllCgg.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/rukiga/AllCgg.gf -------------------------------------------------------------------------------- /src/rukiga/CatCgg.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/rukiga/CatCgg.gf -------------------------------------------------------------------------------- /src/rukiga/IdiomCgg.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/rukiga/IdiomCgg.gf -------------------------------------------------------------------------------- /src/rukiga/LangCgg.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/rukiga/LangCgg.gf -------------------------------------------------------------------------------- /src/rukiga/Lexicon.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/rukiga/Lexicon.gf -------------------------------------------------------------------------------- /src/rukiga/NounCgg.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/rukiga/NounCgg.gf -------------------------------------------------------------------------------- /src/rukiga/ResCgg.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/rukiga/ResCgg.gf -------------------------------------------------------------------------------- /src/rukiga/SentenceCggExtra.gf: -------------------------------------------------------------------------------- 1 | abstract SentenceCggExtra = Cat **{ 2 | 3 | } -------------------------------------------------------------------------------- /src/rukiga/VerbCgg.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/rukiga/VerbCgg.gf -------------------------------------------------------------------------------- /src/rukiga/file1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/rukiga/file1.txt -------------------------------------------------------------------------------- /src/rukiga/file2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/rukiga/file2.txt -------------------------------------------------------------------------------- /src/rukiga/trees.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/rukiga/trees.test -------------------------------------------------------------------------------- /src/russian/AllRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/russian/AllRus.gf -------------------------------------------------------------------------------- /src/russian/CatRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/russian/CatRus.gf -------------------------------------------------------------------------------- /src/russian/DictRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/russian/DictRus.gf -------------------------------------------------------------------------------- /src/russian/LangRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/russian/LangRus.gf -------------------------------------------------------------------------------- /src/russian/NounRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/russian/NounRus.gf -------------------------------------------------------------------------------- /src/russian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/russian/README.md -------------------------------------------------------------------------------- /src/russian/ResRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/russian/ResRus.gf -------------------------------------------------------------------------------- /src/russian/TextRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/russian/TextRus.gf -------------------------------------------------------------------------------- /src/russian/VerbRus.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/russian/VerbRus.gf -------------------------------------------------------------------------------- /src/russian/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/russian/todo.txt -------------------------------------------------------------------------------- /src/scots/AdverbSco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/scots/AdverbSco.gf -------------------------------------------------------------------------------- /src/scots/AllSco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/scots/AllSco.gf -------------------------------------------------------------------------------- /src/scots/AllScoAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/scots/AllScoAbs.gf -------------------------------------------------------------------------------- /src/scots/CatSco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/scots/CatSco.gf -------------------------------------------------------------------------------- /src/scots/ExtendSco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/scots/ExtendSco.gf -------------------------------------------------------------------------------- /src/scots/IdiomSco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/scots/IdiomSco.gf -------------------------------------------------------------------------------- /src/scots/LangSco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/scots/LangSco.gf -------------------------------------------------------------------------------- /src/scots/NamesSco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/scots/NamesSco.gf -------------------------------------------------------------------------------- /src/scots/NounSco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/scots/NounSco.gf -------------------------------------------------------------------------------- /src/scots/PhraseSco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/scots/PhraseSco.gf -------------------------------------------------------------------------------- /src/scots/ResSco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/scots/ResSco.gf -------------------------------------------------------------------------------- /src/scots/SymbolSco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/scots/SymbolSco.gf -------------------------------------------------------------------------------- /src/scots/VerbSco.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/scots/VerbSco.gf -------------------------------------------------------------------------------- /src/sindhi/AllSnd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/sindhi/AllSnd.gf -------------------------------------------------------------------------------- /src/sindhi/CatSnd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/sindhi/CatSnd.gf -------------------------------------------------------------------------------- /src/sindhi/ExtraSnd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/sindhi/ExtraSnd.gf -------------------------------------------------------------------------------- /src/sindhi/IdiomSnd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/sindhi/IdiomSnd.gf -------------------------------------------------------------------------------- /src/sindhi/LangSnd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/sindhi/LangSnd.gf -------------------------------------------------------------------------------- /src/sindhi/NounSnd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/sindhi/NounSnd.gf -------------------------------------------------------------------------------- /src/sindhi/ResSnd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/sindhi/ResSnd.gf -------------------------------------------------------------------------------- /src/sindhi/VerbSnd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/sindhi/VerbSnd.gf -------------------------------------------------------------------------------- /src/slovak/AllSlo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/slovak/AllSlo.gf -------------------------------------------------------------------------------- /src/slovak/CatSlo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/slovak/CatSlo.gf -------------------------------------------------------------------------------- /src/slovak/IdiomSlo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/slovak/IdiomSlo.gf -------------------------------------------------------------------------------- /src/slovak/LangSlo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/slovak/LangSlo.gf -------------------------------------------------------------------------------- /src/slovak/NounSlo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/slovak/NounSlo.gf -------------------------------------------------------------------------------- /src/slovak/ResSlo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/slovak/ResSlo.gf -------------------------------------------------------------------------------- /src/slovak/TenseSlo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/slovak/TenseSlo.gf -------------------------------------------------------------------------------- /src/slovak/TextSlo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/slovak/TextSlo.gf -------------------------------------------------------------------------------- /src/slovak/VerbSlo.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/slovak/VerbSlo.gf -------------------------------------------------------------------------------- /src/somali/AllSom.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/somali/AllSom.gf -------------------------------------------------------------------------------- /src/somali/CatSom.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/somali/CatSom.gf -------------------------------------------------------------------------------- /src/somali/IdiomSom.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/somali/IdiomSom.gf -------------------------------------------------------------------------------- /src/somali/LangSom.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/somali/LangSom.gf -------------------------------------------------------------------------------- /src/somali/NamesSom.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/somali/NamesSom.gf -------------------------------------------------------------------------------- /src/somali/NounSom.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/somali/NounSom.gf -------------------------------------------------------------------------------- /src/somali/ParamSom.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/somali/ParamSom.gf -------------------------------------------------------------------------------- /src/somali/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/somali/README.md -------------------------------------------------------------------------------- /src/somali/ResSom.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/somali/ResSom.gf -------------------------------------------------------------------------------- /src/somali/VerbSom.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/somali/VerbSom.gf -------------------------------------------------------------------------------- /src/spanish/AllSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/spanish/AllSpa.gf -------------------------------------------------------------------------------- /src/spanish/CatSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/spanish/CatSpa.gf -------------------------------------------------------------------------------- /src/spanish/DictSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/spanish/DictSpa.gf -------------------------------------------------------------------------------- /src/spanish/DiffSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/spanish/DiffSpa.gf -------------------------------------------------------------------------------- /src/spanish/LangSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/spanish/LangSpa.gf -------------------------------------------------------------------------------- /src/spanish/NounSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/spanish/NounSpa.gf -------------------------------------------------------------------------------- /src/spanish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/spanish/README.md -------------------------------------------------------------------------------- /src/spanish/ResSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/spanish/ResSpa.gf -------------------------------------------------------------------------------- /src/spanish/TextSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/spanish/TextSpa.gf -------------------------------------------------------------------------------- /src/spanish/VerbSpa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/spanish/VerbSpa.gf -------------------------------------------------------------------------------- /src/swahili/AllSwa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swahili/AllSwa.gf -------------------------------------------------------------------------------- /src/swahili/AllSwaAbs.gf: -------------------------------------------------------------------------------- 1 | abstract AllSwaAbs = 2 | Lang 3 | ** {} ; 4 | -------------------------------------------------------------------------------- /src/swahili/CatSwa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swahili/CatSwa.gf -------------------------------------------------------------------------------- /src/swahili/DiffSwa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swahili/DiffSwa.gf -------------------------------------------------------------------------------- /src/swahili/LangSwa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swahili/LangSwa.gf -------------------------------------------------------------------------------- /src/swahili/NounSwa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swahili/NounSwa.gf -------------------------------------------------------------------------------- /src/swahili/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swahili/README.md -------------------------------------------------------------------------------- /src/swahili/ResSwa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swahili/ResSwa.gf -------------------------------------------------------------------------------- /src/swahili/VerbSwa.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swahili/VerbSwa.gf -------------------------------------------------------------------------------- /src/swahili/old/IrregSwaAbs.gf: -------------------------------------------------------------------------------- 1 | abstract IrregSwaAbs = Cat ** { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/swedish/AllSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swedish/AllSwe.gf -------------------------------------------------------------------------------- /src/swedish/CatSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swedish/CatSwe.gf -------------------------------------------------------------------------------- /src/swedish/DictSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swedish/DictSwe.gf -------------------------------------------------------------------------------- /src/swedish/DiffSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swedish/DiffSwe.gf -------------------------------------------------------------------------------- /src/swedish/LangSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swedish/LangSwe.gf -------------------------------------------------------------------------------- /src/swedish/NounSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swedish/NounSwe.gf -------------------------------------------------------------------------------- /src/swedish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swedish/README.md -------------------------------------------------------------------------------- /src/swedish/ResSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swedish/ResSwe.gf -------------------------------------------------------------------------------- /src/swedish/VerbSwe.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/swedish/VerbSwe.gf -------------------------------------------------------------------------------- /src/tamil/AdverbTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/tamil/AdverbTam.gf -------------------------------------------------------------------------------- /src/tamil/AllTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/tamil/AllTam.gf -------------------------------------------------------------------------------- /src/tamil/AllTamAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/tamil/AllTamAbs.gf -------------------------------------------------------------------------------- /src/tamil/CatTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/tamil/CatTam.gf -------------------------------------------------------------------------------- /src/tamil/ExtendTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/tamil/ExtendTam.gf -------------------------------------------------------------------------------- /src/tamil/IdiomTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/tamil/IdiomTam.gf -------------------------------------------------------------------------------- /src/tamil/LangTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/tamil/LangTam.gf -------------------------------------------------------------------------------- /src/tamil/NounTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/tamil/NounTam.gf -------------------------------------------------------------------------------- /src/tamil/ParamTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/tamil/ParamTam.gf -------------------------------------------------------------------------------- /src/tamil/PhraseTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/tamil/PhraseTam.gf -------------------------------------------------------------------------------- /src/tamil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/tamil/README.md -------------------------------------------------------------------------------- /src/tamil/ResTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/tamil/ResTam.gf -------------------------------------------------------------------------------- /src/tamil/SymbolTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/tamil/SymbolTam.gf -------------------------------------------------------------------------------- /src/tamil/VerbTam.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/tamil/VerbTam.gf -------------------------------------------------------------------------------- /src/telugu/AllTel.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/telugu/AllTel.gf -------------------------------------------------------------------------------- /src/telugu/AllTelAbs.gf: -------------------------------------------------------------------------------- 1 | abstract AllHinAbs = Lang ; -------------------------------------------------------------------------------- /src/telugu/CatTel.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/telugu/CatTel.gf -------------------------------------------------------------------------------- /src/telugu/IdiomTel.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/telugu/IdiomTel.gf -------------------------------------------------------------------------------- /src/telugu/IrregTel.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/telugu/IrregTel.gf -------------------------------------------------------------------------------- /src/telugu/LangTel.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/telugu/LangTel.gf -------------------------------------------------------------------------------- /src/telugu/NounTel.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/telugu/NounTel.gf -------------------------------------------------------------------------------- /src/telugu/ResTel.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/telugu/ResTel.gf -------------------------------------------------------------------------------- /src/telugu/VerbTel.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/telugu/VerbTel.gf -------------------------------------------------------------------------------- /src/test.probs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/test.probs -------------------------------------------------------------------------------- /src/thai/AdverbTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/AdverbTha.gf -------------------------------------------------------------------------------- /src/thai/AllTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/AllTha.gf -------------------------------------------------------------------------------- /src/thai/AllThaAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/AllThaAbs.gf -------------------------------------------------------------------------------- /src/thai/CatTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/CatTha.gf -------------------------------------------------------------------------------- /src/thai/ExtraTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/ExtraTha.gf -------------------------------------------------------------------------------- /src/thai/GrammarTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/GrammarTha.gf -------------------------------------------------------------------------------- /src/thai/IdiomTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/IdiomTha.gf -------------------------------------------------------------------------------- /src/thai/IrregTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/IrregTha.gf -------------------------------------------------------------------------------- /src/thai/LangTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/LangTha.gf -------------------------------------------------------------------------------- /src/thai/LexiconTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/LexiconTha.gf -------------------------------------------------------------------------------- /src/thai/MorphoTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/MorphoTha.gf -------------------------------------------------------------------------------- /src/thai/NamesTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/NamesTha.gf -------------------------------------------------------------------------------- /src/thai/NounTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/NounTha.gf -------------------------------------------------------------------------------- /src/thai/NumeralTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/NumeralTha.gf -------------------------------------------------------------------------------- /src/thai/PhraseTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/PhraseTha.gf -------------------------------------------------------------------------------- /src/thai/ResTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/ResTha.gf -------------------------------------------------------------------------------- /src/thai/StringsTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/StringsTha.gf -------------------------------------------------------------------------------- /src/thai/SymbolTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/SymbolTha.gf -------------------------------------------------------------------------------- /src/thai/TextTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/TextTha.gf -------------------------------------------------------------------------------- /src/thai/ThaiScript.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/ThaiScript.hs -------------------------------------------------------------------------------- /src/thai/VerbTha.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/VerbTha.gf -------------------------------------------------------------------------------- /src/thai/src/MkLex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/src/MkLex.hs -------------------------------------------------------------------------------- /src/thai/src/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/thai/src/test.txt -------------------------------------------------------------------------------- /src/turkish/AllTur.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/turkish/AllTur.gf -------------------------------------------------------------------------------- /src/turkish/CatTur.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/turkish/CatTur.gf -------------------------------------------------------------------------------- /src/turkish/DictTur.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/turkish/DictTur.gf -------------------------------------------------------------------------------- /src/turkish/LangTur.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/turkish/LangTur.gf -------------------------------------------------------------------------------- /src/turkish/NounTur.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/turkish/NounTur.gf -------------------------------------------------------------------------------- /src/turkish/ResTur.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/turkish/ResTur.gf -------------------------------------------------------------------------------- /src/turkish/VerbTur.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/turkish/VerbTur.gf -------------------------------------------------------------------------------- /src/ukrainian/AllUkrAbs.gf: -------------------------------------------------------------------------------- 1 | abstract AllUkrAbs = 2 | Lang 3 | ** {} -------------------------------------------------------------------------------- /src/urdu/AdverbUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/AdverbUrd.gf -------------------------------------------------------------------------------- /src/urdu/AllUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/AllUrd.gf -------------------------------------------------------------------------------- /src/urdu/AllUrdAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/AllUrdAbs.gf -------------------------------------------------------------------------------- /src/urdu/CatUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/CatUrd.gf -------------------------------------------------------------------------------- /src/urdu/DictUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/DictUrd.gf -------------------------------------------------------------------------------- /src/urdu/DiffUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/DiffUrd.gf -------------------------------------------------------------------------------- /src/urdu/ExtendUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/ExtendUrd.gf -------------------------------------------------------------------------------- /src/urdu/ExtraUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/ExtraUrd.gf -------------------------------------------------------------------------------- /src/urdu/GrammarUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/GrammarUrd.gf -------------------------------------------------------------------------------- /src/urdu/IdiomUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/IdiomUrd.gf -------------------------------------------------------------------------------- /src/urdu/LangUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/LangUrd.gf -------------------------------------------------------------------------------- /src/urdu/LexiconUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/LexiconUrd.gf -------------------------------------------------------------------------------- /src/urdu/MorphoUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/MorphoUrd.gf -------------------------------------------------------------------------------- /src/urdu/NounUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/NounUrd.gf -------------------------------------------------------------------------------- /src/urdu/NumeralUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/NumeralUrd.gf -------------------------------------------------------------------------------- /src/urdu/PhraseUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/PhraseUrd.gf -------------------------------------------------------------------------------- /src/urdu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/README -------------------------------------------------------------------------------- /src/urdu/ResUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/ResUrd.gf -------------------------------------------------------------------------------- /src/urdu/SymbolUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/SymbolUrd.gf -------------------------------------------------------------------------------- /src/urdu/TextUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/TextUrd.gf -------------------------------------------------------------------------------- /src/urdu/VerbUrd.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/VerbUrd.gf -------------------------------------------------------------------------------- /src/urdu/translit.gfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/urdu/translit.gfs -------------------------------------------------------------------------------- /src/zulu/AdverbZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/AdverbZul.gf -------------------------------------------------------------------------------- /src/zulu/AllZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/AllZul.gf -------------------------------------------------------------------------------- /src/zulu/AllZulAbs.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/AllZulAbs.gf -------------------------------------------------------------------------------- /src/zulu/CatExtZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/CatExtZul.gf -------------------------------------------------------------------------------- /src/zulu/CatZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/CatZul.gf -------------------------------------------------------------------------------- /src/zulu/ChunkZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/ChunkZul.gf -------------------------------------------------------------------------------- /src/zulu/ExtendZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/ExtendZul.gf -------------------------------------------------------------------------------- /src/zulu/GrammarZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/GrammarZul.gf -------------------------------------------------------------------------------- /src/zulu/IdiomZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/IdiomZul.gf -------------------------------------------------------------------------------- /src/zulu/LangZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/LangZul.gf -------------------------------------------------------------------------------- /src/zulu/LexiconZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/LexiconZul.gf -------------------------------------------------------------------------------- /src/zulu/MarkupZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/MarkupZul.gf -------------------------------------------------------------------------------- /src/zulu/NounExtZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/NounExtZul.gf -------------------------------------------------------------------------------- /src/zulu/NounZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/NounZul.gf -------------------------------------------------------------------------------- /src/zulu/NumeralZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/NumeralZul.gf -------------------------------------------------------------------------------- /src/zulu/PChunkZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/PChunkZul.gf -------------------------------------------------------------------------------- /src/zulu/PhraseZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/PhraseZul.gf -------------------------------------------------------------------------------- /src/zulu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/README.md -------------------------------------------------------------------------------- /src/zulu/ResZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/ResZul.gf -------------------------------------------------------------------------------- /src/zulu/SymbolZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/SymbolZul.gf -------------------------------------------------------------------------------- /src/zulu/TempExtZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/TempExtZul.gf -------------------------------------------------------------------------------- /src/zulu/VerbExtZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/VerbExtZul.gf -------------------------------------------------------------------------------- /src/zulu/VerbZul.gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/src/zulu/VerbZul.gf -------------------------------------------------------------------------------- /tests/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/tests/readme.rst -------------------------------------------------------------------------------- /tests/run.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/tests/run.hs -------------------------------------------------------------------------------- /treebanks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/treebanks/README -------------------------------------------------------------------------------- /treebanks/rgl-exx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/treebanks/rgl-exx.txt -------------------------------------------------------------------------------- /unittest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/unittest/README.md -------------------------------------------------------------------------------- /unittest/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrammaticalFramework/gf-rgl/HEAD/unittest/unittest.py --------------------------------------------------------------------------------