KOReader Dicts

Downloads

Every dictionary is a single ZIP containing one folder. Unzip it, copy the folder onto your device, and restart KOReader. Nothing else is required, and nothing phones home.

Every dictionary below downloads directly from GitHub Releases.

Showing 53 of 53

Browse every release on GitHub

What is inside the ZIP

Each archive holds one dictionary folder with these files. You never need to open them, but it helps to know what they are:

.ifo
Metadata: the dictionary’s name, entry count, and the attribution notice shown in KOReader’s dictionary list.
.idx
The index of headwords, sorted so the reader can binary-search it.
.dict.dz
The definitions themselves, compressed so a phone or e-reader can seek into them without unpacking the whole file.
.syn
The inflection index: it maps wielded to wield and geese to goose. This is what makes lookups work on real prose.
LICENSE / ATTRIBUTION
The licence the compilation is distributed under, and the notices each source requires.
README.txt
Installation instructions, offline.

Why ZIP

The definitions are already compressed inside the archive, so the gain comes almost entirely from the two plain index files. We measured the alternatives on the 21.6 MB English-to-Portuguese build:

MethodSizeNote
Stored21.6 MBNo compression.
ZIP (DEFLATE)15.1 MBOpens on every operating system without extra software.
ZIP (bzip2)15.1 MBNo smaller, and not universally supported.
ZIP (LZMA)14.3 MB5% smaller, five times slower, and stock Windows Explorer and macOS Archive Utility cannot open it.

Five percent is not worth handing you an archive your computer refuses to open, so every download is a plain ZIP.

Downloads are published on GitHub Releases and rebuilt on a schedule as the upstream sources change.