scripturelookup 0.0.5__tar.gz → 0.0.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/.github/workflows/publish.yml +8 -4
  2. {scripturelookup-0.0.5/src/scripturelookup.egg-info → scripturelookup-0.0.7}/PKG-INFO +4 -1
  3. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/README.md +1 -0
  4. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/pyproject.toml +4 -2
  5. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/scripturelookup/command_line.py +2 -0
  6. scripturelookup-0.0.7/src/scripturelookup/data/metadata-languages.min.json +1 -0
  7. scripturelookup-0.0.7/src/scripturelookup/data/metadata-scriptures.min.json +1 -0
  8. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/scripturelookup/lookup.py +35 -20
  9. {scripturelookup-0.0.5 → scripturelookup-0.0.7/src/scripturelookup.egg-info}/PKG-INFO +4 -1
  10. scripturelookup-0.0.7/src/scripturelookup.egg-info/requires.txt +3 -0
  11. scripturelookup-0.0.5/src/scripturelookup/data/metadata-languages.min.json +0 -1
  12. scripturelookup-0.0.5/src/scripturelookup/data/metadata-scriptures.min.json +0 -1
  13. scripturelookup-0.0.5/src/scripturelookup.egg-info/requires.txt +0 -1
  14. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/.gitignore +0 -0
  15. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/LICENSE +0 -0
  16. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/requirements.txt +0 -0
  17. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/setup.cfg +0 -0
  18. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/geezify-python-main/LICENSE +0 -0
  19. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/geezify-python-main/README.md +0 -0
  20. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/geezify-python-main/arabify.py +0 -0
  21. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/geezify-python-main/arabify_test.py +0 -0
  22. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/geezify-python-main/geezify.py +0 -0
  23. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/geezify-python-main/geezify_test.py +0 -0
  24. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/geezify-python-main/test_data.py +0 -0
  25. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/scripturelookup/__init__.py +0 -0
  26. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/scripturelookup/data.py +0 -0
  27. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/scripturelookup/numbers.py +0 -0
  28. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/scripturelookup.egg-info/SOURCES.txt +0 -0
  29. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/scripturelookup.egg-info/dependency_links.txt +0 -0
  30. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/scripturelookup.egg-info/entry_points.txt +0 -0
  31. {scripturelookup-0.0.5 → scripturelookup-0.0.7}/src/scripturelookup.egg-info/top_level.txt +0 -0
@@ -1,12 +1,16 @@
1
- # From https://www.seanh.cc/2022/05/21/publishing-python-packages-from-github-actions/
2
-
3
1
  name: Publish to PyPI.org
4
2
  on:
5
3
  release:
6
4
  types: [published]
7
5
  jobs:
8
- pypi:
6
+ pypi-publish:
7
+ name: Upload release to PyPI
9
8
  runs-on: ubuntu-latest
9
+ environment:
10
+ name: pypi
11
+ url: https://pypi.org/p/scripturelookup
12
+ permissions:
13
+ id-token: write
10
14
  steps:
11
15
  - name: Checkout
12
16
  uses: actions/checkout@v3
@@ -16,4 +20,4 @@ jobs:
16
20
  - name: Publish package
17
21
  uses: pypa/gh-action-pypi-publish@release/v1
18
22
  with:
19
- password: ${{ secrets.PYPI_API_TOKEN }}
23
+ attestations: false
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: scripturelookup
3
- Version: 0.0.5
3
+ Version: 0.0.7
4
4
  Summary: Python and command-line utility for converting scripture references between formats.
5
5
  Author-email: Samuel Bradshaw <samuel.h.bradshaw@gmail.com>
6
6
  License: MIT License
@@ -34,6 +34,8 @@ Requires-Python: >=3.8
34
34
  Description-Content-Type: text/markdown
35
35
  License-File: LICENSE
36
36
  Requires-Dist: requests
37
+ Requires-Dist: beautifulsoup4
38
+ Requires-Dist: PyICU
37
39
  Dynamic: license-file
38
40
 
39
41
  # Scripture Lookup
@@ -159,6 +161,7 @@ Several options are available. Some are only applicable to certain commands.
159
161
  - **skip_book_name** (optional) – Whether book names should be skipped on labels. Default: False.
