Skip to content

Commit

Permalink
Add adpositions with contlexes
Browse files Browse the repository at this point in the history
These are dealt with in much the same way as adverbs when it comes to contlex, i.e., mention of possible case
  • Loading branch information
rueter committed Apr 3, 2024
1 parent 93ac957 commit de241af
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
1 change: 1 addition & 0 deletions src/fst/morphology/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ GT_LEXC_SRCS_L1_L2=\
stems/abbreviations.lexc \
stems/acronyms.lexc \
stems/adjectives_newwords.lexc \
stems/adpositions.lexc \
stems/adverbs.lexc \
stems/nouns_newwords.lexc \
stems/numerals.lexc \
Expand Down
18 changes: 11 additions & 7 deletions src/fst/morphology/root.lexc
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,7 @@ LEXICON Root
!! The word forms in Veps start from the lexeme roots of basic
!! word classes.
adjectives ;
adpositions ;
adverbs ;
conjuncts ;
interjections ;
Expand All @@ -471,7 +472,6 @@ LEXICON Root
N_NEWWORDS ; !Under NounRoot. Todo: Unify files. <What is this unification to do?20230620>
PROP_NEWWORDS ;
V_NEWWORDS ;
POSTPOSITION ;
! SUBJUNCTION ;
PRONOUN-TYPES ;

Expand Down Expand Up @@ -511,11 +511,6 @@ LEXICON ORDINAL
! LEXICON PUNCTUATION
! # ;

LEXICON POSTPOSITION
!! @LEXNAME@
al+Po+Ade:al # ;
keskes+Po+Ine:keskes # ;

LEXICON CADJ
!! @LEXNAME@
+A: #;
Expand Down Expand Up @@ -544,7 +539,16 @@ LEXICON ADV_SPAT
LEXICON ADV_TEMP
!! @LEXNAME@
+Temp: K ;


LEXICON PO_
K ;
LEXICON PO_ADE
+Ade: K ;
LEXICON PO_ILL
+Ill: K ;
LEXICON PO_INE
+Ine: K ;

LEXICON CASESUF #;
!! @LEXNAME@
LEXICON PRON #;
Expand Down
11 changes: 11 additions & 0 deletions src/fst/morphology/stems/adpositions.lexc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

LEXICON adpositions

al+Po:al PO_ADE ;
edes+Po:edes PO_INE ;
keskes+Po+Ine:keskes PO_INE ;
mödhe+Po:mödhe PO_ILL ;
polhe+Po:polhe PO_ILL ;
tagut+Po:tagut PO_ ;
täht+Po:täht PO_ ;

0 comments on commit de241af

Please sign in to comment.