Skip to content

Latest commit

 

History

History
204 lines (135 loc) · 6.63 KB

DictionarySources.md

File metadata and controls

204 lines (135 loc) · 6.63 KB

Dictionary Sources

Under construction icon

**_Under construction._**

This page contains a dynamically built list of all dictionary repositories. Private repositories are not listed.

Dictionary sources are grouped according to the source language, NOT the target language(s).

Grouped according to maturity of the resources

The maturity levels are production, beta, alpha and experimental.

{% assign lang_repos = site.github.public_repositories|jsonify %}

Maturity: Production Production dictionary resources

Maturity: Beta Beta dictionary resources

Maturity: Alpha Alpha dictionary resources

Maturity: Experiment Experimental dictionary resources

Maturity: Undefined Dictionary resources of undefined maturity

Grouped according to geography

Languages of the Nordic countries

Languages of Russia

Other European languages

Languages in North America

Languages in Africa

Languages in other parts of the world

Languages with no geography tag

Grouped according to language family

Uralic Languages

Eskimo-Aleut Languages

Algic Languages

Indoeuropean languages

Niger-Congo Languages

Turkic Languages

Languages of other language families, isolates, artificial languages

Languages with no language family tag

<script src="/assets/js/langtable.js"></script> <script> const domProdLangs = document.querySelector('#prod_languges'); domProdLangs.appendChild(addDictRepoTable({{lang_repos}}, 'dict-', ['maturity-prod'])) </script> <script> const domBetaLangs = document.querySelector('#beta_languges'); domBetaLangs.appendChild(addDictRepoTable({{lang_repos}}, 'dict-', ['maturity-beta'])) </script> <script> const domAlphaLangs = document.querySelector('#alpha_languges'); domAlphaLangs.appendChild(addDictRepoTable({{lang_repos}}, 'dict-', ['maturity-alpha'])) </script> <script> const domExperLangs = document.querySelector('#exper_languges'); domExperLangs.appendChild(addDictRepoTable({{lang_repos}}, 'dict-', ['maturity-exper'])) </script> <script> const domUndefLangs = document.querySelector('#undef_languges'); domUndefLangs.appendChild(addNegUnorderedDictList({{lang_repos}}, 'dict-', ['maturity-exper', 'maturity-beta', 'maturity-alpha', 'maturity-prod'])) </script> <script> const domNordLangs = document.querySelector('#geo_nordic'); domNordLangs.appendChild(addUnorderedDictList({{lang_repos}}, 'dict-', ['geo-nordic'])) </script> <script> const domEuroLangs = document.querySelector('#geo_europe'); domEuroLangs.appendChild(addUnorderedDictList({{lang_repos}}, 'dict-', ['geo-europe'])) </script> <script> const domRussLangs = document.querySelector('#geo_russia'); domRussLangs.appendChild(addUnorderedDictList({{lang_repos}}, 'dict-', ['geo-russia'])) </script> <script> const domNorALangs = document.querySelector('#geo_northamerica'); domNorALangs.appendChild(addUnorderedDictList({{lang_repos}}, 'dict-', ['geo-northamerica'])) </script> <script> const domAfricaLangs = document.querySelector('#geo_africa'); domAfricaLangs.appendChild(addUnorderedDictList({{lang_repos}}, 'dict-', ['geo-africa'])) </script> <script> const domOthrLangs = document.querySelector('#geo_other'); domOthrLangs.appendChild(addNegUnorderedDictList({{lang_repos}}, 'dict-', ['geo-nordic', 'geo-europe', 'geo-russia', 'geo-northamerica', 'geo-africa'])) </script> <script> const domUndefLangs = document.querySelector('#geo_undef'); domUndefLangs.appendChild(addNegUnorderedDictList({{lang_repos}}, 'dict-', ['geo-])) </script> <script> const domUralicLangs = document.querySelector('#fam_uralic'); domUralicLangs.appendChild(addUnorderedDictList({{lang_repos}}, 'dict-', ['langfam-uralic'])) </script> <script> const domIndEurLangs = document.querySelector('#fam_indoeuropean'); domIndEurLangs.appendChild(addUnorderedDictList({{lang_repos}}, 'dict-', ['langfam-indoeuropean'])) </script> <script> const domAlgicLangs = document.querySelector('#fam_algic'); domAlgicLangs.appendChild(addUnorderedDictList({{lang_repos}}, 'dict-', ['langfam-algic'])) </script> <script> const domEskAleutLangs = document.querySelector('#fam_eskimo_aleut'); domEskAleutLangs.appendChild(addUnorderedDictList({{lang_repos}}, 'dict-', ['langfam-eskimo-aleut'])) </script> <script> const domTurkicLangs = document.querySelector('#fam_turkic'); domTurkicLangs.appendChild(addUnorderedDictList({{lang_repos}}, 'dict-', ['langfam-turkic'])) </script> <script> const domNigerCongoLangs = document.querySelector('#fam_nigercongo'); domNigerCongoLangs.appendChild(addUnorderedDictList({{lang_repos}}, 'dict-', ['langfam-niger-congo'])) </script> <script> const domOthrFamLangs = document.querySelector('#fam_other'); domOthrFamLangs.appendChild(addNegUnorderedDictList({{lang_repos}}, 'dict-', ['langfam-uralic', 'langfam-indoeuropean', 'langfam-algic', 'langfam-eskimo-aleut', 'langfam-turkic', 'langfam-niger-congo'])) </script> <script> const domUndefFamLangs = document.querySelector('#fam_undef'); domUndefFamLangs.appendChild(addNegUnorderedDictList({{lang_repos}}, 'dict-', ['langfam-'])) </script>