QubitPi commited on
Commit
d057287
1 Parent(s): 45b0092
Files changed (2) hide show
  1. README.md +22 -35
  2. german.yaml +12 -12
README.md CHANGED
@@ -11,17 +11,16 @@ Wilhelm Vocabulary
11
  - [Data Pipeline](#data-pipeline)
12
  - [How Data (Vocabulary) is Stored in a Graph Database](#how-data-vocabulary-is-stored-in-a-graph-database)
13
  - [Why Graph Database](#why-graph-database)
14
- - [Definition](#definition)
15
  - [Inflections](#inflections)
16
  - [Languages](#languages)
17
  - [German](#german)
18
- - [YAML Schema](#yaml-schema)
19
- - [German Declension](#german-declension)
20
- - [Noun Declension Templates](#noun-declension-templates)
21
  - [Masculine](#masculine)
22
  - [Feminine](#feminine)
23
  - [Neuter](#neuter)
24
- - [German (Attributive) Adjective Declension](#german-attributive-adjective-declension)
25
  - [German Conjugation](#german-conjugation)
26
  - [Ancient Greek](#ancient-greek)
27
  - [Diacritic Mark Convention](#diacritic-mark-convention)
@@ -123,30 +122,6 @@ Languages
123
 
124
  ### [German](./german.yaml)
125
 
126
-
127
-
128
- - Those with `conjugation` field denotes a __verb__; its definition also begins with an _indefinite form_, i.e.
129
- "to ..."
130
- - The rests are explicitly stated in the `definition` field. For example,
131
-
132
- ```yaml
133
- - term: ob
134
- definition:
135
- - (conj.) if
136
- - (conj.) whether
137
- ```
138
-
139
- means "ob" is a **conjunction** in this case and
140
-
141
- ```yaml
142
- - term: denn
143
- definition:
144
- - (adv.) then, thus
145
- - (conj.) because
146
- ```
147
-
148
- tells that "denn" can be __adverb__ or __conjunction__
149
-
150
  #### Noun Declension
151
 
152
  __Declension__ is the inflection for nouns and adjectives. The declension table employees an
@@ -246,15 +221,27 @@ following form:
246
 
247
  For example:
248
 
249
-
 
 
 
 
 
 
 
 
 
 
 
 
250
 
251
  > [!CAUTION]
252
  >
253
  > [Adjectival nouns](https://en.wikibooks.org/wiki/German/Grammar/Nouns/Adjectival_Nouns), however, do NOT follow the
254
  > template above. Instead, it uses [adjective declension table template](#attributive-adjective-declension)
255
- >
256
  > The definition of the adjectival nouns begins with "__(Adjectival nouns)__"`. For example:
257
- >
258
  > ```yaml
259
  > - term: der Kranker
260
  > definition: (Adjectival nouns) the sick person
@@ -281,7 +268,7 @@ For example:
281
  > - [dative, einem Kranken, N/A, N/A, (keinen) Kranken]
282
  > - [accusative, einen Kranken, N/A, N/A, (keine) Kranken]
283
  > ```
284
- >
285
  > Note that since "Kranker" is masculine, all feminine and neuter declensions are undefined and, thus, are marked with
286
  > "N/A".
287
 
@@ -401,8 +388,8 @@ Here is an example of the adjective declension for
401
 
402
  #### German Conjugation
403
 
404
- - The `conjugation` is the inflection paradigm for a German verb and `declension` the inflection for nouns and
405
- adjectives. Only one of the two is present for a term.
406
 
407
  There are __3__ persons, __2__ numbers, and __4__ moods (indicative, conditional, imperative and subjunctive) to
408
  consider in conjugation. There are __6__ tenses in German: the present and past are conjugated, and there are four
 
11
  - [Data Pipeline](#data-pipeline)
12
  - [How Data (Vocabulary) is Stored in a Graph Database](#how-data-vocabulary-is-stored-in-a-graph-database)
13
  - [Why Graph Database](#why-graph-database)
14
+ - [Base Schema](#base-schema)
15
  - [Inflections](#inflections)
16
  - [Languages](#languages)
17
  - [German](#german)
18
+ - [Noun Declension](#noun-declension)
19
+ - [Declension Templates](#declension-templates)
 
20
  - [Masculine](#masculine)
21
  - [Feminine](#feminine)
22
  - [Neuter](#neuter)
23
+ - [(Attributive) Adjective Declension](#attributive-adjective-declension)
24
  - [German Conjugation](#german-conjugation)
25
  - [Ancient Greek](#ancient-greek)
26
  - [Diacritic Mark Convention](#diacritic-mark-convention)
 
122
 
123
  ### [German](./german.yaml)
124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
  #### Noun Declension
126
 
127
  __Declension__ is the inflection for nouns and adjectives. The declension table employees an
 
221
 
222
  For example:
223
 
224
+ ```yaml
225
+ - term: der Gegenstand
226
+ definition:
227
+ - object
228
+ - thing
229
+ declension:
230
+ - ["", singular, singular, singular, plural, plural ]
231
+ - ["", indef., def., noun, def., noun ]
232
+ - [nominative, ein, der, Gegenstand, die, Gegenstände ]
233
+ - [genitive, eines, des, "Gegenstandes, Gegenstands", der, Gegenstände ]
234
+ - [dative, einem, dem, Gegenstand, den, Gegenständen]
235
+ - [accusative, einen, den, Gegenstand, die, Gegenstände ]
236
+ ```
237
 
238
  > [!CAUTION]
239
  >
240
  > [Adjectival nouns](https://en.wikibooks.org/wiki/German/Grammar/Nouns/Adjectival_Nouns), however, do NOT follow the
241
  > template above. Instead, it uses [adjective declension table template](#attributive-adjective-declension)
242
+ >
243
  > The definition of the adjectival nouns begins with "__(Adjectival nouns)__"`. For example:
244
+ >
245
  > ```yaml
246
  > - term: der Kranker
247
  > definition: (Adjectival nouns) the sick person
 
268
  > - [dative, einem Kranken, N/A, N/A, (keinen) Kranken]
269
  > - [accusative, einen Kranken, N/A, N/A, (keine) Kranken]
270
  > ```
271
+ >
272
  > Note that since "Kranker" is masculine, all feminine and neuter declensions are undefined and, thus, are marked with
273
  > "N/A".
274
 
 
388
 
389
  #### German Conjugation
390
 
391
+ The conjugation is the inflection paradigm for a German verb. Those with `conjugation` field denotes a __verb__; its
392
+ definition also begins with an _indefinite form_, i.e. "to ..."
393
 
394
  There are __3__ persons, __2__ numbers, and __4__ moods (indicative, conditional, imperative and subjunctive) to
395
  consider in conjugation. There are __6__ tenses in German: the present and past are conjugated, and there are four
german.yaml CHANGED
@@ -1977,12 +1977,12 @@ vocabulary:
1977
  - term: der Hut
1978
  definition: hat
1979
  declension:
1980
- - ["", singular, singular, singular, plural, plural]
1981
- - ["", indef., def., noun, def., noun ]
1982
- - [nominative, ein, der, Hut, die, Hüte ]
1983
- - [genitive, eines, des, "Hutes, Huts", der, Hüte ]
1984
- - [dative, einem, dem, Hut, den, Hüten ]
1985
- - [accusative, einen, den, Hut, die, Hüte ]
1986
  - term: die Hut
1987
  definition: the protection
1988
  declension:
@@ -2043,12 +2043,12 @@ vocabulary:
2043
  - term: der Mensch
2044
  definition: human
2045
  declension:
2046
- - ["", singular, singular, singular, plural, plural ]
2047
- - ["", indef., def., noun, def., noun ]
2048
- - [nominative, ein, der, Mensch, die, Menschen]
2049
- - [genitive, eines, des, Menschen, der, Menschen]
2050
- - [dative, einem, dem, Menschen, den, Menschen]
2051
- - [accusative, einen, den, Menschen, die, Menschen]
2052
  - term: sagen
2053
  definition: to say
2054
  - term: Das machen Sie auch, oder?
 
1977
  - term: der Hut
1978
  definition: hat
1979
  declension:
1980
+ - ["", singular, singular, singular, plural, plural]
1981
+ - ["", indef., def., noun, def., noun ]
1982
+ - [nominative, ein, der, Hut, die, Hüte ]
1983
+ - [genitive, eines, des, "Hutes, Huts", der, Hüte ]
1984
+ - [dative, einem, dem, Hut, den, Hüten ]
1985
+ - [accusative, einen, den, Hut, die, Hüte ]
1986
  - term: die Hut
1987
  definition: the protection
1988
  declension:
 
2043
  - term: der Mensch
2044
  definition: human
2045
  declension:
2046
+ - ["", singular, singular, singular, plural, plural ]
2047
+ - ["", indef., def., noun, def., noun ]
2048
+ - [nominative, ein, der, Mensch, die, Menschen]
2049
+ - [genitive, eines, des, Menschen, der, Menschen]
2050
+ - [dative, einem, dem, Menschen, den, Menschen]
2051
+ - [accusative, einen, den, Menschen, die, Menschen]
2052
  - term: sagen
2053
  definition: to say
2054
  - term: Das machen Sie auch, oder?