QubitPi commited on
Commit
13ced77
1 Parent(s): f8fb70c

Add more Ancient Greek pronouns (#28)

Browse files
.github/cleanup_neo4j.py CHANGED
@@ -1,3 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  from wilhelm_python_sdk.database_manager import cleanup_neo4j
2
 
3
  if __name__ == "__main__":
 
1
+ # Copyright Jiaqi Liu
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
  from wilhelm_python_sdk.database_manager import cleanup_neo4j
16
 
17
  if __name__ == "__main__":
.github/load_all_in_parallel.py ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright Jiaqi Liu
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ from multiprocessing import Process, Queue
16
+
17
+ from wilhelm_python_sdk import latin_loader
18
+ from wilhelm_python_sdk import german_loader
19
+ from wilhelm_python_sdk import ancient_greek_loader
20
+
21
+ def load_latin(queue):
22
+ latin_loader.load_into_database("latin.yaml")
23
+ queue.put("Latin loads successfully")
24
+
25
+
26
+ def load_german(queue):
27
+ german_loader.load_into_database("german.yaml")
28
+ queue.put("German loads successfully")
29
+
30
+
31
+ def load_ancient_greek(queue):
32
+ ancient_greek_loader.load_into_database("ancient_greek.yaml")
33
+ queue.put("Ancient Greek loads successfully")
34
+
35
+
36
+ if __name__ == "__main__":
37
+ queue = Queue()
38
+
39
+ latin = Process(target=load_latin, args=(queue, ))
40
+ german = Process(target=load_german, args=(queue, ))
41
+ ancient_greek = Process(target=load_ancient_greek, args=(queue, ))
42
+
43
+ latin.start()
44
+ german.start()
45
+ ancient_greek.start()
46
+
47
+ # Blocking
48
+ result = queue.get()
.github/load_ancient_greek.py CHANGED
@@ -1,3 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  from wilhelm_python_sdk.ancient_greek_loader import load_into_database
2
 
3
  if __name__ == "__main__":
 
1
+ # Copyright Jiaqi Liu
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
  from wilhelm_python_sdk.ancient_greek_loader import load_into_database
16
 
17
  if __name__ == "__main__":
.github/load_german.py CHANGED
@@ -1,3 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  from wilhelm_python_sdk.german_loader import load_into_database
2
 
3
  if __name__ == "__main__":
 
1
+ # Copyright Jiaqi Liu
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
  from wilhelm_python_sdk.german_loader import load_into_database
16
 
17
  if __name__ == "__main__":
.github/load_latin.py CHANGED
@@ -1,3 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  from wilhelm_python_sdk.latin_loader import load_into_database
2
 
3
  if __name__ == "__main__":
 
1
+ # Copyright Jiaqi Liu
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
  from wilhelm_python_sdk.latin_loader import load_into_database
16
 
17
  if __name__ == "__main__":
.github/workflows/ci-cd.yaml CHANGED
@@ -20,6 +20,14 @@ name: CI/CD
20
  branches:
21
  - master
22
 
 
 
 
 
 
 
 
 
23
  jobs:
24
  cancel-previous:
25
  name: Cancel Previous Runs In Order to Allocate Action Resources Immediately for Current Run
@@ -73,18 +81,57 @@ jobs:
73
  {
74
  name: Latin,
75
  load-script: .github/load_latin.py
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  }
77
  ]
78
  steps:
79
  - uses: actions/checkout@v3
80
  with:
81
  fetch-depth: 0
82
- - name: Set up Python 3.10
83
  uses: actions/setup-python@v4
84
  with:
85
- python-version: "3.10"
86
  - name: Startup a Neo4J database
87
- run: docker run --publish=7474:7474 --publish=7687:7687 --env=NEO4J_AUTH=none neo4j &
88
  - name: Wait for database to be ready
89
  uses: iFaxity/wait-on-action@v1
90
  with:
@@ -94,10 +141,10 @@ jobs:
94
  pip3 install --upgrade --force-reinstall wilhelm-python-sdk
95
  python3 ${{ matrix.language.load-script }}
96
  env:
97
- NEO4J_URI: neo4j://localhost:7687
98
- NEO4J_DATABASE: neo4j
99
- NEO4J_USERNAME: not used
100
- NEO4J_PASSWORD: not used
101
 
