Skip to content

Latest commit

 

History

History
46 lines (36 loc) · 1.62 KB

Languages.md

File metadata and controls

46 lines (36 loc) · 1.62 KB

Supported languages

Thanks to the community, we have support for the following languages:

Adding new language support

If you want to add support for a new language, you can do so by following these steps:

  1. Fork the repository.
  2. Create a new file in data/books with the name of the language (e.g. data/books/pl.json) with books names.
  3. 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.)

  1. Add your name to the list above in this file (Languages.md).
  2. 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!