160
162
  - **abbreviated** (optional) – Whether book abbrevions should be used on labels. Default: False.
161
163
  - **skip_cleanup** (optional) – Whether cleanup of the input string should be skipped when parsing. Can be used to speed up parsing if the input string is guaranteed to have well-formed references. Default: False.
164
+ - **range_split_limit** (optional) – Threshold where a range of sequential verses will be split into separate verse groups. Default: 1.
162
165
 
163
166
 
164
167
  ## Acknowledgements
@@ -121,6 +121,7 @@ Several options are available. Some are only applicable to certain commands.
121
121
  - **skip_book_name** (optional) – Whether book names should be skipped on labels. Default: False.
122
122
  - **abbreviated** (optional) – Whether book abbrevions should be used on labels. Default: False.
123
123
  - **skip_cleanup** (optional) – Whether cleanup of the input string should be skipped when parsing. Can be used to speed up parsing if the input string is guaranteed to have well-formed references. Default: False.
124
+ - **range_split_limit** (optional) – Threshold where a range of sequential verses will be split into separate verse groups. Default: 1.
124
125
 
125
126
 
126
127
  ## Acknowledgements
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
  [project]
6
6
  name = "scripturelookup"
7
7
  authors = [
8
- {name = "Samuel Bradshaw", email = "samuel.h.bradshaw@gmail.com"},
8
+ {name = "Samuel Bradshaw", email = "samuel.h.bradshaw@gmail.com"},
9
9
  ]
10
10
  description = "Python and command-line utility for converting scripture references between formats."
11
11
  readme = "README.md"
@@ -18,7 +18,9 @@ classifiers = [
18
18
  requires-python = ">=3.8"
19
19
  dynamic = ["version"]
20
20
  dependencies = [
21
- "requests",
21
+ "requests",
22
+ "beautifulsoup4",
23
+ "PyICU",
22
24
  ]
23
25
 
24
26
  [project.urls]
@@ -20,6 +20,7 @@ def main_cli():
20
20
  parser.add_argument('--skip_book_name', action='store_true', help='Skip scripture book name in labels.')
21
21
  parser.add_argument('--abbreviated', action='store_true', help='Prefer abbreviated scripture book name in labels.')
22
22
  parser.add_argument('--skip_cleanup', action='store_true', help='Skip cleanup of the input string for faster parsing.')
23
+ parser.add_argument('--range_split_limit', type=int, help='Threshold where a range of sequential verses will be split into separate verse groups. Default: 1.')
23
24
 
24
25
  args = parser.parse_args()
25
26
 
@@ -38,6 +39,7 @@ def main_cli():
38
39
  skip_book_name = args.skip_book_name,
39
40
  abbreviated = args.abbreviated,
40
41
  skip_cleanup = args.skip_cleanup,
42
+ range_split_limit = args.range_split_limit or 1,
41
43
  )
42
44
 
43
45
  print(result)