102
  docker:
103
  name: Test Docker build and publish image to DockerHub
@@ -107,12 +154,12 @@ jobs:
107
  - uses: actions/checkout@v3
108
  with:
109
  fetch-depth: 0
110
- - name: Set up Python 3.10
111
  uses: actions/setup-python@v4
112
  with:
113
- python-version: "3.10"
114
  - name: Startup a Neo4J database
115
- run: docker run --publish=7474:7474 --publish=7687:7687 --env=NEO4J_AUTH=none --name data-loader --env=NEO4J_ACCEPT_LICENSE_AGREEMENT=yes neo4j:5.23.0-enterprise &
116
  - name: Wait for database to be ready
117
  uses: iFaxity/wait-on-action@v1
118
  with:
@@ -124,10 +171,10 @@ jobs:
124
  python3 .github/load_ancient_greek.py
125
  python3 .github/load_latin.py
126
  env:
127
- NEO4J_URI: neo4j://localhost:7687
128
- NEO4J_DATABASE: neo4j
129
- NEO4J_USERNAME: not used
130
- NEO4J_PASSWORD: not used
131
  - name: Copy over data onto host
132
  run: docker cp data-loader:/data .
133
  - name: Test image build
@@ -165,10 +212,10 @@ jobs:
165
  - uses: actions/checkout@v3
166
  with:
167
  fetch-depth: 0
168
- - name: Set up Python 3.10
169
  uses: actions/setup-python@v4
170
  with:
171
- python-version: "3.10"
172
  - name: Cleanup
173
  run: |
174
  pip3 install --upgrade --force-reinstall wilhelm-python-sdk
@@ -205,10 +252,10 @@ jobs:
205
  - uses: actions/checkout@v3
206
  with:
207
  fetch-depth: 0
208
- - name: Set up Python 3.10
209
  uses: actions/setup-python@v4
210
  with:
211
- python-version: "3.10"
212
  - name: Load ${{ matrix.language.name }}
213
  run: |
214
  pip3 install --upgrade --force-reinstall wilhelm-python-sdk
 
20
  branches:
21
  - master
22
 
23
+ env:
24
+ PYTHON_VERSION: "3.10"
25
+ NEO4J_ENTERPRISE_VERSION: 5.23.0-enterprise
26
+ NEO4J_URI: neo4j://localhost:7687
27
+ NEO4J_DATABASE: neo4j
28
+ NEO4J_USERNAME: not used
29
+ NEO4J_PASSWORD: not used
30
+
31
  jobs:
32
  cancel-previous:
33
  name: Cancel Previous Runs In Order to Allocate Action Resources Immediately for Current Run
 
81
  {
82
  name: Latin,
83
  load-script: .github/load_latin.py
84
+ },
85
+ {
86
+ name: all languages (race condition test ①),
87
+ load-script: .github/load_all_in_parallel.py
88
+ },
89
+ {
90
+ name: all languages (race condition test ②),
91
+ load-script: .github/load_all_in_parallel.py
92
+ },
93
+ {
94
+ name: all languages (race condition test ③),
95
+ load-script: .github/load_all_in_parallel.py
96
+ },
97
+ {
98
+ name: all languages (race condition test ④),
99
+ load-script: .github/load_all_in_parallel.py
100
+ },
101
+ {
102
+ name: all languages (race condition test ⑤),
103
+ load-script: .github/load_all_in_parallel.py
104
+ },
105
+ {
106
+ name: all languages (race condition test ⑥),
107
+ load-script: .github/load_all_in_parallel.py
108
+ },
109
+ {
110
+ name: all languages (race condition test ⑦),
111
+ load-script: .github/load_all_in_parallel.py
112
+ },
113
+ {
114
+ name: all languages (race condition test ⑧),
115
+ load-script: .github/load_all_in_parallel.py
116
+ },
117
+ {
118
+ name: all languages (race condition test ⑨),
119
+ },
120
+ {
121
+ name: all languages (race condition test ⑩),
122
+ load-script: .github/load_all_in_parallel.py
123
  }
124
  ]
125
  steps:
126
  - uses: actions/checkout@v3
127
  with:
128
  fetch-depth: 0
129
+ - name: Set up Python ${{ env.PYTHON_VERSION }}
130
  uses: actions/setup-python@v4
131
  with:
