Thanks to the community, we have support for the following languages:
- Brazilian Portuguese - Brunofow
- Chinese - John Huang
- Danish - Nicolai Skødt Holmgaard
- Dutch - Jaap Kramer
- English - Jaanonim
- German - Tecur
- Norwegian - Cmeeren
- Polish - Jaanonim
- Spanish - Javier Rios
- Swedish - Eric Lundgren
- Romanian - Paul Timoce
- Rusian - Sakardin
- Ukrainian - Seesmof
- Korean - Woollim
If you want to add support for a new language, you can do so by following these steps:
- Fork the repository.
- Create a new file in
data/books
with the name of the language (e.g.data/books/pl.json
) with books names. - Import json file to
src/BooksLists.ts
as shown in the example:
import pl from "../data/books/pl.json";
// prettier-ignore
const booksNames = {
// ...
"Polish": pl,
// ...
} as BooksLangList;
(See the other languages for examples.)
- Add your name to the list above in this file (
Languages.md
). - Create a PR with the changes. Title it
Add {some_languges} book names
for eg:Add Polish book names
. (I will review it and merge it.)
Thank you for your contribution!