Skip to content

Commit f3811e8

Browse files
committedFeb 5, 2025·
Merge branch 'master' of github.com:GrammaticalFramework/gf-rgl
2 parents f03d06b + 6876b79 commit f3811e8

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed
 

‎src/albanian/CatSqi.gf

-5
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ lincat V, VA, VV, VS, VQ = Verb ;
99
lincat V2, V2S, V2Q = Verb ** {c2 : Compl} ;
1010
lincat V3, V2A, V2V = Verb ** {c2,c3 : Compl} ;
1111
lincat Prep = Compl ;
12-
lincat Interj = {s : Str} ;
13-
lincat Voc = {s : Str} ;
1412

1513
lincat Numeral = {s : Str} ;
1614
lincat Digits = {s : Str; n : Number; tail : DTail} ;
@@ -24,7 +22,4 @@ lincat Det = {s : Case => Gender => Str; spec : Species; n : Number} ;
2422
lincat NP = {s: Case => Str; a : Agr} ;
2523
lincat Pron = {s: Case => Str; acc_clit, dat_clit : Str; a : Agr} ;
2624

27-
lincat PConj = {s : Str} ;
28-
lincat Phr, Utt = {s : Str} ;
29-
3025
}

‎src/amharic/ResAmh.gf

+2-2
Original file line numberDiff line numberDiff line change
@@ -995,8 +995,8 @@ pronNP : (N,A,G,D : Str) -> PerNumGen -> NP = \N,A,G,D,png-> {
995995
{
996996
s = \\c =>case c of
997997
{
998-
Gen|Dat => affix!c + word;
999-
_ => word + affix!c
998+
Gen|Dat => affix!c ++ Predef.BIND ++ word;
999+
_ => word ++ Predef.BIND ++ affix!c
10001000
};
10011001
a = {png = Per3 n Masc ; isPron = False };
10021002
lock_NP = <>

‎src/french/LangFre.gf

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
concrete LangFre of Lang =
44
GrammarFre,
55
LexiconFre
6+
,MarkupFre - [stringMark]
67
,DocumentationFre --# notpresent
78
,ConstructionFre
89
** {

‎src/kazakh/CatKaz.gf

-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,5 @@ lincat V3, V2A, V2V = Verb ** {c2,c3 : Compl} ;
99
lincat A = {s : Str} ;
1010
lincat A2 = A ** {c2 : Compl} ;
1111
lincat Prep = Compl ;
12-
lincat Interj = {s : Str} ;
13-
lincat Voc = {s : Str} ;
1412

1513
}

‎src/morphodict/MorphoDictChi.gf

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
--# -path=.:alltenses
2+
concrete MorphoDictChi of MorphoDictChiAbs =
3+
CatChi [N,A,V,Adv,Prep] **
4+
open
5+
ParadigmsChi
6+
in
7+
{}

‎src/morphodict/MorphoDictChiAbs.gf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
abstract MorphoDictChiAbs =
2+
Cat [N,A,V,Adv,Prep] **
3+
{}

0 commit comments

Comments
 (0)
Please sign in to comment.