QubitPi commited on
Commit
5eea884
1 Parent(s): 1cab1d4

Add German conjugation instruction

Browse files
Files changed (2) hide show
  1. README.md +111 -67
  2. german.yaml +8 -1
README.md CHANGED
@@ -5,23 +5,57 @@ Wilhelm Vocabulary
5
  ![GitHub workflow status badge][GitHub workflow status]
6
  [![Apache License Badge]](https://www.apache.org/licenses/LICENSE-2.0)
7
 
8
- - [Wilhelm Vocabulary](#wilhelm-vocabulary)
9
- - [YAML Schema](#yaml-schema)
10
- - [German](#german)
11
- - [Korean](#korean)
12
- - [Classical Hebrew (Coming Soon)](#classical-hebrew-coming-soon)
13
- - [Ancient Greek](#ancient-greek)
14
- - [Latin](#latin)
15
- - [License](#license)
16
-
17
  The data that serves [wilhelmlang.com](https://wilhelmlang.com/). They are written in YAML format, because
18
 
19
  1. it is machine-readable so that it can be consumed quickly in data pipelines
20
  2. it is human-readable and, thus, easy to modify
21
  3. it supports multi-lines value which is very handy for data of natural languages
22
 
23
- YAML Schema
24
- -----------
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
  > [!TIP]
27
  >
@@ -53,76 +87,83 @@ YAML Schema
53
  > __Visualzing synonyms this way presents a big advantage to human brain__ who is exceedingly good at memorizing
54
  > patterns
55
 
56
- ### [German](./german.yaml)
 
 
57
 
58
  ```yaml
59
- vocabulary:
60
- - term: string
61
- definition: list
62
- plural: string
63
- declension/conjugation: application-specific table
 
 
 
64
  ```
65
 
66
- - The `conjugation` is the inflection paradigm for a German verb and `declension` the inflection for nouns and
67
- adjectives. Only one of the two is present for a term.
68
- - The type of the word can be inferred using the following rule
 
 
 
 
 
69
 
70
- - `term` with a _definite article_ of __der__/__die__/__das__ signifies a __noun__. For instance
 
 
 
71
 
72
- ```yaml
73
- - term: die Wissenschaft
74
- definition: the Science
75
- ```
 
76
 
77
- - Those with `conjugation` field denotes a __verb__; its definition also begins with an _indefinite form_, i.e.
78
- "to ..."
79
- - The rests are explicitly stated in the `definition` field. For example,
 
 
80
 
81
- ```yaml
82
- - term: ob
83
- definition:
84
- - (conj.) if
85
- - (conj.) whether
86
- ```
87
 
88
- means "ob" is a **conjunction** in this case and
 
 
 
89
 
90
- ```yaml
91
- - term: denn
92
- definition:
93
- - (adv.) then, thus
94
- - (conj.) because
95
- ```
96
 
97
- tells that "denn" can be __adverb__ or __conjunction__
 
98
 
99
- - The declension/conjugation table employees an
100
- [application-specific YAML](https://stackoverflow.com/q/30894438/14312712) that looks like the following:
101
 
102
- ```yaml
103
- - term: ein
104
- definition: (article) a, an
105
- declension:
106
- - ["", masculine, feminine, neuter, plural]
107
- - [nominative, ein, eine, ein, N/A ]
108
- - [genitive, eines, einer, eines, N/A ]
109
- - [dative, einem, einer, einem, N/A ]
110
- - [accusative, einen, eine, ein, N/A ]
111
- ```
112
 
113
- The declension table is equivalent to
114
 
115
- | | masculine | feminine | neuter | plural |
116
- |:--------------:|:---------:|:--------:|:------:|:------:|
117
- | __nominative__ | ein | eine | ein | N/A |
118
- | __genitive__ | eines | einer | eines | N/A |
119
- | __dative__ | einem | einer | einem | N/A |
120
- | __accusative__ | einen | eine | ein | N/A |
121
 
122
- __The declension/conjugation tables for all vocabularies are sourced from
123
- [Wiktionary](https://en.wiktionary.org/wiki/ein#Declension_2)__
 
 
124
 
125
- ### [Korean](./korean.yaml)
 
126
 
127
  中国人学习韩语有先天优势,加之韩语本身也是一门相当简单的语言,所以这里将语法和词汇合并在一起;
128
  每一项也只由 `term`(韩)和 `definition`(中)组成,
@@ -135,12 +176,14 @@ vocabulary:
135
 
136
  不用费太多功夫记牢简单的语法和词汇,剩下的就是拿韩语字幕剧不停练习听说读写既成。
137
 
138
- ### Classical Hebrew (Coming Soon)
 
139
 
140
  The vocabulary is presented to help read and understand [Biblical Hebrew](https://mechon-mamre.org/p/pt/pt00.htm#mp3). A
141
  [complementary audio](https://mechon-mamre.org/p/pt/ptmp3prq.htm) helps well with the pronunciation.
142
 
143
- ### [Ancient Greek](./greek.yaml)
 
144
 
145
  ```yaml
146
  vocabulary:
@@ -148,7 +191,8 @@ vocabulary:
148
  definition: list
149
  ```
150
 
151
- ### [Latin](./latin.yaml)
 
152
 
153
  ```yaml
154
  vocabulary:
 
5
  ![GitHub workflow status badge][GitHub workflow status]
6
  [![Apache License Badge]](https://www.apache.org/licenses/LICENSE-2.0)
7
 
 
 
 
 
 
 
 
 
 
8
  The data that serves [wilhelmlang.com](https://wilhelmlang.com/). They are written in YAML format, because
9
 
10
  1. it is machine-readable so that it can be consumed quickly in data pipelines
11
  2. it is human-readable and, thus, easy to modify
12
  3. it supports multi-lines value which is very handy for data of natural languages
13
 
14
+ [German](./german.yaml)
15
+ -----------------------
16
+
17
+ ### YAML Schema
18
+
19
+ ```yaml
20
+ vocabulary:
21
+ - term: string
22
+ definition: list
23
+ plural: string
24
+ declension/conjugation: application-specific table
25
+ ```
26
+
27
+ - The `conjugation` is the inflection paradigm for a German verb and `declension` the inflection for nouns and
28
+ adjectives. Only one of the two is present for a term.
29
+ - The type of the word can be inferred using the following rule
30
+
31
+ - `term` with a _definite article_ of __der__/__die__/__das__ signifies a __noun__. For instance
32
+
33
+ ```yaml
34
+ - term: die Wissenschaft
35
+ definition: the Science
36
+ ```
37
+
38
+ - Those with `conjugation` field denotes a __verb__; its definition also begins with an _indefinite form_, i.e.
39
+ "to ..."
40
+ - The rests are explicitly stated in the `definition` field. For example,
41
+
42
+ ```yaml
43
+ - term: ob
44
+ definition:
45
+ - (conj.) if
46
+ - (conj.) whether
47
+ ```
48
+
49
+ means "ob" is a **conjunction** in this case and
50
+
51
+ ```yaml
52
+ - term: denn
53
+ definition:
54
+ - (adv.) then, thus
55
+ - (conj.) because
56
+ ```
57
+
58
+ tells that "denn" can be __adverb__ or __conjunction__
59
 
60
  > [!TIP]
61
  >
 
87
  > __Visualzing synonyms this way presents a big advantage to human brain__ who is exceedingly good at memorizing
88
  > patterns
89
 
90
+ ### German Noun Declension
91
+
92
+ The declension table employees an [application-specific YAML](https://stackoverflow.com/q/30894438/14312712) that looks like the following:
93
 
94
  ```yaml
95
+ - term: ein
96
+ definition: (article) a, an
97
+ declension:
98
+ - ["", masculine, feminine, neuter, plural]
99
+ - [nominative, ein, eine, ein, N/A ]
100
+ - [genitive, eines, einer, eines, N/A ]
101
+ - [dative, einem, einer, einem, N/A ]
102
+ - [accusative, einen, eine, ein, N/A ]
103
  ```
104
 
105
+ The declension table above is equivalent to
106
+
107
+ | | masculine | feminine | neuter | plural |
108
+ |:--------------:|:---------:|:--------:|:------:|:------:|
109
+ | __nominative__ | ein | eine | ein | N/A |
110
+ | __genitive__ | eines | einer | eines | N/A |
111
+ | __dative__ | einem | einer | einem | N/A |
112
+ | __accusative__ | einen | eine | ein | N/A |
113
 
114
+ > [!NOTE]
115
+ > - A list under `declension` is a table row
116
+ > - All rows have the same number of columns
117
+ > - Each element of the list corresponds to a table cell
118
 
119
+ > [!TIP]
120
+ > __The declension tables for all nouns are sourced from
121
+ > [Wiktionary](https://en.wiktionary.org/wiki/ein#Declension_2)__
122
+
123
+ ### German Verb Conjugation
124
 
125
+ There are __3__ persons, __2__ numbers, and __4__ moods (indicative, conditional, imperative and subjunctive) to
126
+ consider in conjugation. There are __6__ tenses in German: the present and past are conjugated, and there are four
127
+ compound tenses. There are two categories of verbs in German:
128
+ [weak and strong](https://en.wikipedia.org/wiki/Germanic_strong_verb)[^1]. In addition,
129
+ [strong verbs are grouped into 7 "classes"](https://en.wikipedia.org/wiki/Germanic_strong_verb#Strong_verb_classes)
130
 
131
+ [^1]: https://en.wikipedia.org/wiki/German_verbs#Conjugation
 
 
 
 
 
132
 
133
+ The conjugation table of German verb on Wiktionary is hard to interpret as a German language learner. It does, however,
134
+ presents a very good Philology reference. For example, it tells us which of the 7 "classes" a strong verb belongs to.
135
+ __We, therefore, leave the Wiktionary links to the conjugation table of that verb for data processing in the future__,
136
+ for example,
137
 
138
+ ```yaml
139
+ - term: aufwachsen
140
+ definition: to grow up
141
+ conjugation: https://en.wiktionary.org/wiki/aufwachsen#Conjugation
142
+ ```
 
143
 
144
+ and advise user to employ a much more practical method to learn daily conjugation as follows. We take __aufwachsen__ as
145
+ an example.
146
 
147
+ > [!IMPORTANT]
148
+ > I'm not advertising for any organizations. I'm simply sharing good resources.
149
 
150
+ [Netzverb Dictionary](https://www.verbformen.com/) is the best German dictionary _targeting the vocabulary inflection_.
151
+ Search for "aufwachsen" and we will see much more intuitive conjugation tables listed. This pretty much serves our
152
+ needs, but what makes Netzverb unpenetrable by other dictionaries is that _every_ verb comes with
 
 
 
 
 
 
 
153
 
154
+ 1. [A printable version that looks much better than the browser's Control+P export](https://www.verbformen.com/conjugation/aufwachsen.pdf)
155
 
156
+ - A "Sentences with German verb aufwachsen" section with a
157
+ [link](https://www.verbformen.com/conjugation/examples/aufwachsen.htm) that offer a fruitful number of conjugated
158
+ examples that get us familiar with the inflections of the verb
 
 
 
159
 
160
+ 2. [An on-the-fly generated flashcard sheet](https://www.verbformen.com/conjugation/worksheets-exercises/lernkarten/aufwachsen.pdf)
161
+ which allows us to make a better usage of our random free time
162
+ 3. [A YouTube video that offers audios of almost every conjugated form](https://www.youtube.com/watch?v=LCtUrSn030A),
163
+ which helps with conjugated pronunciations.
164
 
165
+ [Korean](./korean.yaml)
166
+ -----------------------
167
 
168
  中国人学习韩语有先天优势,加之韩语本身也是一门相当简单的语言,所以这里将语法和词汇合并在一起;
169
  每一项也只由 `term`(韩)和 `definition`(中)组成,
 
176
 
177
  不用费太多功夫记牢简单的语法和词汇,剩下的就是拿韩语字幕剧不停练习听说读写既成。
178
 
179
+ Classical Hebrew (Coming Soon)
180
+ ------------------------------
181
 
182
  The vocabulary is presented to help read and understand [Biblical Hebrew](https://mechon-mamre.org/p/pt/pt00.htm#mp3). A
183
  [complementary audio](https://mechon-mamre.org/p/pt/ptmp3prq.htm) helps well with the pronunciation.
184
 
185
+ [Ancient Greek](./greek.yaml)
186
+ -----------------------------
187
 
188
  ```yaml
189
  vocabulary:
 
191
  definition: list
192
  ```
193
 
194
+ [Latin](./latin.yaml)
195
+ ---------------------
196
 
197
  ```yaml
198
  vocabulary:
german.yaml CHANGED
@@ -538,7 +538,7 @@ vocabulary:
538
  - term: die Kirche
539
  definition: the church
540
  - term: der Supermarkt
541
- definition: supermarket
542
  declension:
543
  - ["", singular, singular, singular, plural, plural ]
544
  - ["", indef., def., noun, def., noun ]
@@ -915,6 +915,13 @@ vocabulary:
915
  definition: leave here
916
  - term: Schon gut.
917
  definition: It's okay
 
 
 
 
 
 
 
918
  - term: der Volksgenosse
919
  definition: countryman
920
  declension: https://www.verbformen.com/?w=Volksgenosse
 
538
  - term: die Kirche
539
  definition: the church
540
  - term: der Supermarkt
541
+ definition: the supermarket
542
  declension:
543
  - ["", singular, singular, singular, plural, plural ]
544
  - ["", indef., def., noun, def., noun ]
 
915
  definition: leave here
916
  - term: Schon gut.
917
  definition: It's okay
918
+ - term: aufwachsen
919
+ definition: to grow up
920
+ conjugation: https://en.wiktionary.org/wiki/aufwachsen#Conjugation
921
+
922
+
923
+
924
+
925
  - term: der Volksgenosse
926
  definition: countryman
927
  declension: https://www.verbformen.com/?w=Volksgenosse