1
0
forked from GitHub/gf-rgl

added Extend modules for Hindi, Urdu, Mongolian

This commit is contained in:
Krasimir Angelov
2025-02-09 10:15:55 +01:00
parent ebba8b5894
commit 44eec8629b
9 changed files with 38 additions and 7 deletions

View File

@@ -2,5 +2,5 @@
concrete AllHin of AllHinAbs =
LangHin,
ExtraHin
** {} ;
ExtendHin
** open ExtraHin in {} ;

View File

@@ -1,4 +1,4 @@
abstract AllHinAbs =
Lang,
ExtraHinAbs
Extend
** {} ;

11
src/hindi/ExtendHin.gf Normal file
View File

@@ -0,0 +1,11 @@
--# -path=.:../common:../abstract
concrete ExtendHin of Extend =
CatHin ** ExtendFunctor -
[
ComplDirectVQ, ComplDirectVS
]
with
(Grammar = GrammarHin) ** {
}

View File

@@ -2,6 +2,7 @@
concrete AllMon of AllMonAbs =
LangMon, -- - [bank_N, eye_N, hair_N, hand_N, hat_N, radio_N], -- also in DictMon
ExtendMon,
ExtraMon
-- DictMon -- normally not in All AR
** {

View File

@@ -2,6 +2,6 @@
abstract AllMonAbs =
Lang, -- - [bank_N, hair_N, hand_N, hat_N, radio_N], -- auch in DictMonAbs, HL
ExtraMonAbs
Extend
-- DictMonAbs -- normally not in All AR
** {} ;

View File

@@ -0,0 +1,8 @@
--# -path=.:../common:../abstract
concrete ExtendMon of Extend =
CatMon ** ExtendFunctor
with
(Grammar = GrammarMon) ** {
}

View File

@@ -2,5 +2,5 @@
concrete AllUrd of AllUrdAbs =
LangUrd,
ExtraUrd
** {} ;
ExtendUrd
** open ExtraUrd in {} ;

View File

@@ -1,4 +1,4 @@
abstract AllUrdAbs =
Lang,
ExtraUrdAbs
Extend
** {} ;

11
src/urdu/ExtendUrd.gf Normal file
View File

@@ -0,0 +1,11 @@
--# -path=.:../common:../abstract
concrete ExtendUrd of Extend =
CatUrd ** ExtendFunctor -
[
ComplDirectVQ, ComplDirectVS
]
with
(Grammar = GrammarUrd) ** {
}