-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathendings.py
133 lines (133 loc) · 5.08 KB
/
endings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
endings = {
"nouns": {
# case: [syllabograms, pronunciation]
# OR [[syllabograms 1, pronunciation 1], [syllabograms 2, pronunciation 2], ...]
"1st declension": {
"feminine": {
"singular": {
"nominative": ["a", "ā̆"],
"accusative": ["a", "ā̆n"],
"allative": ["a-de", "ā̆n-de"],
"genitive": ["a", "ās"],
"dative": ["a", "āi"],
# Del Freo-Perna 2019 pronunciation is not certain for loc & ins
"locative": ["a", "ai"],
# Colvin "the spelling does not allow us to say whether it was distinct in the singular."
"instrumental": ["a", "ā"]
},
"dual": {
"nominative": ["o", "ō"],
"accusative": ["o", "ō"],
# TODO check what the uppercase h means in Del Freo-Perna 2019
"genitive": ["o-i", "oi(h)i(n)"],
"dative": ["o-i", "oi(h)i(n)"],
},
"plural": {
"nominative": [["a", "ai"], ["a3", "ai"]],
"accusative": ["a", "āns"],
"allative": ["a-de", "ānsde"],
"genitive": ["a-o", "ā(h)ōn"],
"dative/locative": ["a-i", "ā(h)i"],
"instrumental": ["a-pi", "āp(h)i"]
}
},
"masculine": {
"singular": {
"nominative": ["a", "ā(s)"],
"genitive": ["a-o", "ā(h)o"]
},
"dual": {
"nominative": ["a-e", "ā(h)e"],
"accusative": ["a-e", "ā(h)e"]
}
}
},
"2nd declension": {
"masculine": {
"singular": {
"nominative": ["o", "os"],
"accusative": ["o", "on"],
"allative": ["o-de", "onde"],
"genitive": ["o-jo", "oio"],
"dative": ["o", "ōi"],
"locative": ["o", "oi"],
"instrumental": ["o", "ō"]
},
"dual": {
"nominative": ["o", "ō"],
"accusative": ["o", "ō"],
# TODO check what the uppercase h means in Del Freo-Perna 2019
"genitive": ["o-i", "oi(h)i(n)"],
"dative": ["o-i", "oi(h)i(n)"],
},
"plural": {
"nominative": ["o", "oi"],
"accusative": ["o", "ons"],
"allative": ["o-de", "o(n)sde"],
"genitive": ["o", "ōn"],
"dative/locative": ["o-i", "oi(h)i"],
"instrumental": [["o", "ōis"], ["o-pi", "o(i)p(h)i"]]
}
},
"neuter": {
"singular": {
"nominative": ["o", "on"]
},
"plural": {
"nominative": ["a", "a"],
"accusative": ["a", "a"]
}
}
},
"3rd declension": {
"masculine/feminine": {
"singular": {
"nominative": ["", ""],
"accusative": ["a", "a"],
"allative": ["a-de", "ade"],
"genitive": ["o", "os"],
"dative": [["e", "ei"], ["i", "i"]],
"locative": [["i", "i"], ["e", "ei"], ["e-u", "ēu"]],
"instrumental": ["e", "ē"]
},
"dual": {
"nominative": ["e", "e"],
"accusative": ["e", "e"] # TODO no genitive/dative?
},
"plural": {
"nominative": ["e", "es"],
"accusative": ["a", "as"],
"allative": ["a-de", "asde"],
"genitive": ["o", "ōn"],
# TODO which vowel to insert between gen sg stem and ending?
"dative/locative": ["si", "si"],
"instrumental": ["pi", "p(h)i"]
}
},
"neuter": {
"plural": {
"nominative": ["a", "a"],
"accusative": ["a", "a"]
}
}
}
},
"verbs": {
# TODO add thematic verbs
# TODO label verbs in lexicon as thematic/athematic, active/mediopassive
"athematic": {
"active": {
"primary": { # TODO check if Colvin uses other word
# part: [syllabograms, pronunciation]
"3rd sg.": ["si", "si"],
"3rd pl.": ["si", "nsi"]
},
"secondary": {
"3rd sg.": ["", "/t"], # TODO check
"3rd pl.": ["", "/nt"] # TODO check
}
}
}
# TODO add mediopassive
}
}