@@ -0,0 +1 @@
1
+ {"_about":"Generated 2025-06-08 by Python Scripture Scraper (https://github.com/samuelbradshaw/python-scripture-scraper)","languages":{"af":{"name":"Afrikaans","autonym":"Afrikaans","churchLang":"afr"},"am":{"name":"Amharic","autonym":"አማርኛ","churchLang":"amh"},"ar":{"name":"Arabic","autonym":"العربية","churchLang":"ara"},"ase":{"name":"American Sign Language (ASL)","autonym":"American Sign Language","churchLang":"ase"},"ay":{"name":"Aymara","autonym":"Aymar Aru","churchLang":"aym"},"be":{"name":"Belarusian","autonym":"Беларуская","churchLang":"bel"},"bfi":{"name":"British Sign Language (BSL)","autonym":"British Sign Language","churchLang":"bfi"},"bg":{"name":"Bulgarian","autonym":"Български","churchLang":"bul"},"bi":{"name":"Bislama","autonym":"Bislama","churchLang":"bis"},"bik":{"name":"Bikolano","autonym":"Bikol","churchLang":"bik"},"bla":{"name":"Blackfoot","autonym":"Nitsi’powahsin","churchLang":"bla"},"bm":{"name":"Bambara","autonym":"Bamanankan","churchLang":"bam"},"bn":{"name":"Bengali","autonym":"বাংলা","churchLang":"ben"},"ca":{"name":"Catalan","autonym":"Català","churchLang":"cat"},"cag":{"name":"Nivaclé","autonym":"Nivacle","churchLang":"cag"},"cak":{"name":"Kaqchikel (Cakchiquel)","autonym":"Cakchiquel","churchLang":"cak"},"ceb":{"name":"Cebuano","autonym":"Cebuano","churchLang":"ceb"},"ch":{"name":"Chamorro","autonym":"Chamoru","churchLang":"cha"},"chk":{"name":"Chuukese","autonym":"Fosun Chuuk","churchLang":"chk"},"ckb":{"name":"[Unknown]","autonym":"زمانێ سۆرانی‎","churchLang":"ckb"},"cmn-Hans":{"name":"Mandarin (Simplified)","autonym":"简体中文 - 普通话","churchLang":"zhs"},"cmn-Hant":{"name":"Mandarin (Traditional)","autonym":"繁體中文 - 國語","churchLang":"zho"},"cmn-Latn":{"name":"Mandarin (Romanized/Pinyin)","autonym":"漢語拼音","churchLang":"cmn-Latn"},"cs":{"name":"Czech","autonym":"Česky","churchLang":"ces"},"cuk":{"name":"Kuna","autonym":"Dulegaya","churchLang":"cuk"},"cy":{"name":"Welsh","autonym":"Cymraeg","churchLang":"cym"},"da":{"name":"Danish","autonym":"Dansk","churchLang":"dan"},"de":{"name":"German","autonym":"Deutsch","churchLang":"deu"},"efi":{"name":"Efik","autonym":"Efik","churchLang":"efi"},"el":{"name":"Greek","autonym":"Ελληνικά","churchLang":"ell"},"en":{"name":"English","autonym":"English","churchLang":"eng"},"es":{"name":"Spanish","autonym":"Español","churchLang":"spa"},"et":{"name":"Estonian","autonym":"Eesti","churchLang":"est"},"eu":{"name":"Basque","autonym":"Euskera","churchLang":"eus"},"fat":{"name":"Fante","autonym":"Fante","churchLang":"fat"},"fi":{"name":"Finnish","autonym":"Suomi","churchLang":"fin"},"fj":{"name":"Fijian","autonym":"Vosa vakaviti","churchLang":"fij"},"fon":{"name":"Fon","autonym":"Fɔngbè","churchLang":"fon"},"fr":{"name":"French","autonym":"Français","churchLang":"fra"},"gil":{"name":"Kiribati (Gilbertese)","autonym":"Kiribati","churchLang":"gil"},"gn":{"name":"Guarani","autonym":"Guaraní (Avañe'ẽ)","churchLang":"grn"},"guz":{"name":"Gusii (Kisii)","autonym":"EkeGusii","churchLang":"guz"},"haw":{"name":"Hawaiian","autonym":"ʻŌlelo Hawaiʻi","churchLang":"haw"},"hi":{"name":"Hindi","autonym":"हिन्दी","churchLang":"hin"},"hif":{"name":"Hindi (Fiji)","autonym":"Fiji Hindi","churchLang":"hif"},"hil":{"name":"Hiligaynon","autonym":"Hiligaynon","churchLang":"hil"},"hmn":{"name":"Hmong","autonym":"Hmoob","churchLang":"hmn"},"hr":{"name":"Croatian","autonym":"Hrvatski","churchLang":"hrv"},"ht":{"name":"Haitian Creole","autonym":"Kreyòl Ayisyen","churchLang":"hat"},"hu":{"name":"Hungarian","autonym":"Magyar","churchLang":"hun"},"hy":{"name":"Armenian (East)","autonym":"Հայերեն","churchLang":"hye"},"hyw":{"name":"Armenian (West)","autonym":"արեւմտահայերէն","churchLang":"hyw"},"id":{"name":"Indonesian","autonym":"Bahasa Indonesia","churchLang":"ind"},"ig":{"name":"Igbo","autonym":"Igbo","churchLang":"ibo"},"ilo":{"name":"Ilokano","autonym":"Ilokano","churchLang":"ilo"},"is":{"name":"Icelandic","autonym":"íslenska","churchLang":"isl"},"it":{"name":"Italian","autonym":"Italiano","churchLang":"ita"},"ja":{"name":"Japanese","autonym":"日本語","churchLang":"jpn"},"ka":{"name":"Georgian","autonym":"ქართული","churchLang":"kat"},"kam":{"name":"Kamba","autonym":"Kikamba","churchLang":"kam"},"kek":{"name":"Kekchi","autonym":"Q’eqchi’","churchLang":"kek"},"kk":{"name":"Kazakh","autonym":"Қазақ","churchLang":"kaz"},"km":{"name":"Khmer (Cambodian)","autonym":"ខ្មែរ‎","churchLang":"khm"},"ko":{"name":"Korean","autonym":"한국어","churchLang":"kor"},"kos":{"name":"Kosraean","autonym":"Kahs Kosrae","churchLang":"kos"},"ksw":{"name":"Karen","autonym":"ကညီလံာ်ခီၣ်ထံ","churchLang":"ksw"},"ln":{"name":"Lingala","autonym":"Lingála","churchLang":"lin"},"lo":{"name":"Laotian","autonym":"ພາສາລາວ","churchLang":"lao"},"lt":{"name":"Lithuanian","autonym":"Lietuvių","churchLang":"lit"},"lua":{"name":"Tshiluba","autonym":"Tshiluba","churchLang":"lua"},"lv":{"name":"Latvian","autonym":"Latviešu","churchLang":"lav"},"mam":{"name":"Mam","autonym":"Mam","churchLang":"mam"},"meu":{"name":"Motu","autonym":"Motu","churchLang":"meu"},"mg":{"name":"Malagasy","autonym":"Malagasy","churchLang":"mlg"},"mh":{"name":"Marshallese","autonym":"Kajin Majōl","churchLang":"mah"},"mi":{"name":"Maori","autonym":"Te Reo Māori","churchLang":"mri"},"mk":{"name":"Macedonian","autonym":"Македонски","churchLang":"mkd"},"ml":{"name":"Malayalam","autonym":"മലയാളം","churchLang":"mal"},"mn":{"name":"Mongolian","autonym":"Монгол","churchLang":"mon"},"ms":{"name":"Malay","autonym":"Bahasa Melayu","churchLang":"msa"},"mt":{"name":"Maltese","autonym":"Malti","churchLang":"mlt"},"my":{"name":"Burmese (Myanmar)","autonym":"ဗမာစာ","churchLang":"mya"},"ne":{"name":"Nepali","autonym":"नेपाली","churchLang":"nep"},"niu":{"name":"Niuean","autonym":"ko e vagahau Niuē","churchLang":"niu"},"nl":{"name":"Dutch","autonym":"Nederlands","churchLang":"nld"},"no":{"name":"Norwegian","autonym":"Norsk","churchLang":"nor"},"nr":{"name":"Ndebele (Southern)","autonym":"isiNdebele","churchLang":"nbl"},"nso":{"name":"Sotho (Northern)","autonym":"sePêdi","churchLang":"nso"},"nv":{"name":"Navajo","autonym":"Diné bizaad","churchLang":"nav"},"ny":{"name":"Chewa","autonym":"Chichewa","churchLang":"nya"},"om":{"name":"Oromo","autonym":"Afaan Oromoo","churchLang":"orm"},"pag":{"name":"Pangasinan","autonym":"Pangasinan","churchLang":"pag"},"pam":{"name":"Pampango (Kapampangan)","autonym":"Pampango","churchLang":"pam"},"pap":{"name":"Papiamento","autonym":"Papiamento","churchLang":"pap"},"pau":{"name":"Palauan","autonym":"Palauan","churchLang":"pau"},"pes":{"name":"Persian (Iran) (Farsi)","autonym":"فارسی","churchLang":"pes"},"pl":{"name":"Polish","autonym":"Polski","churchLang":"pol"},"pon":{"name":"Pohnpeian","autonym":"Mahsen en Pohnpei","churchLang":"pon"},"pt":{"name":"Portuguese","autonym":"Português (Brasil)","churchLang":"por"},"pt-PT":{"name":"Portuguese (Portugal)","autonym":"Português (Portugal)","churchLang":"ept"},"quc":{"name":"Quiche","autonym":"Quiché","churchLang":"quc"},"quh":{"name":"Quechua (Bolivia)","autonym":"Quechua-Bolivia","churchLang":"quh"},"quz":{"name":"Quechua (Peru)","autonym":"Yunkay Quechua","churchLang":"quz"},"qvi":{"name":"Quichua (Ecuador)","autonym":"Kichwa","churchLang":"qvi"},"rar":{"name":"Rarotongan (Cook Islands Maori)","autonym":"Māori Kuki Airani","churchLang":"rar"},"ro":{"name":"Romanian","autonym":"Română","churchLang":"ron"},"ru":{"name":"Russian","autonym":"Русский","churchLang":"rus"},"rw":{"name":"Rwanda","autonym":"Kinyarwanda","churchLang":"kin"},"si":{"name":"Sinhala","autonym":"සිංහල","churchLang":"sin"},"sk":{"name":"Slovak","autonym":"Slovenčina","churchLang":"slk"},"sl":{"name":"Slovenian","autonym":"Slovenščina","churchLang":"slv"},"sm":{"name":"Samoan","autonym":"Gagana Samoa","churchLang":"smo"},"sn":{"name":"Shona","autonym":"Shona","churchLang":"sna"},"sq":{"name":"Albanian","autonym":"Shqip","churchLang":"alb"},"sr":{"name":"Serbian","autonym":"Српски","churchLang":"srp"},"ss":{"name":"Swazi","autonym":"siSwati","churchLang":"ssw"},"st":{"name":"Sotho (Southern)","autonym":"Sesotho","churchLang":"sot"},"sto":{"name":"Stoney Nakoda","autonym":"Îethka (Yethka)","churchLang":"sto"},"sv":{"name":"Swedish","autonym":"Svenska","churchLang":"swe"},"sw":{"name":"Swahili","autonym":"Kiswahili","churchLang":"swa"},"ta":{"name":"Tamil","autonym":"தமிழ்","churchLang":"tam"},"te":{"name":"Telugu","autonym":"తెలుగు","churchLang":"tel"},"th":{"name":"Thai","autonym":"ภาษาไทย","churchLang":"tha"},"tl":{"name":"Tagalog","autonym":"Tagalog","churchLang":"tgl"},"tn":{"name":"Tswana (Setswana)","autonym":"Setswana","churchLang":"tsn"},"to":{"name":"Tongan","autonym":"Faka-Tonga","churchLang":"ton"},"tpi":{"name":"Tok Pisin (Neomelanesian)","autonym":"Tok Pisin","churchLang":"tpi"},"tr":{"name":"Turkish","autonym":"Türkçe","churchLang":"tur"},"tvl":{"name":"Tuvalu","autonym":"gana Tuvalu","churchLang":"tvl"},"tw":{"name":"Twi","autonym":"Twi","churchLang":"twi"},"ty":{"name":"Tahitian","autonym":"Reo Tahiti","churchLang":"tah"},"tzo":{"name":"Tzotzil","autonym":"Bats'i k'op","churchLang":"tzo"},"uk":{"name":"Ukrainian","autonym":"Українська","churchLang":"ukr"},"ur":{"name":"Urdu","autonym":"اردو","churchLang":"urd"},"vi":{"name":"Vietnamese","autonym":"Tiếng Việt","churchLang":"vie"},"war":{"name":"Waray","autonym":"Waray Waray","churchLang":"war"},"xh":{"name":"Xhosa","autonym":"isiXhosa","churchLang":"xho"},"yap":{"name":"Yapese","autonym":"Thin Nu Wa'ab","churchLang":"yap"},"yo":{"name":"Yoruba","autonym":"Èdè Yorùbá","churchLang":"yor"},"yua":{"name":"Maya (Yucatec)","autonym":"maayaʼ tʼàan","churchLang":"yua"},"yue-Hant":{"name":"Cantonese (Traditional)","autonym":"繁體中文 - 廣東話","churchLang":"yue"},"zu":{"name":"Zulu","autonym":"isiZulu","churchLang":"zul"}},"mapToBcp47":{"af":"af","afr":"af","am":"am","amh":"am","ar":"ar","ara":"ar","ase":"ase","ay":"ay","aym":"ay","be":"be","bel":"be","bfi":"bfi","bg":"bg","bul":"bg","bi":"bi","bis":"bi","bik":"bik","bla":"bla","bm":"bm","bam":"bm","bn":"bn","ben":"bn","ca":"ca","cat":"ca","cag":"cag","cak":"cak","ceb":"ceb","ch":"ch","cha":"ch","chk":"chk","ckb":"ckb","cmn-Hans":"cmn-Hans","zhs":"cmn-Hans","cmn-Hant":"cmn-Hant","zho":"cmn-Hant","cmn-Latn":"cmn-Latn","cs":"cs","ces":"cs","cuk":"cuk","cy":"cy","cym":"cy","da":"da","dan":"da","de":"de","deu":"de","efi":"efi","el":"el","ell":"el","en":"en","eng":"en","es":"es","spa":"es","et":"et","est":"et","eu":"eu","eus":"eu","fat":"fat","fi":"fi","fin":"fi","fj":"fj","fij":"fj","fon":"fon","fr":"fr","fra":"fr","gil":"gil","gn":"gn","grn":"gn","guz":"guz","haw":"haw","hi":"hi","hin":"hi","hif":"hif","hil":"hil","hmn":"hmn","hr":"hr","hrv":"hr","ht":"ht","hat":"ht","hu":"hu","hun":"hu","hy":"hy","hye":"hy","hyw":"hyw","id":"id","ind":"id","ig":"ig","ibo":"ig","ilo":"ilo","is":"is","isl":"is","it":"it","ita":"it","ja":"ja","jpn":"ja","ka":"ka","kat":"ka","kam":"kam","kek":"kek","kk":"kk","kaz":"kk","km":"km","khm":"km","ko":"ko","kor":"ko","kos":"kos","ksw":"ksw","ln":"ln","lin":"ln","lo":"lo","lao":"lo","lt":"lt","lit":"lt","lua":"lua","lv":"lv","lav":"lv","mam":"mam","meu":"meu","mg":"mg","mlg":"mg","mh":"mh","mah":"mh","mi":"mi","mri":"mi","mk":"mk","mkd":"mk","ml":"ml","mal":"ml","mn":"mn","mon":"mn","ms":"ms","msa":"ms","mt":"mt","mlt":"mt","my":"my","mya":"my","ne":"ne","nep":"ne","niu":"niu","nl":"nl","nld":"nl","no":"no","nor":"no","nr":"nr","nbl":"nr","nso":"nso","nv":"nv","nav":"nv","ny":"ny","nya":"ny","om":"om","orm":"om","pag":"pag","pam":"pam","pap":"pap","pau":"pau","pes":"pes","pl":"pl","pol":"pl","pon":"pon","pt":"pt","por":"pt","pt-PT":"pt-PT","ept":"pt-PT","quc":"quc","quh":"quh","quz":"quz","qvi":"qvi","rar":"rar","ro":"ro","ron":"ro","ru":"ru","rus":"ru","rw":"rw","kin":"rw","si":"si","sin":"si","sk":"sk","slk":"sk","sl":"sl","slv":"sl","sm":"sm","smo":"sm","sn":"sn","sna":"sn","sq":"sq","alb":"sq","sr":"sr","srp":"sr","ss":"ss","ssw":"ss","st":"st","sot":"st","sto":"sto","sv":"sv","swe":"sv","sw":"sw","swa":"sw","ta":"ta","tam":"ta","te":"te","tel":"te","th":"th","tha":"th","tl":"tl","tgl":"tl","tn":"tn","tsn":"tn","to":"to","ton":"to","tpi":"tpi","tr":"tr","tur":"tr","tvl":"tvl","tw":"tw","twi":"tw","ty":"ty","tah":"ty","tzo":"tzo","uk":"uk","ukr":"uk","ur":"ur","urd":"ur","vi":"vi","vie":"vi","war":"war","xh":"xh","xho":"xh","yap":"yap","yo":"yo","yor":"yo","yua":"yua","yue-Hant":"yue-Hant","yue":"yue-Hant","zu":"zu","zul":"zu"}}