├── ChangeLog ├── LICENSE ├── PKGBUILD ├── fcitx5-mozc-ut.PKGBUILD ├── generate-mozc-archive.py └── ibus-mozc-ut.PKGBUILD ├── README.md └── src ├── alt-cannadic ├── convert_alt_cannadic.py └── make.sh ├── common ├── adjust_entries.py ├── filter_unsuitable_words.py └── unsuitable_words.txt ├── edict2 ├── convert_edict2.py └── make.sh ├── jawiki ├── convert_jawiki.py └── make.sh ├── merge ├── make.sh └── merge_dictionaries.py ├── neologd ├── convert_neologd.py └── make.sh ├── place-names ├── generate_place_names.py └── make.sh ├── skk-jisyo ├── convert_skk_jisyo.py └── make.sh └── sudachidict ├── convert_sudachidict.py └── make.sh /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/LICENSE -------------------------------------------------------------------------------- /PKGBUILD/fcitx5-mozc-ut.PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/PKGBUILD/fcitx5-mozc-ut.PKGBUILD -------------------------------------------------------------------------------- /PKGBUILD/generate-mozc-archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/PKGBUILD/generate-mozc-archive.py -------------------------------------------------------------------------------- /PKGBUILD/ibus-mozc-ut.PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/PKGBUILD/ibus-mozc-ut.PKGBUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/README.md -------------------------------------------------------------------------------- /src/alt-cannadic/convert_alt_cannadic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/alt-cannadic/convert_alt_cannadic.py -------------------------------------------------------------------------------- /src/alt-cannadic/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/alt-cannadic/make.sh -------------------------------------------------------------------------------- /src/common/adjust_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/common/adjust_entries.py -------------------------------------------------------------------------------- /src/common/filter_unsuitable_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/common/filter_unsuitable_words.py -------------------------------------------------------------------------------- /src/common/unsuitable_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/common/unsuitable_words.txt -------------------------------------------------------------------------------- /src/edict2/convert_edict2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/edict2/convert_edict2.py -------------------------------------------------------------------------------- /src/edict2/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/edict2/make.sh -------------------------------------------------------------------------------- /src/jawiki/convert_jawiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/jawiki/convert_jawiki.py -------------------------------------------------------------------------------- /src/jawiki/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/jawiki/make.sh -------------------------------------------------------------------------------- /src/merge/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/merge/make.sh -------------------------------------------------------------------------------- /src/merge/merge_dictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/merge/merge_dictionaries.py -------------------------------------------------------------------------------- /src/neologd/convert_neologd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/neologd/convert_neologd.py -------------------------------------------------------------------------------- /src/neologd/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/neologd/make.sh -------------------------------------------------------------------------------- /src/place-names/generate_place_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/place-names/generate_place_names.py -------------------------------------------------------------------------------- /src/place-names/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/place-names/make.sh -------------------------------------------------------------------------------- /src/skk-jisyo/convert_skk_jisyo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/skk-jisyo/convert_skk_jisyo.py -------------------------------------------------------------------------------- /src/skk-jisyo/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/skk-jisyo/make.sh -------------------------------------------------------------------------------- /src/sudachidict/convert_sudachidict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/sudachidict/convert_sudachidict.py -------------------------------------------------------------------------------- /src/sudachidict/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utuhiro78/merge-ut-dictionaries/HEAD/src/sudachidict/make.sh --------------------------------------------------------------------------------