kokanu-dictionary Svelte Themes

Kokanu Dictionary

A dictionary website for the IAL Kokanu.

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 data used can be found at /data. 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';

Top categories

Loading Svelte Themes