132
+ python-version: ${{ env.PYTHON_VERSION }}
133
  - name: Startup a Neo4J database
134
+ run: docker run --publish=7474:7474 --publish=7687:7687 --env=NEO4J_AUTH=none --env=NEO4J_ACCEPT_LICENSE_AGREEMENT=yes neo4j:${{ env.NEO4J_ENTERPRISE_VERSION }} &
135
  - name: Wait for database to be ready
136
  uses: iFaxity/wait-on-action@v1
137
  with:
 
141
  pip3 install --upgrade --force-reinstall wilhelm-python-sdk
142
  python3 ${{ matrix.language.load-script }}
143
  env:
144
+ NEO4J_URI: ${{ env.NEO4J_URI }}
145
+ NEO4J_DATABASE: ${{ env.NEO4J_DATABASE }}
146
+ NEO4J_USERNAME: ${{ env.NEO4J_USERNAME }}
147
+ NEO4J_PASSWORD: ${{ env.NEO4J_PASSWORD }}
148
 
149
  docker:
150
  name: Test Docker build and publish image to DockerHub
 
154
  - uses: actions/checkout@v3
155
  with:
156
  fetch-depth: 0
157
+ - name: Set up Python ${{ env.PYTHON_VERSION }}
158
  uses: actions/setup-python@v4
159
  with:
160
+ python-version: ${{ env.PYTHON_VERSION }}
161
  - name: Startup a Neo4J database
162
+ run: docker run --publish=7474:7474 --publish=7687:7687 --env=NEO4J_AUTH=none --name data-loader --env=NEO4J_ACCEPT_LICENSE_AGREEMENT=yes neo4j:${{ env.NEO4J_ENTERPRISE_VERSION }} &
163
  - name: Wait for database to be ready
164
  uses: iFaxity/wait-on-action@v1
165
  with:
 
171
  python3 .github/load_ancient_greek.py
172
  python3 .github/load_latin.py
173
  env:
174
+ NEO4J_URI: ${{ env.NEO4J_URI }}
175
+ NEO4J_DATABASE: ${{ env.NEO4J_DATABASE }}
176
+ NEO4J_USERNAME: ${{ env.NEO4J_USERNAME }}
177
+ NEO4J_PASSWORD: ${{ env.NEO4J_PASSWORD }}
178
  - name: Copy over data onto host
179
  run: docker cp data-loader:/data .
180
  - name: Test image build
 
212
  - uses: actions/checkout@v3
213
  with:
214
  fetch-depth: 0
215
+ - name: Set up Python ${{ env.PYTHON_VERSION }}
216
  uses: actions/setup-python@v4
217
  with:
218
+ python-version: ${{ env.PYTHON_VERSION }}
219
  - name: Cleanup
220
  run: |
221
  pip3 install --upgrade --force-reinstall wilhelm-python-sdk
 
252
  - uses: actions/checkout@v3
253
  with:
254
  fetch-depth: 0
255
+ - name: Set up Python ${{ env.PYTHON_VERSION }}
256
  uses: actions/setup-python@v4
257
  with:
258
+ python-version: ${{ env.PYTHON_VERSION }}
259
  - name: Load ${{ matrix.language.name }}
260
  run: |
261
  pip3 install --upgrade --force-reinstall wilhelm-python-sdk
