Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more German vocabulary #121

Merged
merged 1 commit into from
Jan 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 33 additions & 1 deletion german.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4621,6 +4621,7 @@ vocabulary:
definition:
- the view
- the light
audio: https://upload.wikimedia.org/wikipedia/commons/4/4d/De-Vorschein.ogg
declension:
- ["", singular, plural]
- [nominative, Vorschein, N/A ]
Expand Down Expand Up @@ -6385,6 +6386,7 @@ vocabulary:
- [accusative, Gemüt, Gemüter ]
- term: gewiss
definition: (adj.) certain
audio: https://upload.wikimedia.org/wikipedia/commons/7/71/De-gewiss.ogg
- term: die Weise
definition: way
declension:
Expand Down Expand Up @@ -6451,7 +6453,17 @@ vocabulary:
- [dative, Sinnlichkeit, Sinnlichkeiten]
- [accusative, Sinnlichkeit, Sinnlichkeiten]
- term: vermitteln
definition: to mediate
definition:
- to mediate
- to convey
- to broker
- to supply
- to provide
audio: https://upload.wikimedia.org/wikipedia/commons/e/e7/De-vermitteln.ogg
verbformen:
video: https://youtu.be/WwhjrddRnfE
conjugation: https://www.verbformen.com/conjugation/vermitteln.pdf
flashcards: https://www.verbformen.com/conjugation/worksheets-exercises/lernkarten/vermitteln.pdf
- term: der Verstand
definition:
- the intellect
Expand Down Expand Up @@ -6777,6 +6789,26 @@ vocabulary:
- [genitive, Erwägung, Erwägungen]
- [dative, Erwägung, Erwägungen]
- [accusative, Erwägung, Erwägungen]
- term: das Merkmal
definition:
- the feature
- characteristic
- attribute
audio: https://upload.wikimedia.org/wikipedia/commons/c/cf/De-Merkmal.ogg
declension-type: strong
declension:
- ["", singular, plural ]
- [nominative, Merkmal, Merkmale ]
- [genitive, "Merkmales, Merkmals", Merkmale ]
- [dative, Merkmal, Merkmalen]
- [accusative, Merkmal, Merkmale ]
- term: fehlen
definition: to be absent
audio: https://upload.wikimedia.org/wikipedia/commons/6/60/De-fehlen2.ogg
verbformen:
video: https://youtu.be/JJeLBayjo1s
conjugation: https://www.verbformen.com/conjugation/fehlen.pdf
flashcards: https://www.verbformen.com/conjugation/worksheets-exercises/lernkarten/fehlen.pdf



Expand Down
10 changes: 10 additions & 0 deletions tests/test_vocabulary_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,16 @@ def test_get_inferred_tokenization_links(self):
'target_label': 'töten'
},
]
},
{
"words": ["liefern", "vermitteln"],
"expected": [
{
'attributes': {'label': 'term related'},
'source_label': 'vermitteln',
'target_label': 'liefern'
}
]
}
]

Expand Down
Loading