Simplify German noun declension table
Browse files- .github/workflows/ci-cd.yaml +1 -0
- README.md +8 -85
- german.yaml +0 -0
.github/workflows/ci-cd.yaml
CHANGED
@@ -55,6 +55,7 @@ jobs:
|
|
55 |
needs: cleanup-neo4j
|
56 |
runs-on: ubuntu-latest
|
57 |
strategy:
|
|
|
58 |
matrix:
|
59 |
language: [
|
60 |
{
|
|
|
55 |
needs: cleanup-neo4j
|
56 |
runs-on: ubuntu-latest
|
57 |
strategy:
|
58 |
+
fail-fast: false
|
59 |
matrix:
|
60 |
language: [
|
61 |
{
|
README.md
CHANGED
@@ -218,21 +218,19 @@ __Declension__ is the inflection for nouns and adjectives.
|
|
218 |
> __The declension tables for all nouns are sourced from
|
219 |
> [Wiktionary](https://en.wiktionary.org/wiki/Kaufmann#Declension)__
|
220 |
|
221 |
-
##### Declension
|
222 |
-
|
223 |
-
###### Masculine
|
224 |
|
225 |
`term` with a _definite article_ of __der__ signifies a __masculine noun__ which has a declension table template of the
|
226 |
following form:
|
227 |
|
228 |
```yaml
|
229 |
declension:
|
230 |
-
- ["", singular,
|
231 |
-
- ["",
|
232 |
-
- [nominative,
|
233 |
-
- [genitive,
|
234 |
-
- [dative,
|
235 |
-
- [accusative,
|
236 |
```
|
237 |
|
238 |
For example:
|
@@ -254,82 +252,7 @@ For example:
|
|
254 |
> [!CAUTION]
|
255 |
>
|
256 |
> [Adjectival nouns](https://en.wikibooks.org/wiki/German/Grammar/Nouns/Adjectival_Nouns), however, do NOT follow the
|
257 |
-
> template above.
|
258 |
-
>
|
259 |
-
> The definition of the adjectival nouns begins with "__(Adjectival nouns)__"`. For example:
|
260 |
-
>
|
261 |
-
> ```yaml
|
262 |
-
> - term: der Kranker
|
263 |
-
> definition: (Adjectival nouns) the sick person
|
264 |
-
> declension:
|
265 |
-
> strong declension (without article):
|
266 |
-
> - ["", singular, singular, singular, plural ]
|
267 |
-
> - ["", masculine, feminine, neuter, "" ]
|
268 |
-
> - [nominative, Kranker, N/A, N/A, Kranke ]
|
269 |
-
> - [genitive, Kranken, N/A, N/A, Kranker]
|
270 |
-
> - [dative, Krankem, N/A, N/A, Kranken]
|
271 |
-
> - [accusative, Kranken, N/A, N/A, Kranke ]
|
272 |
-
> weak declension (with definite article):
|
273 |
-
> - ["", singular, singular, singular, plural ]
|
274 |
-
> - ["", masculine, feminine, neuter, "" ]
|
275 |
-
> - [nominative, der Kranke, N/A, N/A, die Kranken]
|
276 |
-
> - [genitive, des Kranken, N/A, N/A, der Kranken]
|
277 |
-
> - [dative, dem Kranken, N/A, N/A, den Kranken]
|
278 |
-
> - [accusative, den Kranken, N/A, N/A, die Kranken]
|
279 |
-
> mixed declension (with indefinite article):
|
280 |
-
> - ["", singular, singular, singular, plural ]
|
281 |
-
> - ["", masculine, feminine, neuter, "" ]
|
282 |
-
> - [nominative, ein Kranker, N/A, N/A, (keine) Kranken]
|
283 |
-
> - [genitive, eines Kranken, N/A, N/A, (keiner) Kranken]
|
284 |
-
> - [dative, einem Kranken, N/A, N/A, (keinen) Kranken]
|
285 |
-
> - [accusative, einen Kranken, N/A, N/A, (keine) Kranken]
|
286 |
-
> ```
|
287 |
-
>
|
288 |
-
> Note that since "Kranker" is masculine, all feminine and neuter declensions are undefined and, thus, are marked with
|
289 |
-
> "N/A".
|
290 |
-
|
291 |
-
###### Feminine
|
292 |
-
|
293 |
-
`term` with a _definite article_ of __die__ signifies a __feminine noun__ which has a declension table template of the
|
294 |
-
following form:
|
295 |
-
|
296 |
-
```yaml
|
297 |
-
declension:
|
298 |
-
- ["", singular, singular, singular, plural, plural]
|
299 |
-
- ["", indef., def., noun, def., noun ]
|
300 |
-
- [nominative, eine, die, ββββββββ, die, ββββββ]
|
301 |
-
- [genitive, einer, der, ββββββββ, der, ββββββ]
|
302 |
-
- [dative, einer, der, ββββββββ, den, ββββββ]
|
303 |
-
- [accusative, eine, die, ββββββββ, die, ββββββ]
|
304 |
-
```
|
305 |
-
|
306 |
-
###### Neuter
|
307 |
-
|
308 |
-
`term` with a _definite article_ of __das__ signifies a __neuter noun__ which has a declension table template of the
|
309 |
-
following form:
|
310 |
-
|
311 |
-
```yaml
|
312 |
-
declension:
|
313 |
-
- ["", singular, singular, singular, plural, plural]
|
314 |
-
- ["", indef., def., noun, def., noun ]
|
315 |
-
- [nominative, ein, das, ββββββββ, die, ββββββ]
|
316 |
-
- [genitive, eines, des, ββββββββ, der, ββββββ]
|
317 |
-
- [dative, einem, dem, ββββββββ, den, ββββββ]
|
318 |
-
- [accusative, ein, das, ββββββββ, die, ββββββ]
|
319 |
-
```
|
320 |
-
|
321 |
-
#### Pronoun Declension
|
322 |
-
|
323 |
-
Declension tamplate:
|
324 |
-
|
325 |
-
```yaml
|
326 |
-
declension:
|
327 |
-
- ["", masclune, feminine, neuter, plural]
|
328 |
-
- [nominative, ββββββββ, ββββββββ, ββββββ, ββββββ]
|
329 |
-
- [genitive, ββββββββ, ββββββββ, ββββββ, ββββββ]
|
330 |
-
- [dative, βββββοΏ½οΏ½ββ, ββββββββ, ββββββ, ββββββ]
|
331 |
-
- [accusative, ββββββββ, ββββββββ, ββββββ, ββββββ]
|
332 |
-
```
|
333 |
|
334 |
#### Verb Conjugation
|
335 |
|
|
|
218 |
> __The declension tables for all nouns are sourced from
|
219 |
> [Wiktionary](https://en.wiktionary.org/wiki/Kaufmann#Declension)__
|
220 |
|
221 |
+
##### Declension Template
|
|
|
|
|
222 |
|
223 |
`term` with a _definite article_ of __der__ signifies a __masculine noun__ which has a declension table template of the
|
224 |
following form:
|
225 |
|
226 |
```yaml
|
227 |
declension:
|
228 |
+
- ["", singular, plural]
|
229 |
+
- ["", noun, noun ]
|
230 |
+
- [nominative, ββββββββ, ββββββ]
|
231 |
+
- [genitive, ββββββββ, ββββββ]
|
232 |
+
- [dative, ββββββββ, ββββββ]
|
233 |
+
- [accusative, ββββββββ, ββββββ]
|
234 |
```
|
235 |
|
236 |
For example:
|
|
|
252 |
> [!CAUTION]
|
253 |
>
|
254 |
> [Adjectival nouns](https://en.wikibooks.org/wiki/German/Grammar/Nouns/Adjectival_Nouns), however, do NOT follow the
|
255 |
+
> template above.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
|
257 |
#### Verb Conjugation
|
258 |
|
german.yaml
CHANGED
The diff for this file is too large to render.
See raw diff
|
|