README.md CHANGED
@@ -28,6 +28,7 @@ Wilhelm Vocabulary
28
  - [Declension Template](#declension-template)
29
  - [Ancient Greek](#ancient-greek)
30
  - [Diacritic Mark Convention](#diacritic-mark-convention)
 
31
  - [Noun Declension](#noun-declension-1)
32
  - [Adjective Declension](#adjective-declension)
33
  - [Verb Conjugation](#verb-conjugation)
@@ -296,6 +297,33 @@ In fact, it is called the [_medium diacritics_](https://lsj.gr/wiki/ἀγαθό
296
  [Wiktionary uses full diacritics](https://en.wiktionary.org/wiki/ἀγαθός#Declension), including the
297
  [breve diacritic mark](https://en.wikipedia.org/wiki/Breve); we don't do that.
298
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
299
  #### Noun Declension
300
 
301
  The vocabulary entry for each noun consists of its nominative and genitive forms, an article which indicates the noun's
 
28
  - [Declension Template](#declension-template)
29
  - [Ancient Greek](#ancient-greek)
30
  - [Diacritic Mark Convention](#diacritic-mark-convention)
31
+ - [Pronoun](#pronoun)
32
  - [Noun Declension](#noun-declension-1)
33
  - [Adjective Declension](#adjective-declension)
34
  - [Verb Conjugation](#verb-conjugation)
 
297
  [Wiktionary uses full diacritics](https://en.wiktionary.org/wiki/ἀγαθός#Declension), including the
298
  [breve diacritic mark](https://en.wikipedia.org/wiki/Breve); we don't do that.
299
 
300
+ #### Pronoun
301
+
302
+ The source of pronouns and their declensions come from the following sources
303
+
304
+ - [Greek Core Vocabulary of Dickinson College](https://dcc.dickinson.edu/greek-core-list)
305
+ - [Ancient Greek for Everyone, Pronouns: Part I](https://pressbooks.pub/ancientgreek/chapter/11/)
306
+ - [Ancient Greek for Everyone, Pronouns: Part II](https://pressbooks.pub/ancientgreek/chapter/12/)
307
+ - [Ancient Greek for Everyone, Pronouns: Part III](https://pressbooks.pub/ancientgreek/chapter/25/)
308
+ - [Ancient Greek for Everyone, Pronouns: Part IV](https://pressbooks.pub/ancientgreek/chapter/26/)
309
+ - Wiktionary
310
+
311
+ > [!TIP]
312
+ >
313
+ > More grammar about pronouns can be found in these great articles from _Ancient Greek for Everyone_
314
+
315
+ The declension table of a pronoun follows:
316
+
317
+ ```yaml
318
+ declension:
319
+ - ["", singular, plural]
320
+ - [nominative, ████████, ██████]
321
+ - [genitive, ████████, ██████]
322
+ - [dative, ████████, ██████]
323
+ - [accusative, ████████, ██████]
324
+ - [vocative, N/A, N/A ]
325
+ ```
326
+
327
  #### Noun Declension
328
 
329
  The vocabulary entry for each noun consists of its nominative and genitive forms, an article which indicates the noun's
ancient-greek.yaml CHANGED
@@ -1,3 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  vocabulary:
2
  - term: ὁ
3
  definition: (definite article, masculine) the
@@ -122,6 +136,99 @@ vocabulary:
122
  - [dative, τῷδε, τοῖσδε]
123
  - [accusative, τόδε, τάδε ]
124
  - [vocative, N/A, N/A ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
  - term: ἐκεῖνος
126
  definition: (demonstrative pronoun, masculine) that
127
  declension:
@@ -319,6 +426,162 @@ vocabulary:
319
  - [dative, ᾧτινι, οἷστισι]
320
  - [accusative, ὅ τι, ἅτινα ]
321
  - [vocative, N/A, N/A]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
322
  - term: ἐγώ
323
  definition: I
324
  declension:
@@ -425,8 +688,6 @@ vocabulary:
425
  definition: on the one hand ... on the other hand (often untranslated)
426
  - term: εἰμί, ἔσομαι, ἦν, εἶναι
427
  definition: to be, exist
428
- - term: οὗτος αὕτη τοῦτο
429
- definition: this, these
430
  - term: ἤ
431
  definition:
432
  - or
@@ -513,11 +774,6 @@ vocabulary:
513
  - (prep.) because of
514
  - term: ἀλλά
515
  definition: (conj.) but
516
- - term: πᾶς πᾶσα πᾶν
517
- definition:
518
- - every,
519
- - all,
520
- - whole
521
  - term: ἔχω
522
  definition:
523
  - to have,
@@ -578,10 +834,6 @@ vocabulary:
578
  definition: big, great, powerful
579
  - term: οὐδέ
580
  definition: and not, but not, nor; οὐδέ...οὐδέ not even...nor yet
581
- - term: τοιοῦτος τοιαύτη τοιοῦτο
582
- definition: such, of such a sort
583
- - term: οὐδείς οὐδεμία οὐδέν
584
- definition: no one, nothing
585
  - term: εἶπον
586
  definition: I said, I spoke, 2 aor. → λέγω, φημί
587
  - term: ἀγαθός -ή -όν
@@ -603,8 +855,6 @@ vocabulary:
603
  - indeed
604
  - term: πόλις πόλεως, ἡ
605
  definition: city
606
- - term: εἷς μία ἕν
607
- definition: one
608
  - term: ἵημι
609
  definition:
610
  - to put in motion
@@ -694,8 +944,6 @@ vocabulary:
694
  definition: day
695
  - term: φύω, φύσω, ἔφυσα
696
  definition: bring forth, produce, beget; 2 aor. ἔφυν grew, pf. πέφυκα be by nature
697
- - term: ἅπας ἅπασα ἅπαν
698
- definition: all together
699
  - term: ὅμοιος ὁμοία ὅμοιον
700
  definition: like, resembling (+dat.)
701
  - term: νῦν, νυνί
@@ -746,8 +994,6 @@ vocabulary:
746
  definition: carry, bring, fetch; carry off or away; φέρε come now, well
747
  - term: ψυχή ψυχῆς, ἡ
748
  definition: breath, life, soul
749
- - term: μηδείς μηδεμία μηδέν
750
- definition: no one, nothing
751
  - term: αἴτιος αἰτία αἴτιον
752
  definition: responsible, guilty
753
  - term: πάλιν
@@ -860,8 +1106,6 @@ vocabulary:
860
  definition: suffer, experience, be affected in a certain way (+adv.)
861
  - term: πῶς
862
  definition: how?
863
- - term: τοσοῦτος -αύτη -οῦτο(ν)
864
- definition: so large, so much
865
  - term: σύν
866
  definition: with (+ dat. of accompaniment or means)
867
  - term: εἶτα
 
1
+ # Copyright Jiaqi Liu
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
  vocabulary:
16
  - term: ὁ
17
  definition: (definite article, masculine) the
 
136
  - [dative, τῷδε, τοῖσδε]
137
  - [accusative, τόδε, τάδε ]
138
  - [vocative, N/A, N/A ]
139
+ - term: οὗτος
140
+ definition: (demonstrative pronoun, masculine) this
141
+ declension:
142
+ - ["", singular, plural ]
143
+ - [nominative, οὗτος, οὗτοι ]
144
+ - [genitive, τούτου, τούτων ]
145
+ - [dative, τούτῳ, τούτοις]
146
+ - [accusative, τοῦτον, τούτους]
147
+ - [vocative, N/A, N/A ]
148
+ - term: αὕτη
149
+ definition: (demonstrative pronoun, feminine) this
150
+ declension:
151
+ - ["", singular, plural ]
152
+ - [nominative, αὕτη, αὗται ]
153
+ - [genitive, ταύτης, τούτων ]
154
+ - [dative, ταύτῃ, ταύταις]
155
+ - [accusative, ταύτην, ταύτας ]
156
+ - [vocative, N/A, N/A ]
157
+ - term: τοῦτο
158
+ definition: (demonstrative pronoun, neuter) this
159
+ declension:
160
+ - ["", singular, plural ]
161
+ - [nominative, τοῦτο, ταῦτα ]
162
+ - [genitive, τούτου, τούτων ]
163
+ - [dative, τούτῳ, τούτοις]
164
+ - [accusative, τοῦτο, ταῦτα ]
165
+ - [vocative, N/A, N/A ]
166
+ - term: τοιοῦτος
167
+ definition:
168
+ - (demonstrative pronoun, masculine) such
169
+ - (demonstrative pronoun, masculine) of such a sort
170
+ declension:
171
+ - ["", singular, plural ]
172
+ - [nominative, τοιοῦτος, τοιοῦτοι ]
173
+ - [genitive, τοιούτου, τοιούτων ]
174
+ - [dative, τοιούτῳ, τοιούτοις]
175
+ - [accusative, τοιοῦτον, τοιούτους]
176
+ - [vocative, N/A, N/A ]
177
+ - term: τοιαύτη
178
+ definition:
179
+ - (demonstrative pronoun, feminine) such
180
+ - (demonstrative pronoun, masculine) of such a sort
181
+ declension:
182
+ - ["", singular, plural ]
183
+ - [nominative, τοιαύτη, τοιαῦται ]
184
+ - [genitive, τοιαύτης, τοιούτων ]
185
+ - [dative, τοιαύτῃ, τοιαύταις]
186
+ - [accusative, τοιαύτην, τοιαύτας ]
187
+ - [vocative, N/A, N/A ]
188
+ - term: τοιοῦτο
189
+ definition:
190
+ - (demonstrative pronoun, neuter) such
191
+ - (demonstrative pronoun, masculine) of such a sort
192
+ declension:
193
+ - ["", singular, plural ]
194
+ - [nominative, τοιοῦτο, τοιαῦτα ]
195
+ - [genitive, τοιούτου, τοιούτων ]
196
+ - [dative, τοιούτῳ, τοιούτοις]
197
+ - [accusative, τοιοῦτο, τοιαῦτα ]
198
+ - [vocative, N/A, N/A ]
199
+ - term: τοσοῦτος
200
+ definition:
201
+ - (demonstrative pronoun, masculine) so large
202
+ - (demonstrative pronoun, masculine) so much
203
+ declension:
204
+ - ["", singular, plural ]
205
+ - [nominative, τοσοῦτος, τοσοῦτοι ]
206
+ - [genitive, τοσούτου, τοσούτων ]
207
+ - [dative, τοσούτῳ, τοσούτοις]
208
+ - [accusative, τοσοῦτον, τοσούτους]
209
+ - [vocative, N/A, N/A ]
210
+ - term: τοσαύτη
211
+ definition:
212
+ - (demonstrative pronoun, feminine) so large
213
+ - (demonstrative pronoun, feminine) so much
214
+ declension:
215
+ - ["", singular, plural ]
216
+ - [nominative, τοσαύτη, τοσαῦται ]
217
+ - [genitive, τοσαύτης, τοσούτων ]
218
+ - [dative, τοσαύτῃ, τοσαύταις]
219
+ - [accusative, τοσαύτην, τοσαύτας ]
220
+ - [vocative, N/A, N/A ]
221
+ - term: τοσοῦτο
222
+ definition:
223
+ - (demonstrative pronoun, neuter) so large
224
+ - (demonstrative pronoun, neuter) so much
225
+ declension:
226
+ - ["", singular, plural ]
227
+ - [nominative, τοσοῦτο, τοσαῦτα ]
228
+ - [genitive, τοσούτου, τοσούτων ]
229
+ - [dative, τοσούτῳ, τοσούτοις]
230
+ - [accusative, τοσοῦτο, τοσαῦτα ]
231
+ - [vocative, N/A, N/A ]
232
  - term: ἐκεῖνος
233
  definition: (demonstrative pronoun, masculine) that
234
  declension:
 
426
  - [dative, ᾧτινι, οἷστισι]
427
  - [accusative, ὅ τι, ἅτινα ]
428
  - [vocative, N/A, N/A]
429
+ - term: πᾶς
430
+ definition:
431
+ - (demonstrative pronoun, masculine) every,
432
+ - (demonstrative pronoun, masculine) all,
433
+ - (demonstrative pronoun, masculine) whole
434
+ declension:
435
+ - ["", singular, plural]
436
+ - [nominative, πᾶς, πάντες]
437
+ - [genitive, παντός, πάντων]
438
+ - [dative, παντί, πᾶσι ]
439
+ - [accusative, πάντα, πάντας]
440
+ - [vocative, N/A, N/A ]
441
+ - term: πᾶσα
442
+ definition:
443
+ - (demonstrative pronoun, masculine) every,
444
+ - (demonstrative pronoun, masculine) all,
445
+ - (demonstrative pronoun, masculine) whole
446
+ declension:
447
+ - ["", singular, plural]
448
+ - [nominative, πᾶσα, πᾶσαι ]
449
+ - [genitive, πάσης, πασῶν ]
450
+ - [dative, πάσῃ, πάσαις]
451
+ - [accusative, πᾶσαν, πάσας ]
452
+ - [vocative, N/A, N/A ]
453
+ - term: πᾶν
454
+ definition:
455
+ - (demonstrative pronoun, masculine) every,
456
+ - (demonstrative pronoun, masculine) all,
457
+ - (demonstrative pronoun, masculine) whole
458
+ declension:
459
+ - ["", singular, plural]
460
+ - [nominative, πᾶν, πάντα ]
461
+ - [genitive, παντός, πάντων]
462
+ - [dative, παντί, πᾶσι ]
463
+ - [accusative, πᾶν, πάντα ]
464
+ - [vocative, N/A, N/A ]
465
+ - term: ἅπας
466
+ definition: (demonstrative pronoun, masculine) all together
467
+ declension:
468
+ - ["", singular, plural ]
469
+ - [nominative, ἅπας, ἅπαντες]
470
+ - [genitive, ἅπαντος, ἁπάντων]
471
+ - [dative, ἅπαντι, ἅπασι ]
472
+ - [accusative, ἅπαντα, ἅπαντας]
473
+ - [vocative, N/A, N/A ]
474
+ - term: ἅπασα
475
+ definition: (demonstrative pronoun, masculine) all together
476
+ declension:
477
+ - ["", singular, plural ]
478
+ - [nominative, ἅπασα, ἅπασαι ]
479
+ - [genitive, ἁπάσης, ἁπασῶν ]
480
+ - [dative, ἁπάσῃ, ἁπάσαις]
481
+ - [accusative, ἅπασαν, ἁπάσας ]
482
+ - [vocative, N/A, N/A ]
483
+ - term: ἅπαν
484
+ definition: (demonstrative pronoun, masculine) all together
485
+ declension:
486
+ - ["", singular, plural ]
487
+ - [nominative, ἅπαν, ἅπαντα ]
488
+ - [genitive, ἅπαντος, ἁπάντων]
489
+ - [dative, ἅπαντι, ἅπασι ]
490
+ - [accusative, ἅπαν, ἅπαντα ]
491
+ - [vocative, N/A, N/A ]
492
+ - term: εἷς
493
+ definition: (demonstrative pronoun, masculine) one
494
+ declension:
495
+ - ["", singular, plural]
496
+ - [nominative, εἷς, N/A ]
497
+ - [genitive, ἑνός, N/A ]
498
+ - [dative, ἑνί, N/A ]
499
+ - [accusative, ἕνα, N/A ]
500
+ - [vocative, N/A, N/A ]
501
+ - term: μία
502
+ definition: (demonstrative pronoun, masculine) one
503
+ declension:
504
+ - ["", singular, plural]
505
+ - [nominative, μία, N/A ]
506
+ - [genitive, μιᾶς, N/A ]
507
+ - [dative, μιᾷ, N/A ]
508
+ - [accusative, μίαν, N/A ]
509
+ - [vocative, N/A, N/A ]
510
+ - term: ἕν
511
+ definition: (demonstrative pronoun, masculine) one
512
+ declension:
513
+ - ["", singular, plural]
514
+ - [nominative, ἕν, N/A ]
515
+ - [genitive, ἑνός, N/A ]
516
+ - [dative, ἑνί, N/A ]
517
+ - [accusative, ἕν, N/A ]
518
+ - [vocative, N/A, N/A ]
519
+ - term: οὐδείς
520
+ definition:
521
+ - (demonstrative pronoun, masculine) no one
522
+ - (demonstrative pronoun, masculine) nothing
523
+ declension:
524
+ - ["", singular, plural]
525
+ - [nominative, οὐδείς, N/A ]
526
+ - [genitive, οὐδενός, N/A ]
527
+ - [dative, οὐδενί, N/A ]
528
+ - [accusative, οὐδένα, N/A ]
529
+ - [vocative, N/A, N/A ]
530
+ - term: οὐδεμία
531
+ definition:
532
+ - (demonstrative pronoun, masculine) no one
533
+ - (demonstrative pronoun, masculine) nothing
534
+ declension:
535
+ - ["", singular, plural]
536
+ - [nominative, οὐδεμία, N/A ]
537
+ - [genitive, οὐδεμιᾶς, N/A ]
538
+ - [dative, οὐδεμιᾷ, N/A ]
539
+ - [accusative, οὐδεμίαν, N/A ]
540
+ - [vocative, N/A, N/A ]
541
+ - term: οὐδέν
542
+ definition:
543
+ - (demonstrative pronoun, masculine) no one
544
+ - (demonstrative pronoun, masculine) nothing
545
+ declension:
546
+ - ["", singular, plural]
547
+ - [nominative, οὐδέν, N/A ]
548
+ - [genitive, οὐδενός, N/A ]
549
+ - [dative, οὐδενί, N/A ]
550
+ - [accusative, οὐδέν, N/A ]
551
+ - [vocative, N/A, N/A ]
552
+ - term: μηδείς
553
+ definition:
554
+ - (demonstrative pronoun, masculine) no one
555
+ - (demonstrative pronoun, masculine) nothing
556
+ declension:
557
+ - ["", singular, plural]
558
+ - [nominative, μηδείς, N/A ]
559
+ - [genitive, μηδενός, N/A ]
560
+ - [dative, μηδενί, N/A ]
561
+ - [accusative, μηδένα, N/A ]
562
+ - [vocative, N/A, N/A ]
563
+ - term: μηδεμία
564
+ definition:
565
+ - (demonstrative pronoun, masculine) no one
566
+ - (demonstrative pronoun, masculine) nothing
567
+ declension:
568
+ - ["", singular, plural]
569
+ - [nominative, μηδεμία, N/A ]
570
+ - [genitive, μηδεμιᾶς, N/A ]
571
+ - [dative, μηδεμιᾷ, N/A ]
572
+ - [accusative, μηδεμίαν, N/A ]
573
+ - [vocative, N/A, N/A ]
574
+ - term: μηδέν
575
+ definition:
576
+ - (demonstrative pronoun, masculine) no one
577
+ - (demonstrative pronoun, masculine) nothing
578
+ declension:
579
+ - ["", singular, plural]
580
+ - [nominative, μηδέν, N/A ]
581
+ - [genitive, μηδενός, N/A ]
582
+ - [dative, μηδενί, N/A ]
583
+ - [accusative, μηδέν, N/A ]
584
+ - [vocative, N/A, N/A ]
585
  - term: ἐγώ
586
  definition: I
587
  declension:
 
688
  definition: on the one hand ... on the other hand (often untranslated)
689
  - term: εἰμί, ἔσομαι, ἦν, εἶναι
690
  definition: to be, exist
 
 
691
  - term: ἤ
692
  definition:
693
  - or
 
774
  - (prep.) because of
775
  - term: ἀλλά
776
  definition: (conj.) but
 
 
 
 
 
777
  - term: ἔχω
778
  definition:
779
  - to have,
 
834
  definition: big, great, powerful
835
  - term: οὐδέ
836
  definition: and not, but not, nor; οὐδέ...οὐδέ not even...nor yet
 
 
 
 
837
  - term: εἶπον
838
  definition: I said, I spoke, 2 aor. → λέγω, φημί
839
  - term: ἀγαθός -ή -όν
 
855
  - indeed
856
  - term: πόλις πόλεως, ἡ
857
  definition: city
 
 
858
  - term: ἵημι
859
  definition:
860
  - to put in motion
 
944
  definition: day
945
  - term: φύω, φύσω, ἔφυσα
946
  definition: bring forth, produce, beget; 2 aor. ἔφυν grew, pf. πέφυκα be by nature
 
 
947
  - term: ὅμοιος ὁμοία ὅμοιον
948
  definition: like, resembling (+dat.)
949
  - term: νῦν, νυνί
 
994
  definition: carry, bring, fetch; carry off or away; φέρε come now, well
995
  - term: ψυχή ψυχῆς, ἡ
996
  definition: breath, life, soul
 
 
997
  - term: αἴτιος αἰτία αἴτιον
998
  definition: responsible, guilty
999
  - term: πάλιν
 
1106
  definition: suffer, experience, be affected in a certain way (+adv.)
1107
  - term: πῶς
1108
  definition: how?
 
 
1109
  - term: σύν
1110
  definition: with (+ dat. of accompaniment or means)
1111
  - term: εἶτα
german.yaml CHANGED
@@ -1,3 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  vocabulary:
2
  - term: dieser
3
  definition:
 
1
+ # Copyright Jiaqi Liu
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
  vocabulary:
16
  - term: dieser
17
  definition:
korean.yaml CHANGED
@@ -1,3 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  vocabulary:
2
  - term: -ㅂ니다/-습니다
3
  definition: |
 
1
+ # Copyright Jiaqi Liu
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
  vocabulary:
16
  - term: -ㅂ니다/-습니다
17
  definition: |
latin.yaml CHANGED
@@ -1,3 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  vocabulary:
2
  - term: ā ab abs
3
  definition: from, by (+abl.)
 
1
+ # Copyright Jiaqi Liu
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
  vocabulary:
16
  - term: ā ab abs
17
  definition: from, by (+abl.)