a fairly complete Nynorsk implementation added

This commit is contained in:
stian
2016-06-16 08:15:06 +00:00
parent 4a8a3c7f3d
commit feb3519ea8
35 changed files with 1687 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
--# -path=.:alltenses:prelude
resource CombinatorsNno = Combinators with
(Cat = CatNno),
(Structural = StructuralNno),
(Constructors = ConstructorsNno) ;

View File

@@ -0,0 +1,3 @@
--# -path=.:alltenses:prelude
resource ConstructorsNno = Constructors with (Grammar = GrammarNno) ;

View File

@@ -0,0 +1,5 @@
--# -path=.:../nynorsk:../scandinavian:../common:../abstract:../prelude
resource SymbolicNno = Symbolic with
(Symbol = SymbolNno),
(Grammar = GrammarNno) ;

5
lib/src/api/SyntaxNno.gf Normal file
View File

@@ -0,0 +1,5 @@
--# -path=.:alltenses:prelude
instance SyntaxNno of Syntax = ConstructorsNno, CatNno, StructuralNno, CombinatorsNno
;

3
lib/src/api/TryNno.gf Normal file
View File

@@ -0,0 +1,3 @@
--# -path=.:../nynorsk:../scandinavian:../common:../abstract:../prelude
resource TryNno = SyntaxNno, LexiconNno, ParadigmsNno - [mkAdv] ;