diff --git a/3-tidy-up.js b/3-tidy-up.js index 039580b..315daeb 100644 --- a/3-tidy-up.js +++ b/3-tidy-up.js @@ -278,8 +278,11 @@ function processForms(forms, word, pos) { function saveIpaResult(word, readings, pos, ipaObj) { for (const reading of readings) { const result = lemmaDict[word][reading][pos]; - if (!result.ipa.some(obj => obj.ipa === ipaObj.ipa)) { + const existingIpa = result.ipa.find(obj => obj.ipa === ipaObj.ipa); + if (!existingIpa) { result.ipa.push(ipaObj); + } else { + existingIpa.tags = [...new Set([...existingIpa.tags, ...ipaObj.tags])]; } } } diff --git a/data/test/dict/en/en/tag_bank_1.json b/data/test/dict/en/en/tag_bank_1.json index 3526f71..7a18623 100644 --- a/data/test/dict/en/en/tag_bank_1.json +++ b/data/test/dict/en/en/tag_bank_1.json @@ -47,5 +47,12 @@ -1, "noun", 1 + ], + [ + "hist", + "", + 0, + "historical", + 0 ] ] \ No newline at end of file diff --git a/data/test/dict/en/en/term_bank_1.json b/data/test/dict/en/en/term_bank_1.json index 3cf8104..d689da0 100644 --- a/data/test/dict/en/en/term_bank_1.json +++ b/data/test/dict/en/en/term_bank_1.json @@ -303,5 +303,60 @@ ], 0, "" + ], + [ + "falcon", + "", + "n", + "n", + 0, + [ + { + "type": "structured-content", + "content": [ + { + "tag": "div", + "content": [ + "Any bird of the genus Falco, all of which are birds of prey." + ] + } + ] + }, + { + "type": "structured-content", + "content": [ + { + "tag": "div", + "content": [ + "(falconry) A female such bird, a male being a tiercel." + ] + } + ] + } + ], + 0, + "" + ], + [ + "falcon", + "", + "hist n", + "n", + 0, + [ + { + "type": "structured-content", + "content": [ + { + "tag": "div", + "content": [ + "A light cannon used from the 15th to the 17th century; a falconet." + ] + } + ] + } + ], + 0, + "" ] ] \ No newline at end of file diff --git a/data/test/dict/en/en/term_bank_2.json b/data/test/dict/en/en/term_bank_2.json index 9c1a7f0..b67108d 100644 --- a/data/test/dict/en/en/term_bank_2.json +++ b/data/test/dict/en/en/term_bank_2.json @@ -96,5 +96,22 @@ ], 0, "" + ], + [ + "falcons", + "", + "non-lemma", + "", + 0, + [ + [ + "falcon", + [ + "plural" + ] + ] + ], + 0, + "" ] ] \ No newline at end of file diff --git a/data/test/ipa/en/en/tag_bank_1.json b/data/test/ipa/en/en/tag_bank_1.json index 0637a08..0ce90d0 100644 --- a/data/test/ipa/en/en/tag_bank_1.json +++ b/data/test/ipa/en/en/tag_bank_1.json @@ -1 +1,30 @@ -[] \ No newline at end of file +[ + [ + "🏴󠁧󠁢󠁥󠁮󠁧󠁿", + "dialect", + 0, + "Received-Pronunciation", + 0 + ], + [ + "🇺🇸", + "dialect", + 0, + "US", + 0 + ], + [ + "🇦🇺", + "dialect", + 0, + "General-Australian", + 0 + ], + [ + "🇳🇿", + "dialect", + 0, + "New-Zealand", + 0 + ] +] \ No newline at end of file diff --git a/data/test/ipa/en/en/term_meta_bank_1.json b/data/test/ipa/en/en/term_meta_bank_1.json index c4e60a7..0f9269f 100644 --- a/data/test/ipa/en/en/term_meta_bank_1.json +++ b/data/test/ipa/en/en/term_meta_bank_1.json @@ -24,5 +24,52 @@ } ] } + ], + [ + "falcon", + "ipa", + { + "reading": "falcon", + "transcriptions": [ + { + "ipa": "/ˈfɔː(l)kən/", + "tags": [ + "🏴󠁧󠁢󠁥󠁮󠁧󠁿" + ] + }, + { + "ipa": "/ˈfɒlkən/", + "tags": [ + "🏴󠁧󠁢󠁥󠁮󠁧󠁿" + ] + }, + { + "ipa": "/ˈfælkən/", + "tags": [ + "🇺🇸", + "🇦🇺" + ] + }, + { + "ipa": "/ˈfɑːlkən/", + "tags": [ + "🇺🇸" + ] + }, + { + "ipa": "/ˈfoːlkən/", + "tags": [ + "🇦🇺", + "🇳🇿" + ] + }, + { + "ipa": "/ˈfɛlkən/", + "tags": [ + "🇳🇿" + ] + } + ] + } ] ] \ No newline at end of file diff --git a/data/test/ipa/fa/en/tag_bank_1.json b/data/test/ipa/fa/en/tag_bank_1.json index 6eee5c4..220c7b9 100644 --- a/data/test/ipa/fa/en/tag_bank_1.json +++ b/data/test/ipa/fa/en/tag_bank_1.json @@ -7,10 +7,10 @@ 0 ], [ - "🇦🇫", + "🇹🇯", "dialect", 0, - "Dari", + "Tajik", 0 ], [ @@ -21,17 +21,24 @@ 0 ], [ - "🇮🇷", + "🇦🇫", "dialect", 0, - "Iran", + "Dari", 0 ], [ - "🇹🇯", + "🇦🇫KA", "dialect", 0, - "Tajik", + "Kabuli", + 0 + ], + [ + "🇮🇷", + "dialect", + 0, + "Iran", 0 ] ] \ No newline at end of file diff --git a/data/test/ipa/fa/en/term_meta_bank_1.json b/data/test/ipa/fa/en/term_meta_bank_1.json index 85bf05f..20d7286 100644 --- a/data/test/ipa/fa/en/term_meta_bank_1.json +++ b/data/test/ipa/fa/en/term_meta_bank_1.json @@ -8,14 +8,18 @@ { "ipa": "[mulk]", "tags": [ - "classic" + "classic", + "Hazaragi", + "🇹🇯", + "frm" ] }, { "ipa": "[mʊlk]", "tags": [ "🇦🇫", - "frm" + "frm", + "🇦🇫KA" ] }, { @@ -44,7 +48,8 @@ "ipa": "[fɑːɾ.síː]", "tags": [ "🇦🇫", - "frm" + "frm", + "🇦🇫KA" ] }, { diff --git a/data/test/ipa/la/en/term_meta_bank_1.json b/data/test/ipa/la/en/term_meta_bank_1.json index 68473cb..27de9e5 100644 --- a/data/test/ipa/la/en/term_meta_bank_1.json +++ b/data/test/ipa/la/en/term_meta_bank_1.json @@ -14,7 +14,8 @@ { "ipa": "[ˈfäːmä]", "tags": [ - "Classical" + "Classical", + "✝️" ] }, { @@ -179,7 +180,8 @@ { "ipa": "/ˈdo.mus/", "tags": [ - "Classical" + "Classical", + "✝️" ] }, { diff --git a/data/test/kaikki/en-en.json b/data/test/kaikki/en-en.json index da452de..b7f5379 100644 --- a/data/test/kaikki/en-en.json +++ b/data/test/kaikki/en-en.json @@ -1,2 +1,3 @@ {"pos": "verb", "head_templates": [{"name": "en-verb", "args": {"1": "brings", "2": "bringing", "3": "brought", "past_ptc2": "broughten", "past_ptc2_qual": "rare, dialectal"}, "expansion": "bring (third-person singular simple present brings, present participle bringing, simple past brought, past participle brought or (rare, dialectal) broughten)"}], "forms": [{"form": "brings", "tags": ["present", "singular", "third-person"]}, {"form": "bringing", "tags": ["participle", "present"]}, {"form": "brought", "tags": ["past"]}, {"form": "brought", "tags": ["participle", "past"]}, {"form": "broughten", "tags": ["dialectal", "participle", "past", "rare"]}, {"form": "", "source": "conjugation", "tags": ["table-tags"]}, {"form": "en-conj", "source": "conjugation", "tags": ["inflection-template"]}, {"form": "bring", "tags": ["infinitive"], "source": "conjugation"}], "inflection_templates": [{"name": "en-conj", "args": {"old": "1", "past": "brought", "past_2sg_old": "broughtest", "past2": "brang", "past2_qual": "note1", "past3": "bringed", "past3_qual": "note2", "past_ptc2": "brung", "past_ptc2_qual": "note1", "past_ptc3": "broughten", "past_ptc3_qual": "note1", "past_ptc4": "bringed", "past_ptc4_qual": "note2", "note1": "Dialectal.", "note2": "Nonstandard."}}], "etymology_number": 1, "etymology_text": "From Middle English bryngen, from Old English bringan, from Proto-West Germanic *bringan, from Proto-Germanic *bringaną (“to bring”), from Proto-Indo-European *bʰrenk-, possibly based on *bʰer-.\nCompare West Frisian bringe, Low German bringen, Dutch brengen, German bringen; also Welsh hebrwng (“to bring, lead”), Tocharian B pränk- (“to take away; restrain oneself, hold back”), Latvian brankti (“lying close”), Lithuanian branktas (“whiffletree”).", "etymology_templates": [{"name": "inh", "args": {"1": "en", "2": "enm", "3": "bryngen"}, "expansion": "Middle English bryngen"}, {"name": "inh", "args": {"1": "en", "2": "ang", "3": "bringan"}, "expansion": "Old English bringan"}, {"name": "inh", "args": {"1": "en", "2": "gmw-pro", "3": "*bringan"}, "expansion": "Proto-West Germanic *bringan"}, {"name": "inh", "args": {"1": "en", "2": "gem-pro", "3": "*bringaną", "4": "", "5": "to bring"}, "expansion": "Proto-Germanic *bringaną (“to bring”)"}, {"name": "der", "args": {"1": "en", "2": "ine-pro", "3": "*bʰrenk-"}, "expansion": "Proto-Indo-European *bʰrenk-"}, {"name": "m", "args": {"1": "ine-pro", "2": "*bʰer-"}, "expansion": "*bʰer-"}, {"name": "cog", "args": {"1": "fy", "2": "bringe"}, "expansion": "West Frisian bringe"}, {"name": "cog", "args": {"1": "nds", "2": "bringen"}, "expansion": "Low German bringen"}, {"name": "cog", "args": {"1": "nl", "2": "brengen"}, "expansion": "Dutch brengen"}, {"name": "cog", "args": {"1": "de", "2": "bringen"}, "expansion": "German bringen"}, {"name": "cog", "args": {"1": "cy", "2": "hebrwng", "3": "", "4": "to bring, lead"}, "expansion": "Welsh hebrwng (“to bring, lead”)"}, {"name": "cog", "args": {"1": "txb", "2": "pränk-", "3": "", "4": "to take away; restrain oneself, hold back"}, "expansion": "Tocharian B pränk- (“to take away; restrain oneself, hold back”)"}, {"name": "cog", "args": {"1": "lv", "2": "brankti", "3": "", "4": "lying close"}, "expansion": "Latvian brankti (“lying close”)"}, {"name": "cog", "args": {"1": "lt", "2": "branktas", "3": "", "4": "whiffletree"}, "expansion": "Lithuanian branktas (“whiffletree”)"}], "word": "bring", "lang": "English", "lang_code": "en", "sounds": [{"ipa": "/ˈbɹɪŋ/"}, {"rhymes": "-ɪŋ"}, {"audio": "en-us-bring.ogg", "text": "Audio (US)", "tags": ["US"], "ogg_url": "https://upload.wikimedia.org/wikipedia/commons/a/ad/En-us-bring.ogg", "mp3_url": "https://upload.wikimedia.org/wikipedia/commons/transcoded/a/ad/En-us-bring.ogg/En-us-bring.ogg.mp3"}, {"audio": "En-uk-to bring.ogg", "text": "Audio (UK)", "tags": ["UK"], "ogg_url": "https://upload.wikimedia.org/wikipedia/commons/5/5e/En-uk-to_bring.ogg", "mp3_url": "https://upload.wikimedia.org/wikipedia/commons/transcoded/5/5e/En-uk-to_bring.ogg/En-uk-to_bring.ogg.mp3"}], "categories": [], "derived": [{"word": "April showers bring May flowers", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring about", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring a knife to a gunfight", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring a lump to someone's throat", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring-and-braai", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring-and-buy", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring-and-buy sale", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring an end to", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring around", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring back", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring centre", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring coals to Newcastle", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring down", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring down a notch", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring down a peg", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring down the curtain", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring down the hammer", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring down the house", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring down to size", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring forth", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring forward", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring forwards", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring home", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring home the bacon", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring-in", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring in", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring into being", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring into line", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring into play", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring it", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring it on", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring it weak", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring low", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring off", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring on", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring one's arse to an anchor", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring oneself to", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring one's own hide to market", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring out", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring out in a rash", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring over", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring owls to Athens", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring round", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring sand to the beach", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring the curtain down", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring the house down", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring the lumber", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring the wood", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to a boil", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to a head", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to an end", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to bear", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to bed", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to book", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring together", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to heel", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to justice", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to life", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to light", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to mind", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to naught", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to nought", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to one's knees", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to order", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to pass", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to terms", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to the hammer", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring to the table", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring under", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring up", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring up against", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring upon", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring up short", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring up the rear", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring up to", "_dis1": "0 0 0 0 0 0 0"}, {"word": "bring with", "_dis1": "0 0 0 0 0 0 0"}, {"word": "forthbring", "_dis1": "0 0 0 0 0 0 0"}, {"word": "fullbring", "_dis1": "0 0 0 0 0 0 0"}, {"word": "inbring", "_dis1": "0 0 0 0 0 0 0"}, {"word": "outbring", "_dis1": "0 0 0 0 0 0 0"}], "senses": [{"examples": [{"text": "Waiter, please bring me a single malt whiskey.", "type": "example"}, {"text": "Ne take noon hede to brynge togidere þe parties of þe boon þat is to-broken or dislocate, til viij. daies ben goon in þe wyntir, & v. in þe somer; for þanne it schal make quytture, and be sikir from swellynge; & þanne brynge togidere þe brynkis eiþer þe disiuncture after þe techynge þat schal be seid in þe chapitle of algebra.", "ref": "a1420, The British Museum Additional MS, 12,056, “Wounds complicated by the Dislocation of a Bone”, in Robert von Fleischhacker, editor, Lanfranc's \"Science of cirurgie.\", London: K. Paul, Trench, Trübner & Co, translation of original by Lanfranc of Milan, published 1894, page 63", "type": "quotation"}, {"text": "A waiter brought his aperitif, which was a small scotch and soda, and as he sipped it gratefully he sighed. ¶ ‘Civilized,’ he said to Mr. Campion. ‘Humanizing.’ […] ‘Cigars and summer days and women in big hats with swansdown face-powder, that's what it reminds me of.’", "ref": "1963, Margery Allingham, chapter 5, in The China Governess", "type": "quotation"}, {"text": "Next month, Clemons will be brought before a court presided over by a \"special master\", who will review the case one last time.", "ref": "21 August 2012, Ed Pilkington, “Death penalty on trial: should Reggie Clemons live or die?”, in The Guardian", "type": "quotation"}], "links": [["transport", "transport"]], "raw_glosses": ["(transitive, ditransitive) To transport toward somebody/somewhere."], "glosses": ["To transport toward somebody/somewhere."], "tags": ["ditransitive", "transitive"], "id": "bring-en-verb-EwoY0BRx", "categories": [], "translations": [{"lang": "Afrikaans", "code": "af", "sense": "to transport toward somebody/somewhere", "word": "bring", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Albanian", "code": "sq", "sense": "to transport toward somebody/somewhere", "word": "sjell", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Amharic", "code": "am", "sense": "to transport toward somebody/somewhere", "roman": "ʾämäṭa", "word": "አመጣ", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Amharic", "code": "am", "sense": "to transport toward somebody/somewhere", "roman": "ṭalä", "word": "ጣለ", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Arabic", "code": "ar", "sense": "to transport toward somebody/somewhere", "roman": "ʔaḥḍara", "word": "أَحْضَرَ", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Arabic", "code": "ar", "sense": "to transport toward somebody/somewhere", "roman": "jāʔa bi-", "word": "جَاءَ بِـ", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Arabic", "code": "ar", "sense": "to transport toward somebody/somewhere", "roman": "ʔatā bi-", "word": "أَتَى بِـ", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Arabic", "code": "ar", "sense": "to transport toward somebody/somewhere", "roman": "jalaba", "word": "جَلَبَ", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Arabic", "code": "arz", "tags": ["Egyptian-Arabic"], "sense": "to transport toward somebody/somewhere", "roman": "gāb", "word": "جاب", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Arabic", "code": "ary", "tags": ["Moroccan-Arabic"], "sense": "to transport toward somebody/somewhere", "word": "جاب", "roman": "jab", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Aragonese", "code": "an", "sense": "to transport toward somebody/somewhere", "word": "trayer", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Armenian", "code": "hy", "sense": "to transport toward somebody/somewhere", "roman": "berel", "word": "բերել", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Aromanian", "code": "rup", "sense": "to transport toward somebody/somewhere", "word": "aduc", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Assamese", "code": "as", "sense": "to transport toward somebody/somewhere", "word": "আন", "roman": "an", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Asturian", "code": "ast", "sense": "to transport toward somebody/somewhere", "word": "trayer", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Asturian", "code": "ast", "sense": "to transport toward somebody/somewhere", "word": "llevar", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Aymara", "code": "ay", "sense": "to transport toward somebody/somewhere", "word": "apaña", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Azerbaijani", "code": "az", "sense": "to transport toward somebody/somewhere", "word": "gətirmək", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Bakhtiari", "code": "bqi", "sense": "to transport toward somebody/somewhere", "roman": "aworden", "word": "اوردن", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Basque", "code": "eu", "sense": "to transport toward somebody/somewhere", "word": "ekarri", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Belarusian", "code": "be", "sense": "to transport toward somebody/somewhere", "roman": "prynósicʹ", "english": "a thing, on foot", "tags": ["imperfective"], "word": "прыно́сіць", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Belarusian", "code": "be", "sense": "to transport toward somebody/somewhere", "roman": "prynjésci", "tags": ["perfective"], "word": "прыне́сці", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Belarusian", "code": "be", "sense": "to transport toward somebody/somewhere", "roman": "pryvódzicʹ", "english": "a person, on foot", "tags": ["imperfective"], "word": "прыво́дзіць", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Belarusian", "code": "be", "sense": "to transport toward somebody/somewhere", "roman": "pryvjésci", "tags": ["perfective"], "word": "прыве́сці", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Belarusian", "code": "be", "sense": "to transport toward somebody/somewhere", "roman": "pryvózicʹ", "english": "a thing or person, by vehicle", "tags": ["imperfective"], "word": "прыво́зіць", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Belarusian", "code": "be", "sense": "to transport toward somebody/somewhere", "roman": "pryvjézci", "tags": ["perfective"], "word": "прыве́зці", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Bengali", "code": "bn", "sense": "to transport toward somebody/somewhere", "roman": "ana", "word": "আনা", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Breton", "code": "br", "sense": "to transport toward somebody/somewhere", "word": "kas", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Bulgarian", "code": "bg", "sense": "to transport toward somebody/somewhere", "english": "bring by carrying", "roman": "donásjam", "tags": ["imperfective"], "word": "дона́сям", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Bulgarian", "code": "bg", "sense": "to transport toward somebody/somewhere", "english": "accompanying", "roman": "dovéždam", "tags": ["imperfective"], "word": "дове́ждам", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Burmese", "code": "my", "sense": "to transport toward somebody/somewhere", "roman": "yula", "word": "ယူလာ", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Catalan", "code": "ca", "sense": "to transport toward somebody/somewhere", "word": "aportar", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Cherokee", "code": "chr", "sense": "to transport toward somebody/somewhere", "roman": "ayohisdi", "word": "ᎠᏲᎯᏍᏗ", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Chichewa", "code": "ny", "sense": "to transport toward somebody/somewhere", "word": "nyamula", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Chinese Mandarin", "code": "cmn", "sense": "to transport toward somebody/somewhere", "word": "帶來", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Chinese Mandarin", "code": "cmn", "sense": "to transport toward somebody/somewhere", "english": "bringer is coming", "roman": "dàilái", "word": "带来", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Chinese Mandarin", "code": "cmn", "sense": "to transport toward somebody/somewhere", "word": "帶去", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Chinese Mandarin", "code": "cmn", "sense": "to transport toward somebody/somewhere", "english": "bringer is going", "roman": "dàiqu", "word": "带去", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Corsican", "code": "co", "sense": "to transport toward somebody/somewhere", "word": "purtà", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Czech", "code": "cs", "sense": "to transport toward somebody/somewhere", "english": "a thing, on foot", "tags": ["imperfective"], "word": "přinášet", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Czech", "code": "cs", "sense": "to transport toward somebody/somewhere", "tags": ["perfective"], "word": "přinést", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Czech", "code": "cs", "sense": "to transport toward somebody/somewhere", "english": "a person, on foot", "tags": ["imperfective"], "word": "přivádět", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Czech", "code": "cs", "sense": "to transport toward somebody/somewhere", "tags": ["perfective"], "word": "přivést", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Czech", "code": "cs", "sense": "to transport toward somebody/somewhere", "english": "a thing or person, by vehicle", "tags": ["imperfective"], "word": "přivážet", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Czech", "code": "cs", "sense": "to transport toward somebody/somewhere", "tags": ["perfective"], "word": "přivézt", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Dalmatian", "code": "dlm", "sense": "to transport toward somebody/somewhere", "word": "portur", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Danish", "code": "da", "sense": "to transport toward somebody/somewhere", "word": "bringe", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Dutch", "code": "nl", "sense": "to transport toward somebody/somewhere", "word": "brengen", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Egyptian", "code": "egy", "sense": "to transport toward somebody/somewhere", "roman": "jnj", "word": "ini:n", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Esperanto", "code": "eo", "sense": "to transport toward somebody/somewhere", "word": "alkonduki", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Esperanto", "code": "eo", "sense": "to transport toward somebody/somewhere", "word": "alporti", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Estonian", "code": "et", "sense": "to transport toward somebody/somewhere", "word": "tooma", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Extremaduran", "code": "ext", "sense": "to transport toward somebody/somewhere", "word": "trel", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Finnish", "code": "fi", "sense": "to transport toward somebody/somewhere", "word": "tuoda", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Franco-Provençal", "code": "frp", "sense": "to transport toward somebody/somewhere", "word": "amenar", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "French", "code": "fr", "sense": "to transport toward somebody/somewhere", "word": "apporter", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "French", "code": "fr", "sense": "to transport toward somebody/somewhere", "word": "amener", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Friulian", "code": "fur", "sense": "to transport toward somebody/somewhere", "word": "puartâ", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Galician", "code": "gl", "sense": "to transport toward somebody/somewhere", "word": "traer", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Galician", "code": "gl", "sense": "to transport toward somebody/somewhere", "word": "traguer", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Galician", "code": "gl", "sense": "to transport toward somebody/somewhere", "word": "levar", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Galician", "code": "gl", "sense": "to transport toward somebody/somewhere", "word": "carregar", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Galician", "code": "gl", "sense": "to transport toward somebody/somewhere", "word": "portar", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Georgian", "code": "ka", "sense": "to transport toward somebody/somewhere", "roman": "moṭana", "word": "მოტანა", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "German", "code": "de", "sense": "to transport toward somebody/somewhere", "word": "bringen", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "German", "code": "de", "sense": "to transport toward somebody/somewhere", "word": "holen", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Gothic", "code": "got", "sense": "to transport toward somebody/somewhere", "roman": "briggan", "word": "𐌱𐍂𐌹𐌲𐌲𐌰𐌽", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Greek", "code": "el", "sense": "to transport toward somebody/somewhere", "roman": "férno", "word": "φέρνω", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Ancient Greek", "code": "grc", "sense": "to transport toward somebody/somewhere", "roman": "ágō", "word": "ἄγω", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Ancient Greek", "code": "grc", "sense": "to transport toward somebody/somewhere", "roman": "phérō", "word": "φέρω", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Ancient Greek", "code": "grc", "sense": "to transport toward somebody/somewhere", "roman": "epágō", "word": "ἐπάγω", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Haitian Creole", "code": "ht", "sense": "to transport toward somebody/somewhere", "word": "pote", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Hausa", "code": "ha", "sense": "to transport toward somebody/somewhere", "word": "kāwo", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Hawaiian", "code": "haw", "sense": "to transport toward somebody/somewhere", "word": "lawe mai", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Hawaiian", "code": "haw", "sense": "to transport toward somebody/somewhere", "word": "hō mai", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Hebrew", "code": "he", "sense": "to transport toward somebody/somewhere", "roman": "heví", "word": "הֵבִיא", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Hindi", "code": "hi", "sense": "to transport toward somebody/somewhere", "roman": "lānā", "word": "लाना", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Hungarian", "code": "hu", "sense": "to transport toward somebody/somewhere", "word": "hoz", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Icelandic", "code": "is", "sense": "to transport toward somebody/somewhere", "word": "færa", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Ido", "code": "io", "sense": "to transport toward somebody/somewhere", "word": "adportar", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Ido", "code": "io", "sense": "to transport toward somebody/somewhere", "word": "portar", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Igbo", "code": "ig", "sense": "to transport toward somebody/somewhere", "word": "weta", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Indonesian", "code": "id", "sense": "to transport toward somebody/somewhere", "word": "bawa", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Indonesian", "code": "id", "sense": "to transport toward somebody/somewhere", "word": "membawa", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Ingrian", "code": "izh", "sense": "to transport toward somebody/somewhere", "word": "toovva", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Interlingua", "code": "ia", "sense": "to transport toward somebody/somewhere", "word": "apportar", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Irish", "code": "ga", "sense": "to transport toward somebody/somewhere", "word": "tabhair", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Istriot", "code": "ist", "sense": "to transport toward somebody/somewhere", "word": "portà", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Italian", "code": "it", "sense": "to transport toward somebody/somewhere", "word": "portare", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Japanese", "code": "ja", "sense": "to transport toward somebody/somewhere", "english": "bringer is coming", "alt": "もってくる", "roman": "motte-kuru", "word": "持って来る", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Japanese", "code": "ja", "sense": "to transport toward somebody/somewhere", "english": "bringer is going", "alt": "もっていく", "roman": "motte-iku", "word": "持って行く", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Javanese", "code": "jv", "sense": "to transport toward somebody/somewhere", "word": "gawa", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Kazakh", "code": "kk", "sense": "to transport toward somebody/somewhere", "roman": "äkelu", "word": "әкелу", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Khmer", "code": "km", "sense": "to transport toward somebody/somewhere", "roman": "yɔɔk ... mɔɔk", "word": "យក...មក", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Khmer", "code": "km", "sense": "to transport toward somebody/somewhere", "roman": "noam ... mɔɔk", "word": "នាំ...មក", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Korean", "code": "ko", "sense": "to transport toward somebody/somewhere", "roman": "gajeooda", "word": "가져오다", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Korean", "code": "ko", "sense": "to transport toward somebody/somewhere", "roman": "gatda juda", "word": "갖다 주다", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Northern Kurdish", "code": "kmr", "sense": "to transport toward somebody/somewhere", "word": "anîn", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Northern Kurdish", "code": "kmr", "sense": "to transport toward somebody/somewhere", "word": "înan", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Kyrgyz", "code": "ky", "sense": "to transport toward somebody/somewhere", "roman": "kelüü", "word": "келүү", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Lao", "code": "lo", "sense": "to transport toward somebody/somewhere", "roman": "ʼao mā", "word": "ເອົາມາ", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Lao", "code": "lo", "sense": "to transport toward somebody/somewhere", "roman": "nam", "word": "ນຳ", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Latin", "code": "la", "sense": "to transport toward somebody/somewhere", "word": "addō", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Latin", "code": "la", "sense": "to transport toward somebody/somewhere", "word": "addūcō", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Latin", "code": "la", "sense": "to transport toward somebody/somewhere", "word": "portō", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Latin", "code": "la", "sense": "to transport toward somebody/somewhere", "word": "afferō", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Latvian", "code": "lv", "sense": "to transport toward somebody/somewhere", "word": "ienest", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Latvian", "code": "lv", "sense": "to transport toward somebody/somewhere", "word": "atnest", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Lithuanian", "code": "lt", "sense": "to transport toward somebody/somewhere", "word": "atnešti", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Low German", "code": "nds", "sense": "to transport toward somebody/somewhere", "word": "bringen", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Luganda", "code": "lg", "sense": "to transport toward somebody/somewhere", "word": "leeta", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Lushootseed", "code": "lut", "sense": "to transport toward somebody/somewhere", "word": "ʔəƛ̕txʷ", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Luxembourgish", "code": "lb", "sense": "to transport toward somebody/somewhere", "word": "bréngen", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Macedonian", "code": "mk", "sense": "to transport toward somebody/somewhere", "roman": "donesuva", "tags": ["imperfective"], "word": "донесува", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Macedonian", "code": "mk", "sense": "to transport toward somebody/somewhere", "english": "bring by carrying", "roman": "donese", "tags": ["perfective"], "word": "донесе", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Macedonian", "code": "mk", "sense": "to transport toward somebody/somewhere", "roman": "doveduva", "tags": ["imperfective"], "word": "доведува", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Macedonian", "code": "mk", "sense": "to transport toward somebody/somewhere", "english": "accompanying", "roman": "dovede", "tags": ["perfective"], "word": "доведе", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Malay", "code": "ms", "sense": "to transport toward somebody/somewhere", "word": "bawa", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Malayalam", "code": "ml", "sense": "to transport toward somebody/somewhere", "roman": "koṇṭuvarika", "word": "കൊണ്ടുവരിക", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Maltese", "code": "mt", "sense": "to transport toward somebody/somewhere", "word": "ġab", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Maltese", "code": "mt", "sense": "to transport toward somebody/somewhere", "word": "wassal", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Maori", "code": "mi", "sense": "to transport toward somebody/somewhere", "word": "homai", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Maori", "code": "mi", "sense": "to transport toward somebody/somewhere", "word": "mau", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Maori", "code": "mi", "sense": "to transport toward somebody/somewhere", "word": "apatari", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Marathi", "code": "mr", "sense": "to transport toward somebody/somewhere", "roman": "āṇṇe", "word": "आणणे", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Middle English", "code": "enm", "sense": "to transport toward somebody/somewhere", "word": "bryngen", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Mongolian", "code": "mn", "sense": "to transport toward somebody/somewhere", "roman": "avčrax", "word": "авчрах", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Neapolitan", "code": "nap", "sense": "to transport toward somebody/somewhere", "word": "purtà", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Nepali", "code": "ne", "sense": "to transport toward somebody/somewhere", "roman": "lyāunu", "word": "ल्याउनु", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Ngazidja Comorian", "code": "zdj", "sense": "to transport toward somebody/somewhere", "word": "urwawa", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Norman", "code": "nrf", "sense": "to transport toward somebody/somewhere", "word": "emm'ner", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Northern Frisian", "code": "frr", "tags": ["Föhr-Amrum, Helgoland and Sylt"], "sense": "to transport toward somebody/somewhere", "word": "bring", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Northern Frisian", "code": "frr", "tags": ["Hallig"], "sense": "to transport toward somebody/somewhere", "word": "briange", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Northern Frisian", "code": "frr", "tags": ["Mooring"], "sense": "to transport toward somebody/somewhere", "word": "bränge", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Norwegian Bokmål", "code": "nb", "sense": "to transport toward somebody/somewhere", "word": "bringe", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Norwegian Bokmål", "code": "nb", "sense": "to transport toward somebody/somewhere", "word": "ta med", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Norwegian Nynorsk", "code": "nn", "sense": "to transport toward somebody/somewhere", "word": "bringe", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Norwegian Nynorsk", "code": "nn", "sense": "to transport toward somebody/somewhere", "word": "ta med", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Occitan", "code": "oc", "sense": "to transport toward somebody/somewhere", "word": "aportar", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Occitan", "code": "oc", "sense": "to transport toward somebody/somewhere", "word": "adúser", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Old English", "code": "ang", "sense": "to transport toward somebody/somewhere", "word": "bringan", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Old Frisian", "code": "ofs", "sense": "to transport toward somebody/somewhere", "word": "bringa", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Old Galician-Portuguese", "code": "roa-opt", "sense": "to transport toward somebody/somewhere", "word": "trager", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Old Javanese", "code": "kaw", "sense": "to transport toward somebody/somewhere", "word": "wawa", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Old Saxon", "code": "osx", "sense": "to transport toward somebody/somewhere", "word": "bringan", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Oromo", "code": "om", "sense": "to transport toward somebody/somewhere", "word": "fiduu", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Ossetian", "code": "os", "sense": "to transport toward somebody/somewhere", "roman": "ærxæssyn", "word": "ӕрхӕссын", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Persian", "code": "fa", "sense": "to transport toward somebody/somewhere", "roman": "âvardan", "word": "آوردن", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Plautdietsch", "code": "pdt", "sense": "to transport toward somebody/somewhere", "word": "brinjen", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Polish", "code": "pl", "sense": "to transport toward somebody/somewhere", "english": "a thing, on foot", "tags": ["imperfective"], "word": "przynosić", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Polish", "code": "pl", "sense": "to transport toward somebody/somewhere", "tags": ["perfective"], "word": "przynieść", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Polish", "code": "pl", "sense": "to transport toward somebody/somewhere", "english": "a person, on foot", "tags": ["imperfective"], "word": "przyprowadzać", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Polish", "code": "pl", "sense": "to transport toward somebody/somewhere", "tags": ["perfective"], "word": "przyprowadzić", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Polish", "code": "pl", "sense": "to transport toward somebody/somewhere", "english": "a thing or person, by vehicle", "tags": ["imperfective"], "word": "przywozić", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Polish", "code": "pl", "sense": "to transport toward somebody/somewhere", "tags": ["perfective"], "word": "przywieźć", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Portuguese", "code": "pt", "sense": "to transport toward somebody/somewhere", "word": "trazer", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Quechua", "code": "qu", "sense": "to transport toward somebody/somewhere", "word": "apamuy", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Romanian", "code": "ro", "sense": "to transport toward somebody/somewhere", "word": "aduce", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Romansch", "code": "rm", "sense": "to transport toward somebody/somewhere", "word": "purtar", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Russian", "code": "ru", "sense": "to transport toward somebody/somewhere", "roman": "prinosítʹ", "english": "a thing, on foot", "tags": ["imperfective"], "word": "приноси́ть", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Russian", "code": "ru", "sense": "to transport toward somebody/somewhere", "roman": "prinestí", "tags": ["perfective"], "word": "принести́", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Russian", "code": "ru", "sense": "to transport toward somebody/somewhere", "roman": "privodítʹ", "english": "a person, on foot", "tags": ["imperfective"], "word": "приводи́ть", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Russian", "code": "ru", "sense": "to transport toward somebody/somewhere", "roman": "privestí", "tags": ["perfective"], "word": "привести́", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Russian", "code": "ru", "sense": "to transport toward somebody/somewhere", "roman": "privozítʹ", "english": "a thing or person, by vehicle", "tags": ["imperfective"], "word": "привози́ть", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Russian", "code": "ru", "sense": "to transport toward somebody/somewhere", "roman": "priveztí", "tags": ["perfective"], "word": "привезти́", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Sanskrit", "code": "sa", "sense": "to transport toward somebody/somewhere", "roman": "ānayati", "word": "आनयति", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Sardinian", "code": "sc", "sense": "to transport toward somebody/somewhere", "word": "poltare", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Sardinian", "code": "sc", "sense": "to transport toward somebody/somewhere", "word": "portare", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Sardinian", "code": "sc", "sense": "to transport toward somebody/somewhere", "word": "vature", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Scots", "code": "sco", "sense": "to transport toward somebody/somewhere", "word": "bring", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Scottish Gaelic", "code": "gd", "sense": "to transport toward somebody/somewhere", "word": "thoir", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Cyrillic", "intransitive"], "sense": "to transport toward somebody/somewhere", "word": "донети", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Cyrillic", "transitive"], "sense": "to transport toward somebody/somewhere", "word": "доносити", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Cyrillic", "transitive"], "sense": "to transport toward somebody/somewhere", "word": "носити", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Cyrillic", "intransitive"], "sense": "to transport toward somebody/somewhere", "word": "понети", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Cyrillic", "intransitive"], "sense": "to transport toward somebody/somewhere", "word": "довести", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Cyrillic", "transitive"], "sense": "to transport toward somebody/somewhere", "word": "доводити", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Cyrillic", "German", "slang"], "sense": "to transport toward somebody/somewhere", "topics": ["origin"], "word": "дофурати", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Roman", "intransitive"], "sense": "to transport toward somebody/somewhere", "word": "donijeti", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Roman", "transitive"], "sense": "to transport toward somebody/somewhere", "word": "donositi", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Roman", "transitive"], "sense": "to transport toward somebody/somewhere", "word": "nositi", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Roman", "intransitive"], "sense": "to transport toward somebody/somewhere", "word": "ponijeti", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Roman", "intransitive"], "sense": "to transport toward somebody/somewhere", "word": "dovesti", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Roman", "transitive"], "sense": "to transport toward somebody/somewhere", "word": "dovoditi", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["German", "Roman", "slang"], "sense": "to transport toward somebody/somewhere", "topics": ["origin"], "word": "dofurati", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Sicilian", "code": "scn", "sense": "to transport toward somebody/somewhere", "word": "purtari", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Sinhalese", "code": "si", "sense": "to transport toward somebody/somewhere", "roman": "genenawā", "word": "ගෙනෙනවා", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Slovak", "code": "sk", "sense": "to transport toward somebody/somewhere", "english": "a thing, on foot", "tags": ["imperfective"], "word": "prinášať", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Slovak", "code": "sk", "sense": "to transport toward somebody/somewhere", "tags": ["perfective"], "word": "priniesť", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Slovak", "code": "sk", "sense": "to transport toward somebody/somewhere", "english": "a person, on foot", "tags": ["imperfective"], "word": "privádzať", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Slovak", "code": "sk", "sense": "to transport toward somebody/somewhere", "tags": ["perfective"], "word": "priviesť", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Slovak", "code": "sk", "sense": "to transport toward somebody/somewhere", "english": "a thing or person, by vehicle", "tags": ["imperfective"], "word": "privážať", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Slovak", "code": "sk", "sense": "to transport toward somebody/somewhere", "tags": ["perfective"], "word": "priviezť", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Slovene", "code": "sl", "sense": "to transport toward somebody/somewhere", "tags": ["imperfective"], "word": "prinašati", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Slovene", "code": "sl", "sense": "to transport toward somebody/somewhere", "tags": ["perfective"], "word": "prinesti", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Somali", "code": "so", "sense": "to transport toward somebody/somewhere", "word": "keenid", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Lower Sorbian", "code": "dsb", "sense": "to transport toward somebody/somewhere", "tags": ["abstract", "imperfective"], "english": "by vehicle", "word": "wózyś", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Lower Sorbian", "code": "dsb", "sense": "to transport toward somebody/somewhere", "tags": ["concrete", "imperfective"], "english": "by vehicle", "word": "wjasć", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Lower Sorbian", "code": "dsb", "sense": "to transport toward somebody/somewhere", "tags": ["imperfective"], "word": "póraś", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Upper Sorbian", "code": "hsb", "sense": "to transport toward somebody/somewhere", "english": "a thing, on foot", "tags": ["imperfective"], "word": "přinosyć", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Upper Sorbian", "code": "hsb", "sense": "to transport toward somebody/somewhere", "tags": ["perfective"], "word": "přinjesć", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Upper Sorbian", "code": "hsb", "sense": "to transport toward somebody/somewhere", "english": "a person, on foot", "tags": ["imperfective"], "word": "přiwodźić", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Upper Sorbian", "code": "hsb", "sense": "to transport toward somebody/somewhere", "tags": ["perfective"], "word": "přiwjesć", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Upper Sorbian", "code": "hsb", "sense": "to transport toward somebody/somewhere", "english": "a thing or person, by vehicle", "tags": ["imperfective"], "word": "přiwozyć", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Upper Sorbian", "code": "hsb", "sense": "to transport toward somebody/somewhere", "tags": ["perfective"], "word": "přiwjezć", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Spanish", "code": "es", "sense": "to transport toward somebody/somewhere", "english": "bringer is coming", "word": "traer", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Spanish", "code": "es", "sense": "to transport toward somebody/somewhere", "english": "bringer is going", "word": "llevar", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Swahili", "code": "sw", "sense": "to transport toward somebody/somewhere", "word": "kuleta", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Swahili", "code": "sw", "sense": "to transport toward somebody/somewhere", "word": "kuletea", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Swedish", "code": "sv", "sense": "to transport toward somebody/somewhere", "word": "ta med", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Swedish", "code": "sv", "sense": "to transport toward somebody/somewhere", "word": "bringa", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Swedish", "code": "sv", "sense": "to transport toward somebody/somewhere", "word": "medföra", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Swedish", "code": "sv", "sense": "to transport toward somebody/somewhere", "word": "tillföra", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Sylheti", "code": "syl", "sense": "to transport toward somebody/somewhere", "roman": "ana", "word": "ꠀꠘꠣ", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Tagalog", "code": "tl", "sense": "to transport toward somebody/somewhere", "word": "dala", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Tajik", "code": "tg", "sense": "to transport toward somebody/somewhere", "roman": "ovardan", "word": "овардан", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Telugu", "code": "te", "sense": "to transport toward somebody/somewhere", "roman": "teccu", "word": "తెచ్చు", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Telugu", "code": "te", "sense": "to transport toward somebody/somewhere", "roman": "tīsukoccu", "word": "తీసుకొచ్చు", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Thai", "code": "th", "sense": "to transport toward somebody/somewhere", "roman": "nam", "word": "นำ", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Thai", "code": "th", "sense": "to transport toward somebody/somewhere", "roman": "ao maa", "word": "เอามา", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Tocharian B", "code": "txb", "sense": "to transport toward somebody/somewhere", "word": "ās-", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Tok Pisin", "code": "tpi", "sense": "to transport toward somebody/somewhere", "word": "bringim", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Turkish", "code": "tr", "sense": "to transport toward somebody/somewhere", "word": "getirmek", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Turkmen", "code": "tk", "sense": "to transport toward somebody/somewhere", "word": "getirmek", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Ugaritic", "code": "uga", "sense": "to transport toward somebody/somewhere", "roman": "ybl", "word": "𐎊𐎁𐎍", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Ukrainian", "code": "uk", "sense": "to transport toward somebody/somewhere", "roman": "prynósyty", "english": "a thing, on foot", "tags": ["imperfective"], "word": "прино́сити", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Ukrainian", "code": "uk", "sense": "to transport toward somebody/somewhere", "roman": "prynestý", "tags": ["perfective"], "word": "принести́", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Ukrainian", "code": "uk", "sense": "to transport toward somebody/somewhere", "roman": "pryvódyty", "english": "a person, on foot", "tags": ["imperfective"], "word": "приво́дити", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Ukrainian", "code": "uk", "sense": "to transport toward somebody/somewhere", "roman": "pryvestý", "tags": ["perfective"], "word": "привести́", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Ukrainian", "code": "uk", "sense": "to transport toward somebody/somewhere", "roman": "pryvózyty", "english": "a thing or person, by vehicle", "tags": ["imperfective"], "word": "приво́зити", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Ukrainian", "code": "uk", "sense": "to transport toward somebody/somewhere", "roman": "pryveztý", "tags": ["perfective"], "word": "привезти́", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Urdu", "code": "ur", "sense": "to transport toward somebody/somewhere", "roman": "lānā", "word": "لانا", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Uzbek", "code": "uz", "sense": "to transport toward somebody/somewhere", "word": "olib kelmoq", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Uzbek", "code": "uz", "sense": "to transport toward somebody/somewhere", "word": "opke (Toshkent)", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Venetian", "code": "vec", "sense": "to transport toward somebody/somewhere", "word": "portar", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Vietnamese", "code": "vi", "sense": "to transport toward somebody/somewhere", "word": "mang", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Volapük", "code": "vo", "sense": "to transport toward somebody/somewhere", "word": "blinön", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Walloon", "code": "wa", "sense": "to transport toward somebody/somewhere", "word": "apoirter", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Walloon", "code": "wa", "sense": "to transport toward somebody/somewhere", "word": "abouter", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Walloon", "code": "wa", "sense": "to transport toward somebody/somewhere", "word": "atcheryî", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Walloon", "code": "wa", "sense": "to transport toward somebody/somewhere", "word": "amoenner", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Welsh", "code": "cy", "sense": "to transport toward somebody/somewhere", "word": "dod â", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "West Frisian", "code": "fy", "sense": "to transport toward somebody/somewhere", "word": "bringe", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Wolof", "code": "wo", "sense": "to transport toward somebody/somewhere", "word": "indy", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Xhosa", "code": "xh", "sense": "to transport toward somebody/somewhere", "word": "letha", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Yiddish", "code": "yi", "sense": "to transport toward somebody/somewhere", "roman": "brengen", "word": "ברענגען", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Yoruba", "code": "yo", "sense": "to transport toward somebody/somewhere", "word": "mu", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Zazaki", "code": "zza", "sense": "to transport toward somebody/somewhere", "word": "arden", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Zazaki", "code": "zza", "sense": "to transport toward somebody/somewhere", "word": "anayen", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Zazaki", "code": "zza", "sense": "to transport toward somebody/somewhere", "word": "overden", "_dis1": "85 1 1 8 1 2 1"}, {"lang": "Zulu", "code": "zu", "sense": "to transport toward somebody/somewhere", "word": "letha", "_dis1": "85 1 1 8 1 2 1"}]}, {"examples": [{"text": "The new company director brought a fresh perspective on sales and marketing.", "type": "example"}], "links": [["supply", "supply"], ["contribute", "contribute"]], "raw_glosses": ["(transitive, figuratively) To supply or contribute."], "glosses": ["To supply or contribute."], "tags": ["figuratively", "transitive"], "id": "bring-en-verb-rEkBAQry", "categories": []}, {"examples": [{"text": "The controversial TV broadcast brought a storm of complaints."}], "links": [["occasion", "occasion"], ["bring about", "bring about"]], "raw_glosses": ["(transitive) To occasion or bring about."], "glosses": ["To occasion or bring about."], "tags": ["transitive"], "id": "bring-en-verb-4gxcrZPd", "categories": []}, {"examples": [{"text": "It has jailed environmental activists and is planning to limit the power of judicial oversight by handing a state-approved body a monopoly over bringing environmental lawsuits.", "ref": "2013-08-10, “Can China clean up fast enough?”, in The Economist, volume 408, number 8848", "type": "quotation"}], "links": [["raise", "raise"]], "raw_glosses": ["(transitive) To raise (a lawsuit, charges, etc.) against somebody."], "glosses": ["To raise (a lawsuit, charges, etc.) against somebody."], "tags": ["transitive"], "id": "bring-en-verb-sCvceQic", "categories": []}, {"glosses": ["To persuade; to induce; to draw; to lead; to guide."], "id": "bring-en-verb-KjjmL3qg"}, {"examples": [{"text": "What does coal bring per ton?", "type": "example"}], "glosses": ["To produce in exchange; to sell for; to fetch."], "id": "bring-en-verb-HVcnvzaw", "categories": []}, {"examples": [{"text": "The closer Jones can really bring it.", "type": "example"}], "links": [["baseball", "baseball"], ["fastball", "fastball"]], "raw_glosses": ["(baseball) To pitch, often referring to a particularly hard thrown fastball."], "topics": ["ball-games", "baseball", "games", "hobbies", "lifestyle", "sports"], "glosses": ["To pitch, often referring to a particularly hard thrown fastball."], "id": "bring-en-verb-RiBQdn1P", "categories": [{"name": "Baseball", "kind": "topical", "parents": ["Ball games", "Sports", "Human activity", "Human behaviour", "Human", "All topics", "Fundamental"], "source": "w", "orig": "en:Baseball", "langcode": "en"}], "translations": [{"lang": "Finnish", "code": "fi", "sense": "baseball: to pitch", "word": "syöttää", "_dis1": "3 1 1 3 5 1 87"}]}]} {"pos": "noun", "head_templates": [{"name": "en-noun", "args": {}, "expansion": "wain (plural wains)"}], "forms": [{"form": "alt=An oil painting of a large steerable cart being drawn by two strong horses through a river. wain", "tags": ["canonical"]}, {"form": "wains", "tags": ["plural"]}], "sounds": [{"ipa": "/weɪn/"}, {"rhymes": "-eɪn"}, {"homophone": "Wayne"}, {"homophone": "wane"}], "etymology_number": 1, "etymology_text": "From Middle English wayn, from Old English wæġn, from Proto-West Germanic *wagn, from Proto-Germanic *wagnaz, from Proto-Indo-European *woǵʰnos, from *weǵʰ- (“to bring, transport”). Doublet of wagon, borrowed from Middle Dutch.\nCognates\nCognate with West Frisian wein, Dutch wagen, German Wagen, Danish vogn, Norwegian vogn, Swedish vagn. Doublet of wagon, a borrowing from Dutch.", "etymology_templates": [{"name": "root", "args": {"1": "en", "2": "ine-pro", "3": "*weǵʰ-"}, "expansion": ""}, {"name": "inh", "args": {"1": "en", "2": "enm", "3": "wayn"}, "expansion": "Middle English wayn"}, {"name": "inh", "args": {"1": "en", "2": "ang", "3": "wæġn"}, "expansion": "Old English wæġn"}, {"name": "inh", "args": {"1": "en", "2": "gmw-pro", "3": "*wagn"}, "expansion": "Proto-West Germanic *wagn"}, {"name": "inh", "args": {"1": "en", "2": "gem-pro", "3": "*wagnaz"}, "expansion": "Proto-Germanic *wagnaz"}, {"name": "inh", "args": {"1": "en", "2": "ine-pro", "3": "", "4": "*woǵʰnos"}, "expansion": "Proto-Indo-European *woǵʰnos"}, {"name": "dbt", "args": {"1": "en", "2": "wagon"}, "expansion": "Doublet of wagon"}, {"name": "cog", "args": {"1": "fy", "2": "wein"}, "expansion": "West Frisian wein"}, {"name": "cog", "args": {"1": "nl", "2": "wagen"}, "expansion": "Dutch wagen"}, {"name": "cog", "args": {"1": "de", "2": "Wagen"}, "expansion": "German Wagen"}, {"name": "cog", "args": {"1": "da", "2": "vogn"}, "expansion": "Danish vogn"}, {"name": "cog", "args": {"1": "no", "2": "vogn"}, "expansion": "Norwegian vogn"}, {"name": "cog", "args": {"1": "sv", "2": "vagn"}, "expansion": "Swedish vagn"}, {"name": "doublet", "args": {"1": "en", "2": "wagon"}, "expansion": "Doublet of wagon"}], "word": "wain", "lang": "English", "lang_code": "en", "synonyms": [{"tags": ["obsolete"], "word": "wayn", "_dis1": "0 0"}], "senses": [{"examples": [{"text": "\"The Hay Wain\" is a famous painting by John Constable.", "type": "example"}], "links": [["wagon", "wagon"], ["cart", "cart"]], "raw_glosses": ["(archaic or literary) A wagon; a four-wheeled cart for hauling loads, usually pulled by horses or oxen."], "glosses": ["A wagon; a four-wheeled cart for hauling loads, usually pulled by horses or oxen."], "tags": ["archaic", "literary"], "id": "en-wain-en-noun-l4NbEfOD", "categories": [{"name": "English entries with incorrect language header", "kind": "other", "parents": ["Entries with incorrect language header", "Entry maintenance"], "source": "w+disamb", "_dis": "50 28 5 17"}, {"name": "Pages with 9 entries", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "57 20 11 13"}, {"name": "Terms with Bulgarian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "86 14"}, {"name": "Terms with Finnish translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "86 14"}, {"name": "Terms with Irish translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "86 14"}, {"name": "Terms with Italian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "84 16"}, {"name": "Terms with Russian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "84 16"}, {"name": "Terms with Swedish translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "86 14"}, {"name": "Terms with Welsh translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "75 25"}], "translations": [{"lang": "Bulgarian", "code": "bg", "sense": "a wagon; a four-wheeled cart for hauling loads, usually pulled by horses or oxen", "tags": ["feminine"], "word": "кола", "roman": "kola"}, {"lang": "Finnish", "code": "fi", "sense": "a wagon; a four-wheeled cart for hauling loads, usually pulled by horses or oxen", "word": "kärry"}, {"lang": "Finnish", "code": "fi", "sense": "a wagon; a four-wheeled cart for hauling loads, usually pulled by horses or oxen", "tags": ["plural"], "word": "rattaat"}, {"lang": "Irish", "code": "ga", "sense": "a wagon; a four-wheeled cart for hauling loads, usually pulled by horses or oxen", "tags": ["masculine"], "word": "féan"}, {"lang": "Irish", "code": "ga", "sense": "a wagon; a four-wheeled cart for hauling loads, usually pulled by horses or oxen", "tags": ["masculine"], "word": "vaigín"}, {"lang": "Italian", "code": "it", "sense": "a wagon; a four-wheeled cart for hauling loads, usually pulled by horses or oxen", "tags": ["masculine"], "word": "carro"}, {"lang": "Italian", "code": "it", "sense": "a wagon; a four-wheeled cart for hauling loads, usually pulled by horses or oxen", "tags": ["masculine"], "word": "carretto"}, {"lang": "Russian", "code": "ru", "sense": "a wagon; a four-wheeled cart for hauling loads, usually pulled by horses or oxen", "roman": "povózka", "tags": ["feminine"], "word": "пово́зка"}, {"lang": "Russian", "code": "ru", "sense": "a wagon; a four-wheeled cart for hauling loads, usually pulled by horses or oxen", "roman": "teléga", "tags": ["feminine"], "word": "теле́га"}, {"lang": "Swedish", "code": "sv", "sense": "a wagon; a four-wheeled cart for hauling loads, usually pulled by horses or oxen", "tags": ["common-gender"], "word": "vagn"}, {"lang": "Welsh", "code": "cy", "sense": "a wagon; a four-wheeled cart for hauling loads, usually pulled by horses or oxen", "tags": ["masculine"], "word": "wagen"}, {"lang": "Welsh", "code": "cy", "sense": "a wagon; a four-wheeled cart for hauling loads, usually pulled by horses or oxen", "tags": ["feminine"], "word": "men"}], "derived": [{"word": "Charles' Wain"}, {"word": "Conestoga wain"}, {"word": "hay wain"}, {"word": "wainwright"}]}]} +{"pos": "noun", "head_templates": [{"name": "en-noun", "args": {}, "expansion": "falcon (plural falcons)"}], "forms": [{"form": "falcons", "tags": ["plural"]}], "sounds": [{"tags": ["Received-Pronunciation"], "enpr": "fôlʹkən"}, {"tags": ["Received-Pronunciation"], "enpr": "fôʹkən"}, {"ipa": "/ˈfɔː(l)kən/", "tags": ["Received-Pronunciation"]}, {"ipa": "/ˈfɒlkən/", "tags": ["Received-Pronunciation"]}, {"tags": ["US"], "enpr": "fălʹkən"}, {"ipa": "/ˈfælkən/", "tags": ["US"]}, {"ipa": "/ˈfɑːlkən/", "tags": ["US"]}, {"audio": "en-us-falcon.ogg", "ogg_url": "https://upload.wikimedia.org/wikipedia/commons/3/3f/En-us-falcon.ogg", "mp3_url": "https://upload.wikimedia.org/wikipedia/commons/transcoded/3/3f/En-us-falcon.ogg/En-us-falcon.ogg.mp3"}, {"tags": ["General-Australian"], "ipa": "/ˈfælkən/"}, {"ipa": "/ˈfoːlkən/", "tags": ["General-Australian"]}, {"tags": ["New-Zealand"], "ipa": "/ˈfɛlkən/"}, {"ipa": "/ˈfoːlkən/", "tags": ["New-Zealand"]}, {"rhymes": "-ɔːkən"}, {"rhymes": "-ɔːlkən"}], "wikipedia": ["falcon"], "etymology_text": "From Middle English faucoun, falcon, faulcon, from Old French falcun, from Late Latin falcō (“falcon”), of Germanic origin, probably via Frankish *falkō (“falcon, hawk”), from Proto-Germanic *falkô (“falcon”), from Proto-Indo-European *pol̑- (“pale”), from *pel- (“fallow”).\ncognates\nCognate with Old English *fealca, fealcen (“falcon”), Dutch valk (“falcon, hawk”), German Falke (“falcon, hawk”), Norwegian and Swedish falk (“falcon”), Icelandic fálki (“falcon”), French faucon (“falcon”), Italian falco (“falcon”), Spanish halcón (“falcon”), Portuguese falcão (“falcon”), Latin falco (“falcon”), Lithuanian pálšas (“pale”), Latvian bāls (“pale”), Latgalian buolgs (“pale”). More at fallow.", "etymology_templates": [{"name": "inh", "args": {"1": "en", "2": "enm", "3": "faucoun"}, "expansion": "Middle English faucoun"}, {"name": "der", "args": {"1": "en", "2": "fro", "3": "falcun"}, "expansion": "Old French falcun"}, {"name": "der", "args": {"1": "en", "2": "LL.", "3": "falcō", "4": "", "5": "falcon"}, "expansion": "Late Latin falcō (“falcon”)"}, {"name": "der", "args": {"1": "en", "2": "gem"}, "expansion": "Germanic"}, {"name": "der", "args": {"1": "en", "2": "frk", "3": "*falkō", "4": "", "5": "falcon, hawk"}, "expansion": "Frankish *falkō (“falcon, hawk”)"}, {"name": "der", "args": {"1": "en", "2": "gem-pro", "3": "*falkô", "4": "", "5": "falcon"}, "expansion": "Proto-Germanic *falkô (“falcon”)"}, {"name": "der", "args": {"1": "en", "2": "ine-pro", "3": "*pol̑-", "4": "", "5": "pale"}, "expansion": "Proto-Indo-European *pol̑- (“pale”)"}, {"name": "cog", "args": {"1": "ang", "2": "*fealca"}, "expansion": "Old English *fealca"}, {"name": "cog", "args": {"1": "nl", "2": "valk", "3": "", "4": "falcon, hawk"}, "expansion": "Dutch valk (“falcon, hawk”)"}, {"name": "cog", "args": {"1": "de", "2": "Falke", "3": "", "4": "falcon, hawk"}, "expansion": "German Falke (“falcon, hawk”)"}, {"name": "cog", "args": {"1": "no", "2": "-"}, "expansion": "Norwegian"}, {"name": "cog", "args": {"1": "sv", "2": "falk", "3": "", "4": "falcon"}, "expansion": "Swedish falk (“falcon”)"}, {"name": "cog", "args": {"1": "is", "2": "fálki", "3": "", "4": "falcon"}, "expansion": "Icelandic fálki (“falcon”)"}, {"name": "cog", "args": {"1": "fr", "2": "faucon", "3": "", "4": "falcon"}, "expansion": "French faucon (“falcon”)"}, {"name": "cog", "args": {"1": "it", "2": "falco", "3": "", "4": "falcon"}, "expansion": "Italian falco (“falcon”)"}, {"name": "cog", "args": {"1": "es", "2": "halcón", "3": "", "4": "falcon"}, "expansion": "Spanish halcón (“falcon”)"}, {"name": "cog", "args": {"1": "pt", "2": "falcão", "3": "", "4": "falcon"}, "expansion": "Portuguese falcão (“falcon”)"}, {"name": "cog", "args": {"1": "la", "2": "falco", "3": "", "4": "falcon"}, "expansion": "Latin falco (“falcon”)"}, {"name": "cog", "args": {"1": "lt", "2": "pálšas", "3": "", "4": "pale"}, "expansion": "Lithuanian pálšas (“pale”)"}, {"name": "cog", "args": {"1": "lv", "2": "bāls", "3": "", "4": "pale"}, "expansion": "Latvian bāls (“pale”)"}, {"name": "cog", "args": {"1": "ltg", "2": "buolgs", "3": "", "4": "pale"}, "expansion": "Latgalian buolgs (“pale”)"}], "word": "falcon", "lang": "English", "lang_code": "en", "synonyms": [{"tags": ["obsolete"], "word": "faulcon", "_dis1": "0 0 0 0"}, {"tags": ["obsolete"], "word": "faucon", "_dis1": "0 0 0 0"}], "derived": [{"taxonomic": "Falco amurensis", "word": "Amur falcon", "_dis1": "0 0 0"}, {"taxonomic": "Falco femoralis", "word": "aplomado falcon", "_dis1": "0 0 0"}, {"taxonomic": "Falco berigora", "word": "Berigora falcon", "_dis1": "0 0 0"}, {"taxonomic": "Falco subniger", "word": "black falcon", "_dis1": "0 0 0"}, {"word": "blue falcon", "_dis1": "0 0 0"}, {"taxonomic": "Falco berigora", "word": "brown falcon", "_dis1": "0 0 0"}, {"taxonomic": "Falco eleonorae", "word": "Eleonora's falcon", "_dis1": "0 0 0"}, {"word": "falcon-eyed", "_dis1": "0 0 0"}, {"taxonomic": "Micrastur spp.", "word": "forest falcon", "_dis1": "0 0 0"}, {"word": "golden falcon name", "_dis1": "0 0 0"}, {"word": "gray falcon", "_dis1": "0 0 0"}, {"taxonomic": "Falco hypoleucos", "word": "grey falcon", "_dis1": "0 0 0"}, {"taxonomic": "Falco biarmicus", "word": "lanner falcon", "_dis1": "0 0 0"}, {"taxonomic": "Herpetotheres cachinnans", "word": "laughing falcon", "_dis1": "0 0 0"}, {"taxonomic": "Falco novaeseelandiae", "word": "New Zealand falcon", "_dis1": "0 0 0"}, {"taxonomic": "Falco peregrinus pealei", "word": "Peale's falcon", "_dis1": "0 0 0"}, {"taxonomic": "Falco peregrinus", "word": "peregrine falcon", "_dis1": "0 0 0"}, {"taxonomic": "Falco mexicanus", "word": "prairie falcon", "_dis1": "0 0 0"}, {"taxonomic": "Polihierax semitorquatus", "word": "pygmy falcon", "_dis1": "0 0 0"}, {"taxonomic": "Falco vespertinus", "word": "red-footed falcon", "_dis1": "0 0 0"}, {"taxonomic": "Falco cherrug", "word": "Saker falcon", "_dis1": "0 0 0"}, {"taxonomic": "Falco peregrinus peregrinator", "word": "shaheen falcon", "_dis1": "0 0 0"}, {"taxonomic": "Accipiter nisus", "word": "stone falcon", "_dis1": "0 0 0"}], "related": [{"word": "Falco", "_dis1": "0 0 0"}, {"word": "Falconer", "_dis1": "0 0 0"}, {"word": "falconer", "_dis1": "0 0 0"}, {"word": "falconet", "_dis1": "0 0 0"}, {"word": "falcon-gentil", "_dis1": "0 0 0"}, {"word": "falcon-gentle", "_dis1": "0 0 0"}, {"word": "falconine", "_dis1": "0 0 0"}, {"word": "falconry", "_dis1": "0 0 0"}, {"word": "gerfalcon", "_dis1": "0 0 0"}, {"taxonomic": "Falco rusticolus", "word": "gyrfalcon", "_dis1": "0 0 0"}], "senses": [{"links": [["bird", "bird"], ["genus", "genus"], ["Falco", "Falco"], ["birds of prey", "bird of prey"]], "glosses": ["Any bird of the genus Falco, all of which are birds of prey."], "id": "en-falcon-en-noun-B3B-yNLw", "translations": [{"lang": "Albanian", "code": "sq", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "skifter", "_dis1": "94 4 1"}, {"lang": "Albanian", "code": "sq", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "fajkua", "_dis1": "94 4 1"}, {"lang": "Albanian", "code": "sq", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "petrit", "_dis1": "94 4 1"}, {"lang": "Arabic", "code": "ar", "sense": "bird of the genus Falco", "roman": "ṣaqr", "tags": ["masculine"], "word": "صَقْر", "_dis1": "94 4 1"}, {"lang": "Arabic", "code": "ar", "sense": "bird of the genus Falco", "roman": "šāhīn", "tags": ["masculine"], "word": "شَاهِين", "_dis1": "94 4 1"}, {"lang": "Arabic", "code": "arz", "tags": ["Egyptian-Arabic", "masculine"], "sense": "bird of the genus Falco", "roman": "ṣaʔr", "word": "صقر", "_dis1": "94 4 1"}, {"lang": "Arabic", "code": "acw", "tags": ["Hijazi-Arabic", "masculine"], "sense": "bird of the genus Falco", "roman": "ṣagir, ṣagur", "word": "صقر", "_dis1": "94 4 1"}, {"lang": "Armenian", "code": "hy", "sense": "bird of the genus Falco", "roman": "baze", "word": "բազե", "_dis1": "94 4 1"}, {"lang": "Assamese", "code": "as", "sense": "bird of the genus Falco", "roman": "siloni", "word": "চিলনী", "_dis1": "94 4 1"}, {"lang": "Assamese", "code": "as", "sense": "bird of the genus Falco", "roman": "xen sorai", "word": "শেন চৰাই", "_dis1": "94 4 1"}, {"lang": "Asturian", "code": "ast", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "ferre", "_dis1": "94 4 1"}, {"lang": "Avar", "code": "av", "sense": "bird of the genus Falco", "roman": "lačen", "word": "лачен", "_dis1": "94 4 1"}, {"lang": "Azerbaijani", "code": "az", "sense": "bird of the genus Falco", "word": "qızılquş", "_dis1": "94 4 1"}, {"lang": "Azerbaijani", "code": "az", "sense": "bird of the genus Falco", "word": "laçın", "_dis1": "94 4 1"}, {"lang": "Bashkir", "code": "ba", "sense": "bird of the genus Falco", "roman": "ılasın", "word": "ыласын", "_dis1": "94 4 1"}, {"lang": "Basque", "code": "eu", "sense": "bird of the genus Falco", "word": "belatz handi", "_dis1": "94 4 1"}, {"lang": "Belarusian", "code": "be", "sense": "bird of the genus Falco", "roman": "sókal", "tags": ["masculine"], "word": "со́кал", "_dis1": "94 4 1"}, {"lang": "Breton", "code": "br", "sense": "bird of the genus Falco", "word": "falc'hun", "_dis1": "94 4 1"}, {"lang": "Breton", "code": "br", "sense": "bird of the genus Falco", "word": "gwalc’h", "_dis1": "94 4 1"}, {"lang": "Bulgarian", "code": "bg", "sense": "bird of the genus Falco", "roman": "sokól", "tags": ["masculine"], "word": "соко́л", "_dis1": "94 4 1"}, {"lang": "Catalan", "code": "ca", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falcó", "_dis1": "94 4 1"}, {"lang": "Central Atlas Tamazight", "code": "tzm", "sense": "bird of the genus Falco", "roman": "afalku", "word": "ⴰⴼⴰⵍⴽⵓ", "_dis1": "94 4 1"}, {"lang": "Chechen", "code": "ce", "sense": "bird of the genus Falco", "roman": "leča", "word": "леча", "_dis1": "94 4 1"}, {"lang": "Chinese Mandarin", "code": "cmn", "sense": "bird of the genus Falco", "roman": "sǔn", "word": "隼", "_dis1": "94 4 1"}, {"lang": "Chukchi", "code": "ckt", "sense": "bird of the genus Falco", "roman": "rėvyḷʹyn", "word": "рэвыԓьын", "_dis1": "94 4 1"}, {"lang": "Coptic", "code": "cop", "sense": "bird of the genus Falco", "roman": "bēc", "tags": ["masculine"], "word": "ⲃⲏϭ", "_dis1": "94 4 1"}, {"lang": "Czech", "code": "cs", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "sokol", "_dis1": "94 4 1"}, {"lang": "Danish", "code": "da", "sense": "bird of the genus Falco", "tags": ["common-gender"], "word": "falk", "_dis1": "94 4 1"}, {"lang": "Daur", "code": "dta", "sense": "bird of the genus Falco", "word": "shogoo", "_dis1": "94 4 1"}, {"lang": "Daur", "code": "dta", "sense": "bird of the genus Falco", "word": "showoo", "_dis1": "94 4 1"}, {"lang": "Dutch", "code": "nl", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "valk", "_dis1": "94 4 1"}, {"lang": "Egyptian", "code": "egy", "sense": "bird of the genus Falco", "roman": "bjk", "word": "b-i-k-G6", "_dis1": "94 4 1"}, {"lang": "Esperanto", "code": "eo", "sense": "bird of the genus Falco", "word": "falko", "_dis1": "94 4 1"}, {"lang": "Estonian", "code": "et", "sense": "bird of the genus Falco", "word": "pistrik", "_dis1": "94 4 1"}, {"lang": "Ewe", "code": "ee", "sense": "bird of the genus Falco", "word": "aʋako", "_dis1": "94 4 1"}, {"lang": "Fala", "code": "fax", "sense": "bird of the genus Falco", "word": "falcón", "_dis1": "94 4 1"}, {"lang": "Faroese", "code": "fo", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falkur", "_dis1": "94 4 1"}, {"lang": "Faroese", "code": "fo", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "smyril", "_dis1": "94 4 1"}, {"lang": "Faroese", "code": "fo", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "fálkur", "_dis1": "94 4 1"}, {"lang": "Finnish", "code": "fi", "sense": "bird of the genus Falco", "word": "jalohaukka", "_dis1": "94 4 1"}, {"lang": "French", "code": "fr", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "faucon", "_dis1": "94 4 1"}, {"lang": "Friulian", "code": "fur", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falcuç", "_dis1": "94 4 1"}, {"lang": "Galician", "code": "gl", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falcón", "_dis1": "94 4 1"}, {"lang": "Georgian", "code": "ka", "sense": "bird of the genus Falco", "roman": "šavardeni", "word": "შავარდენი", "_dis1": "94 4 1"}, {"lang": "Georgian", "code": "ka", "sense": "bird of the genus Falco", "roman": "bazi", "word": "ბაზი", "_dis1": "94 4 1"}, {"lang": "Georgian", "code": "ka", "sense": "bird of the genus Falco", "roman": "palḳoni", "note": "as a borrowing of English origin", "word": "ფალკონი", "_dis1": "94 4 1"}, {"lang": "German", "code": "de", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "Falke", "_dis1": "94 4 1"}, {"lang": "Greek", "code": "el", "sense": "bird of the genus Falco", "roman": "geráki", "tags": ["neuter"], "word": "γεράκι", "_dis1": "94 4 1"}, {"lang": "Ancient Greek", "code": "grc", "sense": "bird of the genus Falco", "roman": "hiérax", "tags": ["masculine"], "word": "ἱέραξ", "_dis1": "94 4 1"}, {"lang": "Ancient Greek", "code": "grc", "sense": "bird of the genus Falco", "roman": "kírkos", "word": "κίρκος", "_dis1": "94 4 1"}, {"lang": "Hebrew", "code": "he", "sense": "bird of the genus Falco", "roman": "baz", "tags": ["masculine"], "word": "בז", "_dis1": "94 4 1"}, {"lang": "Hindi", "code": "hi", "sense": "bird of the genus Falco", "roman": "bāz", "word": "बाज़", "_dis1": "94 4 1"}, {"lang": "Hindi", "code": "hi", "sense": "bird of the genus Falco", "roman": "bāj", "tags": ["masculine"], "word": "बाज", "_dis1": "94 4 1"}, {"lang": "Hindi", "code": "hi", "sense": "bird of the genus Falco", "roman": "śyen", "tags": ["masculine"], "word": "श्येन", "_dis1": "94 4 1"}, {"lang": "Hungarian", "code": "hu", "sense": "bird of the genus Falco", "word": "sólyom", "_dis1": "94 4 1"}, {"lang": "Icelandic", "code": "is", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "fálki", "_dis1": "94 4 1"}, {"lang": "Ido", "code": "io", "sense": "bird of the genus Falco", "word": "falkono", "_dis1": "94 4 1"}, {"lang": "Indonesian", "code": "id", "sense": "bird of the genus Falco", "word": "alap-alap", "_dis1": "94 4 1"}, {"lang": "Ingush", "code": "inh", "sense": "bird of the genus Falco", "roman": "läča", "word": "лаьча", "_dis1": "94 4 1"}, {"lang": "Irish", "code": "ga", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "fabhcún", "_dis1": "94 4 1"}, {"lang": "Italian", "code": "it", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falco", "_dis1": "94 4 1"}, {"lang": "Italian", "code": "it", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falcone", "_dis1": "94 4 1"}, {"lang": "Japanese", "code": "ja", "sense": "bird of the genus Falco", "alt": "はやぶさ", "roman": "hayabusa", "word": "隼", "_dis1": "94 4 1"}, {"lang": "Japanese", "code": "ja", "sense": "bird of the genus Falco", "roman": "hayabusa", "word": "ハヤブサ", "_dis1": "94 4 1"}, {"lang": "Kapampangan", "code": "pam", "sense": "bird of the genus Falco", "word": "alibasbas", "_dis1": "94 4 1"}, {"lang": "Kazakh", "code": "kk", "sense": "bird of the genus Falco", "roman": "sūñqar", "word": "сұңқар", "_dis1": "94 4 1"}, {"lang": "Khitan", "code": "zkt", "sense": "bird of the genus Falco", "alt": "*ś au a", "word": "𘬥𘲼𘯺", "_dis1": "94 4 1"}, {"lang": "Korean", "code": "ko", "sense": "bird of the genus Falco", "roman": "mae", "word": "매", "_dis1": "94 4 1"}, {"lang": "Korean", "code": "ko", "sense": "bird of the genus Falco", "roman": "songgolmae", "word": "송골매", "_dis1": "94 4 1"}, {"lang": "Kyrgyz", "code": "ky", "sense": "bird of the genus Falco", "roman": "şumkar", "word": "шумкар", "_dis1": "94 4 1"}, {"lang": "Kyrgyz", "code": "ky", "sense": "bird of the genus Falco", "roman": "ılaacın", "word": "ылаачын", "_dis1": "94 4 1"}, {"lang": "Sorani", "code": "ckb", "sense": "bird of the genus Falco", "roman": "şahîn", "word": "شاھین", "_dis1": "94 4 1"}, {"lang": "Sorani", "code": "ckb", "sense": "bird of the genus Falco", "roman": "baz", "word": "باز", "_dis1": "94 4 1"}, {"lang": "Ladin", "code": "lld", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falcon", "_dis1": "94 4 1"}, {"lang": "Latin", "code": "la", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falcō", "_dis1": "94 4 1"}, {"lang": "Latvian", "code": "lv", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "lielais piekūns", "_dis1": "94 4 1"}, {"lang": "Ligurian", "code": "lij", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "fàrco", "_dis1": "94 4 1"}, {"lang": "Lithuanian", "code": "lt", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "sakalas", "_dis1": "94 4 1"}, {"lang": "Lombard", "code": "lmo", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falcon", "_dis1": "94 4 1"}, {"lang": "Low German", "code": "nds", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "Falk", "_dis1": "94 4 1"}, {"lang": "Luxembourgish", "code": "lb", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "Fallek", "_dis1": "94 4 1"}, {"lang": "Macedonian", "code": "mk", "sense": "bird of the genus Falco", "roman": "sokol", "tags": ["masculine"], "word": "сокол", "_dis1": "94 4 1"}, {"lang": "Malay", "code": "ms", "sense": "bird of the genus Falco", "word": "falkon", "_dis1": "94 4 1"}, {"lang": "Maltese", "code": "mt", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falkun", "_dis1": "94 4 1"}, {"lang": "Manchu", "code": "mnc", "sense": "bird of the genus Falco", "roman": "šongkon", "word": "ᡧᠣᠩᡴᠣᠨ", "_dis1": "94 4 1"}, {"lang": "Maori", "code": "mi", "sense": "bird of the genus Falco", "word": "kāeaea", "_dis1": "94 4 1"}, {"lang": "Maori", "code": "mi", "sense": "bird of the genus Falco", "word": "kārearea", "_dis1": "94 4 1"}, {"lang": "Middle English", "code": "enm", "sense": "bird of the genus Falco", "word": "faucoun", "_dis1": "94 4 1"}, {"lang": "Mongolian", "code": "mn", "sense": "bird of the genus Falco", "roman": "šonxor", "word": "шонхор", "_dis1": "94 4 1"}, {"lang": "Nahuatl", "code": "nah", "sense": "bird of the genus Falco", "word": "cuauhtohtli", "_dis1": "94 4 1"}, {"lang": "Navajo", "code": "nv", "sense": "bird of the genus Falco", "word": "giní", "_dis1": "94 4 1"}, {"lang": "Nivkh", "code": "niv", "sense": "bird of the genus Falco", "roman": "tʼolxaskr", "word": "тʼолхаскр", "_dis1": "94 4 1"}, {"lang": "Norwegian Bokmål", "code": "nb", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falk", "_dis1": "94 4 1"}, {"lang": "Norwegian Nynorsk", "code": "nn", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falk", "_dis1": "94 4 1"}, {"lang": "Occitan", "code": "oc", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "moisset", "_dis1": "94 4 1"}, {"lang": "Occitan", "code": "oc", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falcon", "_dis1": "94 4 1"}, {"lang": "Ottoman Turkish", "code": "ota", "sense": "bird of the genus Falco", "roman": "doğan", "word": "طوغان", "_dis1": "94 4 1"}, {"lang": "Pali", "code": "pi", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "sena", "_dis1": "94 4 1"}, {"lang": "Persian", "code": "fa", "sense": "bird of the genus Falco", "roman": "šâhin", "word": "شاهین", "_dis1": "94 4 1"}, {"lang": "Piedmontese", "code": "pms", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falcon", "_dis1": "94 4 1"}, {"lang": "Polish", "code": "pl", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "sokół", "_dis1": "94 4 1"}, {"lang": "Portuguese", "code": "pt", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falcão", "_dis1": "94 4 1"}, {"lang": "Quechua", "code": "qu", "sense": "bird of the genus Falco", "word": "waman", "_dis1": "94 4 1"}, {"lang": "Romani", "code": "rom", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falkono", "_dis1": "94 4 1"}, {"lang": "Romanian", "code": "ro", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "șoim", "_dis1": "94 4 1"}, {"lang": "Romansch", "code": "rm", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falcun", "_dis1": "94 4 1"}, {"lang": "Russian", "code": "ru", "sense": "bird of the genus Falco", "roman": "sókol", "tags": ["masculine"], "word": "со́кол", "_dis1": "94 4 1"}, {"lang": "Sangisari", "code": "sgr", "sense": "bird of the genus Falco", "roman": "quš", "word": "قوش", "_dis1": "94 4 1"}, {"lang": "Sanskrit", "code": "sa", "sense": "bird of the genus Falco", "roman": "śyena", "tags": ["masculine"], "word": "श्येन", "_dis1": "94 4 1"}, {"lang": "Sardinian", "code": "sc", "sense": "bird of the genus Falco", "word": "àcchili piscadrixi", "_dis1": "94 4 1"}, {"lang": "Sardinian", "code": "sc", "sense": "bird of the genus Falco", "word": "tilibriu", "_dis1": "94 4 1"}, {"lang": "Sardinian", "code": "sc", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "astori perdighinu", "_dis1": "94 4 1"}, {"lang": "Scottish Gaelic", "code": "gd", "sense": "bird of the genus Falco", "tags": ["feminine"], "word": "seabhag", "_dis1": "94 4 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Cyrillic", "masculine"], "sense": "bird of the genus Falco", "word": "соко", "_dis1": "94 4 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Cyrillic", "masculine"], "sense": "bird of the genus Falco", "word": "сокол", "_dis1": "94 4 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Roman", "masculine"], "sense": "bird of the genus Falco", "word": "soko", "_dis1": "94 4 1"}, {"lang": "Serbo-Croatian", "code": "sh", "tags": ["Croatian", "Roman", "masculine"], "sense": "bird of the genus Falco", "word": "sokol", "_dis1": "94 4 1"}, {"lang": "Slovak", "code": "sk", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "sokol", "_dis1": "94 4 1"}, {"lang": "Slovene", "code": "sl", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "sokol", "_dis1": "94 4 1"}, {"lang": "Lower Sorbian", "code": "dsb", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "sokoł", "_dis1": "94 4 1"}, {"lang": "Upper Sorbian", "code": "hsb", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "sokoł", "_dis1": "94 4 1"}, {"lang": "Southern Altai", "code": "alt", "sense": "bird of the genus Falco", "roman": "šoŋkor", "word": "шоҥкор", "_dis1": "94 4 1"}, {"lang": "Spanish", "code": "es", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "halcón", "_dis1": "94 4 1"}, {"lang": "Spanish", "code": "es", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falcón", "_dis1": "94 4 1"}, {"lang": "Swedish", "code": "sv", "sense": "bird of the genus Falco", "tags": ["common-gender"], "word": "falk", "_dis1": "94 4 1"}, {"lang": "Tagalog", "code": "tl", "sense": "bird of the genus Falco", "word": "palkon", "_dis1": "94 4 1"}, {"lang": "Tajik", "code": "tg", "sense": "bird of the genus Falco", "roman": "boz", "word": "боз", "_dis1": "94 4 1"}, {"lang": "Tatar", "code": "tt", "sense": "bird of the genus Falco", "roman": "laçın", "word": "лачын", "_dis1": "94 4 1"}, {"lang": "Telugu", "code": "te", "sense": "bird of the genus Falco", "roman": "ḍēga", "word": "డేగ", "_dis1": "94 4 1"}, {"lang": "Turkish", "code": "tr", "sense": "bird of the genus Falco", "word": "doğan", "_dis1": "94 4 1"}, {"lang": "Turkish", "code": "tr", "sense": "bird of the genus Falco", "word": "gökdoğan", "_dis1": "94 4 1"}, {"lang": "Ukrainian", "code": "uk", "sense": "bird of the genus Falco", "roman": "sókil", "tags": ["masculine"], "word": "со́кіл", "_dis1": "94 4 1"}, {"lang": "Urdu", "code": "ur", "sense": "bird of the genus Falco", "roman": "bāz", "word": "باز", "_dis1": "94 4 1"}, {"lang": "Urdu", "code": "ur", "sense": "bird of the genus Falco", "roman": "śāhīn", "word": "شاہین", "_dis1": "94 4 1"}, {"lang": "Urdu", "code": "ur", "sense": "bird of the genus Falco", "roman": "'uqāb", "word": "عقاب", "_dis1": "94 4 1"}, {"lang": "Urdu", "code": "ur", "sense": "bird of the genus Falco", "roman": "cīl", "word": "چیل", "_dis1": "94 4 1"}, {"lang": "Uzbek", "code": "uz", "sense": "bird of the genus Falco", "word": "lochin", "_dis1": "94 4 1"}, {"lang": "Vietnamese", "code": "vi", "sense": "bird of the genus Falco", "word": "cắt", "_dis1": "94 4 1"}, {"lang": "Volapük", "code": "vo", "sense": "bird of the genus Falco", "word": "falok", "_dis1": "94 4 1"}, {"lang": "Walloon", "code": "wa", "sense": "bird of the genus Falco", "word": "fåcon", "_dis1": "94 4 1"}, {"lang": "Welsh", "code": "cy", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "hebog", "_dis1": "94 4 1"}, {"lang": "Welsh", "code": "cy", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "gwalch", "_dis1": "94 4 1"}, {"lang": "Welsh", "code": "cy", "sense": "bird of the genus Falco", "tags": ["masculine", "plural"], "word": "gwalchod", "_dis1": "94 4 1"}, {"lang": "West Frisian", "code": "fy", "sense": "bird of the genus Falco", "tags": ["masculine"], "word": "falk", "_dis1": "94 4 1"}, {"lang": "Zazaki", "code": "zza", "sense": "bird of the genus Falco", "word": "baz (diq)", "_dis1": "94 4 1"}], "categories": [{"name": "English autohyponyms", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "46 29 18 7"}, {"name": "English entries with incorrect language header", "kind": "other", "parents": ["Entries with incorrect language header", "Entry maintenance"], "source": "w+disamb", "_dis": "47 33 16 4"}, {"name": "English links with redundant wikilinks", "kind": "other", "parents": ["Links with redundant wikilinks", "Entry maintenance"], "source": "w+disamb", "_dis": "53 28 14 6"}, {"name": "Entries with translation boxes", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "37 33 24 6"}, {"name": "Pages with 6 entries", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "60 22 13 5"}, {"name": "Pages with entries", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "55 27 15 3"}, {"name": "Terms with Albanian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "56 23 16 5"}, {"name": "Terms with Ancient Greek translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "48 25 17 10"}, {"name": "Terms with Arabic translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "55 23 17 5"}, {"name": "Terms with Armenian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "55 23 18 5"}, {"name": "Terms with Assamese translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Asturian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 6"}, {"name": "Terms with Avar translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "58 23 15 4"}, {"name": "Terms with Azerbaijani translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "56 23 16 5"}, {"name": "Terms with Bashkir translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Basque translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Belarusian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "52 25 17 6"}, {"name": "Terms with Breton translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "56 23 16 5"}, {"name": "Terms with Bulgarian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "46 35 14 5"}, {"name": "Terms with Catalan translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 23 18 5"}, {"name": "Terms with Central Atlas Tamazight translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "60 21 15 4"}, {"name": "Terms with Central Kurdish translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "60 25 14 1"}, {"name": "Terms with Chechen translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Chukchi translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "56 24 15 5"}, {"name": "Terms with Coptic translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "50 24 21 5"}, {"name": "Terms with Czech translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 27 15 5"}, {"name": "Terms with Danish translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "47 28 22 3"}, {"name": "Terms with Daur translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "53 26 15 6"}, {"name": "Terms with Dutch translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "46 28 17 9"}, {"name": "Terms with Egyptian Arabic translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "57 22 17 5"}, {"name": "Terms with Esperanto translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "55 25 14 5"}, {"name": "Terms with Estonian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Ewe translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Fala translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "58 24 14 4"}, {"name": "Terms with Faroese translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "56 23 16 5"}, {"name": "Terms with Finnish translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "51 24 19 6"}, {"name": "Terms with French translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "45 32 16 8"}, {"name": "Terms with Friulian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Galician translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "52 25 17 6"}, {"name": "Terms with Georgian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "53 23 18 5"}, {"name": "Terms with German translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "48 28 18 6"}, {"name": "Terms with Greek translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "45 28 15 12"}, {"name": "Terms with Hebrew translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "49 24 21 6"}, {"name": "Terms with Hijazi Arabic translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "66 20 12 1"}, {"name": "Terms with Hindi translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "58 22 14 5"}, {"name": "Terms with Hungarian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "48 27 15 9"}, {"name": "Terms with Icelandic translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "53 23 19 5"}, {"name": "Terms with Ido translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "59 23 13 4"}, {"name": "Terms with Indonesian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Ingush translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Irish translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "55 23 16 5"}, {"name": "Terms with Italian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "49 28 17 6"}, {"name": "Terms with Japanese translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "52 27 15 6"}, {"name": "Terms with Kapampangan translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "53 25 16 5"}, {"name": "Terms with Kazakh translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "56 23 16 5"}, {"name": "Terms with Khitan translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Korean translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Kyrgyz translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Ladin translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "56 24 14 5"}, {"name": "Terms with Latin translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "52 27 15 6"}, {"name": "Terms with Latvian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Ligurian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Lithuanian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Lombard translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "44 21 30 5"}, {"name": "Terms with Low German translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "59 20 16 5"}, {"name": "Terms with Lower Sorbian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "58 23 15 4"}, {"name": "Terms with Luxembourgish translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "55 25 15 5"}, {"name": "Terms with Macedonian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Malay translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "55 24 16 5"}, {"name": "Terms with Maltese translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 6"}, {"name": "Terms with Manchu translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "57 22 16 5"}, {"name": "Terms with Mandarin translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "50 24 19 7"}, {"name": "Terms with Maori translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Middle English translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "48 27 17 8"}, {"name": "Terms with Mongolian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "58 22 15 5"}, {"name": "Terms with Nahuatl translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "55 25 15 6"}, {"name": "Terms with Navajo translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "55 25 14 6"}, {"name": "Terms with Nivkh translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "55 25 15 6"}, {"name": "Terms with Norwegian Bokmål translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "49 24 21 6"}, {"name": "Terms with Norwegian Nynorsk translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "63 21 14 2"}, {"name": "Terms with Occitan translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "55 25 15 6"}, {"name": "Terms with Ottoman Turkish translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "50 24 21 4"}, {"name": "Terms with Pali translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "57 24 15 5"}, {"name": "Terms with Persian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Piedmontese translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Polish translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "49 25 18 7"}, {"name": "Terms with Portuguese translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "56 23 16 5"}, {"name": "Terms with Quechua translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "55 25 15 6"}, {"name": "Terms with Romani translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "56 24 15 5"}, {"name": "Terms with Romanian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "52 25 17 6"}, {"name": "Terms with Romansch translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "55 25 14 5"}, {"name": "Terms with Russian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "52 27 15 6"}, {"name": "Terms with Sangisari translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "52 27 15 6"}, {"name": "Terms with Sanskrit translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "52 26 16 6"}, {"name": "Terms with Sardinian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "56 23 16 5"}, {"name": "Terms with Scottish Gaelic translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "53 24 17 6"}, {"name": "Terms with Serbo-Croatian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "56 23 16 5"}, {"name": "Terms with Slovak translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Slovene translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "56 23 16 5"}, {"name": "Terms with Southern Altai translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "66 21 12 1"}, {"name": "Terms with Spanish translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "52 25 17 6"}, {"name": "Terms with Swedish translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "53 23 19 5"}, {"name": "Terms with Tagalog translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "53 25 17 5"}, {"name": "Terms with Tajik translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "56 23 16 5"}, {"name": "Terms with Tatar translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "57 22 16 5"}, {"name": "Terms with Telugu translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "52 23 19 5"}, {"name": "Terms with Turkish translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "53 23 19 5"}, {"name": "Terms with Ukrainian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 5"}, {"name": "Terms with Upper Sorbian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "53 25 16 6"}, {"name": "Terms with Urdu translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "55 25 15 5"}, {"name": "Terms with Uzbek translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "56 23 16 5"}, {"name": "Terms with Vietnamese translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "56 23 16 5"}, {"name": "Terms with Volapük translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "52 27 15 6"}, {"name": "Terms with Walloon translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "54 24 17 6"}, {"name": "Terms with Welsh translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "49 27 15 9"}, {"name": "Terms with West Frisian translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "59 21 16 4"}, {"name": "Terms with Zazaki translations", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "52 27 15 6"}, {"name": "Falconids", "kind": "lifeform", "parents": ["Birds of prey", "Birds", "Vertebrates", "Chordates", "Animals", "Lifeforms", "All topics", "Life", "Fundamental", "Nature"], "source": "w+disamb", "orig": "en:Falconids", "langcode": "en", "_dis": "76 14 8 2"}, {"name": "Female animals", "kind": "lifeform", "parents": ["Animals", "Female", "Lifeforms", "Gender", "All topics", "Life", "Biology", "Psychology", "Sociology", "Fundamental", "Nature", "Sciences", "Social sciences", "Society"], "source": "w+disamb", "orig": "en:Female animals", "langcode": "en", "_dis": "49 45 5 2"}]}, {"links": [["falconry", "falconry"], ["female", "female"], ["tiercel", "tiercel"]], "raw_glosses": ["(falconry) A female such bird, a male being a tiercel."], "topics": ["falconry", "hobbies", "hunting", "lifestyle"], "glosses": ["A female such bird, a male being a tiercel."], "id": "en-falcon-en-noun-LMiraf-c", "categories": [{"name": "Falconry", "kind": "topical", "parents": ["Sports", "Human activity", "Human behaviour", "Human", "All topics", "Fundamental"], "source": "w", "orig": "en:Falconry", "langcode": "en"}, {"name": "Entries with translation boxes", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "37 33 24 6"}, {"name": "Artillery", "kind": "topical", "parents": ["Weapons", "Hunting", "Military", "Tools", "Human activity", "Society", "Technology", "Human behaviour", "All topics", "Human", "Fundamental"], "source": "w+disamb", "orig": "en:Artillery", "langcode": "en", "_dis": "27 36 25 11"}, {"name": "Female animals", "kind": "lifeform", "parents": ["Animals", "Female", "Lifeforms", "Gender", "All topics", "Life", "Biology", "Psychology", "Sociology", "Fundamental", "Nature", "Sciences", "Social sciences", "Society"], "source": "w+disamb", "orig": "en:Female animals", "langcode": "en", "_dis": "49 45 5 2"}]}, {"links": [["cannon", "cannon"], ["falconet", "falconet"]], "raw_glosses": ["(historical) A light cannon used from the 15th to the 17th century; a falconet."], "glosses": ["A light cannon used from the 15th to the 17th century; a falconet."], "tags": ["historical"], "id": "en-falcon-en-noun-1lZ35Lj-", "categories": [{"name": "Entries with translation boxes", "kind": "other", "parents": [], "source": "w+disamb", "_dis": "37 33 24 6"}]}]} diff --git a/data/test/tidy/en-en-forms-0.json b/data/test/tidy/en-en-forms-0.json index 3710424..addb687 100644 --- a/data/test/tidy/en-en-forms-0.json +++ b/data/test/tidy/en-en-forms-0.json @@ -87,6 +87,28 @@ ] ] } + ], + [ + "falcon", + { + "_type": "map", + "map": [ + [ + "falcons", + { + "_type": "map", + "map": [ + [ + "noun", + [ + "plural" + ] + ] + ] + } + ] + ] + } ] ] } \ No newline at end of file diff --git a/data/test/tidy/en-en-lemmas.json b/data/test/tidy/en-en-lemmas.json index 151d3e0..3d3b4a5 100644 --- a/data/test/tidy/en-en-lemmas.json +++ b/data/test/tidy/en-en-lemmas.json @@ -197,5 +197,106 @@ } } } + }, + "falcon": { + "falcon": { + "noun": { + "ipa": [ + { + "ipa": "/ˈfɔː(l)kən/", + "tags": [ + "Received-Pronunciation" + ] + }, + { + "ipa": "/ˈfɒlkən/", + "tags": [ + "Received-Pronunciation" + ] + }, + { + "ipa": "/ˈfælkən/", + "tags": [ + "US", + "General-Australian" + ] + }, + { + "ipa": "/ˈfɑːlkən/", + "tags": [ + "US" + ] + }, + { + "ipa": "/ˈfoːlkən/", + "tags": [ + "General-Australian", + "New-Zealand" + ] + }, + { + "ipa": "/ˈfɛlkən/", + "tags": [ + "New-Zealand" + ] + } + ], + "glossTree": { + "_type": "map", + "map": [ + [ + "Any bird of the genus Falco, all of which are birds of prey.", + { + "_type": "map", + "map": [ + [ + "_tags", + [] + ], + [ + "_examples", + [] + ] + ] + } + ], + [ + "(falconry) A female such bird, a male being a tiercel.", + { + "_type": "map", + "map": [ + [ + "_tags", + [] + ], + [ + "_examples", + [] + ] + ] + } + ], + [ + "(historical) A light cannon used from the 15th to the 17th century; a falconet.", + { + "_type": "map", + "map": [ + [ + "_tags", + [ + "historical" + ] + ], + [ + "_examples", + [] + ] + ] + } + ] + ] + } + } + } } } \ No newline at end of file diff --git a/data/test/tidy/fa-en-lemmas.json b/data/test/tidy/fa-en-lemmas.json index 08ea6c9..6748134 100644 --- a/data/test/tidy/fa-en-lemmas.json +++ b/data/test/tidy/fa-en-lemmas.json @@ -6,14 +6,18 @@ { "ipa": "[mulk]", "tags": [ - "Classical-Persian" + "Classical-Persian", + "Hazaragi", + "Tajik", + "formal" ] }, { "ipa": "[mʊlk]", "tags": [ "Dari", - "formal" + "formal", + "Kabuli" ] }, { @@ -64,7 +68,8 @@ "ipa": "[fɑːɾ.síː]", "tags": [ "Dari", - "formal" + "formal", + "Kabuli" ] }, { diff --git a/data/test/tidy/la-en-lemmas.json b/data/test/tidy/la-en-lemmas.json index 9242056..c964ab4 100644 --- a/data/test/tidy/la-en-lemmas.json +++ b/data/test/tidy/la-en-lemmas.json @@ -12,7 +12,8 @@ { "ipa": "[ˈfäːmä]", "tags": [ - "Classical" + "Classical", + "modern Italianate Ecclesiastical" ] }, { @@ -581,7 +582,8 @@ { "ipa": "/ˈdo.mus/", "tags": [ - "Classical" + "Classical", + "modern Italianate Ecclesiastical" ] }, {