├── .gitattributes ├── .github └── workflows │ ├── build.yml │ ├── deploy.yml │ ├── production.yml │ └── staging.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin ├── addfallbacks ├── addrods ├── addrolv ├── hackcsv.py ├── jsonlangtagstotxt ├── langtag ├── langtags-date.sh ├── ltdb2alltags ├── ltdbhistory ├── merge_likelies ├── testalltags └── updateallregions ├── doc ├── csv_fields.md ├── langtags.md └── tagging.md ├── lib └── langtag │ ├── __init__.py │ └── cachingurl.py ├── pyproject.toml ├── pyreadme.md ├── source ├── autonyms.csv ├── fallbacks.json ├── langindex.tab ├── langtags.csv ├── langtags.yaml ├── langtags_schema.json └── rolv.json └── tests ├── python └── test_python.py ├── test_basic.py ├── test_json.py ├── test_likely_subtags.py └── test_supplemental.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/.github/workflows/production.yml -------------------------------------------------------------------------------- /.github/workflows/staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/.github/workflows/staging.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/README.md -------------------------------------------------------------------------------- /bin/addfallbacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/bin/addfallbacks -------------------------------------------------------------------------------- /bin/addrods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/bin/addrods -------------------------------------------------------------------------------- /bin/addrolv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/bin/addrolv -------------------------------------------------------------------------------- /bin/hackcsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/bin/hackcsv.py -------------------------------------------------------------------------------- /bin/jsonlangtagstotxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/bin/jsonlangtagstotxt -------------------------------------------------------------------------------- /bin/langtag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/bin/langtag -------------------------------------------------------------------------------- /bin/langtags-date.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/bin/langtags-date.sh -------------------------------------------------------------------------------- /bin/ltdb2alltags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/bin/ltdb2alltags -------------------------------------------------------------------------------- /bin/ltdbhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/bin/ltdbhistory -------------------------------------------------------------------------------- /bin/merge_likelies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/bin/merge_likelies -------------------------------------------------------------------------------- /bin/testalltags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/bin/testalltags -------------------------------------------------------------------------------- /bin/updateallregions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/bin/updateallregions -------------------------------------------------------------------------------- /doc/csv_fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/doc/csv_fields.md -------------------------------------------------------------------------------- /doc/langtags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/doc/langtags.md -------------------------------------------------------------------------------- /doc/tagging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/doc/tagging.md -------------------------------------------------------------------------------- /lib/langtag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/lib/langtag/__init__.py -------------------------------------------------------------------------------- /lib/langtag/cachingurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/lib/langtag/cachingurl.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyreadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/pyreadme.md -------------------------------------------------------------------------------- /source/autonyms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/source/autonyms.csv -------------------------------------------------------------------------------- /source/fallbacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/source/fallbacks.json -------------------------------------------------------------------------------- /source/langindex.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/source/langindex.tab -------------------------------------------------------------------------------- /source/langtags.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/source/langtags.csv -------------------------------------------------------------------------------- /source/langtags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/source/langtags.yaml -------------------------------------------------------------------------------- /source/langtags_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/source/langtags_schema.json -------------------------------------------------------------------------------- /source/rolv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/source/rolv.json -------------------------------------------------------------------------------- /tests/python/test_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/tests/python/test_python.py -------------------------------------------------------------------------------- /tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/tests/test_basic.py -------------------------------------------------------------------------------- /tests/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/tests/test_json.py -------------------------------------------------------------------------------- /tests/test_likely_subtags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/tests/test_likely_subtags.py -------------------------------------------------------------------------------- /tests/test_supplemental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/langtags/HEAD/tests/test_supplemental.py --------------------------------------------------------------------------------