1
0
forked from GitHub/gf-rgl

started a separate module for names

This commit is contained in:
Krasimir Angelov
2023-07-24 17:24:13 +02:00
parent 8b1309c99d
commit 645de9955a
100 changed files with 611 additions and 227 deletions

19
src/turkish/NamesTur.gf Normal file
View File

@@ -0,0 +1,19 @@
concrete NamesTur of Names = CatTur ** open ResTur in {
lin GivenName, MaleSurname, FemaleSurname = \n -> {
s = \\c => n.s ! c;
h = n.h;
a = {n = Sg; p = P3}
} ;
lin PlSurname = \n -> {
s = \\c => n.s ! c;
h = n.h;
a = {n = Pl; p = P3}
} ;
lin FullName gn sn = {
s = \\c => gn.s ! Nom ++ sn.s ! c;
h = sn.h;
a = {n = Sg; p = P3}
} ;
}