1
0
forked from GitHub/gf-rgl

added PhraseKaz

This commit is contained in:
Krasimir Angelov
2025-09-11 09:57:32 +02:00
parent bc41082247
commit e76e11e566
3 changed files with 20 additions and 0 deletions

6
src/kazakh/GrammarKaz.gf Normal file
View File

@@ -0,0 +1,6 @@
concrete GrammarKaz of Grammar =
PhraseKaz,
TextX,
TenseX ** {
} ;

View File

@@ -1,4 +1,5 @@
concrete LangKaz of Lang = concrete LangKaz of Lang =
GrammarKaz,
LexiconKaz LexiconKaz
,DocumentationKaz --# notpresent ,DocumentationKaz --# notpresent
** { ** {

13
src/kazakh/PhraseKaz.gf Normal file
View File

@@ -0,0 +1,13 @@
concrete PhraseKaz of Phrase = CatKaz ** open Prelude, ResKaz in {
lin
PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ;
UttS s = s ;
UttInterj i = i ;
NoPConj = {s = []} ;
NoVoc = {s = []} ;
}