Add German vocabulary (#17)
Browse files- README.md +14 -1
- german-rice-travel.png +0 -0
- german.yaml +136 -6
README.md
CHANGED
@@ -192,6 +192,9 @@ We have offered some queries that can be used to quickly explore our language da
|
|
192 |
|
193 |
#### Interesting Queries
|
194 |
|
|
|
|
|
|
|
195 |
- Expanding a word "nämlich" (reveals its relationship to other languages):
|
196 |
|
197 |
```cypher
|
@@ -204,7 +207,17 @@ We have offered some queries that can be used to quickly explore our language da
|
|
204 |
|
205 |
![Expanding "nämlich"](./german-greek-latin.png "Error loading german-greek-latin.png")
|
206 |
|
207 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
|
209 |
Languages
|
210 |
---------
|
|
|
192 |
|
193 |
#### Interesting Queries
|
194 |
|
195 |
+
- Search for all Synonyms: `MATCH (term:Term)-[r]-(synonym:Term) WHERE r.name = "synonym" RETURN term, r, synonym`
|
196 |
+
- Finding all [gerunds](https://en.wiktionary.org/wiki/Appendix:Glossary#gerund):
|
197 |
+
`MATCH (source)-[link:RELATED]->(target) WHERE link.name = "gerund of" RETURN source, link, target;`
|
198 |
- Expanding a word "nämlich" (reveals its relationship to other languages):
|
199 |
|
200 |
```cypher
|
|
|
207 |
|
208 |
![Expanding "nämlich"](./german-greek-latin.png "Error loading german-greek-latin.png")
|
209 |
|
210 |
+
- In German, "rice" and "travel" are related:
|
211 |
+
|
212 |
+
```cypher
|
213 |
+
MATCH (term:Term{name:'die Reise'})
|
214 |
+
CALL apoc.path.expand(term, "RELATED|DEFINITION", null, 1, -1)
|
215 |
+
YIELD path
|
216 |
+
RETURN path, length(path) AS hops
|
217 |
+
ORDER BY hops;
|
218 |
+
```
|
219 |
+
|
220 |
+
![Declension sharing](./german-rice-travel.png "Error loading german-rice-travel.png")
|
221 |
|
222 |
Languages
|
223 |
---------
|
german-rice-travel.png
ADDED
german.yaml
CHANGED
@@ -704,6 +704,14 @@ vocabulary:
|
|
704 |
- [genitive, Kuchens, Kuchen]
|
705 |
- [dative, Kuchen, Kuchen]
|
706 |
- [accusative, Kuchen, Kuchen]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
707 |
- term: der Biergarten
|
708 |
definition: the beer gargen
|
709 |
declension:
|
@@ -1348,7 +1356,7 @@ vocabulary:
|
|
1348 |
declension:
|
1349 |
- ["", singular, plural ]
|
1350 |
- [nominative, Kännchens, Kännchen]
|
1351 |
-
- [genitive,
|
1352 |
- [dative, Kännchen, Kännchen]
|
1353 |
- [accusative, Kännchen, Kännchen]
|
1354 |
- term: ein Kännchen Kaffee
|
@@ -2118,14 +2126,28 @@ vocabulary:
|
|
2118 |
definition: to know
|
2119 |
- term: bringen
|
2120 |
definition: to bring
|
|
|
|
|
2121 |
- term: trainieren
|
2122 |
definition:
|
2123 |
- to train
|
2124 |
- (gymnasium) to work out
|
2125 |
- term: fotografieren
|
2126 |
definition: to take photos
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2127 |
- term: schwimmen
|
2128 |
definition: to swim
|
|
|
|
|
2129 |
- term: lernen sich kennen
|
2130 |
definition: get to know each other
|
2131 |
- term: das Schwimmbad
|
@@ -2144,9 +2166,31 @@ vocabulary:
|
|
2144 |
- [genitive, Musik, Musiken]
|
2145 |
- [dative, Musik, Musiken]
|
2146 |
- [accusative, Musik, Musiken]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2147 |
- term: klassisch
|
2148 |
definition: (adj.) classical
|
2149 |
-
- term:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2150 |
definition:
|
2151 |
- (countable) football
|
2152 |
- (uncountable) soccer
|
@@ -2156,6 +2200,68 @@ vocabulary:
|
|
2156 |
- [genitive, "Fußballs, Fußballes", Fußbälle ]
|
2157 |
- [dative, Fußball, Fußbällen]
|
2158 |
- [accusative, Fußball, Fußbälle ]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2159 |
- term: Leute
|
2160 |
definition: (plural only) people
|
2161 |
declension:
|
@@ -2262,10 +2368,10 @@ vocabulary:
|
|
2262 |
definition: the travel
|
2263 |
declension:
|
2264 |
- ["", singular, plural]
|
2265 |
-
- [nominative, Reise,
|
2266 |
-
- [genitive, Reise,
|
2267 |
-
- [dative, Reise,
|
2268 |
-
- [accusative, Reise,
|
2269 |
|
2270 |
|
2271 |
|
@@ -2729,6 +2835,30 @@ vocabulary:
|
|
2729 |
- [genitive, Einsatzes, Einsätze ]
|
2730 |
- [dative, Einsatz, Einsätzen]
|
2731 |
- [accusative, Einsatz, Einsätze ]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2732 |
|
2733 |
|
2734 |
|
|
|
704 |
- [genitive, Kuchens, Kuchen]
|
705 |
- [dative, Kuchen, Kuchen]
|
706 |
- [accusative, Kuchen, Kuchen]
|
707 |
+
- term: der Garten
|
708 |
+
definition: the garden
|
709 |
+
declension:
|
710 |
+
- ["", singular, plural]
|
711 |
+
- [nominative, Garten, Gärten]
|
712 |
+
- [genitive, Gartens, Gärten]
|
713 |
+
- [dative, Garten, Gärten]
|
714 |
+
- [accusative, Garten, Gärten]
|
715 |
- term: der Biergarten
|
716 |
definition: the beer gargen
|
717 |
declension:
|
|
|
1356 |
declension:
|
1357 |
- ["", singular, plural ]
|
1358 |
- [nominative, Kännchens, Kännchen]
|
1359 |
+
- [genitive, Kännchens, Kännchen]
|
1360 |
- [dative, Kännchen, Kännchen]
|
1361 |
- [accusative, Kännchen, Kännchen]
|
1362 |
- term: ein Kännchen Kaffee
|
|
|
2126 |
definition: to know
|
2127 |
- term: bringen
|
2128 |
definition: to bring
|
2129 |
+
- term: surfen
|
2130 |
+
definition: to surf
|
2131 |
- term: trainieren
|
2132 |
definition:
|
2133 |
- to train
|
2134 |
- (gymnasium) to work out
|
2135 |
- term: fotografieren
|
2136 |
definition: to take photos
|
2137 |
+
- term: die Fotografie
|
2138 |
+
definition:
|
2139 |
+
- (uncountable) the photography
|
2140 |
+
- (countable) phtograph
|
2141 |
+
declension:
|
2142 |
+
- ["", singular, plural ]
|
2143 |
+
- [nominative, Fotografie, Fotografien]
|
2144 |
+
- [genitive, Fotografie, Fotografien]
|
2145 |
+
- [dative, Fotografie, Fotografien]
|
2146 |
+
- [accusative, Fotografie, Fotografien]
|
2147 |
- term: schwimmen
|
2148 |
definition: to swim
|
2149 |
+
- term: joggen
|
2150 |
+
definition: to jog
|
2151 |
- term: lernen sich kennen
|
2152 |
definition: get to know each other
|
2153 |
- term: das Schwimmbad
|
|
|
2166 |
- [genitive, Musik, Musiken]
|
2167 |
- [dative, Musik, Musiken]
|
2168 |
- [accusative, Musik, Musiken]
|
2169 |
+
- term: die Klassik
|
2170 |
+
definition: the classical music
|
2171 |
+
declension:
|
2172 |
+
- ["", singular, plural]
|
2173 |
+
- [nominative, Klassik, N/A ]
|
2174 |
+
- [genitive, Klassik, N/A ]
|
2175 |
+
- [dative, Klassik, N/A ]
|
2176 |
+
- [accusative, Klassik, N/A ]
|
2177 |
- term: klassisch
|
2178 |
definition: (adj.) classical
|
2179 |
+
- term: Klassische Musik
|
2180 |
+
definition: the classical music
|
2181 |
+
- term: Pop-Musik
|
2182 |
+
definition: pop music
|
2183 |
+
- term: Rock-Musik
|
2184 |
+
definition: rock music
|
2185 |
+
- term: der Sport
|
2186 |
+
definition: the sport
|
2187 |
+
declension:
|
2188 |
+
- ["", singular, plural ]
|
2189 |
+
- [nominative, Sport, Sporte ]
|
2190 |
+
- [genitive, "Sportes, Sports", Sporte ]
|
2191 |
+
- [dative, Sport, Sporten]
|
2192 |
+
- [accusative, Sport, Sporte ]
|
2193 |
+
- term: der Fußball
|
2194 |
definition:
|
2195 |
- (countable) football
|
2196 |
- (uncountable) soccer
|
|
|
2200 |
- [genitive, "Fußballs, Fußballes", Fußbälle ]
|
2201 |
- [dative, Fußball, Fußbällen]
|
2202 |
- [accusative, Fußball, Fußbälle ]
|
2203 |
+
- term: der Golf
|
2204 |
+
definition:
|
2205 |
+
- the gulf
|
2206 |
+
- (geography) the bay
|
2207 |
+
declension:
|
2208 |
+
- ["", singular, plural]
|
2209 |
+
- [nominative, Golf, Golfe ]
|
2210 |
+
- [genitive, "Golfes, Golfs", Golfe ]
|
2211 |
+
- [dative, Golf, Golfen]
|
2212 |
+
- [accusative, Golf, Golfe ]
|
2213 |
+
- term: der Jazz
|
2214 |
+
definition: (musical art form) the jazz
|
2215 |
+
declension:
|
2216 |
+
- ["", singular, plural]
|
2217 |
+
- [nominative, Jazz, N/A ]
|
2218 |
+
- [genitive, Jazz, N/A ]
|
2219 |
+
- [dative, Jazz, N/A ]
|
2220 |
+
- [accusative, Jazz, N/A ]
|
2221 |
+
- term: die Fitness
|
2222 |
+
definition: the fitness
|
2223 |
+
declension:
|
2224 |
+
- ["", singular, plural]
|
2225 |
+
- [nominative, Fitness, N/A ]
|
2226 |
+
- [genitive, Fitness, N/A ]
|
2227 |
+
- [dative, Fitness, N/A ]
|
2228 |
+
- [accusative, Fitness, N/A ]
|
2229 |
+
- term: das Tennis
|
2230 |
+
definition: the tennis
|
2231 |
+
declension:
|
2232 |
+
- ["", singular, plural]
|
2233 |
+
- [nominative, Tennis, N/A ]
|
2234 |
+
- [genitive, Tennis, N/A ]
|
2235 |
+
- [dative, Tennis, N/A ]
|
2236 |
+
- [accusative, Tennis, N/A ]
|
2237 |
+
- term: das Fallschirmspringen
|
2238 |
+
definition: the skydiving
|
2239 |
+
declension:
|
2240 |
+
- ["", singular, plural]
|
2241 |
+
- [nominative, Fallschirmspringen, N/A ]
|
2242 |
+
- [genitive, Fallschirmspringens, N/A ]
|
2243 |
+
- [dative, Fallschirmspringen, N/A ]
|
2244 |
+
- [accusative, Fallschirmspringen, N/A ]
|
2245 |
+
- term: wandern
|
2246 |
+
definition: to hike
|
2247 |
+
- term: das Wandern
|
2248 |
+
definition: (gerund of) wandern
|
2249 |
+
declension:
|
2250 |
+
- ["", singular, plural]
|
2251 |
+
- [nominative, Wandern, N/A ]
|
2252 |
+
- [genitive, Wanderns, N/A ]
|
2253 |
+
- [dative, Wandern, N/A ]
|
2254 |
+
- [accusative, Wandern, N/A ]
|
2255 |
+
- term: das Segel
|
2256 |
+
definition: the sail
|
2257 |
+
declension:
|
2258 |
+
- ["", singular, plural]
|
2259 |
+
- [nominative, Segel, Segel ]
|
2260 |
+
- [genitive, Segels, Segel ]
|
2261 |
+
- [dative, Segel, Segeln]
|
2262 |
+
- [accusative, Segel, Segel ]
|
2263 |
+
- term: das Segeln
|
2264 |
+
definition: the sailing
|
2265 |
- term: Leute
|
2266 |
definition: (plural only) people
|
2267 |
declension:
|
|
|
2368 |
definition: the travel
|
2369 |
declension:
|
2370 |
- ["", singular, plural]
|
2371 |
+
- [nominative, Reise, Reisen]
|
2372 |
+
- [genitive, Reise, Reisen]
|
2373 |
+
- [dative, Reise, Reisen]
|
2374 |
+
- [accusative, Reise, Reisen]
|
2375 |
|
2376 |
|
2377 |
|
|
|
2835 |
- [genitive, Einsatzes, Einsätze ]
|
2836 |
- [dative, Einsatz, Einsätzen]
|
2837 |
- [accusative, Einsatz, Einsätze ]
|
2838 |
+
- term: der Krimi
|
2839 |
+
definition: the crime story
|
2840 |
+
declension:
|
2841 |
+
- ["", singular, plural]
|
2842 |
+
- [nominative, Krimi, Krimis ]
|
2843 |
+
- [genitive, Krimis, Krimis ]
|
2844 |
+
- [dative, Krimi, Krimis ]
|
2845 |
+
- [accusative, Krimi, Krimis ]
|
2846 |
+
- term: die Biografie
|
2847 |
+
definition: the biography
|
2848 |
+
declension:
|
2849 |
+
- ["", singular, plural ]
|
2850 |
+
- [nominative, Biografie, Biografien]
|
2851 |
+
- [genitive, Biografie, Biografien]
|
2852 |
+
- [dative, Biografie, Biografien]
|
2853 |
+
- [accusative, Biografie, Biografien]
|
2854 |
+
- term: die Biographie
|
2855 |
+
definition: (alternative spelling of) die Biografie
|
2856 |
+
declension:
|
2857 |
+
- ["", singular, plural ]
|
2858 |
+
- [nominative, Biographie, Biographien]
|
2859 |
+
- [genitive, Biographie, Biographien]
|
2860 |
+
- [dative, Biographie, Biographien]
|
2861 |
+
- [accusative, Biographie, Biographien]
|
2862 |
|
2863 |
|
2864 |
|