From a2fc5d00ff748160526740f81ecbea5987c6fabb Mon Sep 17 00:00:00 2001 From: Trond Trosterud Date: Mon, 21 Oct 2024 19:06:32 +0200 Subject: [PATCH] Words from omniglot --- src/fst/morphology/Makefile.am | 1 + src/fst/morphology/root.lexc | 1 + src/fst/morphology/stems/interjections.lexc | 10 ++++ src/fst/morphology/stems/nouns.lexc | 2 +- src/fst/morphology/stems/numerals.lexc | 51 ++++++++++++++++++++- xxn | 0 6 files changed, 63 insertions(+), 2 deletions(-) create mode 100644 src/fst/morphology/stems/interjections.lexc create mode 100644 xxn diff --git a/src/fst/morphology/Makefile.am b/src/fst/morphology/Makefile.am index 897c289..1bc8032 100644 --- a/src/fst/morphology/Makefile.am +++ b/src/fst/morphology/Makefile.am @@ -41,6 +41,7 @@ GT_LEXC_SRCS_L1_L2=\ stems/adjectives.lexc \ stems/conjunctions.lexc \ stems/determiners.lexc \ + stems/interjections.lexc \ stems/nouns.lexc \ stems/numerals.lexc \ stems/particles.lexc \ diff --git a/src/fst/morphology/root.lexc b/src/fst/morphology/root.lexc index d1661f3..78b0e41 100644 --- a/src/fst/morphology/root.lexc +++ b/src/fst/morphology/root.lexc @@ -159,6 +159,7 @@ LEXICON Root !!≈ - **@@ODE@** Conjunctions ; Determiners ; Demonstratives ; + Interjections ; Particles ; Premodifiers ; Prepositions ; diff --git a/src/fst/morphology/stems/interjections.lexc b/src/fst/morphology/stems/interjections.lexc new file mode 100644 index 0000000..1c113ae --- /dev/null +++ b/src/fst/morphology/stems/interjections.lexc @@ -0,0 +1,10 @@ +LEXICON ij ++Interj: # ; + +LEXICON Intejections +fakamolemole ij "sorry" ; +fakafetai ij "thank you" ; +aho ij "good afternoon" ; +afiafi ij "good evening" ; +mâlô ij "greeting" ; +tâlofa ij "greeting" ; diff --git a/src/fst/morphology/stems/nouns.lexc b/src/fst/morphology/stems/nouns.lexc index 543d6c8..3858477 100644 --- a/src/fst/morphology/stems/nouns.lexc +++ b/src/fst/morphology/stems/nouns.lexc @@ -43,7 +43,7 @@ auvili n "Brace, hand-drill. E" ; afa n "Eng. half. H" ; afā n "Storm, hurricane. Kua" ; afafin "n. D aughter (of" ; -afanota n "(Music). H alf" ; +afanota n "(Music). Half note" ; afato n "Sam. ‘afato G" ; afe n "Hem. Tatala" ; āfei n "The covering of" ; diff --git a/src/fst/morphology/stems/numerals.lexc b/src/fst/morphology/stems/numerals.lexc index 19dc9a6..6d8cd1d 100644 --- a/src/fst/morphology/stems/numerals.lexc +++ b/src/fst/morphology/stems/numerals.lexc @@ -2,7 +2,56 @@ ! -------- !! Numerals in the Tokelauan language describe a nuerical quantity. +LEXICON num ++Num: # ; + LEXICON Numerals -numeral+Num:numeral Cases ; +tahi num "1" ; +lua num "2" ; +tolu num "3" ; +fā num "4" ; +lima num "5" ; +ono num "6" ; +fitu num "7" ; +valu num "8" ; +iva num "9" ; +hefulu num "10" ; +hefulutahi num "11" ; +hefululua num "12" ; +hefulutolu num "13" ; +hefulufā num "14" ; +hefululima num "15" ; +hefuluono num "16" ; +hefulufitu num "17" ; +hefuluvalu num "18" ; +hefuluiva num "19" ; +luahefulu num "20" ; +luahefulutahi num "21" ; +luahefululua num "22" ; +luahefulutolu num "23" ; +luahefulufā num "24" ; +luahefululima num "25" ; +luahefuluono num "26" ; +luahefulufitu num "27" ; +luahefuluvalu num "28" ; +luahefuluiva num "29" ; +toluhefulu num "30" ; +fāhefulu num "40" ; +limahefulu num "50" ; +onohefulu num "60" ; +fituhefulu num "70" ; +valuhefulu num "80" ; +ivahefulu num "90" ; +helau num "100" ; +afe num "1000" ; +luaafe num "2000" ; +toluafe num "3000" ; +fāafe num "4000" ; +limaafe num "5000" ; +onoafe num "6000" ; +fituafe num "7000" ; +valuafe num "8000" ; +ivaafe num "9000" ; + ! vim: set ft=xfst-lexc: diff --git a/xxn b/xxn new file mode 100644 index 0000000..e69de29