Skip to content

Repository files navigation

pata je iwe ikama

View Online

A dictionary for the IAL Kokanu. Data is dynamically retrieved from the Google Sheets here and displayed in a more easily searchable format online.

A JSON of the words used can be found at /api/words. It is a Word array, defined below.

type Word = {
	word: string;
	likanu: string;
	type: WordType;

	meaning: string;
	noun: string;
	verb: string;
	modifier: string;
	antonym: string;

	origin: string;
	ipa: string;
	family: string;
};

type WordType =
	| 'Connector'
	| 'Demonstrative'
	| 'Grammar'
	| 'Modifier'
	| 'Noun'
	| 'Preposition'
	| 'Pronoun'
	| 'Quantity'
	| 'Verb';

A JSON of phrases on the sheet may be found at /api/phrases, defined as a Phrase array:

type Phrase = {
	word: string;
	likanu: string;
	type: PhraseType;
	meaning: string;
};

type PhraseType =
	| 'Modifier'
	| 'Noun'
	| 'Verb';

About

A dictionary website for the IAL Kokanu.

Topics

Resources

Stars

4 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages