1
0
forked from GitHub/gf-rgl

(Kor) Add variants using commas instead of repeated conjunctions

This commit is contained in:
Inari Listenmaa
2020-04-06 17:37:00 +02:00
parent 0053d8223c
commit edc79e4717
3 changed files with 21 additions and 6 deletions
+4 -5
View File
@@ -40,14 +40,13 @@ lin there_Adv = ss "" ;
lin and_Conj = {
s1 = [] ;
-- no need for strings here, actual values come from ParamKor.conjTable
-- s2 = \\phono => table {
-- VStar => "고" ;
-- NStar => "하고"} ;
-- no need for string, actual values come from ParamKor.conjTable
s2 = [] ; -- this is only used in the base/cons functions with comma.
-- another application can use commas and just one conjunction.
n = Pl ;
c = And
} ;
lin or_Conj = {s1 = [] ; n = Sg ; c = Or} ;
lin or_Conj = {s1,s2 = [] ; n = Sg ; c = Or} ;
-- lin if_then_Conj = mkConj
-- lin both7and_DConj = mkConj "" "" pl ;
-- lin either7or_DConj = {s2 = \\_ => "" ; s1 = "" ; n = Sg} ;