diff --git a/dirs/..zip b/dirs/..zip new file mode 100644 index 0000000..220b298 Binary files /dev/null and b/dirs/..zip differ diff --git a/dirs/ar.zip b/dirs/ar.zip index f5ecc2f..8b1ac8b 100644 Binary files a/dirs/ar.zip and b/dirs/ar.zip differ diff --git a/dirs/da.zip b/dirs/da.zip index 5a52cd7..59119b3 100644 Binary files a/dirs/da.zip and b/dirs/da.zip differ diff --git a/dirs/de.zip b/dirs/de.zip index b55a149..4d87c8c 100644 Binary files a/dirs/de.zip and b/dirs/de.zip differ diff --git a/dirs/en.zip b/dirs/en.zip index 20e2be3..8a5502f 100644 Binary files a/dirs/en.zip and b/dirs/en.zip differ diff --git a/dirs/es.zip b/dirs/es.zip index ab49d5f..de7a94f 100644 Binary files a/dirs/es.zip and b/dirs/es.zip differ diff --git a/dirs/fi.zip b/dirs/fi.zip index fb81f5e..7be0d69 100644 Binary files a/dirs/fi.zip and b/dirs/fi.zip differ diff --git a/dirs/fr.zip b/dirs/fr.zip index 6cad424..cd87b78 100644 Binary files a/dirs/fr.zip and b/dirs/fr.zip differ diff --git a/dirs/it.zip b/dirs/it.zip index bdeeea1..73f5781 100644 Binary files a/dirs/it.zip and b/dirs/it.zip differ diff --git a/dirs/ja.zip b/dirs/ja.zip index b8b2142..b6e47f7 100644 Binary files a/dirs/ja.zip and b/dirs/ja.zip differ diff --git a/dirs/kr.zip b/dirs/kr.zip index 4bbe3d1..c83f7f3 100644 Binary files a/dirs/kr.zip and b/dirs/kr.zip differ diff --git a/dirs/nl.zip b/dirs/nl.zip index 9e7c6fa..62b1119 100644 Binary files a/dirs/nl.zip and b/dirs/nl.zip differ diff --git a/dirs/no.zip b/dirs/no.zip index 580ebef..f104a57 100644 Binary files a/dirs/no.zip and b/dirs/no.zip differ diff --git a/dirs/pl.zip b/dirs/pl.zip index fc5d9be..99f4a43 100644 Binary files a/dirs/pl.zip and b/dirs/pl.zip differ diff --git a/dirs/pt-br.zip b/dirs/pt-br.zip index 1a35c0e..38348b4 100644 Binary files a/dirs/pt-br.zip and b/dirs/pt-br.zip differ diff --git a/dirs/pt.zip b/dirs/pt.zip index 166336c..7711c59 100644 Binary files a/dirs/pt.zip and b/dirs/pt.zip differ diff --git a/dirs/ru.zip b/dirs/ru.zip index d7fb999..8ec34f0 100644 Binary files a/dirs/ru.zip and b/dirs/ru.zip differ diff --git a/dirs/sv.zip b/dirs/sv.zip index 8ae684e..fc3fa1e 100644 Binary files a/dirs/sv.zip and b/dirs/sv.zip differ diff --git a/dirs/tr.zip b/dirs/tr.zip index e253883..a6b2e75 100644 Binary files a/dirs/tr.zip and b/dirs/tr.zip differ diff --git a/dirs/tw.zip b/dirs/tw.zip index cc797a9..8b45815 100644 Binary files a/dirs/tw.zip and b/dirs/tw.zip differ diff --git a/dirs/ua.zip b/dirs/ua.zip index 329ae6e..00ceeba 100644 Binary files a/dirs/ua.zip and b/dirs/ua.zip differ diff --git a/dirs/zh.zip b/dirs/zh.zip index dd1f47b..c66b6f6 100644 Binary files a/dirs/zh.zip and b/dirs/zh.zip differ diff --git a/tools/ucsxls2json.py b/tools/ucsxls2json.py index b2f985c..08802e9 100644 --- a/tools/ucsxls2json.py +++ b/tools/ucsxls2json.py @@ -55,7 +55,7 @@ os.makedirs(OUTPUT_DIR, exist_ok=True) # Pull the rows into a list # skip the first three rows of the data, it's just header material -rows = list(data.iterrows())[3:] +rows = list(data.iterrows())[2:] # for each language @@ -97,6 +97,9 @@ for lang in langs: schedule.append(category) + + # and dump it to json with open(f"{OUTPUT_DIR}/{lang}.json", "w") as fp: + assert len(schedule) == 753 json.dump(schedule, indent=True, fp=fp)