diff --git a/languages.csv b/languages.csv index b2330d253..013c68874 100644 --- a/languages.csv +++ b/languages.csv @@ -22,7 +22,7 @@ Ice,Icelandic,icelandic,,,,,,n,,y Ina,Interlingua,interlingua,,,y,,n,n,,n Ita,Italian,italian,Romance,,y,,,,y,y Jpn,Japanese,japanese,,,,,,,,y -Lat,Latin,latin,,,,,y,n,n,y +Lat,Latin,latin,,,,,y,y,n,y Lav,Latvian,latvian,,,,,,,y,y Mlt,Maltese,maltese,,,,,,,,y Mon,Mongolian,mongolian,,,,,,n,,y diff --git a/src/api/ConstructorsLat.gf b/src/api/ConstructorsLat.gf index 7103ccb81..436adba25 100644 --- a/src/api/ConstructorsLat.gf +++ b/src/api/ConstructorsLat.gf @@ -1,4 +1,4 @@ --# -path=.:alltenses:prelude:../latin resource ConstructorsLat = Constructors with (Grammar = GrammarLat) ** - open MissingLat in {} + open MissingLat in {} ; diff --git a/src/api/SymbolicLat.gf b/src/api/SymbolicLat.gf index 998364997..22d218867 100644 --- a/src/api/SymbolicLat.gf +++ b/src/api/SymbolicLat.gf @@ -1,5 +1,5 @@ ---# -path=.:../icelandic:../common:../abstract:../prelude +--# -path=.:../latin:../common:../abstract:../prelude resource SymbolicLat = Symbolic with (Symbol = SymbolLat), - (Grammar = GrammarLat) ; + (Grammar = GrammarLat) ** open MissingLat in {} ; diff --git a/src/latin/AdjectiveLat.gf b/src/latin/AdjectiveLat.gf index bb499786c..199ef20fa 100644 --- a/src/latin/AdjectiveLat.gf +++ b/src/latin/AdjectiveLat.gf @@ -8,12 +8,12 @@ concrete AdjectiveLat of Adjective = CatLat ** open ResLat, Prelude in { -- ComparA : A -> NP -> AP ; -- warmer than I ComparA a np = { - s = \\ag => a.s ! Compar ! ag ++ "quam" ++ np.s ! Nom ; + s = \\ag => a.s ! Compar ! ag ++ "quam" ++ (combineNounPhrase np) ! PronNonDrop ! Nom ; } ; -- ComplA2 : A2 -> NP -> AP ; -- married to her ComplA2 a np = { - s = \\ag => a.s ! Posit ! ag ++ a.c.s ++ np.s ! a.c.c ; + s = \\ag => a.s ! Posit ! ag ++ a.c.s ++ (combineNounPhrase np) ! PronNonDrop ! a.c.c ; } ; -- ReflA2 : A2 -> AP -- married to myself @@ -31,7 +31,7 @@ concrete AdjectiveLat of Adjective = CatLat ** open ResLat, Prelude in { -- CAdvAP : CAdv -> AP -> NP -> AP ; -- as cool as John CAdvAP cadv ap np = - { s = \\ag => cadv.s ++ ap.s ! ag ++ cadv.p ++ np.s ! Nom } ; + { s = \\ag => cadv.s ++ ap.s ! ag ++ cadv.p ++ (combineNounPhrase np) ! PronNonDrop ! Nom } ; -- The superlative use is covered in $Ord$. diff --git a/src/latin/AdverbLat.gf b/src/latin/AdverbLat.gf index 135d469d5..473073103 100644 --- a/src/latin/AdverbLat.gf +++ b/src/latin/AdverbLat.gf @@ -8,17 +8,16 @@ concrete AdverbLat of Adverb = CatLat ** open ResLat, Prelude, ParadigmsLat in -- PrepNP : Prep -> NP -> Adv ; -- in the house PrepNP prep np = - mkAdv (prep.s ++ np.adv ++ np.det.s ! np.g ! prep.c ++ np.preap.s ! (Ag np.g np.n prep.c) ++ - np.s ! prep.c ++ np.postap.s ! (Ag np.g np.n prep.c ) ++ np.det.sp ! np.g ! prep.c ) ; + mkAdv (prep.s ++ np.adv ++ (combineNounPhrase np) ! PronNonDrop ! prep.c ) ; -- ComparAdvAdj : CAdv -> A -> NP -> Adv ; -- more warmly than John ComparAdvAdj cadv a np = - mkAdv (cadv.s ++ a.adv.s ! Compar ++ cadv.p ++ np.s ! Nom) ; + mkAdv (cadv.s ++ a.adv.s ! Compar ++ cadv.p ++ (combineNounPhrase np) ! PronNonDrop ! Nom) ; -- ComparAdvAdjS : CAdv -> A -> S -> Adv ; -- more warmly than he runs ComparAdvAdjS cadv a s = - mkAdv (cadv.s ++ a.adv.s ! Compar ++ cadv.p ++ combineSentence s ! SPreS ! PreV ! SOV ) ; + mkAdv (cadv.s ++ a.adv.s ! Compar ++ cadv.p ++ combineSentence s ! SPreS ! PreV ! CPreV ! SOV ) ; -- AdAdv : AdA -> Adv -> Adv ; -- very quickly AdAdv ada adv = mkAdv (ada.s ++ (adv.s ! Posit) ) ; @@ -30,7 +29,7 @@ concrete AdverbLat of Adverb = CatLat ** open ResLat, Prelude, ParadigmsLat in -- Subordinate clauses can function as adverbs. -- SubjS : Subj -> S -> Adv ; -- when she sleeps - SubjS subj s = mkAdv (subj.s ++ combineSentence s ! SPreS ! PreV ! SOV ) ; + SubjS subj s = mkAdv (subj.s ++ combineSentence s ! SPreS ! PreV ! CPreV ! SOV ) ; -- AdnCAdv : CAdv -> AdN ; -- less (than five) AdnCAdv cadv = {s = cadv.s ++ cadv.p} ; diff --git a/src/latin/BackwardLat.gf b/src/latin/BackwardLat.gf deleted file mode 100644 index 6f57b8ede..000000000 --- a/src/latin/BackwardLat.gf +++ /dev/null @@ -1,76 +0,0 @@ ---concrete BackwardLat of Backward = CatLat ** open ResLat in { --- --- flags optimize=all_subs ; --- --- lin --- ----- A repository of obsolete constructs, needed for backward compatibility. ----- They create spurious ambiguities if used in combination with Lang. --- ----- from Verb 19/4/2008 --- --- ComplV2 v np = insertObj (\\_ => v.c2 ++ np.s ! Acc) (predV v) ; --- ComplV3 v np np2 = --- insertObj (\\_ => v.c2 ++ np.s ! Acc ++ v.c3 ++ np2.s ! Acc) (predV v) ; --- ComplV2V v np vp = --- insertObj (\\a => infVP v.isAux vp a) --- (insertObj (\\_ => v.c2 ++ np.s ! Acc) (predV v)) ; --- ComplV2S v np s = --- insertObj (\\_ => conjThat ++ s.s) --- (insertObj (\\_ => v.c2 ++ np.s ! Acc) (predV v)) ; --- ComplV2Q v np q = --- insertObj (\\_ => q.s ! QIndir) --- (insertObj (\\_ => v.c2 ++ np.s ! Acc) (predV v)) ; --- ComplV2A v np ap = --- insertObj (\\_ => v.c2 ++ np.s ! Acc ++ ap.s ! np.a) (predV v) ; --- --- ReflV2 v = insertObj (\\a => v.c2 ++ reflPron ! a) (predV v) ; --- ----- from Sentence 19/4/2008 --- --- SlashV2 np v2 = --- mkClause (np.s ! Nom) np.a (predV v2) ** {c2 = v2.c2} ; --- --- SlashVVV2 np vv v2 = --- mkClause (np.s ! Nom) np.a --- (insertObj (\\a => infVP vv.isAux (predV v2) a) (predVV vv)) ** --- {c2 = v2.c2} ; --- ----- from Noun 19/4/2008 --- --- NumInt n = {s = n.s ; n = Pl} ; --- OrdInt n = {s = n.s ++ "th"} ; --- DEPRECATED --- --- DetSg quant ord = { --- s = quant.s ! Sg ++ ord.s ; --- n = Sg --- } ; --- --- DetPl quant num ord = { --- s = quant.s ! num.n ++ num.s ++ ord.s ; --- n = num.n --- } ; --- --- NoNum = {s = []; n = Pl } ; --- --- DefArt = {s = \\_ => artDef} ; --- --- IndefArt = { --- s = table { --- Sg => artIndef ; --- Pl => [] --- } --- } ; --- --- MassDet = {s = \\_ => []} ; --- --- --- ----- from Structural 19/4/2008 --- --- that_NP = regNP "that" Sg ; --- these_NP = regNP "these" Pl ; --- this_NP = regNP "this" Sg ; --- those_NP = regNP "those" Pl ; --- ---} diff --git a/src/latin/CatLat.gf b/src/latin/CatLat.gf index a40a502a1..1b7fab347 100644 --- a/src/latin/CatLat.gf +++ b/src/latin/CatLat.gf @@ -20,7 +20,7 @@ concrete CatLat of Cat = CommonX-[Adv] ** open ResLat, ParamX, Prelude in { ---- Question -- -- TO FIX - QCl = Clause ; -- {s : ResLat.Tense => Anteriority => Polarity => QForm => Str } ; + QCl = Clause ** { q : Str } ; IP = {s : Case => Str ; n : Number} ; IComp = {s : Str} ; IDet = Determiner ; --{s : Str ; n : Number} ; @@ -53,14 +53,14 @@ concrete CatLat of Cat = CommonX-[Adv] ** open ResLat, ParamX, Prelude in { Pron = ResLat.Pronoun ; Det = Determiner ; Predet = {s : Str} ; - Ord = Ordinal ; + Ord = { s : Gender => Number => Case => Str } ; Num = {s : Gender => Case => Str ; n : Number} ; Card = {s : Gender => Case => Str ; n : Number} ; Quant = Quantifier ; -- ---- Numeral -- - Numeral = ResLat.Numeral ; + Numeral = ResLat.TNumeral ; Digits = {s : Str ; unit : Unit} ; -- ---- Structural @@ -83,11 +83,15 @@ concrete CatLat of Cat = CommonX-[Adv] ** open ResLat, ParamX, Prelude in { N = Noun ; N2 = Noun ** { c : Prep } ; N3 = Noun ** { c : Prep ; c2 : Prep } ; - PN = Noun ; + PN = { s : Case => Str ; n : Number ; g : Gender } ; A2 = Adjective ** { c : Prep} ; linref - NP = \np -> np.preap.s ! Ag np.g np.n Nom ++ np.s ! Nom ++ np.postap.s ! Ag np.g np.n Nom ; + NP = \np -> combineNounPhrase np ! PronNonDrop ! Nom ; VP = \vp -> vp.adv ++ vp.inf ! VInfActPres ++ vp.obj ++ vp.compl ! Ag Masc Sg Nom ; - S = \s -> combineSentence s ! SPreO ! PreO ! SOV ; + S = \s -> combineSentence s ! SPreO ! PreO ! CPreV ! SOV ; + V, VS, VQ, VA, VV = \v -> v.act ! (VAct VSim (VPres VInd) Sg P1) ; + V2, V2A, V2Q, V2S = \v -> v.act ! (VAct VSim (VPres VInd) Sg P1) ; + Pron = \p -> p.pers.s ! PronNonDrop ! PronNonRefl ! Nom ; + Conj = \c -> c.s1 ++ c.s2 ++ c.s3 ; } diff --git a/src/latin/ConjunctionLat.gf b/src/latin/ConjunctionLat.gf index f8fbb3787..9ff723403 100644 --- a/src/latin/ConjunctionLat.gf +++ b/src/latin/ConjunctionLat.gf @@ -8,31 +8,44 @@ concrete ConjunctionLat of Conjunction = -- ConjS : Conj -> ListS -> S ; -- he walks and she runs -- TO FIX -- ConjS conj ss = { s = \\_ => conjunctDistrX conj (ss.l ! conj.c) ; sadv = lin Adv { s = []} ; neg = ss.neg } ; + ConjS conj ss = { +-- s = \\apos => coord conj.c { init = (ss.s ! conj.c).init ! SPreS ! apos ! CPreV ! SOV ; + -- last = (ss.s ! conj.c).last ! SPreS ! apos ! CPreV ! SOV} ; + s = \\apos => conj.s1 ++ (ss.s ! conj.c).init ! SPreS ! apos ! CPreV ! SOV ++ conj.s2 ++ + (ss.s ! conj.c).last ! SPreS ! apos ! CPreV ! SOV ++ conj.s3 ; + o = \\_ => [] ; + v = \\_,_ => [] ; + neg = \\_ => [] ; + p = ss.p ; + sadv = [] ; + t = ss.t + } ; -- ConjAdv : Conj -> ListAdv -> Adv ; -- here or there - ConjAdv conj ss = mkAdv (conjunctDistrSS conj (ss.l ! conj.c) ).s ; +-- ConjAdv conj ss = mkAdv (conjunctDistrSS conj (ss.l ! conj.c) ).s ; -- ConjNP : Conj -> ListNP -> NP ; -- she or we ConjNP conj nps = { - s = case conj.c of { - And => case nps.isBase of { - False => (conjunctDistrTable Case conj (nps.l ! And)).s ; - True => \\c => conj.s1 ++ (nps.l ! And).s1 ! c ++ conj.s2 ++ (nps.l ! And).s2 ! c - } ; - c => (conjunctDistrTable Case conj (nps.l ! And)).s - } ; - n = case conj.c of { And => Pl ; _ => nps.n } ; + -- s = case conj.c of { + -- Et => case nps.isBase of { + -- False => (conjunctDistrTable Case conj (nps.l ! Et)).s ; + -- True => \\c => conj.s1 ++ (nps.l ! Et).s1 ! c ++ conj.s2 ++ (nps.l ! Et).s2 ! c + -- } ; + -- c => (conjunctDistrTable Case conj (nps.l ! Et)).s + -- } ; + s = \\pd,ca => conj.s1 ++ (nps.s ! conj.c).init ! pd ! ca ++ conj.s2 ++ (nps.s ! conj.c).last ! pd ! ca ++ conj.s3 ; + n = case conj.c of { Et => Pl ; _ => nps.n } ; g = nps.g ; p = nps.p ; adv = nps.adv ; preap = nps.preap ; - postap = nps.postap ; - det = { s = \\_,_ => "" ; sp = \\_,_ => "" ; n = nps.n }; + postap = nps.postap ; + det = nps.det } ; -- ConjAP : Conj -> ListAP -> AP ; - ConjAP conj ss = conjunctDistrTable Agr conj (ss.l ! conj.c) ; +-- ConjAP conj ss = conjunctDistrTable Agr conj (ss.l ! conj.c) ; -- -- DConjS = conjunctDistrSS ; @@ -53,32 +66,40 @@ concrete ConjunctionLat of Conjunction = -- -- BaseS : S -> S -> ListS --- BaseS x y = { --- l = \\c => { s1 = x ; s2 = y } ; --- } ; + BaseS x y = { + s = \\c => { init = combineSentence x ; last = combineSentence y } ; + p = y.p ; + t = y.t + } ; -- ConsS : S -> ListS -> ListS -- TO FIX -- ConsS x xs = { l = \\_ => consrSS bindComma (ss (x.s ! PreS)) (xs.l ! Comma) }; - -- ConsS s ss = { - -- l = \\c => - -- { s1 = ss.s1 ++ - -- table { - -- And => and_Conj - -- } ! c - -- ++ ss.s2 ; - -- s2 = s } - -- } ; + ConsS s ss = { + s = \\co => + { init = \\s,a,c,o => coord co { init = (ss.s ! co).init ! s ! a ! c ! o ; last = (ss.s ! co).last ! s ! a ! c ! o } ; + last = combineSentence s } ; + p = s.p ; + t = s.t + } ; -- BaseAdv : Adv -> Adv -> ListAdv - BaseAdv x y = { l = \\c => twoSS (ss (x.s ! Posit)) (ss (y.s ! Posit)) } ; + BaseAdv x y = + { + s = \\_ => { init = x.s ! Posit ; last = y.s ! Posit } + } ; -- ConsAdv : Adv -> ListAdv -> ListAdv - ConsAdv x xs = { l = \\_ => consrSS bindComma (ss (x.s ! Posit)) (xs.l ! Comma) } ; + ConsAdv x xs = + { + -- s = \\_ => consrSS bindComma (ss (x.s ! Posit)) (xs.l ! Comma) + s = \\c => { init = coord c (xs.s ! c) ; last = x.s ! Posit } + } ; - -- BaseNP : NP -> NP -> ListNP ; -- John, Mary + -- -- BaseNP : NP -> NP -> ListNP ; -- John, Mary BaseNP x y = { - l = \\c => twoTable Case x y ; + -- s = \\c => twoTable Case x y ; + s = \\c => { init = x.s ; last = y.s } ; g = Masc ; -- Just guessing (but maybe sexist bullshit) n = matchNumber x.n y.n ; p = P3 ; @@ -86,35 +107,35 @@ concrete ConjunctionLat of Conjunction = preap = lin AP { s = \\a => x.preap.s ! a ++ y.preap.s ! a } ; postap = lin AP { s = \\a => x.postap.s ! a ++ y.postap.s ! a } ; isBase = True ; - det = { s = \\g,c => x.det.s ! g ! c ++ y.det.s ! g ! c ; sp = \\g,c => x.det.sp ! g ! c ++ y.det.sp ! g ! c ; n = matchNumber x.get.n y.get.n } ; - + det = lin Det { s = \\g,c => x.det.s ! g ! c ++ y.det.s ! g ! c ; sp = \\g,c => x.det.sp ! g ! c ++ y.det.sp ! g ! c ; n = matchNumber x.det.n y.det.n } ; } ; - -- ConsNP : NP -> ListNP -> ListNP ; -- John, Mary, Bill + -- -- ConsNP : NP -> ListNP -> ListNP ; -- John, Mary, Bill ConsNP x xs = { - l = \\_ => consrTable Case bindComma x ( xs.l ! Comma ); + -- s = \\_ => consrTable Case bindComma x ( xs.s ! Comma ); + s = \\co => { init = \\pd,ca => coord co { init = (xs.s ! co).init ! pd ! ca ; last = (xs.s ! co).last ! pd ! ca} ; last = x.s } ; n = matchNumber x.n xs.n ; g = xs.g ; p = xs.p ; adv = x.adv ++ xs.adv ; preap = lin AP { s = \\a => x.preap.s ! a ++ xs.preap.s ! a } ; postap = lin AP { s = \\a => x.postap.s ! a ++ xs.postap.s ! a } ; - isBase = False - -- TODO det + isBase = False ; + det = lin Det { s = \\g,c => x.det.s ! g ! c ++ xs.det.s ! g ! c ; sp = \\g,c => x.det.sp ! g ! c ++ xs.det.sp ! g ! c ; n = matchNumber x.det.n xs.det.n } ; -- try to combine the determiners, probably not what we want } ; - -- BaseAP : AP -> AP -> ListAP - BaseAP x y = { l = \\c => twoTable Agr x y }; + -- -- BaseAP : AP -> AP -> ListAP + -- BaseAP x y = { l = \\c => twoTable Agr x y }; - -- ConsAP : AP -> ListAP -> ListAP - ConsAP x xs = - { l = \\_ => consrTable Agr and_Conj.s2 x (xs.l ! Comma ) } ; + -- -- ConsAP : AP -> ListAP -> ListAP + -- ConsAP x xs = + -- { l = \\_ => consrTable Agr and_Conj.s2 x (xs.l ! Comma ) } ; -- lincat --- [S] = { l : Coordinator => {s1,s2 : S} } ; -- TO FIX - [Adv] = { l: Coordinator => {s1,s2 : Str}} ; - [NP] = {l : Coordinator => {s1,s2 : Case => Str} ; g : Gender ; n : Number ; p : Person ; adv : Str ; preap : AP ; postap : AP ; isBase : Bool } ; - [AP] = {l : Coordinator => {s1,s2 : Agr => Str } } ; + [S] = { s : Coordinator => {init,last : SAdvPos => AdvPos => ComplPos => Order => Str} ; p : Pol ; t : Tense } ; -- TO FIX + [Adv] = { s: Coordinator => {init,last : Str}} ; + [NP] = { s : Coordinator => {init,last : PronDropForm => Case => Str} ; g : Gender ; n : Number ; p : Person ; adv : Str ; preap : AP ; postap : AP ; isBase : Bool ; det : Det } ; + [AP] = {s : Coordinator => {init,last : Agr => Str } } ; oper -- Generates a new number value given two number values. @@ -126,5 +147,21 @@ concrete ConjunctionLat of Conjunction = <_,Pl> => Pl ; <_,_> => Sg } ; + + coord : Coordinator -> {init : Str ; last : Str} -> Str = + \c,l -> + l.init ++ + table { + Aut => "aut" ; + Et => "et" ; + Sed => "sed" ; + Si => "si" ; + Vel => "vel" ; + Comma => bindComma ; + Colon => ":" ; + Empty => "" ; + Missing => nonExist + } ! c + ++ l.last ; -- } diff --git a/src/latin/DictLat.gf b/src/latin/DictLat.gf index 477fb5d97..403963d43 100644 --- a/src/latin/DictLat.gf +++ b/src/latin/DictLat.gf @@ -1,18 +1,18 @@ ---# -path=.:.. -concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg_N,man_N,do_V2] ** open Prelude, ParadigmsLat, ResLat, ExtraLat in { +--# -path=.:..:latin +concrete DictLat of DictLatAbs = CatLat ** open Prelude, ParadigmsLat, ExtraLat in { -- extracted from http://archives.nd.edu/whitaker/dictpage.htm lin --- IGNORED A_N : N1 A., abb. -- M -- [XXXCG] :: Aulus (Roman praenomen); (abb. A./Au.); [Absolvo, Antiquo => free, reject]; --- IGNORED Abba_N : N1 Abba, undeclined -- M -- [EEQEE] :: Father; (Aramaic); bishop of Syriac/Coptic church; (false read obba/decanter); + A_N = constN "A." masculine ; -- [XXXCG] :: Aulus (Roman praenomen); (abb. A./Au.); [Absolvo, Antiquo => free, reject]; + Abba_N = constN "Abba" masculine ; -- [EEQEE] :: Father; (Aramaic); bishop of Syriac/Coptic church; (false read obba/decanter); Academia_F_N = mkN "Academia" ; -- [XXXBO] :: academy, university; gymnasium where Plato taught; school built by Cicero; Achillas_M_N = mkN "Achillas" "Achillae " masculine ; -- [CXEFO] :: Achillas; (the Egyptian who murdered Pompey); Achilles_M_N = mkN "Achilles" "Achillis " masculine ; -- [XYHCO] :: Achilles, Greek hero; (other Greeks); (typifying great warrior); Achilleus_M_N = mkN "Achilleus" "Achilleis " masculine ; -- [XYHCO] :: Achilles, Greek hero; (other Greeks); (typifying great warrior); --- IGNORED Act_N : N1 Act., abb. -- N -- [EEXDE] :: Acts (abbreviation); [Acta Apostolorum => Acts, book of the Bible]; + Act_N = constN "Act." neuter ; -- [EEXDE] :: Acts (abbreviation); [Acta Apostolorum => Acts, book of the Bible]; Adam_M_N = mkN "Adam" "Adae " masculine ; -- [DEXCS] :: Adam; (Hebrew); (NOM S => Adam, not Ada, otherwise 1 DECL Ad...?); --- IGNORED Adam_N : N1 Adam, undeclined -- M -- [EEXDX] :: Adam; (from the Hebrew); [NOM S => Adam, not Ada (otherwise 1 DECL Ad...)]; + Adam_N = constN "Adam" masculine ; -- [EEXDX] :: Adam; (from the Hebrew); [NOM S => Adam, not Ada (otherwise 1 DECL Ad...)]; Adamus_M_N = mkN "Adamus" ; -- [DEXCS] :: Adam, first man; --- IGNORED Adonai_N : N1 Adonai, undeclined -- M -- [XEXFE] :: Lord, God; (Hebrew); + Adonai_N = constN "Adonai" masculine ; -- [XEXFE] :: Lord, God; (Hebrew); Adrumetinus_A = mkA "Adrumetinus" "Adrumetina" "Adrumetinum" ; -- [XXAES] :: Andrumetine, of/from Andrumetum/Hadrumetum (city of Africa propria/Byzacene); Adrumetinus_M_N = mkN "Adrumetinus" ; -- [XXAFS] :: Andrumetine, inhabitant of Andrumetum/Hadrumetum (city in Africa/Byzacane); Adrumetum_N_N = mkN "Adrumetum" ; -- [XXAES] :: Andrumetum/Hadrumetum (city of Africa propria, capital of province Byzacene); @@ -67,8 +67,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Aminneus_A = mkA "Aminneus" "Aminnea" "Aminneum" ; -- [XAXCO] :: Aminean; (applied to vines/grapes/wine, myrrh); (of a region in eastern Italy); Aminnius_A = mkA "Aminnius" "Aminnia" "Aminnium" ; -- [XAXCO] :: Aminean; (applied to vines/grapes/wine, myrrh); (of a region in eastern Italy); Ammanites_M_N = mkN "Ammanites" "Ammanitae " masculine ; -- [EXQEW] :: Ammonite, inhabitant of Ammon (land north-east of the Dead Sea); + Ammanitis_1_N = mkN "Ammanitis" "Ammanitidis" feminine ; -- [EXQEW] :: Ammonite woman, inhabitant of Ammon (land north-east of the Dead Sea); + Ammanitis_2_N = mkN "Ammanitis" "Ammanitidos" feminine ; -- [EXQEW] :: Ammonite woman, inhabitant of Ammon (land north-east of the Dead Sea); Ammanitis_A = mkA "Ammanitis" "Ammanitidis"; -- [EXQEW] :: Ammonite, of Ammon (land north-east of the Dead Sea); --- TODO Ammanitis_N : N1 Ammanitis, Ammanitidos/is -- F -- [EXQEW] :: Ammonite woman, inhabitant of Ammon (land north-east of the Dead Sea); Ammineus_A = mkA "Ammineus" "Amminea" "Ammineum" ; -- [XAXCO] :: Aminean; (applied to vines/grapes/wine, myrrh); (of a region in eastern Italy); Andreas_M_N = mkN "Andreas" "Andreae " masculine ; -- [XXXDE] :: Andrew; Androgeosos_M_N = mkN "Androgeosos" "Androgei " masculine ; -- [XXXCO] :: Androgeos (son of Minos and Pasiphae, whose death was avenged on Athens); @@ -93,11 +94,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Antonius_M_N = mkN "Antonius" ; -- [XXXCO] :: Antony/Anthony; (Roman gens name); (M. Antonius -> Mark Antony, triumvir); Antuuerpia_F_N = mkN "Antuuerpia" ; -- [GXNET] :: Antwerp; Antverpia_F_N = mkN "Antverpia" ; -- [FXNFE] :: Antwerp; --- IGNORED Ap_N : N1 Ap., abb. -- M -- [XXXCO] :: Appius (Roman praenomen); (esp, gens Claudia); Ap.Cl. Caecus built Appian Way; + Ap_N = constN "Ap." masculine ; -- [XXXCO] :: Appius (Roman praenomen); (esp, gens Claudia); Ap.Cl. Caecus built Appian Way; Apollinaris_A = mkA "Apollinaris" "Apollinaris" "Apollinare" ; -- [XEXES] :: sacred to Apollo; of Apollo (games); Apollo_M_N = mkN "Apollo" "Apollinis " masculine ; -- [XEXBO] :: Apollo; (Roman god of prophecy, music, poetry, archery, medicine); --- IGNORED App_N : N1 App., abb. -- M -- [XXXCO] :: Appius (Roman praenomen); (abb. App.); --- IGNORED Apr_A : A2 Apr., abb. -- [XXXCO] :: April (month/mensis understood); abb. Apr.; + App_N = constN "App." masculine ; -- [XXXCO] :: Appius (Roman praenomen); (abb. App.); + Apr_A = constA "Apr" ; -- [XXXCO] :: April (month/mensis understood); abb. Apr.; Aprilis_A = mkA "Aprilis" "Aprilis" "Aprile" ; -- [XXXCO] :: April (month/mensis understood); abb. Apr.; Aprilis_M_N = mkN "Aprilis" "Aprilis " masculine ; -- [XXXEO] :: April; Aquileia_F_N = mkN "Aquileia" ; -- [XXIDO] :: Aquileia; (town in NE Italy); @@ -145,8 +146,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Attice_Adv = mkAdv "Attice" ; -- [XXHCO] :: Attic, in Attic/Athenian manner; elegantly; Atticus_A = mkA "Atticus" "Attica" "Atticum" ; -- [XXXCO] :: Attic, Athenian; classic, elegant; Atuatucus_M_N = mkN "Atuatucus" ; -- [XXFCT] :: Atuatuci, tribe of north (Belgic) Gaul - Caesar; --- IGNORED Au_N : N1 Au., abb. -- M -- [XXXCG] :: Aulus (Roman praenomen); (abb. A./Au.); --- IGNORED Aug_A : A2 Aug., abb. -- [XXXCO] :: August (month/mensis understood); abb. Aug.; renamed from Sextilis in 8 BC; + Au_N = constN "Au." masculine ; -- [XXXCG] :: Aulus (Roman praenomen); (abb. A./Au.); + Aug_A = constA "Aug" ; -- [XXXCO] :: August (month/mensis understood); abb. Aug.; renamed from Sextilis in 8 BC; Augusta_F_N = mkN "Augusta" ; -- [CLICO] :: Augusta; (title of Emperor's wife/occasionally other close female relatives); Augustalis_A = mkA "Augustalis" "Augustalis" "Augustale" ; -- [EXXEE] :: of/pertaining to Augustus; imperial; Augustalis_M_N = mkN "Augustalis" "Augustalis " masculine ; -- [EXXEE] :: member of imperial military/religious group; title of Prefect of Egypt (OED); @@ -160,9 +161,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Azoticus_A = mkA "Azoticus" "Azotica" "Azoticum" ; -- [EXQFW] :: Azotian, of/from Azotus/Ahdod (Esdud); (city of Palestine near the coast); Azotius_A = mkA "Azotius" "Azotia" "Azotium" ; -- [EXQFW] :: Azotian, of/from Azotus/Ahdod (now Esdud); (city of Palestine near the coast); Azotus_F_N = mkN "Azotus" ; -- [EXQFS] :: Ahdod (now Esdud); (city of Palestine near the coast); --- IGNORED Azrael_N : N1 Azrael, undeclined -- M -- [EXQFE] :: Azrael (Aramaic), angel of death; --- IGNORED Baal_N : N1 Baal, undeclined -- M -- [DEXES] :: Baal (Syrian deity); --- TODO Babylon_N : N1 Babylon, Babylonos/is -- F -- [XXQFO] :: Babylon (city on Euphrates, capital of Babylonia); people of Babylon; + Azrael_N = constN "Azrael" masculine ; -- [EXQFE] :: Azrael (Aramaic), angel of death; + Baal_N = constN "Baal" masculine ; -- [DEXES] :: Baal (Syrian deity); + Babylon_1_N = mkN "Babylon" "Babylonis" feminine ; -- [XXQFO] :: Babylon (city on Euphrates, capital of Babylonia); people of Babylon; + Babylon_2_N = mkN "Babylon" "Babylonos" feminine ; -- [XXQFO] :: Babylon (city on Euphrates, capital of Babylonia); people of Babylon; Babylonia_F_N = mkN "Babylonia" ; -- [XXQCO] :: Babylon (city on Euphrates, capital of Babylonia); Babylonia; Babylonius_A = mkA "Babylonius" "Babylonia" "Babylonium" ; -- [XXQEO] :: Babylonian, of Babylon (city on Euphrates, capital of Babylonia); Babylonius_M_N = mkN "Babylonius" ; -- [XXQEO] :: Babylonian, inhabitant of Babylon (city on Euphrates, capital of Babylonia); @@ -172,7 +174,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Bacchus_M_N = mkN "Bacchus" ; -- [XEXCO] :: Bacchus, god of wine/vine; the vine, wine; Baetica_F_N = mkN "Baetica" ; -- [XXSDO] :: Baectia (province in southern Spain, Andalusia/Granada); Bardus_M_N = mkN "Bardus" ; -- [XDFEO] :: bard (Gallic), poet-singer, minstrel; --- IGNORED Baruch_N : N1 Baruch, undeclined -- N -- [EEXFE] :: Baruch; (book of Old Testament); + Baruch_N = constN "Baruch" neuter ; -- [EEXFE] :: Baruch; (book of Old Testament); Beda_M_N = mkN "Beda" ; -- [EEXEE] :: Bede; (Venerable Bede, 673-735, English historian/theologian); Beduinus_M_N = mkN "Beduinus" ; -- [GXXEK] :: Bedouin; Belga_M_N = mkN "Belga" ; -- [XXFCO] :: Belgae (pl.); (people of N Gaul - in Caesar's Gallic War); @@ -202,7 +204,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Brutus_M_N = mkN "Brutus" ; -- [CXICO] :: Brutus; (Roman cognomen); [L. Junius Brutus => first consul; M. J. ~ assassin]; Bugella_F_N = mkN "Bugella" ; -- [FXXFZ] :: Bugella; (medieval town famous for its records); (now Biella, 40 mi. NE Turino); Byzantium_N_N = mkN "Byzantium" ; -- [XXHCO] :: Byzantium (city on Bosphorus, later Constantinople, now Istanbul); --- IGNORED C_N : N1 C., abb. -- M -- [XXXCO] :: Gaius (Roman praenomen); (abb. C.); (abb. for) centum/100; + C_N = constN "C." masculine ; -- [XXXCO] :: Gaius (Roman praenomen); (abb. C.); (abb. for) centum/100; Cacus_M_N = mkN "Cacus" ; -- [XYXCO] :: Cacus, giant son of Vulcan; (lived on Mt Aventius); servant (L+S); Caesar_M_N = mkN "Caesar" "Caesaris " masculine ; -- [XLXBO] :: Caesar; (Julian gens cognomen); (adopted by emperors); [C. Julius ~ => Emperor]; Caesaraugusta_F_N = mkN "Caesaraugusta" ; -- [XXSFE] :: Saragossa (Spain); @@ -243,30 +245,31 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Celer_M_N = mkN "Celer" "Celeris " masculine ; -- [XXXDO] :: knights (pl.) (old name/precursor of equestrian order); Roman kings' bodyguard; Celtus_A = mkA "Celtus" "Celta" "Celtum" ; -- [XXXCO] :: Celts; (inhabitants of central Gaul); Cenabum_N_N = mkN "Cenabum" ; -- [XXFEO] :: Cenabum; town in Gaul; Orleans; --- IGNORED Cephas_N : N1 Cephas, undeclined -- M -- [XEXFE] :: rock (Aramaic), surname of Simon Peter; + Cephas_N = constN "Cephas" masculine ; -- [XEXFE] :: rock (Aramaic), surname of Simon Peter; Cerbereus_A = mkA "Cerbereus" "Cerberea" "Cerbereum" ; -- [XYXDO] :: of/connected with Cerberus; (three-headed dog guarding entrance to underworld); Cerberos_M_N = mkN "Cerberos" "Cerberi " masculine ; -- [XYXEO] :: Cerberus; (three-headed dog guarding entrance to underworld); Cerberus_M_N = mkN "Cerberus" ; -- [XYXCO] :: Cerberus; (three-headed dog guarding entrance to underworld); Cereale_N_N = mkN "Cereale" "Cerealis " neuter ; -- [XEXCO] :: festival of Ceres (pl.); Cerealis_A = mkA "Cerealis" "Cerealis" "Cereale" ; -- [XEXCO] :: of/associated with Ceres, suitable for festival of Ceres; of wheat; Ceres_F_N = mkN "Ceres" "Cereris " feminine ; -- [XEXBO] :: Ceres (goddess of grain/fruits); wheat; bread; food; --- TODO Chalcis_N : N1 Chalcis, Chalcidos/is -- F -- [XXXEO] :: Chalcis; (several towns in Greece/elsewhere, esp. chief city of Euboea); + Chalcis_1_N = mkN "Chalcis" "Chalcidis" feminine ; -- [XXXEO] :: Chalcis; (several towns in Greece/elsewhere, esp. chief city of Euboea); + Chalcis_2_N = mkN "Chalcis" "Chalcidos" feminine ; -- [XXXEO] :: Chalcis; (several towns in Greece/elsewhere, esp. chief city of Euboea); Chaldaeus_A = mkA "Chaldaeus" "Chaldaea" "Chaldaeum" ; -- [XXQEO] :: Chaldaen, of/concerning Chaldaens; of their soothsayers/astrologers/astronomers; Chaldaeus_M_N = mkN "Chaldaeus" ; -- [XXQCO] :: Chaldaen, people of south Assyria; their soothsayers/astrologers/astronomers; Chaldaicus_A = mkA "Chaldaicus" "Chaldaica" "Chaldaicum" ; -- [XXQEO] :: Chaldaen, of/concerning Chaldaens; of their soothsayers/astrologers/astronomers; Chaldeus_A = mkA "Chaldeus" "Chaldea" "Chaldeum" ; -- [EXQEW] :: Chaldaen, of/concerning Chaldaens; of their soothsayers/astrologers/astronomers; Chaldeus_M_N = mkN "Chaldeus" ; -- [EXQCW] :: Chaldaen, people of south Assyria; their soothsayers/astrologers/astronomers; --- IGNORED Chanaan_N : N1 Chanaan, undeclined -- F -- [EXQES] :: Canaan/Palestine; --- IGNORED Chanan_N : N1 Chanan, undeclined -- F -- [EXQES] :: Canaan/Palestine; + Chanaan_N = constN "Chanaan" feminine ; -- [EXQES] :: Canaan/Palestine; + Chanan_N = constN "Chanan" feminine ; -- [EXQES] :: Canaan/Palestine; Chananea_F_N = mkN "Chananea" ; -- [EXQEW] :: Canaan, Palestine; Chananeus_A = mkA "Chananeus" "Chananea" "Chananeum" ; -- [EXQEW] :: of/from Canaan/Palestine; Chaos_N_N = mkN "Chaos" "Chai " neuter ; -- [XEXCO] :: Chaos, pit of Hell, underworld; formless/shapeless primordial matter; Charmides_M_N = mkN "Charmides" "Charmidae " masculine ; -- [BDXFS] :: Charmides (comic character in Plautus' play Trinummus); (Son of Joy); Charybdis_F_N = mkN "Charybdis" "Charybdis " feminine ; -- [XXICO] :: Charybdis (whirlpool Sicily/Italy); cruel person; whirlpool; tortuous cavity; Chaus_N_N = mkN "Chaus" ; -- [DEXCS] :: Chaos, pit of Hell, underworld; formless/shapeless primordial matter; --- IGNORED Cherub_N : N1 Cherub, undeclined -- M -- [DEXCS] :: cherub; --- IGNORED Cherubim_N : N1 Cherubim, undeclined -- M -- [DEXCS] :: Cherubim, rank of angels; heavenly choir; cherubs (pl.); --- IGNORED Cherubin_N : N1 Cherubin, undeclined -- M -- [DEXCS] :: Cherubim, rank of angels; heavenly choir; cherubs (pl.); + Cherub_N = constN "Cherub" masculine ; -- [DEXCS] :: cherub; + Cherubim_N = constN "Cherubim" masculine ; -- [DEXCS] :: Cherubim, rank of angels; heavenly choir; cherubs (pl.); + Cherubin_N = constN "Cherubin" masculine ; -- [DEXCS] :: Cherubim, rank of angels; heavenly choir; cherubs (pl.); Chilo_M_N = mkN "Chilo" "Chilonis " masculine ; -- [XXXEO] :: Chilo; Big Lips (Roman cognomen); fellator, one who practices fellatio; Chius_A = mkA "Chius" "Chia" "Chium" ; -- [XXXEO] :: Chian, of Chios; of Chian wine; characteristic/suggestive of Chios, luxurious; Christiadum_N_N = mkN "Christiadum" ; -- [EEXCE] :: Christendom; @@ -274,7 +277,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Christianismus_M_N = mkN "Christianismus" ; -- [DEXCS] :: Christianity; Christianitas_F_N = mkN "Christianitas" "Christianitatis " feminine ; -- [DEXCS] :: Christianity; Christian religion; Christian clergy; Christianizo_V = mkV "Christianizare" ; -- [DEXES] :: profess Christianity; --- SLASHSTUFF Christianus_A : A2 Christianus, Christiana -um, Christianior -or -us, Christianissimus -a -um -- [DEXBS] :: Christian; + Christianus_A = mkA "Christianus" ; -- [DEXBS] :: Christian; Christianus_M_N = mkN "Christianus" ; -- [XEXAS] :: Christian/follower of Christ; Christian clergyman; Christianity (pl.) (Beesom); Christias_M_N = mkN "Christias" "Christiadis " masculine ; -- [FEXEE] :: Christians (pl.), followers of Christ; Christicola_M_N = mkN "Christicola" ; -- [DEXES] :: Christian, worshiper of Christ; (often used in pl.); @@ -299,7 +302,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Clodoveus_M_N = mkN "Clodoveus" ; -- [EXFDE] :: Clovis; Cluniacensis_A = mkA "Cluniacensis" "Cluniacensis" "Cluniacense" ; -- [FEXEE] :: of/pertaining to Cluny; Cluniacum_N_N = mkN "Cluniacum" ; -- [FEXEE] :: Cluny; --- IGNORED Cn_N : N1 Cn., abb. -- M -- [XXXCO] :: Gnaeus (Roman praenomen); (abb. Cn.); + Cn_N = constN "Cn." masculine ; -- [XXXCO] :: Gnaeus (Roman praenomen); (abb. Cn.); Cocles_M_N = mkN "Cocles" "Coclitis " masculine ; -- [XYXCO] :: one-eyed person; Horatius (who kept Etruscans from Subician bridge); Coloniensus_A = mkA "Coloniensus" "Coloniensa" "Coloniensum" ; -- [XXGEE] :: of Cologne; Colossos_M_N = mkN "Colossos" "Colossi " masculine ; -- [XXXCO] :: Colossus of Rhodes (colossal statue in harbor); any large statue (Emperor); @@ -340,7 +343,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Cupido_M_N = mkN "Cupido" "Cupidinis " masculine ; -- [XEXCO] :: Cupid, son of Venus; personification of carnal desire; Curena_F_N = mkN "Curena" ; -- [XXACO] :: Cyrenae (pl.), town in north-west Libia, associated district including Crete; Curene_F_N = mkN "Curene" "Curenes " feminine ; -- [XXACO] :: Cyrenae (pl.), town in north-west Libia, associated district including Crete; --- TODO Cyclops_N : N1 Cyclops, Cyclopos/is -- M -- [XYXCO] :: Cyclops; one of the Cyclopes (one-eyed giants of Sicily); (esp. Polyphemus); + Cyclops_1_N = mkN "Cyclops" "Cyclopis" masculine ; -- [XYXCO] :: Cyclops; one of the Cyclopes (one-eyed giants of Sicily); (esp. Polyphemus); + Cyclops_2_N = mkN "Cyclops" "Cyclopos" masculine ; -- [XYXCO] :: Cyclops; one of the Cyclopes (one-eyed giants of Sicily); (esp. Polyphemus); Cydonea_F_N = mkN "Cydonea" ; -- [XXHEO] :: Cydonia, city in Crete; (now Canea L+S)) Cydonia_F_N = mkN "Cydonia" ; -- [XXHES] :: Cydonia, city in Crete; (now Canea L+S)) Cynosura_F_N = mkN "Cynosura" ; -- [XSXCO] :: Little Dipper/Bear (constellation); mythical person, nurse of Zeus; @@ -357,7 +361,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Cyreneus_A = mkA "Cyreneus" "Cyrenea" "Cyreneum" ; -- [EXXEW] :: Cyrenean (of town in north-west Libia and associated district including Crete); Cyreneus_M_N = mkN "Cyreneus" ; -- [EXXEW] :: Cyrenean, inhabitant of Cyrenae (town in north-west Libia/district w/Crete); Cyrillus_M_N = mkN "Cyrillus" ; -- [FXXEE] :: Cyril; --- IGNORED D_N : N1 D., abb. -- M -- [EEXCW] :: |Dominus, Lord; abb. D; [calendar AD/Anno Domini => in the year of our Lord]; + D_N = constN "D." masculine ; -- [EEXCW] :: |Dominus, Lord; abb. D; [calendar AD/Anno Domini => in the year of our Lord]; Damascenus_A = mkA "Damascenus" "Damascena" "Damascenum" ; -- [XXQES] :: Damascus-, of/from Damascus; (city in Syria); made of damask (fabric); Damascenus_M_N = mkN "Damascenus" ; -- [XXQES] :: inhabitant of Damascus; (city in Syria); [~ pruna => Damascus/damson plums]; Damascos_M_N = mkN "Damascos" "Damasci " masculine ; -- [XXQEO] :: Damascus; (city in Syria); @@ -368,8 +372,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Dataria_F_N = mkN "Dataria" ; -- [FEXFE] :: Dataria Apostolica, office of Roman Curia issuing dispensations/appointments; Datarius_M_N = mkN "Datarius" ; -- [FEXFE] :: Cardinal-President of Dataria Apostolica; (office of Curia for dispensations); David_M_N = mkN "David" "Davidis " masculine ; -- [XEQDE] :: David; --- IGNORED David_N : N1 David, undeclined -- M -- [XEQDE] :: David; --- IGNORED Dec_A : A2 Dec., abb. -- [XXXDX] :: December (month/mensis understood); abb. Dec.; + David_N = constN "David" masculine ; -- [XEQDE] :: David; + Dec_A = constA "Dec" ; -- [XXXDX] :: December (month/mensis understood); abb. Dec.; Decalogus_M_N = mkN "Decalogus" ; -- [DEXES] :: Decalogue; Ten Commandments as body of law; December_A = mkA "December" "Decembris" "Decembre" ; -- [XXXCO] :: December (month/mensis understood); abb. Dec.; of/pertaining to December; December_M_N = mkN "December" "Decembris " masculine ; -- [XXXCO] :: December; (the 10th month of the old calender, 12th/last month after Caesar); @@ -413,10 +417,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Eboracum_N_N = mkN "Eboracum" ; -- [GXBET] :: York; Eburones_M_N = mkN "Eburones" "Eburonis " masculine ; -- [XXXDX] :: Eburones, tribe of north Gaul - Caesar; Ecclesiastes_M_N = mkN "Ecclesiastes" "Ecclesiastis " masculine ; -- [EEXES] :: Ecclesiastes, Book of Bible/OT; The Preacher; --- IGNORED Eccli_N : N1 Eccli., abb. -- M -- [EEXDX] :: Ecclisiasties (abb.), Book of Bible/OT; + Eccli_N = constN "Eccli." masculine ; -- [EEXDX] :: Ecclisiasties (abb.), Book of Bible/OT; Eli_Interj = ss "Eli" ; -- [EEQFE] :: My God; [Eli Eli lama sabacthani => My God, my God why hast thou forsaken me]; Eloi_Interj = ss "Eloi" ; -- [EEQFE] :: My God; (Aramaic); --- IGNORED Emmanuel_N : N1 Emmanuel, undeclined -- M -- [EEQEE] :: Emmanuel, God with us; + Emmanuel_N = constN "Emmanuel" masculine ; -- [EEQEE] :: Emmanuel, God with us; Encaenium_N_N = mkN "Encaenium" ; -- [EEXFS] :: Feast of the Dedication of the Temple (pl.); (Jewish); Encenium_N_N = mkN "Encenium" ; -- [EEXFW] :: Feast of the Dedication of the Temple (pl.); (Jewish); Eosos_F_N = mkN "Eosos" "Eosi " feminine ; -- [XXXDX] :: dawn; Dawn (personified); the_Orient; @@ -433,11 +437,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Epiphania_F_N = mkN "Epiphania" ; -- [EEXEE] :: Epiphany, 12th Night, feast of three Kings/Magi; manifestation; plane surface; Epistolarium_N_N = mkN "Epistolarium" ; -- [EEXEE] :: book of Epistles; Eporedorix_M_N = mkN "Eporedorix" "Eporedorigis " masculine ; -- [XXXDX] :: Eporedorix; (Aedui Gaul); --- IGNORED Esdras_N : N1 Esdras, undeclined -- M -- [EEQEE] :: Esdras; (name sometimes given to Bible book Ezra and author); --- IGNORED Esther_N : N1 Esther, undeclined -- F -- [EEQEE] :: Esther; (book/heroine of Bible, Jewess born Edessa, Queen of Persia); + Esdras_N = constN "Esdras" masculine ; -- [EEQEE] :: Esdras; (name sometimes given to Bible book Ezra and author); + Esther_N = constN "Esther" feminine ; -- [EEQEE] :: Esther; (book/heroine of Bible, Jewess born Edessa, Queen of Persia); Euhios_M_N = mkN "Euhios" "Euhii " masculine ; -- [XXXDX] :: Bacchus, title given to Bacchus; Euhius_M_N = mkN "Euhius" ; -- [XXXDX] :: Bacchus; title given to Bacchus; --- TODO Euminis_N : N1 Euminis, Eumenidos/is -- F -- [XEXEO] :: Fury/Eumenide; (usu. pl.); (euphemistically) the gracious/benevolent ones; + Euminis_1_N = mkN "Euminis" "Eumenidis" feminine ; -- [XEXEO] :: Fury/Eumenide; (usu. pl.); (euphemistically) the gracious/benevolent ones; + Euminis_2_N = mkN "Euminis" "Eumenidos" feminine ; -- [XEXEO] :: Fury/Eumenide; (usu. pl.); (euphemistically) the gracious/benevolent ones; Euphrates_M_N = mkN "Euphrates" "Euphratis " masculine ; -- [XXXEO] :: Euphrates; (river); Europa_F_N = mkN "Europa" ; -- [XXXDX] :: Europe; Eusebius_M_N = mkN "Eusebius" ; -- [DXQFZ] :: Eusebius; (Bishop of Caesarea, 260-341, "Historia Ecclesiatica"); (Pope 310); @@ -446,7 +451,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Exodus_M_N = mkN "Exodus" "Exodus " masculine ; -- [EEXEE] :: Exodus; (book of Bible); Ezechiel_M_N = mkN "Ezechiel" "Ezechielis " masculine ; -- [EEXEE] :: Ezechiel; (Old Testament prophet); (book of Bible); Ezra_M_N = mkN "Ezra" ; -- [EEXEE] :: Ezra; (Old Testament priest); (book of Bible); --- IGNORED FARES_V : V1 FARES, undeclined -- [EEQFW] :: PHARES; (MENE TEKEL PHARES writing on the wall - Vulgate Daniel 5:25); + FARES_V = constV "FARES" ; -- [EEQFW] :: PHARES; (MENE TEKEL PHARES writing on the wall - Vulgate Daniel 5:25); Fabius_A = mkA "Fabius" "Fabia" "Fabium" ; -- [XXXDX] :: Fabius, Roman gens; Q. Fabius Maximus Cunctator, hero of second Punic War; Fabius_M_N = mkN "Fabius" ; -- [XXXDX] :: Fabius; (Roman gens name); Q. Fabius Maximus Cunctator, hero second Punic War; Falcidia_F_N = mkN "Falcidia" ; -- [XLXEO] :: portion (1/4) of estate secured to legal heir by Falcidian law of 40 BC; @@ -456,7 +461,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Faliscus_M_N = mkN "Faliscus" ; -- [XXIDS] :: Falisci (pl.); (Latin people of Etruscan culture); (sometimes called Aequi); Faunus_M_N = mkN "Faunus" ; -- [XXXDX] :: rustic god; deity of forest, herdsman; sometimes identified with Pan; Favonius_M_N = mkN "Favonius" ; -- [XXXDX] :: west wind; --- IGNORED Feb_A : A2 Feb., abb. -- [XXXDX] :: February (month/mensis understood); abb. Feb.; + Feb_A = constA "Feb" ; -- [XXXDX] :: February (month/mensis understood); abb. Feb.; Februarius_A = mkA "Februarius" "Februaria" "Februarium" ; -- [XXXDX] :: February (month/mensis understood); abb. Feb.; Ferale_N_N = mkN "Ferale" "Feralis " neuter ; -- [XXXFX] :: festival of the dead (pl.); Flaccus_M_N = mkN "Flaccus" ; -- [XXIDX] :: Flaccus; (Roman cognomen); [Q. Horatius Flaccus => the poet Horace]; @@ -488,7 +493,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Germanus_M_N = mkN "Germanus" ; -- [XXGDX] :: Germans (pl.); Gigans_M_N = mkN "Gigans" "Gigantis " masculine ; -- [XYXCO] :: giant; Giant; the Giants (pl.); (race defeated by the Olympians); Giganteus_A = mkA "Giganteus" "Gigantea" "Giganteum" ; -- [XYXCO] :: of/connected with the Giants; like that of the Giants; --- TODO Gigas_N : N1 Gigas, Gigantos/is -- M -- [XYXCO] :: giant; Giant; the Giants (pl.); (race defeated by the Olympians); + Gigas_1_N = mkN "Gigas" "Gigantis" masculine ; -- [XYXCO] :: giant; Giant; the Giants (pl.); (race defeated by the Olympians); + Gigas_2_N = mkN "Gigas" "Gigantos" masculine ; -- [XYXCO] :: giant; Giant; the Giants (pl.); (race defeated by the Olympians); Gnaeus_M_N = mkN "Gnaeus" ; -- [XXIDX] :: Gnaeus (Roman praenomen); (abb. Cn.); Gordianus_M_N = mkN "Gordianus" ; -- [XXXCS] :: Gordianus; emperor Gordianus; Gothicus_A = mkA "Gothicus" "Gothica" "Gothicum" ; -- [XXXDS] :: Gothic; of/belonging to the Goths; @@ -502,10 +508,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Graecus_M_N = mkN "Graecus" ; -- [XXHAX] :: Greek; the Greeks (pl.); Gregorianus_A = mkA "Gregorianus" "Gregoriana" "Gregorianum" ; -- [FEXDE] :: Gregorian; Gulielmus_M_N = mkN "Gulielmus" ; -- [FXXEE] :: William; (French based); --- IGNORED HS_N : N1 HS., abb. -- M -- [XXXDX] :: sesterce (abb.), 2 1/2 asses; (IIS/HS = one+one+semi); --- IGNORED Habacuc_N : N1 Habacuc, undeclined -- M -- [XEQFE] :: Habakkuk; (minor prophet); (book of Old Testament); + HS_N = constN "HS." masculine ; -- [XXXDX] :: sesterce (abb.), 2 1/2 asses; (IIS/HS = one+one+semi); + Habacuc_N = constN "Habacuc" masculine ; -- [XEQFE] :: Habakkuk; (minor prophet); (book of Old Testament); Habraeus_A = mkA "Habraeus" "Habraea" "Habraeum" ; -- [XXQCO] :: Hebrew, Jewish; --- IGNORED Haceldama_N : N1 Haceldama, undeclined -- N -- [XEQFE] :: Akeldama; field of blood (Aramaic); potter's field; + Haceldama_N = constN "Haceldama" neuter ; -- [XEQFE] :: Akeldama; field of blood (Aramaic); potter's field; Hadrianus_A = mkA "Hadrianus" "Hadriana" "Hadrianum" ; -- [XXICO] :: Adriatic, of the Adriatic Sea; of the Emperor Hadrian; Hadrianus_M_N = mkN "Hadrianus" ; -- [CLIBO] :: Hadrian (P. Aelius Hadrianus, Emperor, 117-138 AD); Adriatic; Hadrumetinus_A = mkA "Hadrumetinus" "Hadrumetina" "Hadrumetinum" ; -- [XXAES] :: Andrumetine, of/from Andrumetum/Hadrumetum (city of Africa propria/Byzacene); @@ -544,7 +550,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Hierosolyma_F_N = mkN "Hierosolyma" ; -- [XXQDO] :: Jerusalem (Hebrew); Hierosolymum_N_N = mkN "Hierosolymum" ; -- [XXQDO] :: Jerusalem (pl.) (Hebrew); Hierurgia_F_N = mkN "Hierurgia" ; -- [FEXFE] :: Mess, liturgy, sacred rite; --- IGNORED Hierusalem_N : N1 Hierusalem, undeclined -- N -- [AEQDP] :: Jerusalem (Hebrew); + Hierusalem_N = constN "Hierusalem" neuter ; -- [AEQDP] :: Jerusalem (Hebrew); Hilarium_N_N = mkN "Hilarium" ; -- [XXXES] :: Hilarian feast (pl.), Feast of the Hilaria (Joy/Cybele/Great Mother) 25 March; Hilarius_M_N = mkN "Hilarius" ; -- [EXXFZ] :: Hilary; (St./Bishop of Poitiers, ~300-368, "De Trinitate", "De Synodis"); Hinduismus_M_N = mkN "Hinduismus" ; -- [FEXFE] :: Hinduism; @@ -555,22 +561,22 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Hispanus_A = mkA "Hispanus" "Hispana" "Hispanum" ; -- [XXSDO] :: Spanish, of Spain; Homuncionita_M_N = mkN "Homuncionita" ; -- [EEXFE] :: Homuncionite (pl.); (Christian sect considering Jesus as man only); Honorius_M_N = mkN "Honorius" ; -- [ELIDZ] :: Honorius; (Emperor Flavius Honorius 395-423); --- IGNORED Horeb_N : N1 Horeb, undeclined -- N -- [EEQFE] :: Sinai, Horeb; (mountain of Moses and burning bush); + Horeb_N = constN "Horeb" neuter ; -- [EEQFE] :: Sinai, Horeb; (mountain of Moses and burning bush); Hortius_A = mkA "Hortius" "Hortia" "Hortium" ; -- [XXICO] :: Horace/Horatio; Roman gens; (H. Cocles held bridge) (Q. H~ Flaccus, poet); Hortius_M_N = mkN "Hortius" ; -- [XXICO] :: Horace/Horatio; (Roman gens name); (H. Cocles held bridge; Q. H~ Flaccus, poet); Hosanna_Interj = ss "Hosanna" ; -- [DEQEE] :: Hosanna, "God save", a cry of praise (Hebrew); Hosianna_Interj = ss "Hosianna" ; -- [DEQEE] :: Hosanna, "God save", a cry of praise (Hebrew); Hyas_F_N = mkN "Hyas" "Hyadis " feminine ; -- [XXXDX] :: five stars (pl.) in Taurus associated with rainy weather; --- IGNORED Hymen_N : N1 Hymen, undeclined -- M -- [XXHCO] :: Greek wedding chant/refrain; (personified as a god); marriage, wedding, match; + Hymen_N = constN "Hymen" masculine ; -- [XXHCO] :: Greek wedding chant/refrain; (personified as a god); marriage, wedding, match; Hymenaeos_M_N = mkN "Hymenaeos" "Hymenaei " masculine ; -- [XXHCO] :: Greek wedding chant/refrain; (personified as a god); marriage, wedding, match; Hymenaeus_M_N = mkN "Hymenaeus" ; -- [XXHCO] :: Greek wedding chant/refrain; (personified as a god); marriage, wedding, match; Hypostasis_M_N = mkN "Hypostasis" "Hypostasis " masculine ; -- [EEXEP] :: Substance; Person of the Trinity; IIvir_M_N = mkN "IIvir" ; -- [XLIEO] :: |special criminal court; keepers of Sibylline books; colony chief magistrates; --- IGNORED INRI_N : N1 INRI., abb. -- M -- [EEXCE] :: I.N.R.I. (Iesus Nazarenus Rex Iudaeorum); Jesus of Nazareth King of the Jews; + INRI_N = constN "INRI." masculine ; -- [EEXCE] :: I.N.R.I. (Iesus Nazarenus Rex Iudaeorum); Jesus of Nazareth King of the Jews; Iconoclasta_M_N = mkN "Iconoclasta" ; -- [EEHEE] :: Iconoclast; image-breaker; one who opposes veneration of images; Iconomachus_M_N = mkN "Iconomachus" ; -- [EEHEE] :: Iconoclasts (pl.); those who oppose veneration of images; --- IGNORED Id_N : N1 Id., abb. -- M -- [XXXDX] :: Ides (pl.), abb. Id.; 15th of month, March, May, July, Oct., 13th elsewhen; --- IGNORED Idithum_N : N1 Idithum, undeclined -- M -- [EEQFE] :: Idithun (Hebrew); choir leader + Id_N = constN "Id." masculine ; -- [XXXDX] :: Ides (pl.), abb. Id.; 15th of month, March, May, July, Oct., 13th elsewhen; + Idithum_N = constN "Idithum" masculine ; -- [EEQFE] :: Idithun (Hebrew); choir leader Idus_F_N = mkN "Idus" "Idus " feminine ; -- [XXXDX] :: Ides (pl.), abb. Id.; 15th of month, March, May, July, Oct., 13th elsewhen; Ignatius_M_N = mkN "Ignatius" ; -- [FXXEE] :: Ignatius; Ilion_N_N = mkN "Ilion" "Ilii " neuter ; -- [XXXDX] :: Ilium, Troy; @@ -585,10 +591,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Indutiomarus_M_N = mkN "Indutiomarus" ; -- [XXFDX] :: Inductiomarus; (Gaul of Treveri, opponent of Caesar); Io_Interj = ss "Io" ; -- [XXXAO] :: Yo!; Hurrah! (ritual exclamation of strong emotion/joy); Ho!; Look!; Quick!; Ion_F_N = mkN "Ion" "Ionis " feminine ; -- [XEXCS] :: Isis; daughter of Inachus; --- IGNORED Ion_N : N1 Ion, undeclined -- F -- [XEXCS] :: Isis; daughter of Inachus; + Ion_N = constN "Ion" feminine ; -- [XEXCS] :: Isis; daughter of Inachus; Ionicus_A = mkA "Ionicus" "Ionica" "Ionicum" ; -- [XXHCO] :: Ionic/Ionian; (architectural order, dialect/style, meter, lascivious dance); Iris_F_N = mkN "Iris" "Iris " feminine ; -- [XYXCO] :: Iris (messenger of the gods, goddess of the rainbow); rainbow; --- IGNORED Isai_N : N1 Isai., abb. -- M -- [EEXDX] :: Isaiah (abb.), Book of the Bible; + Isai_N = constN "Isai." masculine ; -- [EEXDX] :: Isaiah (abb.), Book of the Bible; Islamicus_A = mkA "Islamicus" "Islamica" "Islamicum" ; -- [GXXEK] :: Islamic; Islamismus_M_N = mkN "Islamismus" ; -- [GXXEK] :: Islam; Israel_M_N = mkN "Israel" "Israelis " masculine ; -- [DEQES] :: Israel/Jacob; Israelites, decedents of Israel; people of God; @@ -602,18 +608,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Italica_F_N = mkN "Italica" ; -- [FGXEK] :: italic print; Italicus_M_N = mkN "Italicus" ; -- [XXIDX] :: Italians (pl.); Italus_M_N = mkN "Italus" ; -- [XXIBX] :: Italian; --- IGNORED Jacob_N : N1 Jacob, undeclined -- M -- [CEXCS] :: Jacob; --- IGNORED Jan_A : A2 Jan., abb. -- [XXXDX] :: January (month/mensis understood); abb. Jan.; + Jacob_N = constN "Jacob" masculine ; -- [CEXCS] :: Jacob; + Jan_A = constA "Jan" ; -- [XXXDX] :: January (month/mensis understood); abb. Jan.; Januarius_A = mkA "Januarius" "Januaria" "Januarium" ; -- [XXXDX] :: January (month/mensis understood); abb. Jan.; Janus_M_N = mkN "Janus" ; -- [XXXDX] :: Janus, Roman god of gates and doorways (with two faces); gate (Ecc); Jemineus_A = mkA "Jemineus" "Jeminea" "Jemineum" ; -- [EEQEW] :: Benjamite, of the tribe of Benjamin; descendant of Benjamin; --- IGNORED Jerusalem_N : N1 Jerusalem, undeclined -- N -- [AEXDX] :: Jerusalem (Hebrew); + Jerusalem_N = constN "Jerusalem" neuter ; -- [AEXDX] :: Jerusalem (Hebrew); Jesuita_M_N = mkN "Jesuita" ; -- [GXXEK] :: Jesuit; Jesuiticus_A = mkA "Jesuiticus" "Jesuitica" "Jesuiticum" ; -- [GXXEK] :: Jesuit-, of the Jesuits; Jesus_M_N = mkN "Jesus" "Jesu " masculine ; -- [XEXAX] :: Jesus; Joannes_M_N = mkN "Joannes" "Joannis " masculine ; -- [EEXDX] :: John; Jovis_M_N = mkN "Jovis" "Jovis " masculine ; -- [XEICO] :: Jupiter; (Roman chief/sky god); (supreme being); heavens/sky (poetic); --- IGNORED Juda_N : N1 Juda, undeclined -- M -- [CEXCS] :: Judah; Jude; Judas; a son of Jacob; tribe of Judah; + Juda_N = constN "Juda" masculine ; -- [CEXCS] :: Judah; Jude; Judas; a son of Jacob; tribe of Judah; Judaea_F_N = mkN "Judaea" ; -- [AXQBS] :: Judea; Israel; Canaan; Palestine; Judaeus_A = mkA "Judaeus" "Judaea" "Judaeum" ; -- [XXQEO] :: of/relating to the Jews, Jewish; of/originating/stationed in Judea (troops); Judaeus_M_N = mkN "Judaeus" ; -- [XXQDS] :: Jew, Jewish person; the Jews (pl.); @@ -622,25 +628,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Judaizo_V = mkV "Judaizare" ; -- [EXQFS] :: live in the Jewish manner; keep the law, keep kosher?; Judas_M_N = mkN "Judas" "Judae " masculine ; -- [XEQDE] :: Judas; Jude;exquisit exquisit Judes_M_N = mkN "Judes" "Judae " masculine ; -- [CEXCS] :: Judah; Jude; Judas; a son of Jacob; tribe of Judah; --- IGNORED Jul_A : A2 Jul., abb. -- [XXXDX] :: July (month/mensis understood); abb. Jul.; renamed from Quintilis in 44 BC; + Jul_A = constA "Jul" ; -- [XXXDX] :: July (month/mensis understood); abb. Jul.; renamed from Quintilis in 44 BC; Julianus_M_N = mkN "Julianus" ; -- [ELXET] :: Julian; (Flavius Claudius Julianus emperor 361-363 AD); Julius_A = mkA "Julius" "Julia" "Julium" ; -- [XXXCO] :: July (month/mensis understood); abb. Jul.; renamed from Quintilis in 44 BC; Julius_M_N = mkN "Julius" ; -- [XXXBO] :: Julius; (Roman gens name); (C. ~ Caesar 102-44 BC); --- IGNORED Jun_A : A2 Jun., abb. -- [XXXDX] :: June (month/mensis understood); abb. Jun.; + Jun_A = constA "Jun" ; -- [XXXDX] :: June (month/mensis understood); abb. Jun.; Junius_A = mkA "Junius" "Junia" "Junium" ; -- [XXXDX] :: June (month/mensis understood); abb. Jun.; Juno_F_N = mkN "Juno" "Junonis " feminine ; -- [AEIBX] :: Juno; (Roman goddess, wife of Jupiter); Jupiter_M_N = mkN "Jupiter" "Jovis " masculine ; -- [XEIEO] :: Jupiter; (Roman chief/sky god); (supreme being); heavens/sky (poetic); Juppiter_M_N = mkN "Juppiter" "Jovis " masculine ; -- [XEIAO] :: Jupiter; (Roman chief/sky god); (supreme being); heavens/sky (poetic); Justinianus_M_N = mkN "Justinianus" ; -- [ELIDZ] :: Justinian; (Emperor Justinian 527-565); --- IGNORED K_N : N1 K., abb. -- M -- [XXXDX] :: Kaeso/Caeso (Roman praenomen); (abb. K.); + K_N = constN "K." masculine ; -- [XXXDX] :: Kaeso/Caeso (Roman praenomen); (abb. K.); Kaeso_M_N = mkN "Kaeso" "Kaesonis " masculine ; -- [XXXDX] :: Kaeso/Caeso (Roman praenomen); (abb. K.); --- IGNORED Kal_N : N1 Kal., abb. -- M -- [XXXDX] :: Kalends (pl.), 1st of month; abb. Kal./Kl.; day of proclamation, interest due; + Kal_N = constN "Kal." masculine ; -- [XXXDX] :: Kalends (pl.), 1st of month; abb. Kal./Kl.; day of proclamation, interest due; Kalenda_F_N = mkN "Kalenda" ; -- [XXXBO] :: Kalends (pl.), 1st of month; abb. Kal./Kl.; day of proclamation, interest due; Karthago_F_N = mkN "Karthago" "Karthaginis " feminine ; -- [XXACO] :: Carthage; --- IGNORED Kl_N : N1 Kl., abb. -- M -- [XXXDX] :: Kalends (pl.), 1st of month; abb. Kal./Kl.; day of proclamation, interest due; --- IGNORED Kyrie_N : N1 Kyrie, undeclined -- M -- [EEXDX] :: Oh Lord (Greek vocative); --- IGNORED LS_N : N1 LS., abb. -- M -- [FXXFE] :: place for seal or signature; (locus sigilli); --- IGNORED L_N : N1 L., abb. -- M -- [XXXDX] :: Lucius (Roman praenomen); (abb. L.); + Kl_N = constN "Kl." masculine ; -- [XXXDX] :: Kalends (pl.), 1st of month; abb. Kal./Kl.; day of proclamation, interest due; + Kyrie_N = constN "Kyrie" masculine ; -- [EEXDX] :: Oh Lord (Greek vocative); + LS_N = constN "LS." masculine ; -- [FXXFE] :: place for seal or signature; (locus sigilli); + L_N = constN "L." masculine ; -- [XXXDX] :: Lucius (Roman praenomen); (abb. L.); Labeo_M_N = mkN "Labeo" "Labeonis " masculine ; -- [XXIDO] :: Labeo; (Roman cognomen); one who has large/blubber lips (L+S); Lactantius_M_N = mkN "Lactantius" ; -- [DXXFZ] :: Lactantius; (Christian apologist, ~250-~325, "Divinarum Institutionum"); Lar_M_N = mkN "Lar" "Laris " masculine ; -- [XEIBO] :: Lares; (usu. pl.); tutelary god/gods of home/hearth/crossroads; home/dwelling; @@ -649,14 +655,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Latinitas_F_N = mkN "Latinitas" "Latinitatis " feminine ; -- [XXXDS] :: good Latin; L:Latin rights; Latinus_A = mkA "Latinus" "Latina" "Latinum" ; -- [XXXBO] :: Latin; of Latium; of/in (good/correct/plain) Latin (language); Roman/Italian; Latius_A = mkA "Latius" "Latia" "Latium" ; -- [XXICO] :: Latin; of Latium (central Italy including Rome/Italy); Roman; Italian; --- IGNORED Lavabo_N : N1 Lavabo, undeclined -- N -- [FEXFE] :: Lavabo, ceremonial hand washing in liturgy; + Lavabo_N = constN "Lavabo" neuter ; -- [FEXFE] :: Lavabo, ceremonial hand washing in liturgy; Lebnitica_F_N = mkN "Lebnitica" ; -- [EXQFW] :: family of Libini; (son of Gerson, grandson of Levi); Lectionarium_N_N = mkN "Lectionarium" ; -- [FEXFE] :: book of lessons for the Divine Office; Lemannus_M_N = mkN "Lemannus" ; -- [XXXDX] :: Lake Geneva - in Caesar's "Gallic War"; Leo_M_N = mkN "Leo" "Leonis " masculine ; -- [XEXES] :: Leo (name of several Popes); priests (pl.) of Persian god Mithras; Leodium_N_N = mkN "Leodium" ; -- [GXFET] :: Liege; --- TODO Lesbias_N : N1 Lesbias, Lesbiados/is -- F -- [XXHEO] :: Lesbian woman, woman from the island of Lesbos; precious stone from Lesbos; --- TODO Lesbis_N : N1 Lesbis, Lesbidos/is -- F -- [XXHEO] :: Lesbian woman, woman from the island of Lesbos; + Lesbias_1_N = mkN "Lesbias" "Lesbiadis" feminine ; -- [XXHEO] :: Lesbian woman, woman from the island of Lesbos; precious stone from Lesbos; + Lesbias_2_N = mkN "Lesbias" "Lesbiados" feminine ; -- [XXHEO] :: Lesbian woman, woman from the island of Lesbos; precious stone from Lesbos; + Lesbis_1_N = mkN "Lesbis" "Lesbidis" feminine ; -- [XXHEO] :: Lesbian woman, woman from the island of Lesbos; + Lesbis_2_N = mkN "Lesbis" "Lesbidos" feminine ; -- [XXHEO] :: Lesbian woman, woman from the island of Lesbos; Lesbium_N_N = mkN "Lesbium" ; -- [XXHEO] :: Lesbian wine, wine from the island of Lesbos; vessel in embossed style; Lesbius_A = mkA "Lesbius" "Lesbia" "Lesbium" ; -- [XXHDO] :: Lesbian, of Lesbos (Aegean island); type of sculptured decoration; Lesbos_F_N = mkN "Lesbos" "Lesbi " feminine ; -- [XPHEO] :: Lesbos; (island in North Aegean, famous for lyric poetry of Sappho and wine); @@ -691,23 +699,27 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Lutheranus_A = mkA "Lutheranus" "Lutherana" "Lutheranum" ; -- [GXXEK] :: Lutheran; Lycaonia_F_N = mkN "Lycaonia" ; -- [XXQEO] :: Lycaonia (district in southern Asia Minor between Galatia and Cilicia); Lycaonius_A = mkA "Lycaonius" "Lycaonia" "Lycaonium" ; -- [XXQFO] :: Lycaonian, inhabitant of Lycaonia (district in southern Asia Minor); --- IGNORED MANE_V : V1 MANE, undeclined -- [EEQFW] :: MENE; (MENE TEKEL PHARES writing on the wall - Vulgate Daniel 5:25); --- IGNORED M_N : N1 M., abb. -- M -- [XXXCO] :: Marcus (Roman praenomen); (abb. M.); (also) maximus, mille, milia, municipium; + MANE_V = constV "MANE" ; -- [EEQFW] :: MENE; (MENE TEKEL PHARES writing on the wall - Vulgate Daniel 5:25); + M_N = constN "M." masculine ; -- [XXXCO] :: Marcus (Roman praenomen); (abb. M.); (also) maximus, mille, milia, municipium; Macedo_M_N = mkN "Macedo" "Macedonis " masculine ; -- [XXHCO] :: Macedonian, one from Macedonia; Macedonia, the territory; men Macedonian armed; Macedonia_F_N = mkN "Macedonia" ; -- [XXHCO] :: Macedonia; Macedonicus_A = mkA "Macedonicus" "Macedonica" "Macedonicum" ; -- [XXHCO] :: Macedonian, of/from/belonging to Macedonia; Macedonienis_A = mkA "Macedonienis" "Macedonienis" "Macedoniene" ; -- [XXHFO] :: Macedonian, of/from/belonging to Macedonia; Macedonius_A = mkA "Macedonius" "Macedonia" "Macedonium" ; -- [XXHEO] :: Macedonian, of/from/belonging to Macedonia; + Madianitis_1_F_N = mkN "Madianitis" "Madianitis" feminine ; -- [EXQFW] :: Madianite/Midianite, person from Madian/Midian; + Madianitis_1_M_N = mkN "Madianitis" "Madianitis" masculine ; -- [EXQFW] :: Madianite/Midianite, person from Madian/Midian; + Madianitis_2_F_N = mkN "Madianitis" "Madianitis" feminine ; -- [EXQFW] :: Madianite/Midianite, person from Madian/Midian; + Madianitis_2_M_N = mkN "Madianitis" "Madianitos" masculine ; -- [EXQFW] :: Madianite/Midianite, person from Madian/Midian; Madianitis_A = mkA "Madianitis" "Madianitidis"; -- [EXQFW] :: Madianite/Midianite, of/from Madian/Midian; Madianitish; --- TODO Madianitis_N : N1 Madianitis, Madianitos/is -- C -- [EXQFW] :: Madianite/Midianite, person from Madian/Midian; + Maenas_1_N = mkN "Maenas" "Maenadis" feminine ; -- [XXXDX] :: Bacchante, female votary of Bacchus; inspired/frenzied woman; + Maenas_2_N = mkN "Maenas" "Maenados" feminine ; -- [XXXDX] :: Bacchante, female votary of Bacchus; inspired/frenzied woman; Maenas_F_N = mkN "Maenas" "Maenadis " feminine ; -- [XXXDX] :: Bacchante, female votary of Bacchus; inspired/frenzied woman; --- TODO Maenas_N : N1 Maenas, Maenados/is -- F -- [XXXDX] :: Bacchante, female votary of Bacchus; inspired/frenzied woman; Magdalena_F_N = mkN "Magdalena" ; -- [EEXDX] :: Magdalen; Mahometanus_M_N = mkN "Mahometanus" ; -- [GXXEK] :: Moslem; --- IGNORED Mai_A : A2 Mai., abb. -- [XXXDX] :: May (month/mensis understood); abb. Mai.; + Mai_A = constA "Mai" ; -- [XXXDX] :: May (month/mensis understood); abb. Mai.; Maius_A = mkA "Maius" "Maia" "Maium" ; -- [XXXDX] :: May (month/mensis understood); abb. Mai.; Majuma_F_N = mkN "Majuma" ; -- [ELXFS] :: Majuma festival; mock sea fight on Tiber in May; --- IGNORED Mam_N : N1 Mam., abb. -- M -- [XXXDX] :: Mamereus (Roman praenomen); (abb. Mam.); + Mam_N = constN "Mam." masculine ; -- [XXXDX] :: Mamereus (Roman praenomen); (abb. Mam.); Mamereus_M_N = mkN "Mamereus" ; -- [XXIDX] :: Mamereus (Roman praenomen); (abb. Mam.); Manasses_M_N = mkN "Manasses" "Manassae " masculine ; -- [EEQEW] :: Manasses; (son of Joseph in Vulgate Genesis); Manius_M_N = mkN "Manius" ; -- [XXXDX] :: Manius (Roman praenomen); (abb. M'.); one who has fallen on hard times; @@ -718,7 +730,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Marius_M_N = mkN "Marius" ; -- [XXXDX] :: Marius; (Roman gens name); (C. Marius, consul around 100 BC); Maro_M_N = mkN "Maro" "Maronis " masculine ; -- [XPICO] :: Maro; (Virgil's cognomen); mythical character; for outstanding poets (pl.); Mars_M_N = mkN "Mars" "Martis " masculine ; -- [XEIAX] :: Mars, Roman god of war; warlike spirit, fighting, battle, army, force of arms; --- IGNORED Mart_A : A2 Mart., abb. -- [XXXDX] :: March (month/mensis understood); abb. Mart.; + Mart_A = constA "Mart" ; -- [XXXDX] :: March (month/mensis understood); abb. Mart.; Martialis_A = mkA "Martialis" "Martialis" "Martiale" ; -- [XXXDX] :: of or belonging to Mars; Martius_A = mkA "Martius" "Martia" "Martium" ; -- [XXXBX] :: March (month/mensis understood); abb. Mart.; of/belonging to Mars; Marxianus_A = mkA "Marxianus" "Marxiana" "Marxianum" ; -- [GXXEK] :: Marxist; @@ -742,8 +754,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Mithridates_M_N = mkN "Mithridates" "Mithridatis " masculine ; -- [XXQDO] :: Mithridates; (various kings of Pontus, esp. the Great beaten by Sulla/Pompey); Mitridates_M_N = mkN "Mitridates" "Mitridatis " masculine ; -- [XXQDO] :: Mithridates; (various kings of Pontus, esp. the Great beaten by Sulla/Pompey); Moabites_M_N = mkN "Moabites" "Moabitae " masculine ; -- [EXQES] :: Moabite, inhabitant of Moab (land north of the Dead Sea); + Moabitis_1_N = mkN "Moabitis" "Moabitidis" feminine ; -- [EXQES] :: Moabite woman, inhabitant of Moab (land north of the Dead Sea); + Moabitis_2_N = mkN "Moabitis" "Moabitidos" feminine ; -- [EXQES] :: Moabite woman, inhabitant of Moab (land north of the Dead Sea); Moabitis_A = mkA "Moabitis" "Moabitidis"; -- [EXQES] :: Moabite, of Moab (land north of the Dead Sea); --- TODO Moabitis_N : N1 Moabitis, Moabitidos/is -- F -- [EXQES] :: Moabite woman, inhabitant of Moab (land north of the Dead Sea); Montepessulanus_M_N = mkN "Montepessulanus" ; -- [CXFFZ] :: Montpellier (in southern France); Morbonia_F_N = mkN "Morbonia" ; -- [XXXEX] :: Plagueville; [~ abeas => go to hell!]; Mosa_F_N = mkN "Mosa" ; -- [XXNEO] :: river Maas/Meuse, in Holland/France/Belgium; @@ -752,14 +765,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Mulciber_M_N = mkN "Mulciber" "Mulciberis " masculine ; -- [XEXDO] :: surname of Vulcan; P:fire; Muslimus_M_N = mkN "Muslimus" ; -- [FEXEE] :: Moslem; Musulmanus_A = mkA "Musulmanus" "Musulmana" "Musulmanum" ; -- [FEXEE] :: Muslim; --- IGNORED N_N : N1 N., abb. -- M -- [XXXDX] :: Numerius (Roman praenomen); (abb. N./Num.); --- TODO Naias_N : N1 Naias, Naiados/is -- F -- [XXXDX] :: Naiad; water nymph; nymph; --- TODO Nais_N : N1 Nais, Naidos/is -- F -- [XXXDX] :: Naiad; water nymph; nymph; + N_N = constN "N." masculine ; -- [XXXDX] :: Numerius (Roman praenomen); (abb. N./Num.); + Naias_1_N = mkN "Naias" "Naiadis" feminine ; -- [XXXDX] :: Naiad; water nymph; nymph; + Naias_2_N = mkN "Naias" "Naiados" feminine ; -- [XXXDX] :: Naiad; water nymph; nymph; + Nais_1_N = mkN "Nais" "Naidis" feminine ; -- [XXXDX] :: Naiad; water nymph; nymph; + Nais_2_N = mkN "Nais" "Naidos" feminine ; -- [XXXDX] :: Naiad; water nymph; nymph; Nazara_F_N = mkN "Nazara" ; -- [DEQES] :: Nazareth; city in Palestine; (home of the parents of Jesus); Nazaraeus_M_N = mkN "Nazaraeus" ; -- [DEXES] :: Nazarite; man set apart to the service of God; Nazarenus_A = mkA "Nazarenus" "Nazarena" "Nazarenum" ; -- [EEXES] :: Nazarene, of/from/belonging to Nazareth; "Christian"; Nazarenus_M_N = mkN "Nazarenus" ; -- [DEXDS] :: Christ, the Nazarene; --- IGNORED Nazareth_N : N1 Nazareth, undeclined -- N -- [DEXES] :: Nazareth; city in Palestine; (home of the parents of Jesus); + Nazareth_N = constN "Nazareth" neuter ; -- [DEXES] :: Nazareth; city in Palestine; (home of the parents of Jesus); Nazareus_A = mkA "Nazareus" "Nazarea" "Nazareum" ; -- [EEXES] :: Nazarene, of/from/belonging to Nazareth; "Christian"; Nazarus_A = mkA "Nazarus" "Nazara" "Nazarum" ; -- [EEXCS] :: Nazarene, of/from/belonging to Nazareth; "Christian"; Nehalannia_F_N = mkN "Nehalannia" ; -- [EENFZ] :: German goddess, worshiped by traders who sailed across the North Sea; @@ -777,18 +792,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Niniviticus_A = mkA "Niniviticus" "Ninivitica" "Niniviticum" ; -- [EXQFS] :: Ninivite, of/from Nineveh; (ancient capital of Assyria); Ninivitus_A = mkA "Ninivitus" "Ninivita" "Ninivitum" ; -- [EXQES] :: Ninivite, of/from Nineveh; (ancient capital of Assyria); Nivomagus_F_N = mkN "Nivomagus" ; -- [DXNFS] :: city of the Treveri, now Nijmegen, city in Holland; --- IGNORED Non_N : N1 Non., abb. -- M -- [XXXDX] :: Nones (pl.), abb. Non.; 7th of month, March, May, July, Oct., 5th elsewhen; + Non_N = constN "Non." masculine ; -- [XXXDX] :: Nones (pl.), abb. Non.; 7th of month, March, May, July, Oct., 5th elsewhen; Nona_F_N = mkN "Nona" ; -- [XXXDX] :: Nones (pl.), abb. Non.; 7th of month, March, May, July, Oct., 5th elsewhen; --- IGNORED Nov_A : A2 Nov., abb. -- [XXXDX] :: November (month/mensis understood); abb. Nov.; + Nov_A = constA "Nov" ; -- [XXXDX] :: November (month/mensis understood); abb. Nov.; November_A = mkA "November" "Novembris" "Novembre" ; -- [XXXCO] :: November (month/mensis understood); abb. Nov.; of/pertaining to November; November_M_N = mkN "November" "Novembris " masculine ; -- [XXXEO] :: November; (9th month before Caesar, 11th after); abb. Nov.; Noviomagus_F_N = mkN "Noviomagus" ; -- [DXNFS] :: city of the Treveri, now Nijmegen, city in Holland; Novomagus_F_N = mkN "Novomagus" ; -- [DXNFS] :: city of the Treveri, now Nijmegen, city in Holland; --- IGNORED Num_N : N1 Num., abb. -- M -- [XXXDX] :: Numerius (Roman praenomen); (abb. N./Num.); + Num_N = constN "Num." masculine ; -- [XXXDX] :: Numerius (Roman praenomen); (abb. N./Num.); Numerius_M_N = mkN "Numerius" ; -- [XXXDX] :: Numerius (Roman praenomen); (abb. N./Num.); Oceanus_M_N = mkN "Oceanus" ; -- [XXXBX] :: Ocean; Ocelum_N_N = mkN "Ocelum" ; -- [XXXDX] :: Ocelum, city in Cisalpine Gaul (N. Italy); --- IGNORED Oct_A : A2 Oct., abb. -- [XXXDX] :: October (month/mensis understood); abb. Oct.; + Oct_A = constA "Oct" ; -- [XXXDX] :: October (month/mensis understood); abb. Oct.; Octavius_M_N = mkN "Octavius" ; -- [XXXDS] :: Octavius; name of Roman gens; October_A = mkA "October" "Octobris" "Octobre" ; -- [XXXCO] :: October (month/mensis understood); abb. Oct.; of/pertaining to October; October_M_N = mkN "October" "Octobris " masculine ; -- [XXXCO] :: October; (8th month before Caesar, 10 th after); abb. Oct.; @@ -804,13 +819,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Oscus_A = mkA "Oscus" "Osca" "Oscum" ; -- [BXXDS] :: Oscan; of the ancients of Campania; Otho_M_N = mkN "Otho" "Othonis " masculine ; -- [CLIEO] :: Otho; (Roman cognomen); [Silvius ~ => Emperor, 69 AD, year of the 4 Emperors]; Oxonia_F_N = mkN "Oxonia" ; -- [GXBET] :: Oxford; --- IGNORED P_N : N1 P., abb. -- M -- [XXXDX] :: Publius (Roman praenomen); (abb. P.); + P_N = constN "P." masculine ; -- [XXXDX] :: Publius (Roman praenomen); (abb. P.); Padus_M_N = mkN "Padus" ; -- [XXXDS] :: Po river; Palatinus_A = mkA "Palatinus" "Palatina" "Palatinum" ; -- [XXXDS] :: Palatine; imperial; name of one of the hills of Rome, the Palatine; Palatium_N_N = mkN "Palatium" ; -- [XXIBX] :: Palatine Hill; Palile_N_N = mkN "Palile" "Palilis " neuter ; -- [XXXEO] :: Feast (pl.) of Pales (tutelary deity of sheep and herds) on 21 April; Palmyra_F_N = mkN "Palmyra" ; -- [AXQFO] :: Palmyra, city in Syria; --- TODO Pan_N : N1 Pan, Panos/is -- M -- [XEXDS] :: Pan; Greek god of shepherds; + Pan_1_N = mkN "Pan" "Panis" masculine ; -- [XEXDS] :: Pan; Greek god of shepherds; + Pan_2_N = mkN "Pan" "Panos" masculine ; -- [XEXDS] :: Pan; Greek god of shepherds; Pantheon_N_N = mkN "Pantheon" "Panthei " neuter ; -- [CEIEO] :: Pantheon, temple to all gods; (esp. rotunda temple by Agrippa in Rome); Pantheum_N_N = mkN "Pantheum" ; -- [CEIEO] :: Pantheon, temple to all gods; (esp. rotunda temple by Agrippa in Rome); Panthus_M_N = mkN "Panthus" "Panthi " masculine ; -- [XXXCG] :: Panthus, a priest of Apollo at Troy; used as a pseudonym; @@ -838,7 +854,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Phaedon_M_N = mkN "Phaedon" "Phaedonis " masculine ; -- [XSHEO] :: Phaedo (disciple of Socrates, friend of Plato, founder of school at Elis); Phaedrus_M_N = mkN "Phaedrus" ; -- [XSHDO] :: Phaedo (pupil of Socrates); Phaedrus (Latin fabulist); (Cicero's teacher); Pharao_M_N = mkN "Pharao" "Pharaonis " masculine ; -- [EEXDX] :: Pharaoh, title of King of Egypt; --- IGNORED Phase_N : N1 Phase, undeclined -- N -- [DEQDS] :: Passover; Jewish feast; paschal lamb/sacrifice at the Passover; + Phase_N = constN "Phase" neuter ; -- [DEQDS] :: Passover; Jewish feast; paschal lamb/sacrifice at the Passover; Philippus_M_N = mkN "Philippus" ; -- [XXHCO] :: Philippi (pl.); (town in eastern Macedonia where Octavius defeated Brutus); Phoebe_F_N = mkN "Phoebe" "Phoebes " feminine ; -- [XEXDS] :: Diana; moon goddess; Phoenica_F_N = mkN "Phoenica" ; -- [XLQEO] :: Phoenicia; (coastal region of Syria); @@ -850,8 +866,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Pilatus_M_N = mkN "Pilatus" ; -- [EEXDX] :: Pilatus; (Roman cognomen); [Pontius ~ (Pilate) => prefect Judea, 26-36 AD]; Piso_M_N = mkN "Piso" "Pisonis " masculine ; -- [XXXDX] :: Piso; (Roman cognomen); [L. Calpurnius ~/M. Pupius ~ => consul 58/61 BC]; Plancus_M_N = mkN "Plancus" ; -- [XXXCS] :: Plancus (proper name); + Plato_1_N = mkN "Plato" "Platonis" masculine ; -- [XSHCO] :: Plato; (Greek philosopher 429-347 BC, disciple of Socrates); + Plato_2_N = mkN "Plato" "Platonos" masculine ; -- [XSHCO] :: Plato; (Greek philosopher 429-347 BC, disciple of Socrates); Plato_M_N = mkN "Plato" "Platonis " masculine ; -- [XSHDS] :: Plato; Greek philosopher; --- TODO Plato_N : N1 Plato, Platonos/is -- M -- [XSHCO] :: Plato; (Greek philosopher 429-347 BC, disciple of Socrates); Platonicus_A = mkA "Platonicus" "Platonica" "Platonicum" ; -- [XXXCZ] :: Platonic; Plinius_A = mkA "Plinius" "Plinia" "Plinium" ; -- [XXXDO] :: Plinius; (Roman gens); (C. Plinius Secundus/Pliny, author of Natural History); Plinius_M_N = mkN "Plinius" ; -- [CLIBO] :: Pliny; (Roman gens name); (C. Plinius Secundus, author of Natural History); @@ -879,12 +896,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Pythagoricus_A = mkA "Pythagoricus" "Pythagorica" "Pythagoricum" ; -- [FSXFM] :: Pythagorean; of follower of Pythagoras or his philosophy; Pythagoricus_M_N = mkN "Pythagoricus" ; -- [FSXFM] :: Pythagorean, follower of Pythagoras or his philosophy; Python_M_N = mkN "Python" "Pythonis " masculine ; -- [XEXDS] :: familiar spirit/demon possessing soothsayer; soothsayer; snake slain at Delphi; --- IGNORED Q_N : N1 Q., abb. -- M -- [XXXDX] :: Quintus (Roman praenomen); (abb. Q.); + Q_N = constN "Q." masculine ; -- [XXXDX] :: Quintus (Roman praenomen); (abb. Q.); Quinctilis_A = mkA "Quinctilis" "Quinctilis" "Quinctile" ; -- [XXXDX] :: July (month/mensis); abb. Quin.?; renamed Julius in 44 BC; in 5th place; Quinctius_A = mkA "Quinctius" "Quinctia" "Quinctium" ; -- [XXXCS] :: Quinctian; of Quinctius gens; Quinquatrus_F_N = mkN "Quinquatrus" "Quinquatrus " feminine ; -- [XEXFS] :: Minerva festival; Quinquegentianus_N_N = mkN "Quinquegentianus" ; -- [DXAFT] :: Five_Nations; (league of desert people against Romans - 3rd century Mauretania); --- IGNORED Quint_A : A2 Quint., abb. -- [XXXDX] :: July (month/mensis understood); abb. Quint.??; renamed to Julius in 44 BC; + Quint_A = constA "Quint" ; -- [XXXDX] :: July (month/mensis understood); abb. Quint.??; renamed to Julius in 44 BC; Quintilis_A = mkA "Quintilis" "Quintilis" "Quintile" ; -- [XXXDX] :: July (month/mensis); abb. Quin.??; renamed Julius in 44 BC; in 5th place; Quintilius_A = mkA "Quintilius" "Quintilia" "Quintilium" ; -- [XXXCO] :: Quintilius; (Roman gens name); (P. ~ Varus general annihilated in 9 AD); Quintilius_M_N = mkN "Quintilius" ; -- [XXXCO] :: Quintilius; (Roman gens name); (P. ~ Varus general annihilated in 9 AD); @@ -892,7 +909,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Quirinale_N_N = mkN "Quirinale" "Quirinalis " neuter ; -- [XXXDX] :: festival (pl.) in honor of Quirinus/Romulus, celebrated 17th of February; Quiris_M_N = mkN "Quiris" "Quiritis " masculine ; -- [XXXDX] :: inhabitants (pl.) of the Sabine town Cures; Romans in their civil capacity; Quirites_M_N = mkN "Quirites" ; -- [XXXCX] :: citizens (pl.) of Rome collectively in their peacetime functions; --- IGNORED R_A : A2 R., abb. -- [XXXEO] :: Roman (abb.); (E.Q.R. = Eques Romanus); Rufus; + R_A = constA "R" ; -- [XXXEO] :: Roman (abb.); (E.Q.R. = Eques Romanus); Rufus; Ravenna_F_N = mkN "Ravenna" ; -- [XXIDO] :: Ravenna; (port/naval base in NE Italy); (late capital of Western Empire); Regulus_M_N = mkN "Regulus" ; -- [XXXCZ] :: Regulus; (Roman consul captured by Carthaginians); Rhenus_M_N = mkN "Rhenus" ; -- [XXGDX] :: Rhine; (river dividing Gaul and Germany - in Caesar's Gallic War); @@ -906,13 +923,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Rufus_M_N = mkN "Rufus" ; -- [XXXDO] :: Rufus; (Roman cognomen); Rutilius_A = mkA "Rutilius" "Rutilia" "Rutilium" ; -- [XXICO] :: Rutilius; (Roman gens name); (P. ~ Rufus -> exiled historian); Rutilius_M_N = mkN "Rutilius" ; -- [XXICO] :: Rutilius; (Roman gens name); (P. ~ Rufus -> exiled historian); --- IGNORED SELAH_V : V1 SELAH, undeclined -- [DEQEW] :: selah, musical pause (Psalms); sing loud; change pitch; (full meaning unknown); + SELAH_V = constV "SELAH" ; -- [DEQEW] :: selah, musical pause (Psalms); sing loud; change pitch; (full meaning unknown); SIDa_F_N = mkN "SIDa" ; -- [GXXEK] :: AIDS, SIDA; --- IGNORED SPQR_N : N1 SPQR., abb. -- M -- [XLIDX] :: Senate and People of Rome; (Senatus PopulusQue Romanus,logo of Rome, like USA); --- IGNORED SS_A : A2 SS., abb. -- [EXXEP] :: suprascriptus; entitled; inscribed; (sometimes abb. SS.); --- IGNORED SS_N : N1 SS., abb. -- F -- [EEXEW] :: sacred scripture (early Church writings except Bible), Sacrae Scripturae (pl.); --- IGNORED Sabaoth_N : N1 Sabaoth, undeclined -- N -- [EEQEE] :: hosts (pl.); armies; (Hebrew); [Deus Sabaoth => God of Hosts]; --- IGNORED Sabbaoth_N : N1 Sabbaoth, undeclined -- N -- [EEQEE] :: hosts (pl.); armies; (Hebrew); [Deus Sabaoth => God of Hosts]; + SPQR_N = constN "SPQR." masculine ; -- [XLIDX] :: Senate and People of Rome; (Senatus PopulusQue Romanus,logo of Rome, like USA); + SS_A = constA "SS" ; -- [EXXEP] :: suprascriptus; entitled; inscribed; (sometimes abb. SS.); + SS_N = constN "SS." feminine ; -- [EEXEW] :: sacred scripture (early Church writings except Bible), Sacrae Scripturae (pl.); + Sabaoth_N = constN "Sabaoth" neuter ; -- [EEQEE] :: hosts (pl.); armies; (Hebrew); [Deus Sabaoth => God of Hosts]; + Sabbaoth_N = constN "Sabbaoth" neuter ; -- [EEQEE] :: hosts (pl.); armies; (Hebrew); [Deus Sabaoth => God of Hosts]; Sabine_Adv = mkAdv "Sabine" ; -- [XXIDX] :: Sabine, in Sabine language; Sabinus_A = mkA "Sabinus" "Sabina" "Sabinum" ; -- [XXXDX] :: Sabine, of the Sabines/their country/that area; the shrub savin/its oil; Sabinus_M_N = mkN "Sabinus" ; -- [XXIDX] :: Sabines (pl.), people living NE of Rome; their territory; an estate there; @@ -929,13 +946,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Sardus_C_N = mkN "Sardus" ; -- [XXIDS] :: Sardinian (person); Sarmata_M_N = mkN "Sarmata" ; -- [XXXDS] :: Sarmatian; people from south Russia/Iran; Sarmaticus_A = mkA "Sarmaticus" "Sarmatica" "Sarmaticum" ; -- [XXXDS] :: Sarmatian; of the Sarmatian people; --- IGNORED Satan_N : N1 Satan, undeclined -- M -- [EEXDS] :: Satan, the Devil; adversary (Def); + Satan_N = constN "Satan" masculine ; -- [EEXDS] :: Satan, the Devil; adversary (Def); Satanas_M_N = mkN "Satanas" "Satanae " masculine ; -- [EEXDS] :: Satan, the Devil; adversary (Def); Saturnali_N_N = mkN "Saturnali" "Saturnaliis " neuter ; -- [XEXDS] :: Saturnalia; festival of Saturnalia (December); Saturnalium_N_N = mkN "Saturnalium" ; -- [XEXDS] :: Saturnalia; festival of Saturnalia (December); Saturninus_M_N = mkN "Saturninus" ; -- [XXXCZ] :: Saturninus; (revolutionary tribune); Saul_M_N = mkN "Saul" "Saulis " masculine ; -- [XEQEE] :: Saul; King of Israel); (original name of St Paul); --- IGNORED Saul_N : N1 Saul, undeclined -- M -- [XEQEE] :: Saul; King of Israel); (original name of St Paul); + Saul_N = constN "Saul" masculine ; -- [XEQEE] :: Saul; King of Israel); (original name of St Paul); Saulus_M_N = mkN "Saulus" ; -- [XEQEE] :: Saul; King of Israel); (original name of St Paul); Scipio_M_N = mkN "Scipio" "Scipionis " masculine ; -- [XXICO] :: Scipio; (P. Cornelia ~ beat Hannibal, his grandson destroyed Carthage); Scotia_F_N = mkN "Scotia" ; -- [EXBCE] :: Scotland; @@ -950,7 +967,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Senatusconsultus_M_N = mkN "Senatusconsultus" "Senatusconsultus " masculine ; -- [DLXFS] :: decree of the Senate; Seneca_M_N = mkN "Seneca" ; -- [XDXCS] :: Seneca; playwright; philosopher; Senones_M_N = mkN "Senones" "Senonis " masculine ; -- [XXXDX] :: Senones; tribe of central Gaul (Seine valley); --- IGNORED Sept_A : A2 Sept., abb. -- [XXXDX] :: September (month/mensis understood); abb. Sept.; + Sept_A = constA "Sept" ; -- [XXXDX] :: September (month/mensis understood); abb. Sept.; September_A = mkA "September" "Septembris" "Septembre" ; -- [XXXCO] :: September (month/mensis understood); abb. Sept.; of/pertaining to September; September_M_N = mkN "September" "Septembris " masculine ; -- [XXXCO] :: September; (7th month before Caesar, 9th after); abb. Sept.; Sequana_M_N = mkN "Sequana" ; -- [XXFDX] :: Seine, river in N Cen. Gaul - in Caesar's "Gallic War"; @@ -958,17 +975,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Sequanus_M_N = mkN "Sequanus" ; -- [XXFDX] :: Sequani, tribe in E. Gaul - in Caesar's "Gallic War"; Ser_F_N = mkN "Ser" "Seris " feminine ; -- [XXXDO] :: Chinese (people); inhabitants of region beyond Scythia and India; Ser_M_N = mkN "Ser" "Seris " masculine ; -- [XXXDO] :: Chinese (people); inhabitants of region beyond Scythia and India; --- IGNORED Ser_N : N1 Ser., abb. -- M -- [XXXDX] :: Servius (Roman praenomen); (abb. Ser.); --- IGNORED Seraph_N : N1 Seraph, undeclined -- N -- [EEQDS] :: Seraphim, angels (pl.) of higher order among the Jews; --- IGNORED Seraphim_N : N1 Seraphim, undeclined -- N -- [EEQDS] :: Seraphim, angels (pl.) of higher order among the Jews; --- IGNORED Seraphin_N : N1 Seraphin, undeclined -- N -- [EEQDS] :: Seraphim, angel (sg.) of higher order among the Jews; + Ser_N = constN "Ser." masculine ; -- [XXXDX] :: Servius (Roman praenomen); (abb. Ser.); + Seraph_N = constN "Seraph" neuter ; -- [EEQDS] :: Seraphim, angels (pl.) of higher order among the Jews; + Seraphim_N = constN "Seraphim" neuter ; -- [EEQDS] :: Seraphim, angels (pl.) of higher order among the Jews; + Seraphin_N = constN "Seraphin" neuter ; -- [EEQDS] :: Seraphim, angel (sg.) of higher order among the Jews; Sericus_A = mkA "Sericus" "Serica" "Sericum" ; -- [XXXDO] :: Chinese, of/from the Seres; silk-, made of silk; silken; Servius_M_N = mkN "Servius" ; -- [XXXDX] :: Servius (Roman praenomen); (abb. Ser.); Seubus_A = mkA "Seubus" "Seuba" "Seubum" ; -- [XXXDX] :: of the Seubi, German tribes east of the Elbe - in Caesar's "Gallic War"; Seubus_M_N = mkN "Seubus" ; -- [XXXDX] :: Seubi, German tribes centered east of the Elbe - in Caesar's "Gallic War"; Severus_M_N = mkN "Severus" ; -- [DLIDZ] :: Severus; (Emperor Lucius Septimius Severus 193-211); --- IGNORED Sex_N : N1 Sex., abb. -- M -- [XXXDX] :: Sextus (Roman praenomen); (abb. Sex.); --- IGNORED Sext_A : A2 Sext., abb. -- [XXXDX] :: August (month/mensis understood); abb. Sext.??; renamed to Julius in 44 BC; + Sex_N = constN "Sex." masculine ; -- [XXXDX] :: Sextus (Roman praenomen); (abb. Sex.); + Sext_A = constA "Sext" ; -- [XXXDX] :: August (month/mensis understood); abb. Sext.??; renamed to Julius in 44 BC; Sextilis_A = mkA "Sextilis" "Sextilis" "Sextile" ; -- [XXXDX] :: August (month/mensis understood); abb. Sext.??; renamed to Julius in 44 BC; Sextius_A = mkA "Sextius" "Sextia" "Sextium" ; -- [XXXCO] :: Sextius; (Roman gens name); [Quintus ~ => Augustian philosopher]; Sextius_M_N = mkN "Sextius" ; -- [XXXCO] :: Sextius; (Roman gens name); [Quintus ~ => Augustian philosopher]; @@ -981,7 +998,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Siculus_C_N = mkN "Siculus" ; -- [XXXDS] :: Sicilian; Sinope_F_N = mkN "Sinope" "Sinopes " feminine ; -- [XXHCO] :: Sinope; (Greek colony midway along south shore of Euxine/Black Sea); Sinopis_F_N = mkN "Sinopis" "Sinopidis " feminine ; -- [XXXDS] :: kind of red ocher (pigment, found on Sinope on Black Sea); name for Sinuessa; --- TODO Siren_N : N1 Siren, Sirenos/is -- F -- [XYXCO] :: Siren; (lured sailors with song); type of drone/solitary bee/wasp); + Siren_1_N = mkN "Siren" "Sirenis" feminine ; -- [XYXCO] :: Siren; (lured sailors with song); type of drone/solitary bee/wasp); + Siren_2_N = mkN "Siren" "Sirenos" feminine ; -- [XYXCO] :: Siren; (lured sailors with song); type of drone/solitary bee/wasp); Sireneus_A = mkA "Sireneus" "Sirenea" "Sireneum" ; -- [DYXFS] :: Siren-, of/belonging to the Sirens; [~cantus => Siren song]; Sirenius_A = mkA "Sirenius" "Sirenia" "Sirenium" ; -- [XYXFO] :: Siren-, of/belonging to the Sirens; [~cantus => Siren song]; Sirius_A = mkA "Sirius" "Siria" "Sirium" ; -- [DXXFX] :: of the dog-star/Sirius; @@ -991,7 +1009,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Socratus_M_N = mkN "Socratus" ; -- [XSHEO] :: Socrates (Athenian philosopher 469-399 B.C.); his disciples/followers (pl.); Solinus_M_N = mkN "Solinus" ; -- [DXXFS] :: Solinus; (C. Julius Solinus third century Roman writer); Sophocles_M_N = mkN "Sophocles" "Sophoclis " masculine ; -- [BPHDS] :: Sophocles (Greek poet); --- IGNORED Sp_N : N1 Sp., abb. -- M -- [XXXDX] :: Spurius (Roman praenomen); (abb. Sp.); + Sp_N = constN "Sp." masculine ; -- [XXXDX] :: Spurius (Roman praenomen); (abb. Sp.); Sparta_F_N = mkN "Sparta" ; -- [XXHDS] :: Sparta (Greek city); Spartanus_A = mkA "Spartanus" "Spartana" "Spartanum" ; -- [BXHDS] :: Spartan; Spectabilis_M_N = mkN "Spectabilis" "Spectabilis " masculine ; -- [DLXES] :: Respectable, title of high officers of late empire; (below Illustres); @@ -1001,7 +1019,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Stichus_M_N = mkN "Stichus" ; -- [XLXDO] :: common slave name; representative name in legal forms, Anyslave; Stoicus_A = mkA "Stoicus" "Stoica" "Stoicum" ; -- [XXXDX] :: Stoic; Stygius_A = mkA "Stygius" "Stygia" "Stygium" ; -- [XXXDS] :: Stygian; of the river Styx; of the underworld; --- TODO Styx_N : N1 Styx, Stygos/is -- F -- [XXXDS] :: Styx river; river of the underworld; + Styx_1_N = mkN "Styx" "Stygis" feminine ; -- [XXXDS] :: Styx river; river of the underworld; + Styx_2_N = mkN "Styx" "Stygos" feminine ; -- [XXXDS] :: Styx river; river of the underworld; Subura_F_N = mkN "Subura" ; -- [XXIDX] :: valley between Esquiline and Viminal hills of Rome (center of night life); Suebus_M_N = mkN "Suebus" ; -- [XXXDX] :: Swabian; (Gallic tribe - in Caesar's "Gallic War"); Sulla_M_N = mkN "Sulla" ; -- [XXXDX] :: Sulla (Roman cognomen); [L. Cornelius ~ Felix => Roman dictator 138-78 BC]; @@ -1019,8 +1038,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Syrius_M_N = mkN "Syrius" ; -- [XXQCO] :: Syrian, of Syria; (name of a variety of dark-skinned pear); Syrus_A = mkA "Syrus" "Syra" "Syrum" ; -- [XXQCS] :: Syrian, of Syria; Syrus_M_N = mkN "Syrus" ; -- [XXQCO] :: Syrian, native of Syria; (esp. as a slave); (name of a slave); --- IGNORED TECEL_V : V1 TECEL, undeclined -- [EEQFW] :: TEKEL; (MENE TEKEL PHARES writing on the wall - Vulgate Daniel 5:25); --- IGNORED T_N : N1 T., abb. -- M -- [XXXDX] :: Titus, Roman praenomen; (abb. T.); + TECEL_V = constV "TECEL" ; -- [EEQFW] :: TEKEL; (MENE TEKEL PHARES writing on the wall - Vulgate Daniel 5:25); + T_N = constN "T." masculine ; -- [XXXDX] :: Titus, Roman praenomen; (abb. T.); Tacitus_M_N = mkN "Tacitus" ; -- [DLIDZ] :: Tacitus; (Emperor Marcus Claudius Tacitus 275-276); Tarquinius_M_N = mkN "Tarquinius" ; -- [BLIBO] :: Etruscan name; (T~ Priscus, 5th Roman king; T~ Superbus, last king 534-510 BC); Tartareus_A = mkA "Tartareus" "Tartarea" "Tartareum" ; -- [XXXDX] :: of or belonging to the underworld; Tartarean; @@ -1035,7 +1054,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Thecuites_A = mkA "Thecuites" "Thecuites" "Thecuites" ; -- [EXXFW] :: of/from Thecua; (2 Samuel 14); Theodosius_M_N = mkN "Theodosius" ; -- [ELIDZ] :: Theodosius; (Emperor Theodosius 379-395; II 408-450); Thessalonica_F_N = mkN "Thessalonica" ; -- [XXIDO] :: Thessalonica (Macedonian city); (now Saloniki); --- IGNORED Thomas_N : N1 Thomas, undeclined -- M -- [CEXCS] :: Thomas; + Thomas_N = constN "Thomas" masculine ; -- [CEXCS] :: Thomas; Thracia_F_N = mkN "Thracia" ; -- [XXHCO] :: Thrace; (vaguely defined country east of Macedon/north-east of Greece); Thracius_A = mkA "Thracius" "Thracia" "Thracium" ; -- [XXHCO] :: Thracian, of/belonging to Thrace; gem; [lapis ~ => combustible stone/lignite]; Thraecia_F_N = mkN "Thraecia" ; -- [XXHCO] :: Thrace; (vaguely defined country east of Macedon/north-east of Greece); @@ -1046,16 +1065,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Threcius_A = mkA "Threcius" "Threcia" "Threcium" ; -- [XXHCO] :: Thracian, of/belonging to Thrace; gem; [lapis ~ => combustible stone/lignite]; Threnus_M_N = mkN "Threnus" ; -- [XXXDX] :: throne; Threx_M_N = mkN "Threx" "Threcis " masculine ; -- [XXHCO] :: Thracian, native of Thrace; gladiator armed with saber and short shield; --- IGNORED Ti_N : N1 Ti., abb. -- M -- [XXXDX] :: Tiberius, Roman praenomen; (abb. Ti./Tib.); --- IGNORED Tib_N : N1 Tib., abb. -- M -- [XXXDX] :: Tiberius, Roman praenomen; (abb. Ti./Tib.); + Ti_N = constN "Ti." masculine ; -- [XXXDX] :: Tiberius, Roman praenomen; (abb. Ti./Tib.); + Tib_N = constN "Tib." masculine ; -- [XXXDX] :: Tiberius, Roman praenomen; (abb. Ti./Tib.); Tiberinus_A = mkA "Tiberinus" "Tiberina" "Tiberinum" ; -- [XXXCZ] :: Tiber-; of the river Tiber (Collins); Tiberinus_M_N = mkN "Tiberinus" ; -- [XXXCZ] :: Tiber (river); (Collins); Tiberis_F_N = mkN "Tiberis" "Tiberis " feminine ; -- [DXICO] :: Tiber; (the river at Rome); Tiberis_M_N = mkN "Tiberis" "Tiberis " masculine ; -- [DXICO] :: Tiber; (the river at Rome); Tiberius_M_N = mkN "Tiberius" ; -- [CLIBO] :: Tiberius (praenomen); abb. Ti./Tib.; (Tiberius Julius Caesar Emperor, 14-37 AD); Tigurinus_M_N = mkN "Tigurinus" ; -- [XXXDX] :: Tiguri, one of the four divisions of the Helvetii - in Caesar's "Gallic War"; --- IGNORED Tim_N : N1 Tim., abb. -- M -- [EEXEE] :: Timothy (abb.); (Book of the Bible); --- TODO Titan_N : N1 Titan, Titanos/is -- M -- [XYHCO] :: Titan; (one of race of gods/giants preceding Olympians); + Tim_N = constN "Tim." masculine ; -- [EEXEE] :: Timothy (abb.); (Book of the Bible); + Titan_1_N = mkN "Titan" "Titanis" masculine ; -- [XYHCO] :: Titan; (one of race of gods/giants preceding Olympians); + Titan_2_N = mkN "Titan" "Titanos" masculine ; -- [XYHCO] :: Titan; (one of race of gods/giants preceding Olympians); Titanus_M_N = mkN "Titanus" ; -- [XYHEO] :: Titan; (one of race of gods/giants preceding Olympians); Titius_A = mkA "Titius" "Titia" "Titium" ; -- [XLXCO] :: Titius; (Roman gens); fictitious name in legal examples; Titius_M_N = mkN "Titius" ; -- [XLXCO] :: Titius; (Roman gens name); fictitious name in legal examples; @@ -1114,11 +1134,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg Zeno_M_N = mkN "Zeno" "Zenonis " masculine ; -- [XSXCS] :: Zeno (Greek philosopher); L:Zeno (Emperor 474-491); Zenon_M_N = mkN "Zenon" "Zenonis " masculine ; -- [XSXCS] :: Zenon; (Greek philosopher); Zephyrus_M_N = mkN "Zephyrus" ; -- [XXXDX] :: Zephyr, the west wind; - a_Abl_Prep = mkPrep "a" Abl ; -- [XXXAO] :: by (agent), from (departure, cause, remote origin/time); after (reference); - a_Acc_Prep = mkPrep "a" Acc ; -- [XXXCO] :: ante, abb. a.; [in calendar expression a. d. = ante diem => before the day]; + a_Abl_Prep = mkPrep "a" abl ; -- [XXXAO] :: by (agent), from (departure, cause, remote origin/time); after (reference); + a_Acc_Prep = mkPrep "a" acc ; -- [XXXCO] :: ante, abb. a.; [in calendar expression a. d. = ante diem => before the day]; a_Interj = ss "a" ; -- [XXXBO] :: Ah!; (distress/regret/pity, appeal/entreaty, surprise/joy, objection/contempt); --- IGNORED a_N : N1 a., abb. -- M -- [XXXDG] :: year; abb. ann./a.; [regnavit a(nnis). XLIIII => he reigned for 44 years]; - ab_Abl_Prep = mkPrep "ab" Abl ; -- [XXXAO] :: by (agent), from (departure, cause, remote origin/time); after (reference); + a_N = constN "a." masculine ; -- [XXXDG] :: year; abb. ann./a.; [regnavit a(nnis). XLIIII => he reigned for 44 years]; + ab_Abl_Prep = mkPrep "ab" abl ; -- [XXXAO] :: by (agent), from (departure, cause, remote origin/time); after (reference); abactius_A = mkA "abactius" "abactia" "abactium" ; -- [XAXEO] :: stolen/rustled (of cattle); abactor_M_N = mkN "abactor" "abactoris " masculine ; -- [XAXEO] :: cattle thief, rustler; one who drives off; abactus_A = mkA "abactus" "abacta" "abactum" ; -- [XXXES] :: driven away/off/back; forced to resign (office); restrained by; passed (night); @@ -1132,7 +1152,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg abalieno_V2 = mkV2 (mkV "abalienare") ; -- [XXXBO] :: |transfer (sale/contract); remove, take away, dispose of; numb/deaden; abambulo_V = mkV "abambulare" ; -- [XXXFO] :: go away; abamita_F_N = mkN "abamita" ; -- [XXXEO] :: great-great-great aunt; (sister of abavus/gt-gt-grandfather); female ancestor; - abante_Abl_Prep = mkPrep "abante" Abl ; -- [XXXES] :: from before/in front of; + abante_Abl_Prep = mkPrep "abante" abl ; -- [XXXES] :: from before/in front of; abante_Adv = mkAdv "abante" ; -- [XXXIO] :: in front (of); before; abarceo_V2 = mkV2 (mkV "abarcere") ; -- [XXXEO] :: keep away; abascantus_A = mkA "abascantus" "abascanta" "abascantum" ; -- [XXXFS] :: unenvied?; @@ -1145,7 +1165,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg abbatialis_A = mkA "abbatialis" "abbatialis" "abbatiale" ; -- [EEXCE] :: of/pertaining to an abbot/abbey; abbey derived; abbatissa_F_N = mkN "abbatissa" ; -- [EEXCE] :: abbess; abbatizo_V = mkV "abbatizare" ; -- [FEXFM] :: be abbot; --- TODO abbibo_V : V2 abbibo, abbibere, abbibi, - -- Declension: 3rd -- Comment: [XXXDO] :: drink (in addition), take in by drinking; drink in, absorb, listen eagerly to; + abbibo_V2 = mkV2 (mkV "abbibere" "abbibo" "abbibi" nonExist ) ; -- [XXXDO] :: drink (in addition), take in by drinking; drink in, absorb, listen eagerly to; + abbito_V = mkV "abbitere" "abbito" "nonExist" "nonExist"; -- [XXXFO] :: approach, come/draw near; abbreviatio_F_N = mkN "abbreviatio" "abbreviationis " feminine ; -- [EXXFS] :: abbreviation; diminution; epitome (Souter); shortening; abbreviator_M_N = mkN "abbreviator" "abbreviatoris " masculine ; -- [EEXEE] :: summarizer; one who makes abstracts/epitomes from papal bulls; abbreviatus_A = mkA "abbreviatus" "abbreviata" "abbreviatum" ; -- [EXXCW] :: abridged, shortened, cut off; straitened, contracted, narrowed; abbreviated; @@ -1156,13 +1177,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg abdicativus_A = mkA "abdicativus" "abdicativa" "abdicativum" ; -- [DXXES] :: negative; abdicatrix_F_N = mkN "abdicatrix" "abdicatricis " feminine ; -- [DXXFS] :: renouncer (female); she who renounces/disclaims something; abdicatus_M_N = mkN "abdicatus" ; -- [XXXFO] :: disowned/disinherited son; - abdico_V2 = mkV2 (mkV "abdicare") ; -- [XLXBO] :: resign, abdicate; abolish; disinherit; renounce, reject, expel, disapprove of; + abdico_V2 = mkV2 (mkV "abdicere" "abdico" "abdixi" "abdictus ") ; -- [XLXEO] :: be against, reject; withhold (someone's right); forbid by unfavorable omen; abdite_Adv = mkAdv "abdite" ; -- [XXXFS] :: secretly; abditivus_A = mkA "abditivus" "abditiva" "abditivum" ; -- [XXXFC] :: removed, separated (from); abditum_N_N = mkN "abditum" ; -- [XXXCE] :: hidden/secret/out of the way place, lair, (in) secret; abditus_A = mkA "abditus" "abdita" "abditum" ; -- [XXXBO] :: hidden, secret, out of the way, remote, secluded; obscure/abstruse (meaning); + abdo_V2 = mkV2 (mkV "abdere" "abdo" "abdidi" "abditus ") ; -- [XXXAO] :: remove, put away, set aside; depart, go away; hide, keep secret, conceal; abdomen_N_N = mkN "abdomen" "abdominis " neuter ; -- [XBXCO] :: abdomen, paunch, lower part of the belly; gluttony; as indicative of obesity; abdominalis_A = mkA "abdominalis" "abdominalis" "abdominale" ; -- [GBXEK] :: abdominal; + abduco_V2 = mkV2 (mkV "abducere" "abduco" "abduxi" "abductus ") ; -- [XXXAO] :: lead away, carry off; detach, attract away, entice, seduce, charm; withdraw; abductio_F_N = mkN "abductio" "abductionis " feminine ; -- [DXXES] :: abduction, forcible carrying off; robbing; retirement (Vulg. Eccli.); abecedaria_F_N = mkN "abecedaria" ; -- [DXXFS] :: elementary introduction; the ABC of the matter; abecedarium_N_N = mkN "abecedarium" ; -- [EEXCE] :: alphabet; @@ -1177,13 +1200,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aberratio_F_N = mkN "aberratio" "aberrationis " feminine ; -- [XXXEO] :: diversion, relief; aberro_V = mkV "aberrare" ; -- [XXXBO] :: stray, wander, deviate; go/be/do wrong; be unfaithful; escape; disagree (with); abfero_V2 = mkV2 (mkV "abferre") ; -- [XXXCO] :: bear, take away, remove, obtain, carry off/away, steal; (error for aufero); --- TODO abfugio_V : V2 abfugio, abfugere, abfugi, - -- Declension: 3rd -- Comment: [XXXCO] :: flee (from), shun; run/fly away, escape; disappear/vanish (things); + abfluo_V = mkV "abfluere" "abfluo" "abfluxi" nonExist ; -- [XXXEO] :: flow/stream/issue (from); flow away; be abundant, abound (in w/ABL); + abfugio_V2 = mkV2 (mkV "abfugere" "abfugio" "abfugi" nonExist ) ; -- [XXXCO] :: flee (from), shun; run/fly away, escape; disappear/vanish (things); abhibeo_V2 = mkV2 (mkV "abhibere") ; -- [XXXEO] :: hold at a distance; abhinc_Adv = mkAdv "abhinc" ; -- [XXXCO] :: since, ago, in past; from this time, henceforth; from this place, hence; abhorreo_V = mkV "abhorrere" ; -- [XXXAO] :: abhor, shrink back; be averse to, shudder at; differ from; be inconsistent; --- TODO abhorresco_V : V2 abhorresco, abhorrescere, abhorrui, - -- Declension: 3rd -- Comment: [DEXFS] :: dread, become terrified; bristle up; begin to shake/tremble/shudder/shiver; + abhorresco_V2 = mkV2 (mkV "abhorrescere" "abhorresco" "abhorrui" nonExist ) ; -- [DEXFS] :: dread, become terrified; bristle up; begin to shake/tremble/shudder/shiver; abhorride_Adv = mkAdv "abhorride" ; -- [DXXFS] :: roughly, improperly; in an unfit manner; abhorridus_A = mkA "abhorridus" "abhorrida" "abhorridum" ; -- [XXXFO] :: rough, unsightly; + abicio_V2 = mkV2 (mkV "abicere" "abicio" "abjeci" "abjectus ") ; -- [XXXAO] :: throw/cast away/down/aside; abandon; slight; humble; debase; sell too cheaply; + abico_V2 = mkV2 (mkV "abicere" "abico" nonExist nonExist) ; -- [EXXCN] :: humble; cast aside/away/off, reject; abiegneus_A = mkA "abiegneus" "abiegnea" "abiegneum" ; -- [XAXEO] :: made of fir, deal; abiegnius_A = mkA "abiegnius" "abiegnia" "abiegnium" ; -- [XAXEO] :: made of fir, deal; abiegnus_A = mkA "abiegnus" "abiegna" "abiegnum" ; -- [XAXCO] :: made of fir, deal; wooden; @@ -1194,6 +1220,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg abigeator_M_N = mkN "abigeator" "abigeatoris " masculine ; -- [DAXES] :: cattle stealer/thief, rustler; abigeatus_M_N = mkN "abigeatus" "abigeatus " masculine ; -- [XAXEO] :: cattle stealing, rustling; abigeus_M_N = mkN "abigeus" ; -- [XAXEO] :: cattle stealer/thief, rustler; + abigo_V2 = mkV2 (mkV "abigere" "abigo" "abigi" "abactus ") ; -- [EBXEW] :: |remove/cure (disease); drive away (an evil); force birth; procure abortion; abinde_Adv = mkAdv "abinde" ; -- [XXXEO] :: from that source, thence; abinvicem_Adv = mkAdv "abinvicem" ; -- [FXXEM] :: mutually; (usually as two words); from one another; abitio_F_N = mkN "abitio" "abitionis " feminine ; -- [XXXDO] :: departure; going away, departing; @@ -1202,10 +1229,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg abjecte_Adv =mkAdv "abjecte" "abjectius" "abjectissime" ; -- [XXXCL] :: in spiritless manner; in humble circumstances, lowly; negligently; cowardly; abjectio_F_N = mkN "abjectio" "abjectionis " feminine ; -- [XXXEO] :: dejection; a casting down/out; outcast; abjecto_V2 = mkV2 (mkV "abjectare") ; -- [FXXCV] :: throw/cast away/down/aside; abandon; slight; humble; debase; sell too cheaply; --- SLASHSTUFF abjectus_A : A2 abjectus, abjecta -um, abjectior -or -us, abjectissimus -a -um -- [XXXBL] :: downcast, dejected; humble, low, common, mean; subservient; base, sordid, vile; + abjectus_A = mkA "abjectus" ; -- [XXXBL] :: downcast, dejected; humble, low, common, mean; subservient; base, sordid, vile; + abjicio_V2 = mkV2 (mkV "abjicere" "abjicio" "abjeci" "abjectus ") ; -- [XXXAS] :: throw/cast away/down/aside; abandon; slight; humble; debase; sell too cheaply; abjudicativus_A = mkA "abjudicativus" "abjudicativa" "abjudicativum" ; -- [DSXFS] :: negative; abjudico_V2 = mkV2 (mkV "abjudicare") ; -- [XLXCO] :: deprive by judicial verdict; give judgment against; reject; deny an oath; abjugo_V2 = mkV2 (mkV "abjugare") ; -- [XXXES] :: separate (from), remove; loose from the yoke; + abjungo_V2 = mkV2 (mkV "abjungere" "abjungo" "abjunxi" "abjunctus ") ; -- [XXXBO] :: unyoke, remove, separate; unharness; remove part, split; cut off from, detach; abjuratio_F_N = mkN "abjuratio" "abjurationis " feminine ; -- [ELXCE] :: |forswearing, denial under oath; perjury; abjurgo_V2 = mkV2 (mkV "abjurgare") ; -- [XLXEO] :: take away in settlement of a quarrel; deny/refuse reproachfully (L+S); abjuro_V2 = mkV2 (mkV "abjurare") ; -- [XLXCO] :: repudiate (obligation or duty); deny on oath (falsely); abjure; perjure; @@ -1222,7 +1251,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ablegatio_F_N = mkN "ablegatio" "ablegationis " feminine ; -- [XXXEO] :: dispatch, sending away/off; dispatch on a duty; ablego_V2 = mkV2 (mkV "ablegare") ; -- [XXXCO] :: send away/off (on a mission); banish, get rid of; remove/delete a word; ablepsia_F_N = mkN "ablepsia" ; -- [DBXFS] :: blindness; + abligurio_V2 = mkV2 (mkV "abligurire" "abligurio" "abligurivi" "abliguritus ") ; -- [XXXEO] :: eat up (dainties); consume in dainty living; waste, squander; waste in feasting; + abligurrio_V2 = mkV2 (mkV "abligurrire" "abligurrio" "abligurrivi" "abligurritus ") ; -- [XXXFL] :: eat up (dainties); consume in dainty living; waste, squander; waste in feasting; abloco_V2 = mkV2 (mkV "ablocare") ; -- [XXXEO] :: place a contract for (work), hire; let/lease/rent (house); + abludo_V = mkV "abludere" "abludo" nonExist nonExist; -- [XXXEO] :: differ from; fall short of; play out of tune; + abluo_V2 = mkV2 (mkV "abluere" "abluo" "ablui" "ablutus ") ; -- [XXXBO] :: wash away/off/out, blot out, purify, wash, cleanse; dispel (infection); quench; ablutio_F_N = mkN "ablutio" "ablutionis " feminine ; -- [EEXCE] :: washing, ablution; pouring on (mixture of water and wine) in the liturgy; abluvio_F_N = mkN "abluvio" "abluvionis " feminine ; -- [XAXEO] :: erosion; abluvium_N_N = mkN "abluvium" ; -- [XAXEO] :: flooding of rivers, inundation; @@ -1241,11 +1274,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg abnueo_V = mkV "abnuere" ; -- [BXXAO] :: refuse, decline; deny (guilt); refuse by a sign, shake head; reject; rule out; abnuitio_F_N = mkN "abnuitio" "abnuitionis " feminine ; -- [DSXFS] :: negation; abnumero_V2 = mkV2 (mkV "abnumerare") ; -- [DSXFS] :: count up, reckon up; + abnuo_V2 = mkV2 (mkV "abnuere" "abnuo" "abnui" "abnuitus ") ; -- [XXXAO] :: refuse, decline; deny (guilt); refuse by a sign, shake head; reject; rule out; abnutivum_N_N = mkN "abnutivum" ; -- [DXXFS] :: refusal, denying; abnutivus_A = mkA "abnutivus" "abnutiva" "abnutivum" ; -- [XXXFO] :: negative; abnuto_V = mkV "abnutare" ; -- [BXXCL] :: deny/refuse/forbid (w/shake of head) repeatedly; forbid; + abolefacio_V2 = mkV2 (mkV "abolefacere" "abolefacio" "abolefeci" "abolefactus ") ; -- [DXXFS] :: destroy; abolefio_V = mkV "aboleferi" ; -- [DXXFS] :: be destroyed; (abolefacio PASS); aboleo_V2 = mkV2 (mkV "abolere") ; -- [XXXBO] :: destroy, efface, obliterate; kill; banish, dispel; put end to. abolish, rescind; + abolesco_V = mkV "abolescere" "abolesco" "abolevi" nonExist; -- [XXXCO] :: decay gradually, shrivel, wilt; vanish, disappear; die out; fall into disuse; abolitio_F_N = mkN "abolitio" "abolitionis " feminine ; -- [XLXCO] :: cancellation, annulment (law); withdrawal (charge), amnesty; obliteration; abolitor_M_N = mkN "abolitor" "abolitoris " masculine ; -- [DXXFS] :: one who takes away a thing; one who casts a thing into oblivion; abolla_C_N = mkN "abolla" ; -- [XXXEL] :: cloak (thick wool, for soldiers/peasants), mantle; wearer of a cloak; @@ -1259,8 +1295,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg abominor_V = mkV "abominari" ; -- [XXXCO] :: avert; (seek to) avert (omen/eventuality) (by prayer); loathe, detest, abhor; abominosus_A = mkA "abominosus" "abominosa" "abominosum" ; -- [DXXFS] :: full of ill omens, portentous; aborigineus_A = mkA "aborigineus" "aboriginea" "aborigineum" ; -- [XXXFO] :: aboriginal; (pertaining to) pre-Roman Italy/original founders of a city; + aborior_V = mkV "aboriri" "aborior" "abortus sum " ; -- [XXXCO] :: pass away, disappear, be lost; miscarry, be aborted; set (sun/planet/star); + aborisco_V = mkV "aboriscere" "aborisco" nonExist nonExist; -- [XXXFO] :: pass/fade away, disappear, be lost; aborsus_A = mkA "aborsus" "aborsa" "aborsum" ; -- [DBXES] :: miscarriage; abortion; that which has been brought forth prematurely; abortio_F_N = mkN "abortio" "abortionis " feminine ; -- [XBXDO] :: abortion, miscarriage; premature delivery; procuring an abortion; + abortio_V = mkV "abortire" "abortio" nonExist nonExist; -- [DBXFS] :: miscarry; abortium_N_N = mkN "abortium" ; -- [DEXFS] :: abortion; miscarriage; abortivum_N_N = mkN "abortivum" ; -- [XBXES] :: |abortion; miscarriage; means of procuring an abortion; abortivus_A = mkA "abortivus" "abortiva" "abortivum" ; -- [XBXCO] :: abortive; abortificient; contraceptive; addled; prematurely born; @@ -1270,29 +1309,37 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg abortus_M_N = mkN "abortus" "abortus " masculine ; -- [XBXCO] :: miscarriage; premature/untimely birth; abortion; dead fetus; getting abortion; abpatruus_M_N = mkN "abpatruus" ; -- [XXXFO] :: great-great-great uncle (father's side); abra_F_N = mkN "abra" ; -- [EXXCE] :: maid; + abrado_V2 = mkV2 (mkV "abradere" "abrado" "abrasi" "abrasus ") ; -- [XXXCO] :: scratch/scrape/rub/wipe (off), shave; erase; wash/erode away; "knock off", rob; abrelictus_A = mkA "abrelictus" "abrelicta" "abrelictum" ; -- [DXXFS] :: deserted, abandoned; abrenunciatio_F_N = mkN "abrenunciatio" "abrenunciationis " feminine ; -- [EXXCE] :: repudiation, renunciation, renouncing; abrenuntio_V2 = mkV2 (mkV "abrenuntiare") ; -- [EXXCE] :: renounce, repudiate (strongly); + abripio_V2 = mkV2 (mkV "abripere" "abripio" "abripui" "abreptus ") ; -- [XXXBO] :: drag/snatch/carry/remove away by force; wash/blow away (storm); abduct, kidnap; abrodiaetus_M_N = mkN "abrodiaetus" ; -- [CXXFS] :: living delicately, epithet of the painter Parrhasius; + abrodo_V2 = mkV2 (mkV "abrodere" "abrodo" "abrosi" "abrosus ") ; -- [XXXEO] :: gnaw off/away; abrogatio_F_N = mkN "abrogatio" "abrogationis " feminine ; -- [XLXEO] :: repeal of a law; disregard, ignore, repudiate; cancel, rescind, revoke (honor); abrogo_V2 = mkV2 (mkV "abrogare") ; -- [XLXBO] :: abolish; repeal wholly, annul; remove, take away; abrotonites_M_N = mkN "abrotonites" "abrotonitae " masculine ; -- [DAXFS] :: wine prepared with the aromatic plant, southern-wood; abrotonum_N_N = mkN "abrotonum" ; -- [XAXFL] :: aromatic plant, southern-wood (medicine); abrotonus_M_N = mkN "abrotonus" ; -- [XAXFS] :: aromatic plant, southern-wood (medicine); + abrumpo_V2 = mkV2 (mkV "abrumpere" "abrumpo" "abrupi" "abruptus ") ; -- [XXXAO] :: break (bonds); break off; tear asunder; cut through, sever; remove, separate; abrupte_Adv = mkAdv "abrupte" ; -- [XXXFO] :: abruptly, suddenly; precipitously, steeply; hastily; rashly; here and there; abruptio_F_N = mkN "abruptio" "abruptionis " feminine ; -- [XXXEO] :: breaking, breaking off; separation, divorce; abruptum_N_N = mkN "abruptum" ; -- [DXXES] :: steep ascent/decent; rough dangerous ways (pl.); --- SLASHSTUFF abruptus_A : A2 abruptus, abrupta -um, abruptior -or -us, abruptissimus -a -um -- [DXXES] :: |broken, disconnected, abrupt; stubborn; - abs_Abl_Prep = mkPrep "abs" Abl ; -- [XXXAO] :: by (agent), from (departure, cause, remote origin (time); after (reference); + abruptus_A = mkA "abruptus" ; -- [DXXES] :: |broken, disconnected, abrupt; stubborn; + abs_Abl_Prep = mkPrep "abs" abl ; -- [XXXAO] :: by (agent), from (departure, cause, remote origin (time); after (reference); + abscedo_V = mkV "abscedere" "abscedo" "abscessi" "abscessus "; -- [XXXAO] :: withdraw, depart, retire; go/pass off/away; desist; recede (coasts); slough; abscessus_M_N = mkN "abscessus" "abscessus " masculine ; -- [XXXCO] :: going away, departure, withdrawal, absence; remoteness; abscess; death; + abscido_V2 = mkV2 (mkV "abscidere" "abscido" "abscidi" "abscisus ") ; -- [XXXBO] :: |take away violently; expel/banish; destroy (hope); amputate; prune; cut short; + abscindo_V2 = mkV2 (mkV "abscindere" "abscindo" "abscidi" "abscissus ") ; -- [XXXBO] :: tear (away/off) (clothing); cut off/away/short; part, break, divide, separate; abscise_Adv = mkAdv "abscise" ; -- [XXXEO] :: abruptly, brusquely, curtly; shortly, concisely, distinctly; abscisio_F_N = mkN "abscisio" "abscisionis " feminine ; -- [XGXEO] :: loss of voice; aposiopesis (rhetoric, breaking off emotionally), interruption; abscissio_F_N = mkN "abscissio" "abscissionis " feminine ; -- [XGXFS] :: loss of voice; aposiopesis (rhetoric, breaking off emotionally), interruption; --- SLASHSTUFF abscisus_A : A2 abscisus, abscisa -um, abscisior -or -us, abscisissimus -a -um -- [XXXCO] :: steep, sheer, precipitous; abrupt, curt, brusque; restricted; cut off, severed; + abscisus_A = mkA "abscisus" ; -- [XXXCO] :: steep, sheer, precipitous; abrupt, curt, brusque; restricted; cut off, severed; abscondeo_V = mkV "abscondere" ; -- [EXXEW] :: hide, conceal, secrete, "shelter"; leave behind; bury, engulf, swallow up; keep; abscondite_Adv = mkAdv "abscondite" ; -- [XXXEO] :: abstrusely; profoundly; secretly; absconditum_N_N = mkN "absconditum" ; -- [XXXCE] :: hidden/secret/concealed place/thing; secret; absconditus_A = mkA "absconditus" "abscondita" "absconditum" ; -- [XXXAO] :: hidden, secret, concealed; covert, disguised; abstruse, recondite; + abscondo_V2 = mkV2 (mkV "abscondere" "abscondo" "abscondidi" "absconditus ") ; -- [XXXDX] :: hide, conceal, secrete, "shelter"; leave behind; bury, engulf, swallow up; keep; absconse_Adv = mkAdv "absconse" ; -- [XXXEO] :: secretly; absconsio_F_N = mkN "absconsio" "absconsionis " feminine ; -- [EXXCE] :: shelter; absconsus_A = mkA "absconsus" "absconsa" "absconsum" ; -- [EXXCE] :: hidden, secret, concealed, unknown; @@ -1307,12 +1354,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg absidatus_A = mkA "absidatus" "absidata" "absidatum" ; -- [DTXES] :: arched; vaulted; having arch/arches; absidiale_N_N = mkN "absidiale" "absidialis " neuter ; -- [FEXEE] :: smaller apse (flanking larger one); (arched/domed part of church); absidiola_F_N = mkN "absidiola" ; -- [FEXFE] :: smaller apse (flanking larger one); (arched/domed part of church); + absilio_V = mkV "absilire" "absilio" nonExist nonExist; -- [XXXDO] :: rush/fly away (from); burst/fly apart; absimilis_A = mkA "absimilis" "absimilis" "absimile" ; -- [XXXCO] :: unlike, dissimilar; absinthites_M_N = mkN "absinthites" "absinthitae " masculine ; -- [XAXEO] :: wine flavored with wormwood; absinthe; absinthium_N_N = mkN "absinthium" ; -- [XXXEO] :: wormwood, absinthe, infusion/tincture of wormwood (often mixed with honey); absinthius_A = mkA "absinthius" "absinthia" "absinthium" ; -- [XAXFS] :: containing wormwood (e.g., wine); (often mixed with honey to mask taste); absinthius_M_N = mkN "absinthius" ; -- [XAXFO] :: wormwood, absinthe, infusion/tincture of wormwood (often mixed with honey); absis_F_N = mkN "absis" "absidis " feminine ; -- [XSXCO] :: arc described by a planet; arc, segment of a circle; kind of round vessel/bowl; + absisto_V = mkV "absistere" "absisto" "absistiti" nonExist; -- [XXXCO] :: withdraw from; desist, cease; leave off; depart, go away from; stand back; absistus_A = mkA "absistus" "absista" "absistum" ; -- [DXXFS] :: distant, lying away; absit_Interj = ss "absit" ; -- [EEXCE] :: "god forbid", "let it be far from the hearts of the faithful"; absocer_M_N = mkN "absocer" ; -- [DXXFS] :: great-great grandfather of the husband or wife (in-law); @@ -1322,6 +1371,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg absolutorium_N_N = mkN "absolutorium" ; -- [XXXFS] :: means of deliverance from; absolutorius_A = mkA "absolutorius" "absolutoria" "absolutorium" ; -- [XXXCO] :: favoring/securing acquittal; pertaining to acquittal/release; effecting a cure; absolutus_A = mkA "absolutus" "absoluta" "absolutum" ; -- [GXXEK] :: absolute; + absolvo_V2 = mkV2 (mkV "absolvere" "absolvo" "absolvi" "absolutus ") ; -- [XLXAO] :: free (bonds), release; acquit; vote for/secure acquittal; pay off; sum up; absone_Adv = mkAdv "absone" ; -- [XXXEO] :: harshly, discordantly; absonia_F_N = mkN "absonia" ; -- [FDXEZ] :: harshness; discordance; absono_V = mkV "absonare" ; -- [XXXFO] :: have harsh/discordant/unpleasant sound; @@ -1330,11 +1380,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg absorptio_F_N = mkN "absorptio" "absorptionis " feminine ; -- [XXXFS] :: drink, beverage; swallowing (Latham); absortio_F_N = mkN "absortio" "absortionis " feminine ; -- [EWXEP] :: victory, overwhelming; absortus_A = mkA "absortus" "absorta" "absortum" ; -- [EXXDP] :: overwhelmed, swallowed up/engulfed/submerged/absorbed; (= absorptus); engulfing; - absque_Abl_Prep = mkPrep "absque" Abl ; -- [XXXCO] :: without, apart from, away from; but for; except for; were it not for; (early); + absque_Abl_Prep = mkPrep "absque" abl ; -- [XXXCO] :: without, apart from, away from; but for; except for; were it not for; (early); abstantia_F_N = mkN "abstantia" ; -- [XXXFO] :: distance; abstemia_F_N = mkN "abstemia" ; -- [XXXEO] :: distance; abstemius_A = mkA "abstemius" "abstemia" "abstemium" ; -- [XXXCO] :: abstemious, abstaining from drink; sober, temperate; moderate; fasting; saving; abstergeo_V2 = mkV2 (mkV "abstergere") ; -- [XXXCO] :: wipe off/clean/away, clean away, cleanse, strip off; banish, expel, dispel; + abstergo_V2 = mkV2 (mkV "abstergere" "abstergo" "abstersi" "abstersus ") ; -- [XXXCO] :: wipe off/clean/away, clean away, cleanse, strip off; banish, expel, dispel; absterreo_V2 = mkV2 (mkV "absterrere") ; -- [XXXCO] :: frighten off/away; drive away; deter, discourage; keep away/withhold from, den; abstinax_A = mkA "abstinax" "abstinacis"; -- [XXXEO] :: abstemious, staying away from liquor; temperate/sparing in drink/food; abstinens_A = mkA "abstinens" "abstinentis"; -- [XXXCO] :: abstinent, temperate; showing restraint, self restrained; not covetous; chaste; @@ -1344,11 +1395,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg absto_V = mkV "abstare" ; -- [XXXCO] :: stand at a distance, stand off; keep at a distance; abstractio_F_N = mkN "abstractio" "abstractionis " feminine ; -- [DXXFS] :: separation; abstractus_A = mkA "abstractus" "abstracta" "abstractum" ; -- [DSXES] :: abstract (as opposed to concrete); + abstraho_V2 = mkV2 (mkV "abstrahere" "abstraho" "abstraxi" "abstractus ") ; -- [XXXAO] :: drag away from, remove forcibly, abort; carry off to execution; split; + abstrudo_V2 = mkV2 (mkV "abstrudere" "abstrudo" "abstrusi" "abstrusus ") ; -- [XXXCO] :: thrust away, conceal, hide; suppress/prevent (emotion) becoming apparent; abstruse_Adv = mkAdv "abstruse" ; -- [XXXFS] :: secretly; remotely; abstrusely; abstrusio_F_N = mkN "abstrusio" "abstrusionis " feminine ; -- [DXXFS] :: removing, concealing; --- SLASHSTUFF abstrusus_A : A2 abstrusus, abstrusa -um, abstrusior -or -us, abstrusissimus -a -um -- [XXXBO] :: secret, reserved; concealed, hidden; remote, secluded; abstruse, recondite; + abstrusus_A = mkA "abstrusus" ; -- [XXXBO] :: secret, reserved; concealed, hidden; remote, secluded; abstruse, recondite; + abstulo_V2 = mkV2 (mkV "abstulere" "abstulo" nonExist nonExist) ; -- [XXXFO] :: to take away, withdraw; absum_V = mkV "abesse" "absum" "afui" "afuturus " ; -- Comment: [XXXAO] :: be away/absent/distant/missing; be free/removed from; be lacking; be distinct; absumedo_F_N = mkN "absumedo" "absumedinis " feminine ; -- [XXXEO] :: act of squandering/wasting/using up; consuming/devouring consumption; + absumo_V2 = mkV2 (mkV "absumere" "absumo" "absumpsi" "absumptus ") ; -- [XXXAO] :: spend, waste, squander, use up; take up (time); consume; exhaust, wear out; absumptio_F_N = mkN "absumptio" "absumptionis " feminine ; -- [XXXEO] :: act of spending/using up; consumption; a consuming; absurde_Adv = mkAdv "absurde" ; -- [XXXCO] :: as to be out of tune, discordantly; preposterously, absurdly, inappropriately; absurditas_F_N = mkN "absurditas" "absurditatis " feminine ; -- [FXXEE] :: absurdity, incongruity, nonsense; @@ -1366,14 +1421,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg abusive_Adv = mkAdv "abusive" ; -- [XGXEO] :: loosely, catachresisly, by loose/improper use of language/term/metaphor; abusivus_A = mkA "abusivus" "abusiva" "abusivum" ; -- [DXXES] :: misapplied; abusor_M_N = mkN "abusor" "abusoris " masculine ; -- [DEXFS] :: he who misuses; - abusque_Abl_Prep = mkPrep "abusque" Abl ; -- [XXXCL] :: all the way from; from/since the time of; + abusque_Abl_Prep = mkPrep "abusque" abl ; -- [XXXCL] :: all the way from; from/since the time of; abusque_Adv = mkAdv "abusque" ; -- [XXXCO] :: all the way from; from/since the time of; abusus_M_N = mkN "abusus" "abusus " masculine ; -- [XXXEO] :: abusing, misuse, wasting; using up; + abutor_V = mkV "abuti" "abutor" "abusus sum " ; -- [XXXAO] :: waste, squander; abuse; misuse; use up; spend; exhaust; misapply (word); curse; + abverto_V2 = mkV2 (mkV "abvertere" "abverto" "abverti" "abversus ") ; -- [XXXES] :: turn away from/aside, divert, rout; disturb; withdraw; steal, misappropriate; abyssus_F_N = mkN "abyssus" ; -- [EEXDX] :: deep, sea; abyss; hell, infernal pit; bowels of the earth; primal chaos; --- ac_Conj : Conj ac -- [XXXAO] :: and, and also, and besides; + ac_Conj = mkConj "ac" missing ; -- [XXXAO] :: and, and also, and besides; acacia_F_N = mkN "acacia" ; -- [XAXCO] :: acacia, gum arabic tree; gum of this or related trees. gum arabic; academicus_A = mkA "academicus" "academica" "academicum" ; -- [XXXCO] :: academic; of the Academy/Academic philosophy/Cicero's Academics (views); --- TODO acalanthis_N : N1 acalanthis, acalanthidos/is -- F -- [XAXCS] :: small song-bird (of dark-green color); thistle-finch, goldfinch; + acalanthis_1_N = mkN "acalanthis" "acalanthidis" feminine ; -- [XAXCS] :: small song-bird (of dark-green color); thistle-finch, goldfinch; + acalanthis_2_N = mkN "acalanthis" "acalanthidos" feminine ; -- [XAXCS] :: small song-bird (of dark-green color); thistle-finch, goldfinch; acalephe_F_N = mkN "acalephe" "acalephes " feminine ; -- [DAXFS] :: nettle (plant); acanos_M_N = mkN "acanos" "acani " masculine ; -- [DAXFS] :: thistle (plant); acanthicos_A = mkA "acanthicos" "acanthicos" "acanthicon" ; -- [XAXNO] :: from pine-thistle; [only ~e mastiche => gum/mastich from pine-thistle/helxine]; @@ -1402,23 +1460,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg acaunumarga_F_N = mkN "acaunumarga" ; -- [XXXNO] :: red marl (clayey limestone); (fertilizer used by Celts in Gaul/Britain); acaustos_A = mkA "acaustos" "acaustos" "acauston" ; -- [XXXNO] :: incombustible; acaustus_A = mkA "acaustus" "acausta" "acaustum" ; -- [XXXNS] :: incombustible; --- TODO accano_V : V2 accano, accanere, -, - -- Declension: 3rd -- Comment: [XDXFS] :: sing to/with; --- TODO accanto_V : V2 accanto, accantere, -, - -- Declension: 3rd -- Comment: [XDXEO] :: sing to (person); sing at (place); + accano_V = mkV "accanere" "accano" nonExist nonExist ; -- [XDXFS] :: sing to/with; + accanto_V = mkV "accantere" "accanto" nonExist nonExist ; -- [XDXEO] :: sing to (person); sing at (place); accantus_M_N = mkN "accantus" "accantus " masculine ; -- [XGXFS] :: accent, intonation, accentuation, intensity, tone; signal, blast; accapito_V = mkV "accapitare" ; -- [FLXFM] :: admit subservience; acknowledge feudal liability; accedenter_Adv = mkAdv "accedenter" ; -- [DXXFS] :: nearly; accedentia_F_N = mkN "accedentia" ; -- [XXXNO] :: additional quality; + accedo_V2 = mkV2 (mkV "accedere" "accedo" "accessi" "accessus ") ; -- [XXXAO] :: come near, approach; agree with; be added to (w/ad or in + ACC); constitute; acceleratio_F_N = mkN "acceleratio" "accelerationis " feminine ; -- [XXXFO] :: speeding up, quickening, acceleration, hastening; acceleratrum_N_N = mkN "acceleratrum" ; -- [GXXEK] :: accelerator; accelero_V = mkV "accelerare" ; -- [XXXBO] :: speed up, quicken, hurry; make haste, act quickly, hasten; accelerate; accendium_N_N = mkN "accendium" ; -- [XXXFS] :: kindling, setting on fire; accendo_M_N = mkN "accendo" "accendonis " masculine ; -- [XXXFS] :: inciter, instigator; + accendo_V2 = mkV2 (mkV "accendere" "accendo" "accendi" "accensus ") ; -- [XXXAO] :: kindle, set on fire, light; illuminate; inflame, stir up, arouse; make bright; accenseo_V2 = mkV2 (mkV "accensere") ; -- [XXXEO] :: attach as an attendant to; add to; accensibilis_A = mkA "accensibilis" "accensibilis" "accensibile" ; -- [DXXFS] :: burnable, that may be burned; burning; accensus_A = mkA "accensus" "accensa" "accensum" ; -- [XWXFS] :: reckoned among; attached, attending; accensus_M_N = mkN "accensus" "accensus " masculine ; -- [XXXNO] :: lighting; kindling, setting on fire; accentiuncula_F_N = mkN "accentiuncula" ; -- [XGXFO] :: accent, intonation; --- TODO accento_V : V2 accento, accentere, -, - -- Declension: 3rd -- Comment: [XDXEO] :: sing to (person); sing at (place); + accento_V = mkV "accentere" "accento" nonExist nonExist ; -- [XDXEO] :: sing to (person); sing at (place); accentor_M_N = mkN "accentor" "accentoris " masculine ; -- [DDXFS] :: one who sings with another; accentus_M_N = mkN "accentus" "accentus " masculine ; -- [XGXCS] :: accent, intonation, accentuation, intensity, tone; signal, blast; acceo_V2 = mkV2 (mkV "accere") ; -- [BXXES] :: send for, summon (forth), fetch; invite; (w/mortum) commit suicide; @@ -1426,7 +1486,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg acceptabilis_A = mkA "acceptabilis" "acceptabilis" "acceptabile" ; -- [XXXCO] :: acceptable; acceptarius_A = mkA "acceptarius" "acceptaria" "acceptarium" ; -- [XLXFO] :: allotment-holding; acceptator_M_N = mkN "acceptator" "acceptatoris " masculine ; -- [DEXFS] :: one who accepts/approves; avenue/access/passage for admittance of the people; --- SLASHSTUFF acceptatus_A : A2 acceptatus, acceptata -um, acceptatior -or -us, acceptatissimus -a -um -- [XLXFO] :: acceptable, welcome, pleasing; + acceptatus_A = mkA "acceptatus" ; -- [XLXFO] :: acceptable, welcome, pleasing; acceptilatio_F_N = mkN "acceptilatio" "acceptilationis " feminine ; -- [XLXDO] :: formal release from an obligation; acceptio_F_N = mkN "acceptio" "acceptionis " feminine ; -- [XXXEO] :: taking (over), accepting, receiving; meaning; sense; accepto_V2 = mkV2 (mkV "acceptare") ; -- [XXXCO] :: receive regularly, take (payment/food); be given (name); submit to; grasp idea; @@ -1434,11 +1494,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg acceptorius_A = mkA "acceptorius" "acceptoria" "acceptorium" ; -- [XXXFO] :: designed/fit/suitable for receiving; acceptrix_F_N = mkN "acceptrix" "acceptricis " feminine ; -- [XXXFO] :: receiver (female); she who receives; believer, she who accepts as true; acceptum_N_N = mkN "acceptum" ; -- [XXXCO] :: receipts (vs. expenditures); favors; receipt side of account; written receipt; --- SLASHSTUFF acceptus_A : A2 acceptus, accepta -um, acceptior -or -us, acceptissimus -a -um -- [XXXBO] :: welcome, pleasing; popular with, well liked; dear; received/credited (money); + acceptus_A = mkA "acceptus" ; -- [XXXBO] :: welcome, pleasing; popular with, well liked; dear; received/credited (money); + accersio_V2 = mkV2 (mkV "accersire" "accersio" nonExist nonExist) ; -- [XXXDO] :: send for, summon; indict/accuse; fetch, import; invite; invoke; bring on oneself accersitio_F_N = mkN "accersitio" "accersitionis " feminine ; -- [DXXFS] :: summons, sending for; [dies ~ => day of death]; accersitor_M_N = mkN "accersitor" "accersitoris " masculine ; -- [XLXEO] :: one who comes to summon/call/fetch another; accuser; accersitus_A = mkA "accersitus" "accersita" "accersitum" ; -- [XXXCO] :: brought from elsewhere, foreign; extraneous; self-inflicted (death); sent for; accersitus_M_N = mkN "accersitus" "accersitus " masculine ; -- [XXXEO] :: summons, sending for; + accerso_V2 = mkV2 (mkV "accersere" "accerso" "accersivi" "accersitus ") ; -- [XXXAO] :: send for, summon; indict/accuse; fetch, import; invite; invoke; bring on oneself accessa_F_N = mkN "accessa" ; -- [DXXES] :: approach, arrival; entry, admittance, audience; hostile approach/attack; onset; accessibilis_A = mkA "accessibilis" "accessibilis" "accessibile" ; -- [DXXES] :: accessible; accessibilitas_F_N = mkN "accessibilitas" "accessibilitatis " feminine ; -- [DXXES] :: accessibility; @@ -1450,10 +1512,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg accidens_N_N = mkN "accidens" "accidentis " neuter ; -- [XXXCO] :: accidental happening, chance event, contingency; accident, circumstance; accidentalis_A = mkA "accidentalis" "accidentalis" "accidentale" ; -- [FXXEZ] :: accidental; accidentia_F_N = mkN "accidentia" ; -- [XXXES] :: chance, casual event, that which happens; --- TODO accido_V : V2 accido, accidere, accidi, - -- Declension: 3rd -- Comment: [XXXAO] :: fall upon/down/to/at or near, descend, alight; happen, occur; happen to (DAT); + accido_V2 = mkV2 (mkV "accidere" "accido" "accidi" "accisus ") ; -- [XXXCO] :: cut, cut into/down/up, hack, hew, fell; overthrow, destroy; cut short; weaken; + accidt_V0 = mkV0 "accidt"; -- [XXXCO] :: happens, turns out, befalls; fall upon; come to pass, occur; accieo_V2 = mkV2 (mkV "acciere") ; -- [DXXES] :: send for, summon (forth), fetch; invite; (w/mortum) commit suicide; accinctus_A = mkA "accinctus" "accincta" "accinctum" ; -- [XXXES] :: well girded; ready, prepared; strict (opp. negligens); --- TODO accino_V : V2 accino, accinere, -, - -- Declension: 3rd -- Comment: [XDXFS] :: sing to/with; + accingo_V2 = mkV2 (mkV "accingere" "accingo" "accinxi" "accinctus ") ; -- [XXXAO] :: gird on or about, surround; equip, provide (with); get ready, prepare (for); + accino_V = mkV "accinere" "accino" nonExist nonExist ; -- [XDXFS] :: sing to/with; + accio_V2 = mkV2 (mkV "accire" "accio" "accivi" "accitus ") ; -- [XXXBO] :: send for, summon (forth), fetch; invite; (w/mortum) commit suicide; + accipio_V2 = mkV2 (mkV "accipere" "accipio" "accepi" "acceptus ") ; -- [XXXAO] :: take, grasp, receive, accept, undertake; admit, let in, hear, learn; obey; accipiter_F_N = mkN "accipiter" "accipitris " feminine ; -- [XAXCO] :: hawk (any of several species); flying gurnard (fish); accipiter_M_N = mkN "accipiter" "accipitris " masculine ; -- [XAXCO] :: hawk (any of several species); flying gurnard (fish); accipitrina_F_N = mkN "accipitrina" ; -- [XAXFO] :: act of a hawk; rapacity; @@ -1471,16 +1537,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg acclivitas_F_N = mkN "acclivitas" "acclivitatis " feminine ; -- [XXXEO] :: slope, ascent, upward inclination, steepness; acclivius_A = mkA "acclivius" "acclivia" "acclivium" ; -- [EXXCN] :: well-disposed; acclivus_A = mkA "acclivus" "accliva" "acclivum" ; -- [XXXCO] :: rising, sloping/inclining upward, ascending, up hill; steep; + accludo_V2 = mkV2 (mkV "accludere" "accludo" "acclusi" "acclusus ") ; -- [EXXEP] :: close up, shut the door; + accognosco_V2 = mkV2 (mkV "accognoscere" "accognosco" nonExist nonExist) ; -- [XXXEO] :: recognize (visually or by some other means); accola_C_N = mkN "accola" ; -- [XXXCO] :: neighbor; one who lives nearby/beside; inhabitant; accolens_M_N = mkN "accolens" "accolentis " masculine ; -- [DXXDX] :: neighbors, people of the neighborhood; + accolo_V2 = mkV2 (mkV "accolere" "accolo" "accolui" "accultus ") ; -- [XXXCO] :: dwell/live near; be a neighbor to; accommodate_Adv =mkAdv "accommodate" "accommodatius" "accommodatissime" ; -- [XXXCO] :: fittingly, in a suitable manner; accommodatio_F_N = mkN "accommodatio" "accommodationis " feminine ; -- [XXXEO] :: adjustment, willingness to oblige, complaisance; fitting, adapting, adaptation; --- SLASHSTUFF accommodatus_A : A2 accommodatus, accommodata -um, accommodatior -or -us, accommodatissimus -a -um -- [XXXCO] :: fit/suitable/appropriate; suiting the interest (of); favorably disposed (to); + accommodatus_A = mkA "accommodatus" ; -- [XXXCO] :: fit/suitable/appropriate; suiting the interest (of); favorably disposed (to); accommodo_V2 = mkV2 (mkV "accommodare") ; -- [XXXBO] :: adapt, adjust to, fit, suit; apply to, fasten on; apply/devote oneself to; accommodus_A = mkA "accommodus" "accommoda" "accommodum" ; -- [XXXEO] :: fitting, convenient, suitable to, adapted to; accomodate_Adv =mkAdv "accomodate" "accomodatius" "accomodatissime" ; -- [XXXEO] :: fittingly, in a suitable manner; accomodatio_F_N = mkN "accomodatio" "accomodationis " feminine ; -- [XXXEO] :: adjustment, willingness to oblige, complaisance; fitting, adapting, adaptation; --- SLASHSTUFF accomodatus_A : A2 accomodatus, accomodata -um, accomodatior -or -us, accomodatissimus -a -um -- [XXXEO] :: fit/suitable/appropriate; suiting the interests (of); favorably disposed (to); + accomodatus_A = mkA "accomodatus" ; -- [XXXEO] :: fit/suitable/appropriate; suiting the interests (of); favorably disposed (to); accomodo_V2 = mkV2 (mkV "accomodare") ; -- [XXXEO] :: adapt, adjust to, fit, suit; apply to, fasten on; apply/devote oneself to; accomodus_A = mkA "accomodus" "accomoda" "accomodum" ; -- [XXXEO] :: fitting, convenient, suitable to, adapted to; accongero_V2 = mkV2 (mkV "accongerare") ; -- [DEXFS] :: bear, bring forth; @@ -1488,7 +1557,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg accordo_V = mkV "accordare" ; -- [FXXFM] :: agree with; harmonize; accordum_N_N = mkN "accordum" ; -- [GDXEK] :: accord (musical); accorporo_V2 = mkV2 (mkV "accorporare") ; -- [DXXFS] :: incorporate, fit/join to; --- accredo_V2 : V4 accredo, accredere, accredidi, accreditus -- Declension: 3rd -- Case: DAT -- Comment: [XXXCO] :: give credence to, believe; put faith in, trust; + accredo_V2 = mkV2 (mkV "accredere" "accredo" "accredidi" "accreditus ") Dat_Prep ; -- [XXXCO] :: give credence to, believe; put faith in, trust; + accresco_V = mkV "accrescere" "accresco" "accrevi" "accretus "; -- [XXXBO] :: increase/swell, grow larger/up/progressively; be added/annexed to; arise; accretio_F_N = mkN "accretio" "accretionis " feminine ; -- [XXXFO] :: increase, an increasing, increment; accretus_A = mkA "accretus" "accreta" "accretum" ; -- [XXXNO] :: overgrown with; encased in; accubitalia_F_N = mkN "accubitalia" ; -- [XXXFS] :: covering spread over dining table couches; @@ -1499,6 +1569,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg accubitus_M_N = mkN "accubitus" "accubitus " masculine ; -- [XXXEO] :: reclining (at meals), lying (at table); couch/seat; place for a couch (L+S); accubo_Adv = mkAdv "accubo" ; -- [XXXFO] :: in a prone/recumbent position; accubo_V = mkV "accubare" ; -- [XXXFO] :: lie near or by; recline at table; + accudo_V2 = mkV2 (mkV "accudere" "accudo" nonExist nonExist) ; -- [XXXFO] :: coin in addition; strike/stamp/mint (coin) (L+S); make more money, add wealth; + accumbo_V2 = mkV2 (mkV "accumbere" "accumbo" "accumbui" "accumbitus ") ; -- [XXXBO] :: take a place/recline at the table; lie on (bed), lie at/prone, lie beside; accumulate_Adv =mkAdv "accumulate" "accumulatius" "accumulatissime" ; -- [XXXEO] :: copiously, abundantly; superabuntly; accumulatio_F_N = mkN "accumulatio" "accumulationis " feminine ; -- [XXXNO] :: accumulation, heaping/piling up (earth); accumulator_M_N = mkN "accumulator" "accumulatoris " masculine ; -- [XXXFO] :: heaper up; one who accumulates/amasses; @@ -1506,8 +1578,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg accumulo_V2 = mkV2 (mkV "accumulare") ; -- [XXXCO] :: accumulate, heap/pile up/soil; add by exaggeration; add, increase, enhance; accurate_Adv =mkAdv "accurate" "accuratius" "accuratissime" ; -- [XXXCO] :: carefully, accurately, precisely, exactly; nicely; painstakingly, meticulous; accuratio_F_N = mkN "accuratio" "accurationis " feminine ; -- [XXXEO] :: accuracy, preciseness, care; carefulness, painstakingness; treatment (medical); --- SLASHSTUFF accuratus_A : A2 accuratus, accurata -um, accuratior -or -us, accuratissimus -a -um -- [XXXCO] :: accurate, exact, with care, meticulous; carefully performed/prepared; finished; + accuratus_A = mkA "accuratus" ; -- [XXXCO] :: accurate, exact, with care, meticulous; carefully performed/prepared; finished; accuro_V2 = mkV2 (mkV "accurare") ; -- [XXXCO] :: take care of, attend to (duties/guests), give attention to; perform with care; + accurro_V2 = mkV2 (mkV "accurrere" "accurro" "accurri" "accursus ") ; -- [XXXBO] :: run/hasten to (help); come/rush up (inanim subj.); charge, rush to attack; accursus_M_N = mkN "accursus" "accursus " masculine ; -- [XXXCO] :: rushing up (to see or give help); attack; onset; accusabilis_A = mkA "accusabilis" "accusabilis" "accusabile" ; -- [XXXFO] :: blamable, reprehensible; accusatio_F_N = mkN "accusatio" "accusationis " feminine ; -- [XLXBO] :: accusation, inditement; act/occasion of accusation; rebuke, reproof; @@ -1527,7 +1600,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aceo_V = mkV "acere" ; -- [XXXFO] :: be sour; acephalos_A = mkA "acephalos" "acephalos" "acephalon" ; -- [XPXFO] :: lacking the first syllable; acephalus_A = mkA "acephalus" "acephala" "acephalum" ; -- [DPXFS] :: lacking the first syllable; beginning w/short syllable; lacking head/leader; --- SLASHSTUFF acer_A : A2 acer, acris -e, acrior -or -us, acerrimus -a -um -- [XXXAO] :: sharp, bitter, pointed, piercing, shrill; sagacious, keen; severe, vigorous; + acer_A = mkA "acer" ; -- [XXXAO] :: sharp, bitter, pointed, piercing, shrill; sagacious, keen; severe, vigorous; acer_N_N = mkN "acer" "aceris " neuter ; -- [XAXCO] :: maple tree; wood of the maple tree; maple; aceratus_A = mkA "aceratus" "acerata" "aceratum" ; -- [XXXEO] :: mixed with chaff/husks (of clay for bricklaying); without horns (L+S); acerbe_Adv =mkAdv "acerbe" "acerbius" "acerbissime" ; -- [XXXBO] :: stridently, with harsh sound; cruelly, harshly; with pain/severity; premature; @@ -1535,7 +1608,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg acerbitudo_F_N = mkN "acerbitudo" "acerbitudinis " feminine ; -- [XXXFO] :: harshness, severity; bitterness, sourness, ill feeling; anguish, hardship; acerbo_V2 = mkV2 (mkV "acerbare") ; -- [XXXCO] :: embitter; aggravate; make disagreeable; make worse; acerbum_N_N = mkN "acerbum" ; -- [XXXES] :: calamity, misfortune; --- SLASHSTUFF acerbus_A : A2 acerbus, acerba -um, acerbior -or -us, acerbissimus -a -um -- [XXXAO] :: harsh, strident, bitter, sour; unripe, green, unfinished; grievous; gloomy; + acerbus_A = mkA "acerbus" ; -- [XXXAO] :: harsh, strident, bitter, sour; unripe, green, unfinished; grievous; gloomy; acerneus_A = mkA "acerneus" "acernea" "acerneum" ; -- [XAXIO] :: maple, of maple (wood); belonging to the maple tree; acernia_F_N = mkN "acernia" ; -- [DAXFS] :: fish (unidentified); acernus_A = mkA "acernus" "acerna" "acernum" ; -- [XAXCO] :: maple, of maple (wood); belonging to the maple tree; @@ -1551,6 +1624,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg acervo_V2 = mkV2 (mkV "acervare") ; -- [XXXCO] :: heap/pile up; make into heaps/piles; massed/categorized together; cover with; acervus_M_N = mkN "acervus" ; -- [XXXBO] :: mass/heap/pile/stack; treasure, stock; large quantity; cluster; funeral pile; acescentia_F_N = mkN "acescentia" ; -- [FXXEE] :: acidity, sourness; + acesco_V = mkV "acescere" "acesco" "acui" nonExist; -- [XXXCO] :: turn/become sour; acesis_F_N = mkN "acesis" "acesis " feminine ; -- [XAXNO] :: form of malachite; sort of borax used in medicine; acetabulum_N_N = mkN "acetabulum" ; -- [XXXCO] :: small cup (esp. for vinegar); (1/8 pint); cup-shaped part (plant); hip joint; acetarium_N_N = mkN "acetarium" ; -- [GXXEK] :: salad (seasoned); @@ -1583,7 +1657,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aciditas_F_N = mkN "aciditas" "aciditatis " feminine ; -- [GXXEK] :: acidity; acidulus_A = mkA "acidulus" "acidula" "acidulum" ; -- [XXXEO] :: tart, slightly sour; acidum_N_N = mkN "acidum" ; -- [XXXFO] :: acid substances (pl.) as solvents; --- SLASHSTUFF acidus_A : A2 acidus, acida -um, acidior -or -us, acidissimus -a -um -- [XXXBO] :: acid/sour/bitter/tart; sour-smelling; soaked in vinegar; shrill; sharp-tongued; + acidus_A = mkA "acidus" ; -- [XXXBO] :: acid/sour/bitter/tart; sour-smelling; soaked in vinegar; shrill; sharp-tongued; acies_F_N = mkN "acies" "aciei " feminine ; -- [XXXAO] :: sharpness, sharp edge, point; battle line/array; sight, glance; pupil of eye; acina_F_N = mkN "acina" ; -- [XAXFL] :: small berry; grape seed/pit; acinaces_M_N = mkN "acinaces" "acinacis " masculine ; -- [XWXEO] :: short sword (Persian); short saber; scimitar; (contrary to gender rule OLD); @@ -1626,6 +1700,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg acorum_N_N = mkN "acorum" ; -- [XAXDO] :: sweet/yellow flag/iris or its root; butchers's broom/reed/rush or its root; acorus_F_N = mkN "acorus" ; -- [XAXFS] :: sweet/yellow flag/iris or its root; butchers's broom/reed/rush or its root; acosmos_A = mkA "acosmos" "acosmos" "acosmon" ; -- [XXXFO] :: unadorned, careless; + acquiesco_V = mkV "acquiescere" "acquiesco" "acquievi" "acquietus "; -- [XXXBO] :: lie with (w/cum), rest/relax; repose (death); acquiesce/assent/submit; subside; + acquiro_V2 = mkV2 (mkV "acquirere" "acquiro" "acquisivi" "acquisitus ") ; -- [XXXBO] :: acquire (goods/money/adherents), obtain, gain, get; add to stock; accrue; acquisitio_F_N = mkN "acquisitio" "acquisitionis " feminine ; -- [XXXDO] :: acquisition; additional source of supply; acquisitrix_F_N = mkN "acquisitrix" "acquisitricis " feminine ; -- [XXXIO] :: acquirer (female); acquisitus_A = mkA "acquisitus" "acquisita" "acquisitum" ; -- [XXXFO] :: strained, recherche; @@ -1648,8 +1724,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg acroaticus_A = mkA "acroaticus" "acroatica" "acroaticum" ; -- [XXXEO] :: of/for lectures only; esoteric; acrobates_M_N = mkN "acrobates" "acrobatae " masculine ; -- [XXXFO] :: acrobat; acrobaticus_A = mkA "acrobaticus" "acrobatica" "acrobaticum" ; -- [GXXEK] :: acrobatic; + acrochordon_1_N = mkN "acrochordon" "acrochordonis" feminine ; -- [XBXFO] :: type of wart; + acrochordon_2_N = mkN "acrochordon" "acrochordonos" feminine ; -- [XBXFO] :: type of wart; acrochordon_F_N = mkN "acrochordon" "acrochordonis " feminine ; -- [XBXFS] :: type of wart; --- TODO acrochordon_N : N1 acrochordon, acrochordonos/is -- F -- [XBXFO] :: type of wart; acrocolefium_N_N = mkN "acrocolefium" ; -- [DAXFS] :: upper part of the foot of a swine; acrocorium_N_N = mkN "acrocorium" ; -- [XASNS] :: kind of onion; acrolithos_A = mkA "acrolithos" "acrolithos" "acrolithon" ; -- [XXXEO] :: having extremities of marble (statues - the rest in wood L+S); @@ -1661,7 +1738,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg acrozymus_A = mkA "acrozymus" "acrozyma" "acrozymum" ; -- [DXXFS] :: slightly leavened; acrufolius_A = mkA "acrufolius" "acrufolia" "acrufolium" ; -- [XAXFO] :: having prickly leaves; made of holly/holly-wood; acrum_N_N = mkN "acrum" ; -- [XXXFS] :: promontory/headland (pl.); --- acsi_Conj : Conj acsi -- [XXXCW] :: as if; (ac si); + acsi_Conj = mkConj "acsi" missing ; -- [XXXCW] :: as if; (ac si); acta_F_N = mkN "acta" ; -- [XXXCO] :: sea-shore (as resort); beach; holiday (pl.), life of ease; party at seaside; actaea_F_N = mkN "actaea" ; -- [XAXNO] :: baneberry (Actaea spicata) (poisonous) (also called Herb Christopher); actarius_M_N = mkN "actarius" ; -- [DLXCS] :: short-hand writer, clerk, account/book-keeper, secretary; @@ -1709,6 +1786,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg acuminatus_A = mkA "acuminatus" "acuminata" "acuminatum" ; -- [XXXNO] :: sharp, pointed, tapering; acumino_V2 = mkV2 (mkV "acuminare") ; -- [XXXFS] :: sharpen, make pointed, cut to a point; acuna_F_N = mkN "acuna" ; -- [XAXFS] :: measure/piece of land (120 feet square), square actus; + acuo_V2 = mkV2 (mkV "acuere" "acuo" "acui" "acutus ") ; -- [XXXAO] :: whet, sharpen, cut to a point; spur on, provoke, incite; come to a head (PASS); acupedius_A = mkA "acupedius" "acupedia" "acupedium" ; -- [XXXFS] :: swift of foot; acupenser_M_N = mkN "acupenser" "acupenseris " masculine ; -- [XXXCO] :: fish (sturgeon?) (esteemed dainty dish); acupensis_M_N = mkN "acupensis" "acupensis " masculine ; -- [XAXEO] :: fish (sturgeon?) (esteemed dainty dish); @@ -1729,7 +1807,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg acylos_F_N = mkN "acylos" "acyli " feminine ; -- [XAXNS] :: acorn of the holm-oak; acyrologia_F_N = mkN "acyrologia" ; -- [DGXFS] :: impropriety of speech; acysterium_N_N = mkN "acysterium" ; -- [FEXFE] :: monastery; - ad_Acc_Prep = mkPrep "ad" Acc ; -- [XXXAO] :: to, up to, towards; near, at; until, on, by; almost; according to; about w/NUM; + ad_Acc_Prep = mkPrep "ad" acc ; -- [XXXAO] :: to, up to, towards; near, at; until, on, by; almost; according to; about w/NUM; ad_Adv = mkAdv "ad" ; -- [XXXCO] :: about (with numerals); adactio_F_N = mkN "adactio" "adactionis " feminine ; -- [XXXFO] :: action/process of administering an oath; forcing/bringing to (L+S); adactus_M_N = mkN "adactus" "adactus " masculine ; -- [XXXFO] :: thrust; forcing/bringing together (L+S); bite, biting; @@ -1750,7 +1828,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adalligo_V2 = mkV2 (mkV "adalligare") ; -- [XXXFS] :: bind/fasten to, attach; adamanteus_A = mkA "adamanteus" "adamantea" "adamanteum" ; -- [XTXEO] :: steel; of adamant, adamantine; adamantinus_A = mkA "adamantinus" "adamantina" "adamantinum" ; -- [XXXCO] :: incorruptible, impregnable; inflexible; hard as adamant/diamond/steel; --- TODO adamantis_N : N1 adamantis, adamantidos/is -- F -- [XAXNO] :: plant (unidentified); + adamantis_1_N = mkN "adamantis" "adamantidis" feminine ; -- [XAXNO] :: plant (unidentified); + adamantis_2_N = mkN "adamantis" "adamantidos" feminine ; -- [XAXNO] :: plant (unidentified); adamas_M_N = mkN "adamas" "adamantis " masculine ; -- [XTXCO] :: steel, hardest iron (early); anything hard, adamant; white sapphire; diamond; adamator_M_N = mkN "adamator" "adamatoris " masculine ; -- [DXXFS] :: lover; adambulo_V = mkV "adambulare" ; -- [XXXEO] :: walk beside/near; @@ -1758,6 +1837,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adamplio_V2 = mkV2 (mkV "adampliare") ; -- [XXXIO] :: enlarge, increase, widen; embellish; adamussim_Adv = mkAdv "adamussim" ; -- [XXXES] :: exactly/precisely; accurately, with precision; according to a ruler/level (L+S); adapatio_F_N = mkN "adapatio" "adapationis " feminine ; -- [FXXFE] :: adaption; adjustment; + adaperio_V2 = mkV2 (mkV "adaperire" "adaperio" "adaperivi" "adaperitus ") ; -- [EXXFW] :: throw open, open wide; unroll (scroll), open (book); uncover, reveal; open up; adapertilis_A = mkA "adapertilis" "adapertilis" "adapertile" ; -- [XXXFO] :: that may/can be opened; adapertio_F_N = mkN "adapertio" "adapertionis " feminine ; -- [DXXFS] :: uncovering, revealing, disclosure; opening (of eyes/mouth) (Souter); adapertivus_A = mkA "adapertivus" "adapertiva" "adapertivum" ; -- [EXXFP] :: opening; @@ -1765,18 +1845,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adapto_V2 = mkV2 (mkV "adaptare") ; -- [XXXEO] :: adjust, modify; fit (to) (w/DAT); adaquo_V = mkV "adaquare" ; -- [XXXEO] :: water, supply with water, bring water to; obtain water; give to drink; adaquor_V = mkV "adaquari" ; -- [XXXFS] :: bring/procure water (for one's self); fetch water; --- IGNORED adar_N : N1 adar, undeclined -- N -- [EXQEW] :: Adar, Jewish month; (twelfth in ecclesiastic year); + adar_N = constN "adar" neuter ; -- [EXQEW] :: Adar, Jewish month; (twelfth in ecclesiastic year); adarca_F_N = mkN "adarca" ; -- [XAXNO] :: salty deposit/effolescence on reeds; froth on sedge forming spongy growth; adarce_F_N = mkN "adarce" "adarces " feminine ; -- [DAXFS] :: salty deposit/effolescence on reeds; froth on sedge forming spongy growth; + adaresco_V2 = mkV2 (mkV "adarescere" "adaresco" "adarecui" nonExist) ; -- [XXXFO] :: become dry; dry up; adariarius_A = mkA "adariarius" "adariaria" "adariarium" ; -- [DEXFS] :: serving at the alter; adaro_V2 = mkV2 (mkV "adarare") ; -- [XAXNS] :: plow carefully; adaucto_V2 = mkV2 (mkV "adauctare") ; -- [XXXFO] :: increase, add to the resources of; adauctor_M_N = mkN "adauctor" "adauctoris " masculine ; -- [DXXFS] :: augmenter; adauctus_M_N = mkN "adauctus" "adauctus " masculine ; -- [XXXFO] :: increase, growth; adaugeo_V2 = mkV2 (mkV "adaugere") ; -- [XXXBO] :: increase, augment, intensify; supplement, make more; exaggerate, magnify; + adaugesco_V = mkV "adaugescere" "adaugesco" nonExist nonExist; -- [XXXEO] :: become greater/more numerous, increase; adaugmen_N_N = mkN "adaugmen" "adaugminis " neuter ; -- [XXXFO] :: increase, additional quantity; augmentation; adbello_V2 = mkV2 (mkV "adbellare") ; -- [DWXFS] :: make war upon; --- TODO adbibo_V : V2 adbibo, adbibere, adbibi, - -- Declension: 3rd -- Comment: [XXXDO] :: drink (in addition), take in by drinking; drink in, absorb, listen eagerly to; + adbibo_V2 = mkV2 (mkV "adbibere" "adbibo" "adbibi" nonExist ) ; -- [XXXDO] :: drink (in addition), take in by drinking; drink in, absorb, listen eagerly to; + adbito_V = mkV "adbitere" "adbito" nonExist nonExist; -- [XXXFO] :: approach, come/draw near; adblatero_V2 = mkV2 (mkV "adblaterare") ; -- [XXXFS] :: prattle, chatter; adbreviatio_F_N = mkN "adbreviatio" "adbreviationis " feminine ; -- [EXXFS] :: abbreviation; diminution; epitome (Souter); shortening; adbreviator_M_N = mkN "adbreviator" "adbreviatoris " masculine ; -- [EEXEE] :: summarizer; one who makes abstracts/epitomes from papal bulls; @@ -1784,6 +1867,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adbrevio_V2 = mkV2 (mkV "adbreviare") ; -- [EXXCE] :: shorten, cut off; abbreviate, abstract; epitomize (Souter); break off; weaken; adcedenter_Adv = mkAdv "adcedenter" ; -- [DXXFS] :: nearly; adcedentia_F_N = mkN "adcedentia" ; -- [XXXNO] :: additional quality; + adcedo_V2 = mkV2 (mkV "adcedere" "adcedo" "adcessi" "adcessus ") ; -- [XXXAO] :: come near, approach; agree with; be added to (w/ad or in + ACC); constitute; adceleratio_F_N = mkN "adceleratio" "adcelerationis " feminine ; -- [XXXFO] :: speeding up, quickening, acceleration, hastening; adcelero_V = mkV "adcelerare" ; -- [XXXBO] :: speed up, quicken, hurry; make haste, act quickly, hasten; accelerate; adcessibilis_A = mkA "adcessibilis" "adcessibilis" "adcessibile" ; -- [DXXES] :: accessible; @@ -1802,28 +1886,35 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adclivis_A = mkA "adclivis" "adclivis" "adclive" ; -- [XXXCO] :: rising, sloping upward; adclivitas_F_N = mkN "adclivitas" "adclivitatis " feminine ; -- [XXXEO] :: slope, ascent, upward inclination, steepness; adclivus_A = mkA "adclivus" "adcliva" "adclivum" ; -- [XXXCO] :: rising, sloping upward; + adcludo_V2 = mkV2 (mkV "adcludere" "adcludo" "adclusi" "adclusus ") ; -- [EXXEP] :: close up, shut the door; + adcognosco_V2 = mkV2 (mkV "adcognoscere" "adcognosco" nonExist nonExist) ; -- [XXXEO] :: recognize (visually or by some other means); adcola_C_N = mkN "adcola" ; -- [XXXCO] :: neighbor; one who lives nearby/beside; inhabitant; adcolens_M_N = mkN "adcolens" "adcolentis " masculine ; -- [XXXCO] :: neighbors, people of the neighborhood; + adcolo_V2 = mkV2 (mkV "adcolere" "adcolo" "adcolui" "adcultus ") ; -- [XXXCO] :: dwell/live near; be a neighbor to; adcommodate_Adv =mkAdv "adcommodate" "adcommodatius" "adcommodatissime" ; -- [XXXCO] :: fittingly, in a suitable manner; adcommodatio_F_N = mkN "adcommodatio" "adcommodationis " feminine ; -- [XXXEO] :: adjustment, willingness to oblige, complaisance; fitting, adapting, adaptation; --- SLASHSTUFF adcommodatus_A : A2 adcommodatus, adcommodata -um, adcommodatior -or -us, adcommodatissimus -a -um -- [XXXCO] :: fit/suitable/appropriate; suiting the interests (of); favorably disposed (to); + adcommodatus_A = mkA "adcommodatus" ; -- [XXXCO] :: fit/suitable/appropriate; suiting the interests (of); favorably disposed (to); adcommodo_V2 = mkV2 (mkV "adcommodare") ; -- [XXXBO] :: adapt, adjust to, fit, suit; apply to, fasten on; apply/devote oneself to; adcommodus_A = mkA "adcommodus" "adcommoda" "adcommodum" ; -- [XXXEO] :: fitting, convenient, suitable to, adapted to; --- adcredo_V2 : V4 adcredo, adcredere, adcredidi, adcreditus -- Declension: 3rd -- Case: DAT -- Comment: [XXXCO] :: give credence to, believe; put faith in, trust; + adcredo_V2 = mkV2 (mkV "adcredere" "adcredo" "adcredidi" "adcreditus ") Dat_Prep ; -- [XXXCO] :: give credence to, believe; put faith in, trust; + adcresco_V = mkV "adcrescere" "adcresco" "adcrevi" "adcretus "; -- [XXXBO] :: increase/swell, grow larger/up/progressively; be added/annexed to; arise; adcretio_F_N = mkN "adcretio" "adcretionis " feminine ; -- [XXXFO] :: increase, an increasing, increment; adcretus_A = mkA "adcretus" "adcreta" "adcretum" ; -- [XXXNO] :: overgrown with; encased in; adcubitio_F_N = mkN "adcubitio" "adcubitionis " feminine ; -- [XXXEO] :: reclining (at meals), lying; adcubitorius_A = mkA "adcubitorius" "adcubitoria" "adcubitorium" ; -- [DXXFS] :: pertaining to reclining (at table); adcubitus_M_N = mkN "adcubitus" "adcubitus " masculine ; -- [XXXEO] :: reclining (at meals), lying; adcubo_Adv = mkAdv "adcubo" ; -- [XXXFO] :: in a prone/recumbent position; + adcudo_V2 = mkV2 (mkV "adcudere" "adcudo" nonExist nonExist) ; -- [XXXFO] :: coin in addition; strike/stamp/mint (coin) (L+S); make more money, add wealth; + adcumbo_V2 = mkV2 (mkV "adcumbere" "adcumbo" "adcumbui" "adcumbitus ") ; -- [XXXBO] :: take a place/recline at the table; lie on (bed), lie at/prone, lie beside; adcumulate_Adv =mkAdv "adcumulate" "adcumulatius" "adcumulatissime" ; -- [XXXEO] :: copiously, abundantly; superabundantly; adcumulatio_F_N = mkN "adcumulatio" "adcumulationis " feminine ; -- [XXXNO] :: accumulation, heaping/piling up; adcumulator_M_N = mkN "adcumulator" "adcumulatoris " masculine ; -- [XXXFO] :: heaper up; one who accumulates/amasses; adcumulo_V2 = mkV2 (mkV "adcumulare") ; -- [XXXCO] :: accumulate, heap/pile up/soil; add by exaggeration; add, increase, enhance; adcurate_Adv =mkAdv "adcurate" "adcuratius" "adcuratissime" ; -- [XXXCO] :: carefully, accurately, precisely, exactly; nicely; painstakingly, meticulous; adcuratio_F_N = mkN "adcuratio" "adcurationis " feminine ; -- [XXXEO] :: accuracy, preciseness, care; carefulness, painstakingness; treatment (medical); --- SLASHSTUFF adcuratus_A : A2 adcuratus, adcurata -um, adcuratior -or -us, adcuratissimus -a -um -- [XXXCO] :: accurate, exact, with care, meticulous; carefully performed/prepared; finished; + adcuratus_A = mkA "adcuratus" ; -- [XXXCO] :: accurate, exact, with care, meticulous; carefully performed/prepared; finished; adcuro_V2 = mkV2 (mkV "adcurare") ; -- [XXXCO] :: take care of, attend to (duties/guests), give attention to; perform with care; + adcurro_V2 = mkV2 (mkV "adcurrere" "adcurro" "adcurri" "adcursus ") ; -- [XXXBO] :: run/hasten to (help); come/rush up (inanim subj.); charge, rush to attack; adcursus_M_N = mkN "adcursus" "adcursus " masculine ; -- [XXXCO] :: rushing up (to see or give help); attack; onset; addax_M_N = mkN "addax" "addacis " masculine ; -- [XAANO] :: addax; (African antelope with twisted horns); addecet_V0 = mkV0 "addecet" ; -- [XXXCO] :: it is fitting/proper, it behooves; @@ -1831,27 +1922,34 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg addendus_A = mkA "addendus" "addenda" "addendum" ; -- [FXXEE] :: to be added/joined; addenseo_V2 = mkV2 (mkV "addensere") ; -- [XXXFO] :: make more dense, close up (the ranks); addenso_V2 = mkV2 (mkV "addensare") ; -- [XXXFO] :: thicken, make more dense; + addico_V2 = mkV2 (mkV "addicere" "addico" "addixi" "addictus ") ; -- [XLXAO] :: be propitious; adjudge, sentence, doom; confiscate; award, assign; enslave; addicta_F_N = mkN "addicta" ; -- [XLXEO] :: person (female) enslaved for debt or theft; addictio_F_N = mkN "addictio" "addictionis " feminine ; -- [XLXEO] :: adjudication (disputed property), assignment (of debtor to custody/creditor); --- SLASHSTUFF addictus_A : A2 addictus, addicta -um, addictior -or -us, addictissimus -a -um -- [XLXCO] :: devoted/addicted (to); (debt) slave (of); bound (to do something); bent upon; + addictus_A = mkA "addictus" ; -- [XLXCO] :: devoted/addicted (to); (debt) slave (of); bound (to do something); bent upon; addictus_M_N = mkN "addictus" ; -- [XLXDO] :: person enslaved for debt or theft; + addisco_V2 = mkV2 (mkV "addiscere" "addisco" "addidici" nonExist) ; -- [XXXCO] :: learn in addition/further/besides; learn; additamentum_N_N = mkN "additamentum" ; -- [XXXDO] :: addition; additional factor/amount/element; something added; additicius_A = mkA "additicius" "additicia" "additicium" ; -- [XXXFO] :: additional, extra; additio_F_N = mkN "additio" "additionis " feminine ; -- [XXXFO] :: act of adding, addition; addititius_A = mkA "addititius" "addititia" "addititium" ; -- [FXXFE] :: additional, extra; additivus_A = mkA "additivus" "additiva" "additivum" ; -- [DXXFS] :: added, annexed; addivino_V2 = mkV2 (mkV "addivinare") ; -- [XXXFS] :: prognosticate, divine; + addo_V2 = mkV2 (mkV "addere" "addo" "addidi" "additus ") ; -- [XXXAO] :: add, insert, bring/attach to, say in addition; increase; impart; associate; addoceo_V2 = mkV2 (mkV "addocere") ; -- [XXXFO] :: teach new/additional accomplishments; + addormio_V = mkV "addormire" "addormio" "addormivi" "addormitus "; -- [DXXFS] :: fall asleep, go to sleep; begin to sleep; + addormisco_V = mkV "addormiscere" "addormisco" nonExist nonExist; -- [XXXFO] :: fall asleep; addubito_V = mkV "addubitare" ; -- [XXXCO] :: doubt, be doubtful/uncertain; hesitate (to), hesitate over a situation; + adduco_V2 = mkV2 (mkV "adducere" "adduco" "adduxi" "adductus ") ; -- [XXXAO] :: lead up/to/away; bring up/to; persuade, induce; lead, bring; contract, tighten; adducte_Adv =mkAdv "adducte" "adductius" "adductissime" ; -- [XXXFO] :: strictly, tightly; with close control; adductor_M_N = mkN "adductor" "adductoris " masculine ; -- [XXXFS] :: procurer; --- SLASHSTUFF adductus_A : A2 adductus, adducta -um, adductior -or -us, adductissimus -a -um -- [XXXCO] :: contracted, drawn together; frowning, grave; compressed, terse; strict, severe; + adductus_A = mkA "adductus" ; -- [XXXCO] :: contracted, drawn together; frowning, grave; compressed, terse; strict, severe; adedo_V2 = mkV2 (mkV "adesse") ; -- [XXXCO] :: eat up, eat into/away at, nibble, squander; wear down, exhaust; erode; adelphis_F_N = mkN "adelphis" "adelphidis " feminine ; -- [XAXNO] :: kind of date (hanging two together like brothers - Adelphi-The Brothers, play) ademptio_F_N = mkN "ademptio" "ademptionis " feminine ; -- [XXXDO] :: taking away, removal, deprivation; revocation (of legacy); withholding (right); ademptor_M_N = mkN "ademptor" "ademptoris " masculine ; -- [DXXFS] :: one who takes away; adeo_Adv = mkAdv "adeo" ; -- [XXXAO] :: to such a degree/pass/point; precisely, exactly; thus far; indeed, truly, even; --- TODO adeo_V : V1 adeo, adire, adivi(ii), aditus -- [XXXAO] :: approach; attack; visit, address; undertake; take possession (inheritance); + adeo_1_V2 = mkV2 (mkV "adire" "adeo" "adii" "aditus") ; -- [XXXAO] :: approach; attack; visit, address; undertake; take possession (inheritance); + adeo_2_V2 = mkV2 (mkV "adire" "adeo" "adivi" "aditus") ; -- [XXXAO] :: approach; attack; visit, address; undertake; take possession (inheritance); adeps_F_N = mkN "adeps" "adipis " feminine ; -- [XXXCO] :: fat, lard, grease; fatty tissue; bombast; corpulence, obesity (pl.); sapwood; adeps_M_N = mkN "adeps" "adipis " masculine ; -- [XXXCO] :: fat, lard, grease; fatty tissue; bombast; corpulence, obesity (pl.); sapwood; adeptio_F_N = mkN "adeptio" "adeptionis " feminine ; -- [XXXEO] :: act of obtaining, attainment, achievement; @@ -1860,6 +1958,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aderator_M_N = mkN "aderator" "aderatoris " masculine ; -- [DEXES] :: worshiper, one who adores; aderro_V = mkV "aderrare" ; -- [XXXFO] :: stray towards/near; wander to/by; adesco_V2 = mkV2 (mkV "adescare") ; -- [DAXFS] :: feed; fatten; + adessurio_V = mkV "adessurire" "adessurio" "adessurivi" "adessuritus "; -- [XXXFO] :: be very hungry/starving; + adesurio_V = mkV "adesurire" "adesurio" "adesurivi" "adesuritus "; -- [XXXFO] :: be very hungry/starving; adesus_A = mkA "adesus" "adesa" "adesum" ; -- [XXXES] :: eaten, gnawed; worn away by water, eroded; [adesi lapides => smooth/polished]; adfaber_A = mkA "adfaber" "adfabra" "adfabrum" ; -- [XXXFS] :: made/prepared ingeniously/skillfully/with art; ingenious, skilled in art; adfabilis_A = mkA "adfabilis" "adfabilis" "adfabile" ; -- [XXXCO] :: easy of access/to talk to, affable, friendly, courteous; sympathetic (words); @@ -1888,8 +1988,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adfectus_A = mkA "adfectus" "adfecta" "adfectum" ; -- [XXXBO] :: endowed with, possessed of; minded; affected; impaired, weakened; emotional; adfectus_M_N = mkN "adfectus" "adfectus " masculine ; -- [XXXAO] :: |disposition; condition, state (of body/mind); feeling, mood, emotion; adfero_V2 = mkV2 (mkV "adferre") ; -- [XXXAO] :: bring to, carry, convey; report, bring word, allege, announce; produce, cause; + adficio_V2 = mkV2 (mkV "adficere" "adficio" "adfeci" "adfectus ") ; -- [XXXAO] :: affect, make impression; move, influence; cause (hurt/death), afflict, weaken; adficticius_A = mkA "adficticius" "adficticia" "adficticium" ; -- [XXXFO] :: attached (to); + adfigo_V2 = mkV2 (mkV "adfigere" "adfigo" "adfixi" "adfixus ") ; -- [XXXAO] :: fasten/fix/pin/attach to (w/DAT), annex; impress upon; pierce; chain, confine; adfiguro_V2 = mkV2 (mkV "adfigurare") ; -- [XGXEO] :: form (word) by analogy; + adfingo_V2 = mkV2 (mkV "adfingere" "adfingo" "adfinxi" "adfictus ") ; -- [XXXBO] :: add to, attach; aggravate; embellish, counterfeit, forge; claim wrongly; adfinis_A = mkA "adfinis" "adfinis" "adfine" ; -- [XXXBO] :: neighboring, adjacent, next, bordering; related (marriage), akin, connected; adfinis_F_N = mkN "adfinis" "adfinis " feminine ; -- [XXXCO] :: relation (by marriage); neighbor; accomplice; adfinis_M_N = mkN "adfinis" "adfinis " masculine ; -- [XXXCO] :: relation (by marriage); neighbor; accomplice; @@ -1917,31 +2020,42 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adflictrix_F_N = mkN "adflictrix" "adflictricis " feminine ; -- [XXXFO] :: one (female) who strikes against/down/overthrows; adflictus_A = mkA "adflictus" "adflicta" "adflictum" ; -- [XXXEO] :: in a state of ruin (persons/countries/affairs), shattered; adflictus_M_N = mkN "adflictus" "adflictus " masculine ; -- [XXXFO] :: collision, blow; a striking against/dashing together; + adfligo_V2 = mkV2 (mkV "adfligere" "adfligo" "adflixi" "adflictus ") ; -- [XXXAO] :: overthrow/throw down; afflict, damage, crush, break, ruin; humble, weaken, vex; adflo_V = mkV "adflare" ; -- [XXXAO] :: blow/breathe (on/towards); inspire, infuse; waft; graze; breathe poison on; adfluens_A = mkA "adfluens" "adfluentis"; -- [XXXCO] :: flowing/overflowing/abounding with; abundant, plentiful, sumptuous, copious; adfluente_Adv =mkAdv "adfluente" "adfluentius" "adfluentissime" ; -- [XXXES] :: richly, copiously, abundantly, extravagantly, opulently; adfluenter_Adv =mkAdv "adfluenter" "adfluentius" "adfluentissime" ; -- [XXXEO] :: abundantly, copiously; luxuriously, extravagantly; adfluentia_F_N = mkN "adfluentia" ; -- [XXXCO] :: flow (of a liquid); abundance, profusion, extravagance, opulence, riotousness; + adfluo_V = mkV "adfluere" "adfluo" "adfluxi" "adfluxus "; -- [XXXBO] :: flow on/to/towards/by; glide/drift quietly; flock together, throng; abound; + adfodio_V2 = mkV2 (mkV "adfodere" "adfodio" nonExist nonExist) ; -- [XXXNO] :: add by digging; adfor_V = mkV "adfari" ; -- [XXXCO] :: speak to, address; be spoked to/addressed (PASS), be decreed by fate; adformido_V = mkV "adformidare" ; -- [XXXFO] :: be afraid, fear; + adfrango_V2 = mkV2 (mkV "adfrangere" "adfrango" nonExist nonExist) ; -- [XXXEO] :: cause to be broken against, crush/strike/break against; break in pieces; + adfremo_V = mkV "adfremere" "adfremo" nonExist nonExist; -- [XXXEO] :: roar/rage/growl (at); assent noisily to (w/DAT); adfricatio_F_N = mkN "adfricatio" "adfricationis " feminine ; -- [DXXES] :: rubbing on/against (thing); friction; abrasion; adfrico_V2 = mkV2 (mkV "adfricare") ; -- [XXXFO] :: rub (one thing against another); apply/communicate/impart by rubbing, smear on; adfrictus_M_N = mkN "adfrictus" "adfrictus " masculine ; -- [XXXEO] :: friction; rubbing on; + adfringo_V2 = mkV2 (mkV "adfringere" "adfringo" nonExist nonExist) ; -- [XXXFS] :: cause to be broken against, crush/strike/break against; break in pieces; adfrio_V2 = mkV2 (mkV "adfriare") ; -- [XXXFO] :: sprinkle (powder); crumble, grate; adfulgeo_V2 = mkV2 (mkV "adfulgere") Dat_Prep ; -- [XXXCO] :: shine forth, appear, dawn; shine/smile upon (w/favor), appear favorable; + adfundo_V2 = mkV2 (mkV "adfundere" "adfundo" "adfudi" "adfusus ") ; -- [XXXBO] :: pour on/upon/into, heap up; shed/spill (blood); wash; + adfundor_V = mkV "adfundi" "adfundor" "adfusus sum " ; -- [XXXCO] :: prostrate oneself; cause to be spread on/over; flow alongside/past (streams); + adfuo_V = mkV "adfuere" "adfuo" "adfuxi" nonExist; -- [XXXEO] :: flow/stream/issue (from), flow away; abound in (w/ABL), be abundant, abound; adgaudeo_V = mkV "adgaudere" ; -- [DXXES] :: delight in; be delighted with; + adgemo_V = mkV "adgemere" "adgemo" nonExist nonExist; -- [XXXEO] :: groan in conjunction/sympathy (with); adgenero_V2 = mkV2 (mkV "adgenerare") ; -- [DXXES] :: beget in addition; adgeniculor_V = mkV "adgeniculari" ; -- [DXXES] :: kneel before, bend the knee before; adger_M_N = mkN "adger" "adgeris " masculine ; -- [XXXAO] :: rampart (or material for); causeway, pier; heap/pile/mound; dam/dike; mud wall; adgeratim_Adv = mkAdv "adgeratim" ; -- [XXXFO] :: in heaps/piles; adgeratio_F_N = mkN "adgeratio" "adgerationis " feminine ; -- [XXXFO] :: heaped/piled up material; - adgero_V2 = mkV2 (mkV "adgerare") ; -- [XXXBO] :: heap/fill up, bring, carry; increase, add fuel; push/crowd/press together; + adgero_V2 = mkV2 (mkV "adgerere" "adgero" "adgessi" "adgestus ") ; -- [XXXBO] :: heap/cover up over, pile/build up, erect; accumulate; intensify, exaggerate; adgestim_Adv = mkAdv "adgestim" ; -- [DXXFS] :: in heaps, abundantly; adgestio_F_N = mkN "adgestio" "adgestionis " feminine ; -- [DXXES] :: heap, heaping up; mass (of mud), heap (of sand); adgestum_N_N = mkN "adgestum" ; -- [DXXES] :: mound, dike, elevation formed like a dike/mound; adgestus_M_N = mkN "adgestus" "adgestus " masculine ; -- [XXXDO] :: piling up; act of bringing; earthen bank, terrace; sprinkling earth over body; adglomero_V2 = mkV2 (mkV "adglomerare") ; -- [XXXCO] :: gather into a body, mass together, join forces; pile up in masses; agglomerate; adglutino_V2 = mkV2 (mkV "adglutinare") ; -- [XXXCO] :: glue/stick/adhere/fasten to/together; fit/grip on closely; bring in contact; + adgnascor_V = mkV "adgnasci" "adgnascor" "adgnatus sum " ; -- [XXXBO] :: be born in addition/after father's will made; develop; grow later/on, arise; adgnata_F_N = mkN "adgnata" ; -- [XXXFO] :: female blood relation on father's side; adgnaticius_A = mkA "adgnaticius" "adgnaticia" "adgnaticium" ; -- [DLXFS] :: pertaining to agnati (born after will); [~ jus => right of agnati to inherit]; adgnatio_F_N = mkN "adgnatio" "adgnationis " feminine ; -- [XXXCO] :: birth after father's will; blood relationship through father/male ancestor; @@ -1953,8 +2067,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adgnitus_M_N = mkN "adgnitus" "adgnitus " masculine ; -- [XDXFO] :: "recognition" (drama); adgnomen_N_N = mkN "adgnomen" "adgnominis " neuter ; -- [XXXCO] :: nickname, an additional name denoting an achievement/characteristic; adgnomentum_N_N = mkN "adgnomentum" ; -- [XXXFS] :: nickname, an additional name denoting an achievement/characteristic; + adgnosco_V2 = mkV2 (mkV "adgnoscere" "adgnosco" "adgnovi" "adgnitus ") ; -- [XXXAO] :: recognize, realize, discern; acknowledge, claim, admit to/responsibility; adgratulor_V = mkV "adgratulari" ; -- [FXXFZ] :: give thanks (to)(JFW); + adgravesco_V = mkV "adgravescere" "adgravesco" nonExist nonExist; -- [XXXDS] :: become heavy; become severe/dangerous (illness), grow worse; be aggravated; adgravo_V2 = mkV2 (mkV "adgravare") ; -- [XXXCO] :: aggravate, exaggerate; weigh down, oppress; make heavier; embarrass further; + adgredio_V = mkV "adgredere" "adgredio" "aggressi" "adgressus "; -- [XXXDS] :: approach, advance; attack, assail; undertake, seize (opportunity), attempt; + adgredior_V = mkV "adgredi" "adgredior" "adgressus sum " ; -- [XXXAS] :: approach, advance; attack, assail; undertake, seize (opportunity), attempt; adgrego_V2 = mkV2 (mkV "adgregare") ; -- [XXXBO] :: collect, include, group, implicate; (cause to) flock/join together, attach; adgressio_F_N = mkN "adgressio" "adgressionis " feminine ; -- [XXXDO] :: attack; action of setting about/undertaking (task); adgressor_M_N = mkN "adgressor" "adgressoris " masculine ; -- [XXXEO] :: attacker, assailant; @@ -1962,6 +2080,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adgressus_M_N = mkN "adgressus" "adgressus " masculine ; -- [XXXFO] :: attack, assault; adguberno_V = mkV "adgubernare" ; -- [XXXEO] :: steer (one's course); adhaereo_V = mkV "adhaerere" ; -- [XXXAO] :: adhere, stick, cling/cleave to; hang on; be attached/concerned/involved; + adhaeresco_V = mkV "adhaerescere" "adhaeresco" "adhaesi" nonExist; -- [XXXBO] :: cling to, adhere, stick (in trouble); become lodged in (weapons); run aground; adhaese_Adv = mkAdv "adhaese" ; -- [XXXFO] :: stammeringly; in a tongued-tied manner; adhaesio_F_N = mkN "adhaesio" "adhaesionis " feminine ; -- [XXXEO] :: adhesion; linkage; adhaesiona_F_N = mkN "adhaesiona" ; -- [FXXFZ] :: adhesion; linkage; @@ -1970,8 +2089,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adhalo_V2 = mkV2 (mkV "adhalare") ; -- [XXXNO] :: breathe upon; adhamo_V2 = mkV2 (mkV "adhamare") ; -- [XXXFS] :: catch, secure; adhereo_V = mkV "adherere" ; -- [DXXAW] :: adhere, stick, cling/cleave to; hang on; be attached/concerned/involved; + adheresco_V = mkV "adherescere" "adheresco" "adhesi" "adhesus "; -- [EXXDW] :: adhere tightly, stick fast; adhibeo_V2 = mkV2 (mkV "adhibere") ; -- [XXXAO] :: summon, invite, bring in; consult; put, add; use, employ, apply; hold out to; adhibitio_F_N = mkN "adhibitio" "adhibitionis " feminine ; -- [DXXES] :: application, employing; admission (e.g., to a banquet); + adhinnio_V2 = mkV2 (mkV "adhinnire" "adhinnio" "adhinnivi" "adhinnitus ") ; -- [XAXCO] :: whinny to/at; express delight; strive after/long for with voluptuous desire; adhoc_Adv = mkAdv "adhoc" ; -- [XXXAO] :: thus far, till now, to this point; hitherto; yet, as yet; still; besides; adhorreo_V = mkV "adhorrere" ; -- [XXXFO] :: shudder (in addition); adhortamen_N_N = mkN "adhortamen" "adhortaminis " neuter ; -- [XXXFO] :: encouragement, exhortation; incentive; @@ -1986,13 +2107,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adiantum_N_N = mkN "adiantum" ; -- [XAXNO] :: maidenhair (Capillus Veneris), type of fern; (also called callitrichos/on L+S); adiaphoros_A = mkA "adiaphoros" "adiaphoros" "adisphoron" ; -- [XXHFS] :: indifferent; (-os, -os, -on, Greek); adibilis_A = mkA "adibilis" "adibilis" "adibile" ; -- [DXXES] :: accessible; + adicio_V2 = mkV2 (mkV "adicere" "adicio" "adjeci" "adjectus ") ; -- [XXXAO] :: add, increase, raise; add to (DAT/ad+ACC); suggest; hurl (weapon); throw to/at; + adigo_V2 = mkV2 (mkV "adigere" "adigo" "adegi" "adactus ") ; -- [XXXAO] :: drive in/to (cattle), force, impel; cast, hurl; consign (curse); bind (oath); + adimo_V2 = mkV2 (mkV "adimere" "adimo" "ademi" "ademptus ") ; -- [XXXAO] :: withdraw, take away, carry off; castrate; deprive, steal, seize; annul; rescue; adimplementum_N_N = mkN "adimplementum" ; -- [FXXEE] :: completion, completing, fulfillment, fulfilling; realization; adimpleo_V2 = mkV2 (mkV "adimplere") ; -- [XXXEO] :: fill up (with); fulfill, carry out (promise/obligation); adimpletio_F_N = mkN "adimpletio" "adimpletionis " feminine ; -- [DXXES] :: completion, completing, fulfillment, fulfilling; realization; adimpletor_M_N = mkN "adimpletor" "adimpletoris " masculine ; -- [DEXFS] :: inspirer, he who fills (by inspiration); + adincresco_V = mkV "adincrescere" "adincresco" nonExist nonExist; -- [DEXES] :: increase; + adindo_V2 = mkV2 (mkV "adindere" "adindo" nonExist nonExist) ; -- [XXXFO] :: insert, put in/to; put in besides; adinflo_V2 = mkV2 (mkV "adinflare") ; -- [DXXES] :: swell up; + adingero_V2 = mkV2 (mkV "adingerere" "adingero" "adingessi" "adingestus ") ; -- [DXXFS] :: bring to/heap on in addition; + adinquiro_V2 = mkV2 (mkV "adinquirere" "adinquiro" "adinquisi" "adinquisitus ") ; -- [XXXFS] :: investigate/inquire/look into further; adinspecto_V2 = mkV2 (mkV "adinspectare") ; -- [XXXFO] :: watch; guard (person); --- IGNORED adinstar_A : A2 adinstar, undeclined -- [XXXES] :: like, after the fashion of; according to the likeness of; about; (ad instar); + adinstar_A = constA "adinstar" ; -- [XXXES] :: like, after the fashion of; according to the likeness of; about; (ad instar); + adinvenio_V2 = mkV2 (mkV "adinvenire" "adinvenio" "adinveni" "adinventus ") ; -- [XXXFO] :: devise/invent/find out (in addition/intensive); adinventio_F_N = mkN "adinventio" "adinventionis " feminine ; -- [DXXES] :: invention; adinventor_M_N = mkN "adinventor" "adinventoris " masculine ; -- [DXXES] :: inventor; adinventum_N_N = mkN "adinventum" ; -- [DXXES] :: invention; @@ -2000,6 +2129,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adipatum_N_N = mkN "adipatum" ; -- [XXXFO] :: rich dish; pastry prepared with fat (L+S); adipatus_A = mkA "adipatus" "adipata" "adipatum" ; -- [XXXEO] :: rich; containing fat, fatty, greasy; coarse, gross (L+S); adipeus_A = mkA "adipeus" "adipea" "adipeum" ; -- [DXXES] :: of fat; + adipiscor_V = mkV "adipisci" "adipiscor" "adeptus sum " ; -- [XXXBO] :: gain, secure, win, obtain; arrive at, come up to/into; inherit; overtake; adips_F_N = mkN "adips" "adipis " feminine ; -- [XXXCO] :: fat, lard, grease; fatty tissue; bombast; corpulence, obesity (pl.); adips_M_N = mkN "adips" "adipis " masculine ; -- [XXXCO] :: fat, lard, grease; fatty tissue; bombast; corpulence, obesity (pl.); adipsatheon_N_N = mkN "adipsatheon" "adipsathei " neuter ; -- [XAXNO] :: thorny shrub which produces fragrant oil; @@ -2021,6 +2151,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adjectius_A = mkA "adjectius" "adjectia" "adjectium" ; -- [DXXES] :: added besides; adjectivus_A = mkA "adjectivus" "adjectiva" "adjectivum" ; -- [DGXES] :: that is added (to the noun - gram.); adjective; adjectus_M_N = mkN "adjectus" "adjectus " masculine ; -- [XXXEO] :: insertion/putting in/adding/applying to, addition; impact, contact; + adjicio_V2 = mkV2 (mkV "adjicere" "adjicio" "adjeci" "adjectus ") ; -- [XXXAS] :: add, increase, raise; add to (DAT/ad+ACC); suggest; hurl (weapon); throw to/at; adjudicatio_F_N = mkN "adjudicatio" "adjudicationis " feminine ; -- [XXXEO] :: act of assignment (by judge); vesting order; judicial judging of a matter; adjudico_V2 = mkV2 (mkV "adjudicare") ; -- [XLXCO] :: adjudge, impute, attribute, ascribe (to); award (as a judge), assign (to); adjugo_V2 = mkV2 (mkV "adjugare") ; -- [XXXEO] :: join, attach (to); @@ -2028,7 +2159,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adjunctivus_A = mkA "adjunctivus" "adjunctiva" "adjunctivum" ; -- [XGXFO] :: adjectival; joined/added; conjunctions that govern subjunctive mood (L+S); adjunctor_M_N = mkN "adjunctor" "adjunctoris " masculine ; -- [XXXFO] :: one who adds/joins/unites; proposer (that ... be added to ...); adjunctum_N_N = mkN "adjunctum" ; -- [XXXCO] :: quality, characteristic, essential feature/attribute; collateral circumstance; --- SLASHSTUFF adjunctus_A : A2 adjunctus, adjuncta -um, adjunctior -or -us, adjunctissimus -a -um -- [XXXBO] :: bound/belonging to; composite, joined in compound (word); adjacent; relevant; + adjunctus_A = mkA "adjunctus" ; -- [XXXBO] :: bound/belonging to; composite, joined in compound (word); adjacent; relevant; + adjungo_V2 = mkV2 (mkV "adjungere" "adjungo" "adjunxi" "adjunctus ") ; -- [XXXAO] :: add, attach, join to, add to, support; apply to; harness, yoke; direct; confer; adjuramentum_N_N = mkN "adjuramentum" ; -- [DXXES] :: conjuring, entreaty; adjuratio_F_N = mkN "adjuratio" "adjurationis " feminine ; -- [XLXFO] :: act of appealing to/by adjuration; swearing to/by (something); adjurator_M_N = mkN "adjurator" "adjuratoris " masculine ; -- [DXXES] :: one who conjures, conjurer; @@ -2044,8 +2176,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adjuvans_A = mkA "adjuvans" "adjuvantis"; -- [XXXEO] :: contributory (cause); adjuvatorium_N_N = mkN "adjuvatorium" ; -- [XXXFO] :: assistance, cooperation; adjuvo_V2 = mkV2 (mkV "adjuvare") ; -- [XXXAO] :: help, aid, abet, encourage, favor; cherish, sustain; be of use, be profitable; + adlabor_V = mkV "adlabi" "adlabor" "adlapsus sum " ; -- [XXXCO] :: glide/move/flow towards (w/DAT/ACC); creep up; steal into; fly (missiles); adlaboro_V = mkV "adlaborare" ; -- [XXXEO] :: make a special effort; take trouble to; adlacrimo_V = mkV "adlacrimare" ; -- [XXXEL] :: shed tears, cry, weep (at or as an accompaniment to something); + adlambo_V2 = mkV2 (mkV "adlambere" "adlambo" nonExist nonExist) ; -- [XXXFO] :: lick (of flames); adlapsus_M_N = mkN "adlapsus" "adlapsus " masculine ; -- [XXXEO] :: gliding up; gliding/stealthy approach; flowing towards or near; adlatro_V2 = mkV2 (mkV "adlatrare") ; -- [XXXCO] :: bark at; rail at; rage, roar (sea); adlaudabilis_A = mkA "adlaudabilis" "adlaudabilis" "adlaudabile" ; -- [XXXEO] :: praiseworthy, commendable; @@ -2059,7 +2193,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adlectus_M_N = mkN "adlectus" ; -- [FXXEE] :: canon-elect, one elected into collegium; adlegatio_F_N = mkN "adlegatio" "adlegationis " feminine ; -- [XXXEO] :: allegation, charge; intercession; representation made on behalf of another; adlegatus_M_N = mkN "adlegatus" "adlegatus " masculine ; -- [XXXEO] :: instigation, prompting; - adlego_V2 = mkV2 (mkV "adlegare") ; -- [XXXBO] :: depute/send as agent, commission, put up; suborn; urge/plea, lay before; allege; + adlego_V2 = mkV2 (mkV "adlegere" "adlego" "adlegi" "adlectus ") ; -- [XXXCO] :: choose, admit, elect, recruit, select, appoint; adlenimentum_N_N = mkN "adlenimentum" ; -- [DBXFS] :: soothing remedy/relief; adlevamentum_N_N = mkN "adlevamentum" ; -- [XXXEL] :: mitigation; relief, alleviation; adlevatio_F_N = mkN "adlevatio" "adlevationis " feminine ; -- [XXXEO] :: alleviation, easing; relief; lifting up, raising; @@ -2067,29 +2201,39 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adlevio_V2 = mkV2 (mkV "adleviare") ; -- [DXXES] :: lighten, make light; deal lightly/leniently with; raise up, relieve; adlevo_V2 = mkV2 (mkV "adlevare") ; -- [XXXDO] :: |smooth, smooth off, make smooth; polish; depilate; adlibentia_F_N = mkN "adlibentia" ; -- [XXXFO] :: inclination (for); + adlibesco_V = mkV "adlibescere" "adlibesco" nonExist nonExist; -- [XXXDO] :: be pleasing, gratify; be roused with desire (for); + adlicefacio_V2 = mkV2 (mkV "adlicefacere" "adlicefacio" "adlicefeci" "adlicefactus ") ; -- [XXXEO] :: entice, allure; attract, lure, seduce; adlicefio_V = mkV "adliceferi" ; -- [XXXEO] :: be/become enticed/allured/lured; (allicefacio PASS); + adlicio_V2 = mkV2 (mkV "adliciere" "adlicio" "adlexi" "adlectus ") ; -- [XXXBO] :: draw gently to, entice, lure, induce (sleep), attract, win over, encourage; + adlido_V2 = mkV2 (mkV "adlidere" "adlido" "adlisi" "adlisus ") ; -- [XXXCO] :: dash/crush against, bruise; ruin, damage; shipwreck; (PASS) suffer damage; adligamentum_N_N = mkN "adligamentum" ; -- [XXXES] :: band, binding, tie; adligatio_F_N = mkN "adligatio" "adligationis " feminine ; -- [XXXEO] :: tying or binding to supports; a bond; band; adligator_M_N = mkN "adligator" "adligatoris " masculine ; -- [XXXFO] :: one who ties or binds to a support; adligatura_F_N = mkN "adligatura" ; -- [XXXFO] :: band, binding; adligo_V2 = mkV2 (mkV "adligare") ; -- [XXXAO] :: bind/fetter (to); bandage; hinder, impede, detain; accuse; implicate/involve in; + adlino_V2 = mkV2 (mkV "adlinere" "adlino" "adlinevi" "adlinitus ") ; -- [XXXCO] :: smear/spread/dash over (W/DAT); spread out on; adhere to; adlisio_F_N = mkN "adlisio" "adlisionis " feminine ; -- [DXXFS] :: dashing against; striking upon; adlocutio_F_N = mkN "adlocutio" "adlocutionis " feminine ; -- [XXXCO] :: address (spoken/written), manner of address; consolation; harangue, exhortation; adloquium_N_N = mkN "adloquium" ; -- [XXXCO] :: address, addressing, talk; talking to, encouragement, friendly/reassuring words; + adloquor_V = mkV "adloqui" "adloquor" "adlocutus sum " ; -- [XXXCO] :: speak to (friendly); address, harangue, make a speech (to); call on; console; adlubentia_F_N = mkN "adlubentia" ; -- [XXXFO] :: inclination (for); + adlubesco_V = mkV "adlubescere" "adlubesco" nonExist nonExist; -- [XXXEO] :: be pleasing, gratify; be roused with desire (for); adluceo_V = mkV "adlucere" ; -- [XXXDO] :: shine upon; light (torch); show/give (opportunity/chance); give/supply light; adluctor_V = mkV "adluctari" ; -- [XXXEO] :: wrestle; wrestle with (w/DAT); adludio_V = mkV "adludiare" ; -- [XXXEO] :: play/frolic (with); + adludo_V2 = mkV2 (mkV "adludere" "adludo" "adlusi" "adlusus ") ; -- [XXXCO] :: frolic/play/sport around/with, play against; jest, make mocking allusion to; + adluo_V2 = mkV2 (mkV "adluere" "adluo" "adlui" nonExist) ; -- [XXXCO] :: wash/flow past/near/against, lap; beset; bathe (person) (tears); deposit silt; adluvies_F_N = mkN "adluvies" "adluviei " feminine ; -- [XXXCL] :: |inundation, flood; overflow; superabundance; river deposited silt; floodland; adluvio_F_N = mkN "adluvio" "adluvionis " feminine ; -- [XXXCL] :: inundation, flood; overflow; land addition by silt deposition; superabundance; adluvius_A = mkA "adluvius" "adluvia" "adluvium" ; -- [XXXFS] :: alluvial, from river overflow/deposit; admaturo_V2 = mkV2 (mkV "admaturare") ; -- [XXXFO] :: hasten (an occurrence); bring to maturity, mature, ripen; admensuratio_F_N = mkN "admensuratio" "admensurationis " feminine ; -- [FLXFJ] :: admensuration; assignment of a measure; admeo_V = mkV "admeare" ; -- [DXXFS] :: go to, approach; + admetior_V = mkV "admetiri" "admetior" "admensus sum " ; -- [XXXCO] :: measure out (to); admigro_V = mkV "admigrare" ; -- [XXXFO] :: go and live with; go to a place; come to; be added to; adminiculabundus_A = mkA "adminiculabundus" "adminiculabunda" "adminiculabundum" ; -- [XXXES] :: self-supporting, supporting one's self; adminiculator_M_N = mkN "adminiculator" "adminiculatoris " masculine ; -- [XXXFO] :: assistant, supporter; one who supports; --- SLASHSTUFF adminiculatus_A : A2 adminiculatus, adminiculata -um, adminiculatior -or -us, adminiculatissimus -a -u -- [XXXFO] :: well stocked; supported; well furnished/provided; + adminiculatus_A = mkA "adminiculatus" ; -- [XXXFO] :: well stocked; supported; well furnished/provided; adminiculo_V2 = mkV2 (mkV "adminiculare") ; -- [XAXCO] :: prop (up), support (with props); support with authority; applied to adverb; adminiculor_V = mkV "adminiculari" ; -- [XAXFS] :: prop (up), support (with props) (vines); adminiculum_N_N = mkN "adminiculum" ; -- [XAXBO] :: prop (vines), pole, stake; support, stay, bulwark; means, aid, tool; auxiliary; @@ -2122,6 +2266,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg admissus_M_N = mkN "admissus" "admissus " masculine ; -- [DXXES] :: admission, letting in; admistio_F_N = mkN "admistio" "admistionis " feminine ; -- [DXXES] :: mixture, admixture, mingling; admistus_M_N = mkN "admistus" "admistus " masculine ; -- [DXXES] :: mixture, admixture, mingling; + admitto_V2 = mkV2 (mkV "admittere" "admitto" "admisi" "admissus ") ; -- [XXXAO] :: urge on, put to a gallop; let in, admit, receive; grant, permit, let go; admixtio_F_N = mkN "admixtio" "admixtionis " feminine ; -- [XXXEO] :: mixture, admixture, mingling; admixtus_A = mkA "admixtus" "admixta" "admixtum" ; -- [XXXES] :: mixed; contaminated; not simple; confused; admixtus_M_N = mkN "admixtus" "admixtus " masculine ; -- [DXXES] :: mixture, admixture, mingling; @@ -2129,6 +2274,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg admoderor_V = mkV "admoderari" ; -- [XXXFO] :: control (w/DAT); keep within limits; moderate; admodulor_V = mkV "admodulari" ; -- [DXXFS] :: harmonize/accord with; admodum_Adv = mkAdv "admodum" ; -- [XXXBO] :: very, exceedingly, greatly, quite; excessively; just so; certainly, completely; + admoenio_V2 = mkV2 (mkV "admoenire" "admoenio" "admoenivi" "admoenitus ") ; -- [XXXEO] :: bring (siege engine) into operation, draw near the walls; besiege, invest; + admolior_V = mkV "admoliri" "admolior" "admolitus sum " ; -- [XXXDO] :: struggle, exert oneself (to); put one's hand on object/task; lay violent hands; + admonefacio_V2 = mkV2 (mkV "admonefacere" "admonefacio" "admonefeci" "admonefactus ") ; -- [DXXFS] :: admonish; warn; urge; call to duty; admonefio_V = mkV "admoneferi" ; -- [DXXFS] :: be admonished/warned/urged; be called to duty; (admonefacio PASS); admoneo_V2 = mkV2 (mkV "admonere") ; -- [XXXAO] :: admonish, remind, prompt; suggest, advise, raise; persuade, urge; warn, caution; admonitio_F_N = mkN "admonitio" "admonitionis " feminine ; -- [XXXBO] :: act of reminding; reminder, recurring symptom; warning, advice; rebuke; @@ -2142,6 +2290,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg admorsus_M_N = mkN "admorsus" "admorsus " masculine ; -- [XXXEO] :: bite, biting, gnawing; admotio_F_N = mkN "admotio" "admotionis " feminine ; -- [XXXFO] :: act of moving towards/on to; application; admoveo_V2 = mkV2 (mkV "admovere") ; -- [XXXAO] :: move up, bring up/near; lean on, conduct; draw near, approach; apply, add; + admugio_V = mkV "admugire" "admugio" nonExist nonExist; -- [XAXFO] :: low (to); bellow (to); (like a bull); admulco_V2 = mkV2 (mkV "admulcare") ; -- [DXXFS] :: stroke; admurmuratio_F_N = mkN "admurmuratio" "admurmurationis " feminine ; -- [XXXEO] :: murmur of comment; murmuring; admurmuro_V = mkV "admurmurare" ; -- [XXXDO] :: murmur in protest or approval; murmur at; @@ -2150,6 +2299,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adnarro_V2 = mkV2 (mkV "adnarrare") ; -- [XXXFO] :: tell/relate (to); adnato_V = mkV "adnatare" ; -- [XXXCO] :: swim to/up to; swim beside/alongside; adnavigo_V = mkV "adnavigare" ; -- [XXXNO] :: sail to/up to/towards; sail beside/alongside; + adnecto_V2 = mkV2 (mkV "adnectere" "adnecto" "adnexui" "adnexus ") ; -- [XXXBO] :: tie on/to, tie up (ship); bind to; fasten on; attach, connect, join, annex; adnego_V2 = mkV2 (mkV "adnegare") ; -- [XXXFO] :: refuse; withhold; adnepos_M_N = mkN "adnepos" "adnepotis " masculine ; -- [XXXEO] :: great-great-great grandson; adneptis_F_N = mkN "adneptis" "adneptis " feminine ; -- [XXXFO] :: great-great-great granddaughter; @@ -2159,6 +2309,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adnicto_V = mkV "adnictare" ; -- [XXXFO] :: wink to/at; blink at; adnihilo_V2 = mkV2 (mkV "adnihilare") ; -- [EXXCN] :: annihilate, destroy, demolish, ruin, bring to nothing; adnililo_V2 = mkV2 (mkV "adnililare") ; -- [DXXCS] :: annihilate, bring to nothing; + adnitor_V = mkV "adniti" "adnitor" "adnixus sum " ; -- [XXXCO] :: lean/rest upon, support oneself, (w/genibus) kneel; strive, work, exert, try; adnius_M_N = mkN "adnius" "adnius " masculine ; -- [DXXFS] :: striving; exertion; adnixus_A = mkA "adnixus" "adnixa" "adnixum" ; -- [XXXFO] :: vehement, strenuous; adno_V = mkV "adnare" ; -- [XXXCO] :: swim to/towards, approach by swimming; sail to/towards; brought by sea (goods); @@ -2181,7 +2332,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adnuntiatrix_F_N = mkN "adnuntiatrix" "adnuntiatricis " feminine ; -- [EEXEP] :: announcer, preacher, one who announces; prophetess (Souter); adnuntio_V2 = mkV2 (mkV "adnuntiare") ; -- [XXXCO] :: announce, say, make known; report, bring news; prophesy/announce before; preach; adnuntius_A = mkA "adnuntius" "adnuntia" "adnuntium" ; -- [XXXFO] :: announcer, that brings news/announces/makes known; + adnuo_V2 = mkV2 (mkV "adnuere" "adnuo" "adnui" "adnutus ") ; -- [XXXBO] :: designate by a nod; indicate, declare; nod assent; smile on; agree to, grant; adnuto_V = mkV "adnutare" ; -- [XXXDO] :: nod (to); order/assent to by a nod; bow to; + adnutrio_V2 = mkV2 (mkV "adnutrire" "adnutrio" nonExist nonExist) ; -- [XXXFO] :: train (on); + adobruo_V2 = mkV2 (mkV "adobruere" "adobruo" "adobrui" "adobrutus ") ; -- [XXXEO] :: cover over with earth, bury; adolefactus_A = mkA "adolefactus" "adolefacta" "adolefactum" ; -- [DXXFS] :: set on fire, kindled; adoleo_V = mkV "adolere" ; -- [XXXFS] :: emit/give out a smell/odor; adoleo_V2 = mkV2 (mkV "adolere") ; -- [XEXBO] :: worship, make/burn sacrifice/offerings; cremate; destroy/treat by fire/heat; @@ -2193,9 +2347,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adolescentula_F_N = mkN "adolescentula" ; -- [XXXCO] :: young woman; very young woman; "my child"; adolescentulus_A = mkA "adolescentulus" "adolescentula" "adolescentulum" ; -- [XXXCO] :: very youthful, quite young; adolescentulus_M_N = mkN "adolescentulus" ; -- [XXXCO] :: young man; mere youth; + adolescenturio_V = mkV "adolescenturire" "adolescenturio" nonExist nonExist; -- [XXXFO] :: want to behave in a youthful manner; + adolesco_V = mkV "adolescere" "adolesco" "adolui" "adultus "; -- [XXXDO] :: grow up, mature, reach manhood/peak; become established/strong; grow, increase; adolor_V = mkV "adolari" ; -- [XXXBO] :: fawn upon (as dog); flatter (in servile manner), court; make obeisance (to); adominatio_F_N = mkN "adominatio" "adominationis " feminine ; -- [DEXFS] :: good/favorable omen; adonium_N_N = mkN "adonium" ; -- [XAXNS] :: species of southernwood (flower of golden color or blood-red); + adoperio_V2 = mkV2 (mkV "adoperire" "adoperio" "adoperui" "adopertus ") ; -- [XXXEO] :: cover, cover over; adoperte_Adv = mkAdv "adoperte" ; -- [XXXES] :: covertly, in a dark/mysterious manner; adopertum_N_N = mkN "adopertum" ; -- [XEXFO] :: religious secrets (pl.), mysteries; adopertus_A = mkA "adopertus" "adoperta" "adopertum" ; -- [XXXCO] :: covered, overspread; clothed; veiled, disguised, hiding; shut, closed; @@ -2221,6 +2378,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adoreum_N_N = mkN "adoreum" ; -- [XAXEO] :: emmer wheat, spelt; adoreus_A = mkA "adoreus" "adorea" "adoreum" ; -- [XAXDO] :: pertaining to/consisting of emmer wheat/spelt; adoria_F_N = mkN "adoria" ; -- [XXXDO] :: glory, distinction; + adorio_V2 = mkV2 (mkV "adorire" "adorio" nonExist "adoritus ") ; -- [XWXBO] :: |improperly influence; undertake/try/attempt/come to grips; begin/set to work; + adorior_V = mkV "adoriri" "adorior" "adortus sum " ; -- [XWXBO] :: |improperly influence; undertake/try/attempt/come to grips; begin/set to work; adoriosus_A = mkA "adoriosus" "adoriosa" "adoriosum" ; -- [DXXFS] :: celebrated, that has often obtained the adorea - prize; adorium_N_N = mkN "adorium" ; -- [XAXEO] :: emmer wheat, spelt; adornate_Adv = mkAdv "adornate" ; -- [XXXFO] :: elegantly, in a polished manner; @@ -2229,18 +2388,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adosculor_V = mkV "adosculari" ; -- [XXXFS] :: give a kiss to; adpagineculus_M_N = mkN "adpagineculus" ; -- [XTXFO] :: kind of decorative attachment (archit.); adpalis_A = mkA "adpalis" "adpalis" "adpale" ; -- [XXXFS] :: greasy, fatty; of/with fat/grease; + adpango_V2 = mkV2 (mkV "adpangere" "adpango" "adpegi" "adpactus ") ; -- [DXXFS] :: fasten to; adparamentum_N_N = mkN "adparamentum" ; -- [DXXFS] :: preparation, preparing; that which is prepared; adparate_Adv =mkAdv "adparate" "adparatius" "adparatissime" ; -- [XXXCO] :: sumptuously; adparatio_F_N = mkN "adparatio" "adparationis " feminine ; -- [XXXCO] :: careful preparation; task/act of providing; provisions; designing, construction; adparator_M_N = mkN "adparator" "adparatoris " masculine ; -- [XEXFO] :: official who sacrifices to the Magna Mater; adparatorium_N_N = mkN "adparatorium" ; -- [XEXFO] :: place/room where preparations were made for sacrifice; adparatrix_F_N = mkN "adparatrix" "adparatricis " feminine ; -- [DXXFS] :: she who prepares (sacrifices); --- SLASHSTUFF adparatus_A : A2 adparatus, adparata -um, adparatior -or -us, adparatissimus -a -um -- [XXXCO] :: prepared, equipped, ready; splendid, elaborate, well-appointed; labored; + adparatus_A = mkA "adparatus" ; -- [XXXCO] :: prepared, equipped, ready; splendid, elaborate, well-appointed; labored; adparatus_M_N = mkN "adparatus" "adparatus " masculine ; -- [XXXAO] :: preparation; instruments, equipment, supplies, stock; splendor, pomp, trappings; adparens_A = mkA "adparens" "adparentis"; -- [XXXCO] :: exposed to the air; exposed to view, visible; perceptible, audible; apparent; adparentia_F_N = mkN "adparentia" ; -- [DXXES] :: becoming visible, appearing, appearance; external appearance; adpareo_V = mkV "adparere" ; -- [XXXAO] :: appear; be evident/visible/noticed/found; show up, occur; serve (w/DAT); + adparesco_V = mkV "adparescere" "adparesco" nonExist nonExist; -- [DXXES] :: begin to appear; adparet_V0 = mkV0 "adparet" ; -- [XXXBO] :: it is apparent/evident/clear/certain/visible/noticeable/found; it appears; + adpario_V2 = mkV2 (mkV "adparere" "adpario" nonExist nonExist) ; -- [XXXFO] :: acquire, gain in addition; adparitio_F_N = mkN "adparitio" "adparitionis " feminine ; -- [XXXCO] :: service, attendance; servants, attendants; provision, supplying, preparation; adparitor_M_N = mkN "adparitor" "adparitoris " masculine ; -- [XLXCO] :: civil servant; lictor, clerk; attendant on a magistrate; adparitorius_A = mkA "adparitorius" "adparitoria" "adparitorium" ; -- [XLXFO] :: of/for an apparitor (civil servant; lictor, clerk; attendant on a magistrate); @@ -2252,47 +2414,59 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adpellator_M_N = mkN "adpellator" "adpellatoris " masculine ; -- [XXXCO] :: appellant, one who appeals; adpellatorius_A = mkA "adpellatorius" "adpellatoria" "adpellatorium" ; -- [XXXEO] :: of/used in appeals; adpellito_V = mkV "adpellitare" ; -- [XXXCO] :: call or name (frequently or habitually); - adpello_V2 = mkV2 (mkV "adpellare") ; -- [XXXAO] :: call (upon); address; dun; solicit; appeal (to); bring to court; accuse; name; + adpello_V2 = mkV2 (mkV "adpellere" "adpello" "adpuli" "adpulsus ") ; -- [XXXBO] :: drive to, move up, bring along, force towards; put ashore at, land (ship); adpendeo_V = mkV "adpendere" ; -- [XLXFO] :: to be pending; adpendicula_F_N = mkN "adpendicula" ; -- [XXXFO] :: small addition/appendix/annex; appendage; adpendicum_N_N = mkN "adpendicum" ; -- [DXXFS] :: appendage; adpendix_F_N = mkN "adpendix" "adpendicis " feminine ; -- [XXXCO] :: appendix, supplement, annex; appendage, adjunct; hanger on; barberry bush/fruit; + adpendo_V2 = mkV2 (mkV "adpendere" "adpendo" "adpendi" "adpensus ") ; -- [XXXCO] :: weigh out; pay/give out; hang, cause to be suspended; adpensor_M_N = mkN "adpensor" "adpensoris " masculine ; -- [DXXFS] :: weigher, he who weighs out; adpertineo_V = mkV "adpertinere" ; -- [XXXFS] :: belong to, appertain to; (w/DAT or ad); adpetens_A = mkA "adpetens" "adpetentis"; -- [XXXCO] :: eager/greedy/having appetite for (w/GEN), desirous; avaricious/greedy/covetous; adpetenter_Adv = mkAdv "adpetenter" ; -- [XXXEO] :: greedily, avidly; adpetentia_F_N = mkN "adpetentia" ; -- [XXXCO] :: desire, longing after, appetite for; adpetibilis_A = mkA "adpetibilis" "adpetibilis" "adpetibile" ; -- [XXXFO] :: be sought after, desirable; + adpetisso_V2 = mkV2 (mkV "adpetissere" "adpetisso" nonExist nonExist) ; -- [XXXFO] :: seek eagerly after; adpetitio_F_N = mkN "adpetitio" "adpetitionis " feminine ; -- [XXXCO] :: desire, appetite; action of trying to reach/grasp, stretching out for; grasping; adpetitor_M_N = mkN "adpetitor" "adpetitoris " masculine ; -- [XXXFO] :: one who has a desire/liking for (something); adpetitus_M_N = mkN "adpetitus" "adpetitus " masculine ; -- [XXXCO] :: appetite, desire; esp. natural/instinctive desire; adpeto_M_N = mkN "adpeto" "adpetonis " masculine ; -- [XXXFO] :: one who is covetous; + adpeto_V2 = mkV2 (mkV "adpetere" "adpeto" "adpetivi" "adpetitus ") ; -- [XXXAO] :: seek/grasp after, desire; assail; strive eagerly/long for; approach, near; + adpiciscor_V = mkV "adpicisci" "adpiciscor" nonExist ; -- [XXXFO] :: bargain?; + adpingo_V2 = mkV2 (mkV "adpingere" "adpingo" nonExist nonExist) ; -- [DXXFS] :: |fasten/join to; + adplaudo_V2 = mkV2 (mkV "adplaudere" "adplaudo" "adplausi" "adplausus ") ; -- [XXXCO] :: strike together; clap, applaud; strike, slap; dash to the ground (w/terrae); adplausor_M_N = mkN "adplausor" "adplausoris " masculine ; -- [XGXFS] :: one expressing agreement/approval/pleasure/satisfaction by clapping hands; adplausus_M_N = mkN "adplausus" "adplausus " masculine ; -- [XXXFO] :: flapping/beating of wings; adplex_A = mkA "adplex" "adplicis"; -- [DXXFS] :: closely joined/attached to; adplicatio_F_N = mkN "adplicatio" "adplicationis " feminine ; -- [XXXCO] :: application, inclination; joining, attaching; attachment of client to patron; adplicatus_A = mkA "adplicatus" "adplicata" "adplicatum" ; -- [XXXCO] :: situated close (to town w/DAT); clinging to (side of hill); devoted (to); adplico_V2 = mkV2 (mkV "adplicare") ; -- [DXXAX] :: connect, place near, bring into contact; land (ship); adapt; apply/devote to; + adplodo_V2 = mkV2 (mkV "adplodere" "adplodo" "adplosi" "adplosus ") ; -- [XXXEO] :: strike together; clap, applaud; strike, slap; dash to the ground (w/terrae); adploro_V = mkV "adplorare" ; -- [XXXFS] :: lament, weep at/on account of; deplore (thing); adpluda_F_N = mkN "adpluda" ; -- [XAXEO] :: chaff; adplumbator_M_N = mkN "adplumbator" "adplumbatoris " masculine ; -- [XXXFO] :: solderer; adplumbo_V2 = mkV2 (mkV "adplumbare") ; -- [XXXFO] :: solder, solder on, affix by soldering, close/seal by soldering/with solder; + adpono_V2 = mkV2 (mkV "adponere" "adpono" "adposui" "adpositus ") ; -- [XXXAO] :: place near, set before/on table, serve up; put/apply/add to; appoint/assign; adporrectus_A = mkA "adporrectus" "adporrecta" "adporrectum" ; -- [XXXFO] :: stretched out near/beside; adportatio_F_N = mkN "adportatio" "adportationis " feminine ; -- [XXXFO] :: conveyance to, carrying to; adporto_V2 = mkV2 (mkV "adportare") ; -- [XXXBO] :: carry/convey/bring (to); import; present (play); bring (news); make one's way; + adposco_V2 = mkV2 (mkV "adposcere" "adposco" nonExist nonExist) ; -- [XXXFO] :: demand in addition; adposite_Adv = mkAdv "adposite" ; -- [XXXFO] :: in a manner suited (to); suitably, appositely; adpositio_F_N = mkN "adpositio" "adpositionis " feminine ; -- [XXXFO] :: comparison, action of comparing; adpositum_N_N = mkN "adpositum" ; -- [XGXFO] :: adjective, epithet; --- SLASHSTUFF adpositus_A : A2 adpositus, adposita -um, adpositior -or -us, adpositissimus -a -um -- [XXXBO] :: adjacent, near, accessible, akin; opposite; fit, appropriate, apt; based upon; + adpositus_A = mkA "adpositus" ; -- [XXXBO] :: adjacent, near, accessible, akin; opposite; fit, appropriate, apt; based upon; adpositus_M_N = mkN "adpositus" "adpositus " masculine ; -- [XBXNO] :: application (of medicine); adpostulo_V2 = mkV2 (mkV "adpostulare") ; -- [DXXFS] :: beg/entreaty/solicit importunately/persistently/troublesomely/pressingly; adpotus_A = mkA "adpotus" "adpota" "adpotum" ; -- [XXXEO] :: drunk, intoxicated; adprecor_V = mkV "adprecari" ; -- [XEXEO] :: address prayer to, pray to , invoke, beseech; + adprehendo_V2 = mkV2 (mkV "adprehendere" "adprehendo" "adprehendi" "adprehensus ") ; -- [XXXAO] :: seize (upon), grasp, cling to, lay hold of; apprehend; embrace; overtake; adprehensibil_A = mkA "adprehensibil" "adprehensibilis"; -- [DXXES] :: intelligible, understandable, that can be understood; adprehensio_F_N = mkN "adprehensio" "adprehensionis " feminine ; -- [DXXES] :: seizing upon, laying hold of; apprehension, understanding; + adprendo_V2 = mkV2 (mkV "adprendere" "adprendo" "adprendi" "adprensus ") ; -- [XXXAO] :: seize (upon), grasp, cling to, lay hold of; apprehend; embrace; overtake; adprenso_V2 = mkV2 (mkV "adprensare") ; -- [XXXFO] :: snatch at; adpretio_V2 = mkV2 (mkV "adpretiare") ; -- [DEXCS] :: value, set/estimate a price, appraise; purchase, buy; appropriate to one's self; adprime_Adv = mkAdv "adprime" ; -- [XXXCO] :: to the highest degree, to a high degree, extremely, especially, very; + adprimo_V2 = mkV2 (mkV "adprimere" "adprimo" "adpressi" "adpressus ") ; -- [XXXEO] :: press on/to; clench (the teeth); adprimus_A = mkA "adprimus" "adprima" "adprimum" ; -- [XXXEO] :: very first, most excellent; adprobatio_F_N = mkN "adprobatio" "adprobationis " feminine ; -- [XXXBO] :: approbation, giving approval; proof, confirmation; decision; adprobator_M_N = mkN "adprobator" "adprobatoris " masculine ; -- [XXXEO] :: one who approves; @@ -2300,6 +2474,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adprobo_V2 = mkV2 (mkV "adprobare") ; -- [XXXAO] :: approve, commend, endorse; prove; confirm; justify; allow; make good; adprobus_A = mkA "adprobus" "adproba" "adprobum" ; -- [XXXEO] :: excellent, worthy; adpromissor_M_N = mkN "adpromissor" "adpromissoris " masculine ; -- [XXXEO] :: one who promises/gives security on behalf of another; + adpromitto_V2 = mkV2 (mkV "adpromittere" "adpromitto" "adpromisi" "adpromissus ") ; -- [XXXEO] :: promise in addition (to another), promise also; adprono_V2 = mkV2 (mkV "adpronare") ; -- [XXXEO] :: lean forwards; adpropero_V = mkV "adproperare" ; -- [XXXCO] :: hasten, hurry, come hastily, make haste; accelerate, speed up; adpropinquatio_F_N = mkN "adpropinquatio" "adpropinquationis " feminine ; -- [XXXEO] :: approach, drawing near; @@ -2310,30 +2485,36 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adproximo_V2 = mkV2 (mkV "adproximare") ; -- [DXXFS] :: be/draw/come close/near to, approach; adpugno_V2 = mkV2 (mkV "adpugnare") ; -- [XXXCO] :: attack, assault; adpulsus_M_N = mkN "adpulsus" "adpulsus " masculine ; -- [XXXCO] :: bringing/driving to (cattle) (/right to); landing; approach; influence, impact; --- adque_Conj : Conj adque -- [XXXCO] :: and, as well as, as soon as; together with; and even; and too/also/now; yet; --- adqui_Conj : Conj adqui -- [XXXES] :: but, yet, notwithstanding, however, rather, well/but now; and yet, still; + adque_Conj = mkConj "adque" missing ; -- [XXXCO] :: and, as well as, as soon as; together with; and even; and too/also/now; yet; + adqui_Conj = mkConj "adqui" missing ; -- [XXXES] :: but, yet, notwithstanding, however, rather, well/but now; and yet, still; + adquiesco_V = mkV "adquiescere" "adquiesco" "adquievi" "adquietus "; -- [XXXBO] :: lie with (w/cum), rest, relax; repose (in death); acquiesce, assent; subside; adquietantia_F_N = mkN "adquietantia" ; -- [FLBFY] :: safety; exemption; surrender; adquieto_V = mkV "adquietare" ; -- [FLXFJ] :: discharge (a debt); --- adquin_Conj : Conj adquin -- [XXXEO] :: but, yet, notwithstanding, however, rather, well/but now; and yet, still; + adquin_Conj = mkConj "adquin" missing ; -- [XXXEO] :: but, yet, notwithstanding, however, rather, well/but now; and yet, still; + adquiro_V2 = mkV2 (mkV "adquirere" "adquiro" "adquisivi" "adquisitus ") ; -- [XXXBO] :: acquire besides/in addition, obtain, gain, win, get; add to stock; accrue; adquisitio_F_N = mkN "adquisitio" "adquisitionis " feminine ; -- [XXXDO] :: acquisition; additional source of supply; adquisitrix_F_N = mkN "adquisitrix" "adquisitricis " feminine ; -- [XXXIO] :: acquirer (female); adquisitus_A = mkA "adquisitus" "adquisita" "adquisitum" ; -- [XXXFO] :: strained, recherche; adquo_Adv = mkAdv "adquo" ; -- [XXXES] :: how far, as far as, as much as; adrachne_F_N = mkN "adrachne" "adrachnes " feminine ; -- [XAXNS] :: wild strawberry tree; + adrado_V2 = mkV2 (mkV "adradere" "adrado" "adrasi" "adrasus ") ; -- [XXXEO] :: shave/scrape/pare close; trim; fleece; [~ cacumen => lop off]; adralis_A = mkA "adralis" "adralis" "adrale" ; -- [DLXFS] :: of a pledge/security; adrectarium_N_N = mkN "adrectarium" ; -- [XTXFO] :: vertical post, upright; adrectarius_A = mkA "adrectarius" "adrectaria" "adrectarium" ; -- [DTXES] :: erect, in an erect position, perpendicular; --- SLASHSTUFF adrectus_A : A2 adrectus, adrecta -um, adrectior -or -us, adrectissimus -a -um -- [XXXEL] :: erect, perpendicular, upright, standing; steep, precipitous; excited, eager; + adrectus_A = mkA "adrectus" ; -- [XXXEL] :: erect, perpendicular, upright, standing; steep, precipitous; excited, eager; adremigo_V = mkV "adremigare" ; -- [XXXEO] :: row up to/towards; adrenalinum_N_N = mkN "adrenalinum" ; -- [GBXEK] :: adrenaline; + adrepo_V = mkV "adrepere" "adrepo" "adrepsi" "adreptus "; -- [XXXCO] :: creep/move stealthily towards, steal up; feel one's way, worm one's way (trust); adrepticius_A = mkA "adrepticius" "adrepticia" "adrepticium" ; -- [DXXES] :: seized/possessed (in mind), inspired; raving, delirious; adreptitius_A = mkA "adreptitius" "adreptitia" "adreptitium" ; -- [DXXES] :: seized/possessed (in mind), inspired; raving, delirious; adreptius_A = mkA "adreptius" "adreptia" "adreptium" ; -- [DXXFS] :: seized/possessed (in mind), inspired; raving, delirious; adreptivus_A = mkA "adreptivus" "adreptiva" "adreptivum" ; -- [DXXFZ] :: seized/possessed (in mind), inspired; raving, delirious; (Bianchi); adrideo_V = mkV "adridere" ; -- [XXXCO] :: smile at/upon; please, be pleasing/satisfactory (to); be/seem familiar (to); - adrigo_V2 = mkV2 (mkV "adrigare") ; -- [XAXFO] :: water (plants), moisten the soil around; + adrigo_V2 = mkV2 (mkV "adrigere" "adrigo" "adrexi" "adrectus ") ; -- [XXXBO] :: set upright, tilt upwards, stand on end, raise; become sexually excited/aroused; + adripio_V2 = mkV2 (mkV "adripere" "adripio" "adripui" "adreptus ") ; -- [XXXAO] :: take hold of; seize (hand/tooth/claw), snatch; arrest; assail; pick up, absorb; adrisio_F_N = mkN "adrisio" "adrisionis " feminine ; -- [XXXFL] :: smile of approval; action of smiling (at/on); adrisor_M_N = mkN "adrisor" "adrisoris " masculine ; -- [XXXFO] :: one who smiles (at a person), smiler; flatterer, fawner (L+S); + adrodo_V2 = mkV2 (mkV "adrodere" "adrodo" "adrosi" "adrosus ") ; -- [XXXCO] :: gnaw/nibble (away part); erode, eat away(disease/chemicals). wash away (water); adrogans_A = mkA "adrogans" "adrogantis"; -- [XXXBO] :: arrogant, insolent, overbearing; conceited; presumptuous, assuming; adroganter_Adv =mkAdv "adroganter" "adrogentius" "adrogentissime" ; -- [XXXCO] :: insolently, arrogantly, haughtily; presumptuously; in a conceited manner; adrogantia_F_N = mkN "adrogantia" ; -- [XXXCO] :: insolence, arrogance, conceit, haughtiness; presumption; @@ -2343,14 +2524,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adroro_V = mkV "adrorare" ; -- [DXXFS] :: moisten, bedew; adrosor_M_N = mkN "adrosor" "adrosoris " masculine ; -- [XXXFO] :: one who nibbles/gnaws at; adrotans_A = mkA "adrotans" "adrotantis"; -- [DXXFS] :: in a winding/circular motion, turning; wavering; + adruo_V2 = mkV2 (mkV "adruere" "adruo" "adrui" "adrutus ") ; -- [XXXFO] :: heap up (earth); cover (with earth), bury; adscendens_A = mkA "adscendens" "adscendentis"; -- [XXXFS] :: of/for climbing (machine); enabling one to climb; adscendibilis_A = mkA "adscendibilis" "adscendibilis" "adscendibile" ; -- [XXXFO] :: climbable, that can be climbed; + adscendo_V2 = mkV2 (mkV "adscendere" "adscendo" "adscendi" "adscensus ") ; -- [XXXAO] :: climb; go/climb up; mount, scale; mount up, embark; rise, ascend, move upward; adscensio_F_N = mkN "adscensio" "adscensionis " feminine ; -- [XXXEO] :: ascent; progress, advancement; rising series/flight of stairs; soaring; adscensor_M_N = mkN "adscensor" "adscensoris " masculine ; -- [DXXES] :: one who ascends/rises; one who mounts a horse/chariot, rider, charioteer; adscensus_M_N = mkN "adscensus" "adscensus " masculine ; -- [XXXBO] :: ascent; act of scaling (walls); approach; a stage/step in advancement; height; adscessio_F_N = mkN "adscessio" "adscessionis " feminine ; -- [XXXEO] :: removal; loss, separation, going away; diminution; + adscio_V2 = mkV2 (mkV "adscire" "adscio" nonExist nonExist) ; -- [XXXDO] :: take to/up; associate, admit; adopt as one's own; take upon (General's) staff; + adscisco_V2 = mkV2 (mkV "adsciscere" "adscisco" "adscivi" "adscitus ") ; -- [XXXAO] :: adopt, assume; receive, admit, approve of, associate; take over, claim; adscitus_A = mkA "adscitus" "adscita" "adscitum" ; -- [XXXES] :: derived, assumed; foreign; adscitus_M_N = mkN "adscitus" "adscitus " masculine ; -- [XXXFS] :: acceptance, reception; + adscribo_V2 = mkV2 (mkV "adscribere" "adscribo" "adscripsi" "adscriptus ") ; -- [XXXAO] :: add/state in writing, insert; appoint; enroll, enfranchise; reckon, number; adscripticius_A = mkA "adscripticius" "adscripticia" "adscripticium" ; -- [XWXEO] :: enrolled in addition (as citizen/soldier); adscriptio_F_N = mkN "adscriptio" "adscriptionis " feminine ; -- [XXXEO] :: addendum, addition in writing; adscriptivus_A = mkA "adscriptivus" "adscriptiva" "adscriptivum" ; -- [XWXEO] :: enrolled in addition (as a soldier), supernumerary; @@ -2364,6 +2550,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adsecutor_M_N = mkN "adsecutor" "adsecutoris " masculine ; -- [DXXFS] :: attendant; adsedo_M_N = mkN "adsedo" "adsedonis " masculine ; -- [XLXES] :: assessor, counselor, one who sits by to give advice; adsellor_V = mkV "adsellari" ; -- [DBXFS] :: defecate, void; + adsenesco_V = mkV "adsenescere" "adsenesco" nonExist nonExist; -- [DXXFS] :: become old (to any thing); adsensio_F_N = mkN "adsensio" "adsensionis " feminine ; -- [XXXCO] :: assent, agreement, belief; approval, approbation, applause; adsensor_M_N = mkN "adsensor" "adsensoris " masculine ; -- [XXXDO] :: one who agrees or approves; adsensus_M_N = mkN "adsensus" "adsensus " masculine ; -- [XXXCO] :: assent, agreement, belief; approval, approbation, applause; @@ -2372,14 +2559,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adsentator_M_N = mkN "adsentator" "adsentatoris " masculine ; -- [XXXCO] :: yes-man, flatterer, toady; adsentatorie_Adv = mkAdv "adsentatorie" ; -- [XXXFO] :: like a flatterer; fawningly, in a flattering manner; adsentatrix_F_N = mkN "adsentatrix" "adsentatricis " feminine ; -- [XXXFO] :: woman who flatters; + adsentio_V = mkV "adsentire" "adsentio" "adsensi" "adsensus "; -- [XXXCO] :: assent, approve, agree in opinion; admit the truth of (w/DAT), agree (with); + adsentior_V = mkV "adsentiri" "adsentior" "adsensus sum " ; -- [XXXBO] :: assent to, agree, approve, comply with; admit the truth of (w/PREP); adsentor_V = mkV "adsentari" ; -- [XXXCO] :: flatter, humor; agree, assent, confirm; agree to everything; adsequela_F_N = mkN "adsequela" ; -- [DXXFS] :: succession, succeeding; + adsequor_V = mkV "adsequi" "adsequor" "adsecutus sum " ; -- [XXXAO] :: follow on, pursue, go after; overtake; gain, achieve; equal, rival; understand; adser_M_N = mkN "adser" "adseris " masculine ; -- [XXXCO] :: pole (wooden), post, stake, beam; joist, rafter; pole of a litter; + adsero_V2 = mkV2 (mkV "adserere" "adsero" "adsevi" "adsitus ") ; -- [XXXDO] :: plant/set at/near; adsertio_F_N = mkN "adsertio" "adsertionis " feminine ; -- [XXXDO] :: act of claiming free or slave (for status); defense/vindication (of character); adsertor_M_N = mkN "adsertor" "adsertoris " masculine ; -- [XXXCO] :: one asserting status of another; restorer of liberty, protector, champion; adsertorius_A = mkA "adsertorius" "adsertoria" "adsertorium" ; -- [DLXFS] :: of/pertaining to a restoration of freedom; adsertum_N_N = mkN "adsertum" ; -- [DGXES] :: assertion; --- adservio_V2 : V4 adservio, adservire, adservivi, adservitus -- Declension: 4th -- Case: DAT -- Comment: [XXXFO] :: devote/apply oneself to (w/DAT); aid, help, assist; + adservio_V2 = mkV2 (mkV "adservire" "adservio" "adservivi" "adservitus ") Dat_Prep ; -- [XXXFO] :: devote/apply oneself to (w/DAT); aid, help, assist; adservo_V2 = mkV2 (mkV "adservare") ; -- [XXXBO] :: keep, guard, preserve; watch, observe; keep in custody; save life of, rescue; adsessio_F_N = mkN "adsessio" "adsessionis " feminine ; -- [XXXFO] :: sitting beside one (to console/give advice); adsessor_M_N = mkN "adsessor" "adsessoris " masculine ; -- [XLXDO] :: assessor, counselor, one who sits by to give advice; @@ -2393,19 +2584,22 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adseveratio_F_N = mkN "adseveratio" "adseverationis " feminine ; -- [XXXCO] :: affirmation, (confident/earnest) assertion; seriousness/earnestness, gravity; adsevero_V2 = mkV2 (mkV "adseverare") ; -- [XXXCO] :: act earnestly; assert strongly/emphatically, declare; profess; be serious; adsibilo_V2 = mkV2 (mkV "adsibilare") ; -- [XXXFO] :: hiss out (breath) upon (w/DAT); + adsiccesco_V = mkV "adsiccescere" "adsiccesco" "adsiccui" nonExist; -- [XXXFO] :: dry out, become dry; adsicco_V2 = mkV2 (mkV "adsiccare") ; -- [XXXDO] :: dry, dry out, dry up, make dry; adsideo_V = mkV "adsidere" ; -- [XXXBO] :: sit by/in council/as assessor; watch over; camp near, besiege; resemble (w/DAT); + adsido_V = mkV "adsidere" "adsido" "adsedi" nonExist; -- [XXXCO] :: sit down, take a seat; perch, alight, settle; sit by/near (to) (w/DAT); adsidue_Adv =mkAdv "adsidue" "assiduius" "adsiduissime" ; -- [XXXCO] :: continually, constantly, regularly; adsiduitas_F_N = mkN "adsiduitas" "adsiduitatis " feminine ; -- [XXXCO] :: attendance, constant presence/attention/practice, care; recurrence, repetition; adsiduo_Adv = mkAdv "adsiduo" ; -- [XXXDO] :: continually, constantly, regularly; adsiduo_V2 = mkV2 (mkV "adsiduare") ; -- [XXXFS] :: apply constantly; make constant use of (Souter); use regularly/incessantly; --- SLASHSTUFF adsiduus_A : A2 adsiduus, adsidua -um, adsiduior -or -us, adsiduissimus -a -um -- [XXXAO] :: constant, regular; unremitting, incessant; ordinary; landowning, first-class; + adsiduus_A = mkA "adsiduus" ; -- [XXXAO] :: constant, regular; unremitting, incessant; ordinary; landowning, first-class; adsiduus_M_N = mkN "adsiduus" ; -- [XXXES] :: tribute/tax payer, rich person; first-rate person/writer?; adsifornus_A = mkA "adsifornus" "adsiforna" "adsifornum" ; -- [XDXIO] :: touring gladiatorial show; adsignatio_F_N = mkN "adsignatio" "adsignationis " feminine ; -- [XLXCO] :: distribution/allotment of land; the plot of land granted; allocation (other); adsignator_M_N = mkN "adsignator" "adsignatoris " masculine ; -- [XLXFO] :: allocator, one who assigns; adsignifico_V2 = mkV2 (mkV "adsignificare") ; -- [XXXDO] :: show (w/ACC + INF), make evident; mean/denote (words); adsigno_V2 = mkV2 (mkV "adsignare") ; -- [XXXAO] :: assign, distribute, allot; award, bestow (rank/honors); impute; affix seal; + adsilio_V2 = mkV2 (mkV "adsilire" "adsilio" "adsilui" "adsultus ") ; -- [XXXBO] :: jump/leap (up/on/towards), rush/dash (at/against), assault; mount (male-female); adsimilanter_Adv = mkAdv "adsimilanter" ; -- [XXXEO] :: similarly, analogically; adsimilatio_F_N = mkN "adsimilatio" "adsimilationis " feminine ; -- [XXXDS] :: likeness, similarity in form; comparison; deceit, pretense, feigning, pretending adsimilatus_A = mkA "adsimilatus" "adsimilata" "adsimilatum" ; -- [XXXES] :: similar, like, made similar; imitated, feigned, pretended. dissembled; @@ -2418,6 +2612,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adsimulatus_A = mkA "adsimulatus" "adsimulata" "adsimulatum" ; -- [XXXES] :: similar, like, made similar; imitated, feigned, pretended. dissembled; adsimuliter_Adv = mkAdv "adsimuliter" ; -- [XXXFS] :: similarly, in much the same manner/fashion; adsimulo_V2 = mkV2 (mkV "adsimulare") ; -- [XXXAO] :: make like; compare; counterfeit, simulate, imitate, pretend, feign, act a part; + adsisto_V2 = mkV2 (mkV "adsistere" "adsisto" "adstiti" "adstatus ") ; -- [XXXBO] :: take a position/stand (near/by), attend; appear before; set/place near; adsistrix_F_N = mkN "adsistrix" "adsistricis " feminine ; -- [XLXFS] :: assessor (female), counselor, one who sits by to give advice; adsitus_A = mkA "adsitus" "adsita" "adsitum" ; -- [XXXEO] :: planted/set at/near; adsociatio_F_N = mkN "adsociatio" "adsociationis " feminine ; -- [FXXEE] :: association; accompaniment; escort; @@ -2428,73 +2623,98 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adsolo_V2 = mkV2 (mkV "adsolare") ; -- [DWXES] :: level to the ground, destroy; adsono_V = mkV "adsonare" ; -- [XXXDO] :: respond, reply; sound in accompaniment; sing as an accompaniment; adspargo_F_N = mkN "adspargo" "adsparginis " feminine ; -- [XXXBO] :: spray, sprinkling/scattering; moisture in form of drops; water damage; staining; --- SLASHSTUFF adspectabilis_A : A2 adspectabilis, adspectabile, adspectabilior -or -us, adspectabilissimus -a -u -- [XXXEO] :: visible, able to be seen; worthy to be seen, pleasing to look at; + adspargo_V2 = mkV2 (mkV "adspargere" "adspargo" "adsparsi" "adsparsus ") ; -- [XXXAO] :: sprinkle/strew on, splatter, splash; defile, stain; cast (slur); inflict (harm); + adspectabilis_A = mkA "adspectabilis" ; -- [XXXEO] :: visible, able to be seen; worthy to be seen, pleasing to look at; adspectamen_N_N = mkN "adspectamen" "adspectaminis " neuter ; -- [DXXFS] :: look, sight; adspecto_V2 = mkV2 (mkV "adspectare") ; -- [XXXCO] :: look/gaze at/upon; observe, watch; pay heed; face/look towards (place/person); adspectus_M_N = mkN "adspectus" "adspectus " masculine ; -- [XXXAO] :: appearance, aspect, mien; act of looking; sight, vision; glance, view; horizon; adspergo_F_N = mkN "adspergo" "adsperginis " feminine ; -- [XXXBO] :: spray, sprinkling; + adspergo_V2 = mkV2 (mkV "adspergere" "adspergo" "adspersi" "adspersus ") ; -- [XXXAO] :: sprinkle/strew on, splatter, splash; defile, stain; cast (slur); inflict (harm); adspersorium_N_N = mkN "adspersorium" ; -- [EEXEE] :: aspergillum, holy water sprinkler/brush; + adspicio_V2 = mkV2 (mkV "adspicere" "adspicio" "adspexi" "adspectus ") ; -- [XXXAO] :: look/gaze on/at, see, observe, behold, regard; face; consider, contemplate; adspiramen_N_N = mkN "adspiramen" "adspiraminis " neuter ; -- [XXXFO] :: breathing on, immission; insertion, introduction; adspiratio_F_N = mkN "adspiratio" "adspirationis " feminine ; -- [XXXCO] :: exhalation; blowing on; aspiration; sounding "h"; adspirator_M_N = mkN "adspirator" "adspiratoris " masculine ; -- [EXXEN] :: inciter; inspirer; adspiro_V = mkV "adspirare" ; -- [XXXAO] :: breathe/blow (upon); aspirate; instill, infuse; be fragrant; influence; aspire; + adspuo_V2 = mkV2 (mkV "adspuere" "adspuo" "adspui" "adsputus ") ; -- [XXXNO] :: spit (at/on); adstator_M_N = mkN "adstator" "adstatoris " masculine ; -- [XXXIO] :: aide, helper, assister; adstatus_A = mkA "adstatus" "adstata" "adstatum" ; -- [XWXDO] :: armed with a spear/spears; adstatus_M_N = mkN "adstatus" ; -- [XWXCO] :: spearman; soldier in unit in front of Roman battle-formation; its centurion; + adsterno_V2 = mkV2 (mkV "adsternere" "adsterno" "adstravi" "adstratus ") ; -- [XXXEO] :: prostrate oneself, lie prone (on); adstipulatio_F_N = mkN "adstipulatio" "adstipulationis " feminine ; -- [XXXEO] :: confirmation, confirmatory statement; adstipulator_M_N = mkN "adstipulator" "adstipulatoris " masculine ; -- [XLXDO] :: associate in a stipulation; one who supports an opinion, adherent; adstipulatus_M_N = mkN "adstipulatus" "adstipulatus " masculine ; -- [XXXNO] :: assent, agreement in a command; adstipulo_V = mkV "adstipulare" ; -- [XLXFS] :: join in stipulation/covenant; join in demanding; support (in an argument); adstipulor_V = mkV "adstipulari" ; -- [XLXDO] :: join in stipulation/covenant; join in demanding; support (in an argument); + adstituo_V2 = mkV2 (mkV "adstituere" "adstituo" "adstitui" "adstitutus ") ; -- [XXXDO] :: place near/before; make to stand before; adsto_V = mkV "adstare" ; -- [XXXBO] :: stand at/on/by/near; assist; stand up/upright/waiting/still/on one's feet; adstrangulo_V2 = mkV2 (mkV "adstrangulare") ; -- [XXXFS] :: strangle; --- TODO adstrepo_V : V2 adstrepo, adstrepere, adstrepui, - -- Declension: 3rd -- Comment: [XXXCO] :: make a noise at, shout in support, take up a cry; assail with noise; murmur; + adstrepo_V2 = mkV2 (mkV "adstrepere" "adstrepo" "adstrepui" nonExist ) ; -- [XXXCO] :: make a noise at, shout in support, take up a cry; assail with noise; murmur; adstricte_Adv =mkAdv "adstricte" "adstrictius" "adstrictissime" ; -- [XXXCO] :: tightly (bound), firmly; strictly, by strict rules; concisely, tersely, pithily; adstrictio_F_N = mkN "adstrictio" "adstrictionis " feminine ; -- [XBXNO] :: astringency, an astringent action; adstrictorius_A = mkA "adstrictorius" "adstrictoria" "adstrictorium" ; -- [XBXNO] :: astringent, binding, constrictive, styptic; (effect on organic tissue); --- SLASHSTUFF adstrictus_A : A2 adstrictus, adstricta -um, adstrictior -or -us, adstrictissimus -a -um -- [XXXBO] :: |busy/preoccupied (with), intent (on); parsimonious, tight; astringent (taste); + adstrictus_A = mkA "adstrictus" ; -- [XXXBO] :: |busy/preoccupied (with), intent (on); parsimonious, tight; astringent (taste); adstrideo_V = mkV "adstridere" ; -- [XXXFO] :: hiss (at); + adstrido_V = mkV "adstridere" "adstrido" nonExist nonExist; -- [XXXFO] :: hiss (at); + adstringo_V2 = mkV2 (mkV "adstringere" "adstringo" "adstrinxi" "adstrictus ") ; -- [XXXAO] :: |oblige, commit; compress, narrow, restrict; knit (brows); freeze, solidify; adstructio_F_N = mkN "adstructio" "adstructionis " feminine ; -- [DGXES] :: accumulation of proof, putting together, composition; adstructor_M_N = mkN "adstructor" "adstructoris " masculine ; -- [DGXFS] :: one who adduces/brings forward/cites/alleges proof; + adstruo_V2 = mkV2 (mkV "adstruere" "adstruo" "adstruxi" "adstructus ") ; -- [XXXBO] :: build on/additional structure; heap/pile (on); add to/on, contribute, provide; adstupeo_V = mkV "adstupere" ; -- [XXXDO] :: be stunned/astounded/astonished/amazed (at); be enthralled (by) (w/DAT); + adsubrigo_V2 = mkV2 (mkV "adsubrigere" "adsubrigo" nonExist nonExist) ; -- [XXXNO] :: stretch up, raise; + adsudesco_V = mkV "adsudescere" "adsudesco" nonExist nonExist; -- [XXXEO] :: sweat, break out in a sweat; + adsuefacio_V2 = mkV2 (mkV "adsuefacere" "adsuefacio" "adsuefeci" "adsuefactus ") ; -- [XXXCO] :: accustom (to), habituate, inure; make accustomed/used (to), train; adsuefio_V = mkV "adsueferi" ; -- [XXXCO] :: be/become accustomed (to), be habituated; be trained; (adsuefacio PASS); + adsuesco_V2 = mkV2 (mkV "adsuescere" "adsuesco" "adsuevi" "adsuetus ") ; -- [XXXBO] :: accustom, become/grow accustomed to/used to/intimate with; make familiar; adsuetudo_F_N = mkN "adsuetudo" "adsuetudinis " feminine ; -- [XXXCO] :: custom, habit; repeated practice/experience/association; intimacy, intercourse; adsuetus_A = mkA "adsuetus" "adsueta" "adsuetum" ; -- [XXXBO] :: accustomed, customary, usual, to which one is accustomed/used; + adsugo_V2 = mkV2 (mkV "adsugere" "adsugo" "adsuxi" "adsuctus ") ; -- [XXXFO] :: suck towards; adsultim_Adv = mkAdv "adsultim" ; -- [XXXNO] :: by leaps, by hops; by leaps and bounds; adsulto_V = mkV "adsultare" ; -- [XWXCO] :: jump/leap at/towards/upon; dash against; attack, assault, make an attack (on); adsultus_M_N = mkN "adsultus" "adsultus " masculine ; -- [XWXEO] :: attack, assault, charge; adsum_V = mkV "adesse" "adsum" "arfui" "arfuturus " ; -- Comment: [BXXCS] :: be near, be present, be in attendance, arrive, appear; aid (w/DAT); adsumentum_N_N = mkN "adsumentum" ; -- [DXXFS] :: that which is to be sewed upon, that which is to be patched; + adsumo_V2 = mkV2 (mkV "adsumere" "adsumo" "adsumpsi" "adsumptus ") ; -- [XXXAO] :: take (to/up/on/from), adopt/raise, use; assume/receive; insert/add; usurp/claim; adsumptio_F_N = mkN "adsumptio" "adsumptionis " feminine ; -- [XXXCO] :: adoption; acquisition, assumption, claim; minor premise; introduction (point); adsumptivus_A = mkA "adsumptivus" "adsumptiva" "adsumptivum" ; -- [XGXEO] :: based on extraneous arguments (rhet., of the treatment of a case); + adsuo_V = mkV "adsuere" "adsuo" "adsui" "adsutus "; -- [XXXEO] :: sew or patch on; + adsurgo_V = mkV "adsurgere" "adsurgo" "adsurrexi" "adsurrectus "; -- [XXXAO] :: rise/stand up, rise to one's feet/from bed; climb, lift oneself; grow; soar; + adsuscipo_V2 = mkV2 (mkV "adsuscipere" "adsuscipo" nonExist nonExist) ; -- [XXXIO] :: undertake (vows); adsuspiro_V = mkV "adsuspirare" ; -- [XXXFO] :: sigh in response (to) (w/DAT); adtactus_M_N = mkN "adtactus" "adtactus " masculine ; -- [XXXDO] :: touch , contact, action of touching; adtagen_M_N = mkN "adtagen" "adtagenis " masculine ; -- [XAXDO] :: bird resembling partridge, francolin?; adtagena_F_N = mkN "adtagena" ; -- [XAXDO] :: bird resembling partridge, francolin?; adtempero_V2 = mkV2 (mkV "adtemperare") ; -- [XXXEO] :: fit, adjust; adtempto_V2 = mkV2 (mkV "adtemptare") ; -- [XXXCO] :: attack, assail; call into question; try to seduce/use; make an attempt on, try; + adtendo_V2 = mkV2 (mkV "adtendere" "adtendo" "adtendi" "adtentus ") ; -- [XXXAO] :: turn/stretch towards; apply; attend/pay (close) attention to, listen carefully; adtentatio_F_N = mkN "adtentatio" "adtentationis " feminine ; -- [DXXFS] :: attempting, attempt, trying, try; adtente_Adv =mkAdv "adtente" "adtentius" "adtentissime" ; -- [XXXCO] :: diligently, carefully, with concentration, with close attention; adtentio_F_N = mkN "adtentio" "adtentionis " feminine ; -- [XXXEO] :: attention, application, attentiveness; adtento_V2 = mkV2 (mkV "adtentare") ; -- [XXXCO] :: attack, assail; call into question; try to seduce/use; make an attempt on, try; --- SLASHSTUFF adtentus_A : A2 adtentus, adtenta -um, adtentior -or -us, adtentissimus -a -um -- [XXXCO] :: attentive, heedful; careful, conscientious, intent; frugal, economical; + adtentus_A = mkA "adtentus" ; -- [XXXCO] :: attentive, heedful; careful, conscientious, intent; frugal, economical; adtenuate_Adv = mkAdv "adtenuate" ; -- [XXXFO] :: plainly, barely; adtenuatio_F_N = mkN "adtenuatio" "adtenuationis " feminine ; -- [XXXEO] :: diminution, act of lessening, attenuation; plainness (of style); --- SLASHSTUFF adtenuatus_A : A2 adtenuatus, adtenuata -um, adtenuatior -or -us, adtenuatissimus -a -um -- [XXXEO] :: plain (style), bare, subdued; thin, impoverished; lessened, diminished; + adtenuatus_A = mkA "adtenuatus" ; -- [XXXEO] :: plain (style), bare, subdued; thin, impoverished; lessened, diminished; adtenuo_V2 = mkV2 (mkV "adtenuare") ; -- [XXXBO] :: thin (out); weaken, lessen, diminish, shrink, reduce in size; make plain; adtermino_V2 = mkV2 (mkV "adterminare") ; -- [XXXFS] :: set bounds to, measure, limit; + adtero_V2 = mkV2 (mkV "adterere" "adtero" "adtrivi" "adtritus ") ; -- [XXXBO] :: rub, rub against; grind; chafe; wear out/down/away; diminish, impair; waste; adterraneus_A = mkA "adterraneus" "adterranea" "adterraneum" ; -- [XXXFO] :: coming to the earth; earth-borne; adtertiarius_A = mkA "adtertiarius" "adtertiaria" "adtertiarium" ; -- [DXXFS] :: whole and a third; adtertiatus_A = mkA "adtertiatus" "adtertiata" "adtertiatum" ; -- [XXXFS] :: reduced/boiled down to a third; adtestatio_F_N = mkN "adtestatio" "adtestationis " feminine ; -- [XXXEO] :: testimony, attestation; adtestatus_A = mkA "adtestatus" "adtestata" "adtestatum" ; -- [XXXEO] :: confirmatory, corroboratory; adtestor_V = mkV "adtestari" ; -- [XXXEO] :: confirm, attest, bear witness to; + adtexo_V2 = mkV2 (mkV "adtexere" "adtexo" "adtexui" "adtextus ") ; -- [XXXCO] :: add, join on, link to; weave/plait on, attach by weaving; + adtigo_V2 = mkV2 (mkV "adtigere" "adtigo" "adtigi" "adtactus ") ; -- [BXXAO] :: touch, touch/border on; reach, arrive at, achieve; mention briefly; belong to; adtiguus_A = mkA "adtiguus" "adtigua" "adtiguum" ; -- [XXXDO] :: contiguous, adjoining, adjacent, neighboring; adtillo_V2 = mkV2 (mkV "adtillare") ; -- [DXXFS] :: tickle, please; adtina_F_N = mkN "adtina" ; -- [XAXFO] :: heap of stones as a boundary marker; (pl.) (L+S); adtineo_V = mkV "adtinere" ; -- [XXXAO] :: hold on/to/near/back/together/fast; restrain, keep (in custody), retain; delay; + adtingo_V2 = mkV2 (mkV "adtingere" "adtingo" "adtinxi" "adtinctus ") ; -- [XXXFO] :: wipe/smear on?; + adtinguo_V2 = mkV2 (mkV "adtinguere" "adtinguo" nonExist nonExist) ; -- [DXXFS] :: moisten, bedew, sprinkle with a liquid; adtitulo_V2 = mkV2 (mkV "adtitulare") ; -- [DLXFS] :: name, entitle; adtolero_V2 = mkV2 (mkV "adtolerare") ; -- [XXXFO] :: support, sustain, bear; + adtollo_V2 = mkV2 (mkV "adtollere" "adtollo" nonExist nonExist) ; -- [XXXAO] :: raise/lift up/towards/to a higher position; erect, build; exalt; extol, exalt; adtondeo_V2 = mkV2 (mkV "adtondere") ; -- [XXXCO] :: clip (hair close), shear; strip of money, fleece; thrash; prune, trim, crop; adtonite_Adv = mkAdv "adtonite" ; -- [XXXFS] :: frantically; bewilderedly, confoundedly; adtonitus_A = mkA "adtonitus" "adtonita" "adtonitum" ; -- [XXXBO] :: astonished, fascinated; lightning/thunder-struck, stupefied, dazed; inspired; @@ -2503,21 +2723,26 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adtractio_F_N = mkN "adtractio" "adtractionis " feminine ; -- [XXXFS] :: contraction, drawing together; adtracto_V2 = mkV2 (mkV "adtractare") ; -- [XXXCO] :: touch; lay hands on; handle (roughly), assault (sexually), violate; deal with; adtractorius_A = mkA "adtractorius" "adtractoria" "adtractorium" ; -- [DXXFS] :: attractive, having the power of attraction; --- SLASHSTUFF adtractus_A : A2 adtractus, adtracta -um, adtractior -or -us, adtractissimus -a -um -- [XXXEO] :: drawn together (brows), knit; + adtractus_A = mkA "adtractus" ; -- [XXXEO] :: drawn together (brows), knit; adtractus_M_N = mkN "adtractus" "adtractus " masculine ; -- [XXXFS] :: attraction, drawing to; + adtraho_V2 = mkV2 (mkV "adtrahere" "adtraho" "adtraxi" "adtractus ") ; -- [XXXBO] :: attract, draw/drag together/in/before/along; inhale; gather saliva; bend (bow); adtrectatio_F_N = mkN "adtrectatio" "adtrectationis " feminine ; -- [XGXEO] :: touching, handling; grammatical term for words denoting many things together; adtrectatus_M_N = mkN "adtrectatus" "adtrectatus " masculine ; -- [XXXFO] :: touching, handling, feeling; adtrecto_V2 = mkV2 (mkV "adtrectare") ; -- [XXXCO] :: touch; lay hands on; handle (roughly), assault (sexually), violate; deal with; + adtremo_V = mkV "adtremere" "adtremo" nonExist nonExist; -- [XXXFO] :: tremble (at) (w/DAT); adtrepido_V = mkV "adtrepidare" ; -- [XXXFO] :: bestir oneself; adtribulo_V2 = mkV2 (mkV "adtribulare") ; -- [XXXFS] :: thresh, press hard; + adtribuo_V2 = mkV2 (mkV "adtribuere" "adtribuo" "adtribui" "adtributus ") ; -- [XXXAO] :: assign/allot/attribute/impute to; grant, pay; appoint, put under jurisdiction; adtributio_F_N = mkN "adtributio" "adtributionis " feminine ; -- [XXXCO] :: assignment of debt; one's destined lot; grant; attribution; predicate attribute; adtributum_N_N = mkN "adtributum" ; -- [XLXFO] :: grant of public money; adtributus_A = mkA "adtributus" "adtributa" "adtributum" ; -- [XXXES] :: ascribed, attributed; assigned, allotted; adtritio_F_N = mkN "adtritio" "adtritionis " feminine ; -- [DXXES] :: rubbing/grinding against/on (something); friction, abrasion; --- SLASHSTUFF adtritus_A : A2 adtritus, adtrita -um, adtritior -or -us, adtritissimus -a -um -- [XXXCS] :: |rubbed (off/away), wasted; bruised; shameless, impudent, brazen; + adtritus_A = mkA "adtritus" ; -- [XXXCS] :: |rubbed (off/away), wasted; bruised; shameless, impudent, brazen; adtritus_M_N = mkN "adtritus" "adtritus " masculine ; -- [XXXCO] :: action/process of rubbing/grinding; friction; chafing, abrasion, bruising; adtubernalis_M_N = mkN "adtubernalis" "adtubernalis " masculine ; -- [DAXFS] :: one who lives in an adjoining hut; + adtulo_V2 = mkV2 (mkV "adtulere" "adtulo" nonExist nonExist) ; -- [AXXFS] :: bring/carry/bear to; adtumulo_V2 = mkV2 (mkV "adtumulare") ; -- [XXXNO] :: heap up against; bank up (with something); + adtuor_V = mkV "adtui" "adtuor" nonExist ; -- [XXXFO] :: observe, look at; adubi_Adv = mkAdv "adubi" ; -- [EXXEP] :: and when, but when, when; adulans_A = mkA "adulans" "adulantis"; -- [XXXFO] :: flattering, adulatory; adulater_Adv = mkAdv "adulater" ; -- [DXXES] :: flatteringly, fawningly, ingratiatingly; @@ -2534,6 +2759,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adulescentula_F_N = mkN "adulescentula" ; -- [XXXCO] :: young woman; very young woman; "my child"; adulescentulus_A = mkA "adulescentulus" "adulescentula" "adulescentulum" ; -- [XXXCO] :: very youthful, quite young; adulescentulus_M_N = mkN "adulescentulus" ; -- [XXXCO] :: young man; mere youth; + adulescenturio_V = mkV "adulescenturire" "adulescenturio" nonExist nonExist; -- [XXXFO] :: want to behave in a youthful manner; adulo_V2 = mkV2 (mkV "adulare") ; -- [XXXDS] :: fawn upon (as a dog); flatter (in a servile manner), court; make obeisance (to); adulor_V = mkV "adulari" ; -- [XXXCO] :: fawn upon (as a dog); flatter (in a servile manner), court; make obeisance (to); adulter_A = mkA "adulter" "adultera" "adulterum" ; -- [XXXCO] :: |forged/counterfeit; debased (coinage); [~ clavis => skeleton/false key]; @@ -2548,7 +2774,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adultero_V = mkV "adulterare" ; -- [XXXBO] :: commit adultery, defile (w/adultery); falsify, counterfeit, debase, corrupt; adulterus_A = mkA "adulterus" "adultera" "adulterum" ; -- [EXXEE] :: adulterous, unchaste; adultrix_F_N = mkN "adultrix" "adultricis " feminine ; -- [XXXES] :: adulteress; mistress; unchaste woman; --- SLASHSTUFF adultus_A : A2 adultus, adulta -um, adultior -or -us, adultissimus -a -um -- [XXXBO] :: grown (up/fully), mature, ripe; adult; at peak/height/full strength; + adultus_A = mkA "adultus" ; -- [XXXBO] :: grown (up/fully), mature, ripe; adult; at peak/height/full strength; adultus_M_N = mkN "adultus" ; -- [FXXDE] :: adult; one who has reached legal maturity (e.g., age 18 or 21); adumbratim_Adv = mkAdv "adumbratim" ; -- [XXXCO] :: in shadowy form; adumbratio_F_N = mkN "adumbratio" "adumbrationis " feminine ; -- [XXXEO] :: sketch, outline; sketching in light and shade; false show, pretense; @@ -2559,7 +2785,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aduncus_A = mkA "aduncus" "adunca" "aduncum" ; -- [XXXCO] :: bent, curved, hooked, crooked; aduno_V2 = mkV2 (mkV "adunare") ; -- [DXXCS] :: unite, make one; adurgeo_V2 = mkV2 (mkV "adurgere") ; -- [XXXEO] :: pursue; press hard, pursue closely; - adusque_Acc_Prep = mkPrep "adusque" Acc ; -- [XXXCO] :: all the way/right up to, as far as, to the point of (space/time/number/degree); + aduro_V2 = mkV2 (mkV "adurere" "aduro" "adussi" "adustus ") ; -- [XXXBO] :: scorch, singe; burn; consume in fire; + adusque_Acc_Prep = mkPrep "adusque" acc ; -- [XXXCO] :: all the way/right up to, as far as, to the point of (space/time/number/degree); adusque_Adv = mkAdv "adusque" ; -- [XXXCO] :: wholly, completely; adustio_F_N = mkN "adustio" "adustionis " feminine ; -- [XXXNO] :: kindling/burning; rubbing/galling (vines); inflammation; burn; sun/heatstroke; adustum_N_N = mkN "adustum" ; -- [XXXDO] :: burn; frostbite (w/nivibus); deserts/parched areas (pl.) (w/sole); @@ -2571,11 +2798,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg advector_M_N = mkN "advector" "advectoris " masculine ; -- [XXXES] :: carrier, one who conveys/carries a thing to a place; importer; advectus_A = mkA "advectus" "advecta" "advectum" ; -- [XXXEO] :: imported, foreign, introduced from abroad; advectus_M_N = mkN "advectus" "advectus " masculine ; -- [XXXEO] :: transportation, conveyance (to a place); + adveho_V2 = mkV2 (mkV "advehere" "adveho" "advexi" "advectus ") ; -- [XXXBO] :: carry, bring, convey (to); [advehor => arrive by travel, ride to]; advelitatio_F_N = mkN "advelitatio" "advelitationis " feminine ; -- [XXXFS] :: skirmish of words (?); advelo_V2 = mkV2 (mkV "advelare") ; -- [XXXFO] :: cover, veil; advena_C_N = mkN "advena" ; -- [XXXBO] :: foreigner, immigrant, visitor from abroad; newcomer, interloper; migrant (bird); adveneror_V = mkV "advenerari" ; -- [XXXEO] :: worship, adore; give honor to; advenientia_F_N = mkN "advenientia" ; -- [XXXFO] :: arrival, approach; + advenio_V = mkV "advenire" "advenio" "adveni" "adventus "; -- [XXXAO] :: come to, arrive; arrive at, reach, be brought; develop, set in, arise; advententia_F_N = mkN "advententia" ; -- [FXXFE] :: knowledge; warning; adventicius_A = mkA "adventicius" "adventicia" "adventicium" ; -- [XXXBO] :: foreign, coming from abroad/without, external; unusual; accidental, casual; adventitius_A = mkA "adventitius" "adventitia" "adventitium" ; -- [FXXES] :: foreign; arrived from afar; (=adventicius); @@ -2589,6 +2818,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adverbialis_A = mkA "adverbialis" "adverbialis" "adverbiale" ; -- [DGXES] :: adverbial, pertaining to an adverb; derived from adverb(s); adverbialiter_Adv = mkAdv "adverbialiter" ; -- [DGXES] :: adverbially, in the manner of an adverb; adverbium_N_N = mkN "adverbium" ; -- [XGXDO] :: adverb; + adverro_V2 = mkV2 (mkV "adverrere" "adverro" nonExist nonExist) ; -- [XXXFO] :: cause to sweep over; adversa_F_N = mkN "adversa" ; -- [XXXFO] :: enemy/adversary/opponent (female); adversabilis_A = mkA "adversabilis" "adversabilis" "adversabile" ; -- [XXXFO] :: truculent, prone to opposition; adversaria_F_N = mkN "adversaria" ; -- [XXXEO] :: female enemy, adversary, opponent, antagonist; @@ -2606,16 +2836,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg adversitor_M_N = mkN "adversitor" "adversitoris " masculine ; -- [XXXFS] :: one who goes to meet another; slave who went to meet/accompany master home; adverso_V2 = mkV2 (mkV "adversare") ; -- [XXXFO] :: apply (the mind), direct (the attention); adversor_V = mkV "adversari" ; -- [XXXBO] :: be against (w/DAT), oppose, withstand; - adversum_Acc_Prep = mkPrep "adversum" Acc ; -- [XXXAO] :: facing, opposite, against, towards; contrary to; face to face, in presence of; + adversum_Acc_Prep = mkPrep "adversum" acc ; -- [XXXAO] :: facing, opposite, against, towards; contrary to; face to face, in presence of; adversum_Adv = mkAdv "adversum" ; -- [XXXCO] :: opposite, against, in opposite direction; in opposition; (w/ire go to meet); adversum_N_N = mkN "adversum" ; -- [XXXBO] :: direction/point opposite/facing; uphill slope/direction; obstacle, trouble; --- SLASHSTUFF adversus_A : A2 adversus, adversa -um, adversior -or -us, adversissimus -a -um -- [XXXAO] :: opposite, directly facing, ranged against; adverse, evil, hostile; unfavorable; - adversus_Acc_Prep = mkPrep "adversus" Acc ; -- [XXXAO] :: facing, opposite, against, towards; contrary to; face to face, in presence of; + adversus_A = mkA "adversus" ; -- [XXXAO] :: opposite, directly facing, ranged against; adverse, evil, hostile; unfavorable; + adversus_Acc_Prep = mkPrep "adversus" acc ; -- [XXXAO] :: facing, opposite, against, towards; contrary to; face to face, in presence of; adversus_Adv = mkAdv "adversus" ; -- [XXXCO] :: opposite, against, in opposite direction; in opposition; (w/ire go to meet); adversus_M_N = mkN "adversus" ; -- [XXXCO] :: person/foe opposite/directly facing (w/hostile intent); political opponent; advertentia_F_N = mkN "advertentia" ; -- [FXXFE] :: knowledge; awareness, attending, noticing; + adverto_V2 = mkV2 (mkV "advertere" "adverto" "adverti" "adversus ") ; -- [XXXAO] :: turn/face to/towards; direct/draw one's attention to; steer/pilot (ship); + advesperasct_V0 = mkV0 "advesperasct"; -- [XXXCO] :: evening is coming on, it draws toward evening; it is growing dark; advigilo_V = mkV "advigilare" ; -- [XXXCO] :: watch by/over; take care; be on watch, be vigilant; advincula_F_N = mkN "advincula" ; -- [FEXFM] :: chain (of St. Peter); + advivo_V = mkV "advivere" "advivo" "advixi" "advictus "; -- [XXXDO] :: live with (w/cum); survive, be alive; advocamentum_N_N = mkN "advocamentum" ; -- [XXXFS] :: legal support/advisors; delay, adjournment, postponement; pleading in courts; advocata_F_N = mkN "advocata" ; -- [XXXEO] :: helper (female), supporter, counselor; advocatio_F_N = mkN "advocatio" "advocationis " feminine ; -- [XXXCO] :: legal support/advisors; delay, adjournment, postponement; pleading in courts; @@ -2625,6 +2858,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg advolatus_M_N = mkN "advolatus" "advolatus " masculine ; -- [XXXFO] :: flying towards/against; advolitans_A = mkA "advolitans" "advolitantis"; -- [XXXES] :: flying often to; fluttering about; advolo_V = mkV "advolare" ; -- [XXXBO] :: fly to, dash to (w/DAT or ad + ACC), hasten towards; + advolvo_V2 = mkV2 (mkV "advolvere" "advolvo" "advolvi" "advolutus ") ; -- [XXXCO] :: roll to/towards; fall on knees (genibus advolvor), grovel, prostrate oneself; advorsa_F_N = mkN "advorsa" ; -- [BXXFO] :: enemy/adversary/opponent (female); advorsabilis_A = mkA "advorsabilis" "advorsabilis" "advorsabile" ; -- [BXXFO] :: truculent, prone to opposition; advorsaria_F_N = mkN "advorsaria" ; -- [BXXEX] :: female enemy, adversary, opponent; @@ -2638,12 +2872,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg advorsitor_M_N = mkN "advorsitor" "advorsitoris " masculine ; -- [BXXFS] :: one who goes to meet another; slave who went to meet/accompany master home; advorso_V2 = mkV2 (mkV "advorsare") ; -- [BXXEO] :: apply (the mind), direct (the attention); advorsor_V = mkV "advorsari" ; -- [BXXBX] :: be against (w/DAT), oppose, withstand; - advorsum_Acc_Prep = mkPrep "advorsum" Acc ; -- [BXXAX] :: facing, opposite, against, towards; contrary to; face to face, in presence of; + advorsum_Acc_Prep = mkPrep "advorsum" acc ; -- [BXXAX] :: facing, opposite, against, towards; contrary to; face to face, in presence of; advorsum_Adv = mkAdv "advorsum" ; -- [BXXDX] :: opposite, against, in opposite direction; in opposition; (w/ire go to meet); --- SLASHSTUFF advorsus_A : A2 advorsus, advorsa -um, advorsior -or -us, advorsissimus -a -um -- [BXXAX] :: opposite, directly facing, ranged against; adverse, evil, hostile; unfavorable; - advorsus_Acc_Prep = mkPrep "advorsus" Acc ; -- [BXXAX] :: facing, opposite, against, towards; contrary to; face to face, in presence of; + advorsus_A = mkA "advorsus" ; -- [BXXAX] :: opposite, directly facing, ranged against; adverse, evil, hostile; unfavorable; + advorsus_Acc_Prep = mkPrep "advorsus" acc ; -- [BXXAX] :: facing, opposite, against, towards; contrary to; face to face, in presence of; advorsus_Adv = mkAdv "advorsus" ; -- [BXXDX] :: opposite, against, in opposite direction; in opposition; (w/ire go to meet); advorsus_M_N = mkN "advorsus" ; -- [BXXCO] :: person/foe opposite/directly facing (w/hostile intent); political opponent; + advorto_V2 = mkV2 (mkV "advortere" "advorto" "advorti" "advorsus ") ; -- [BXXDX] :: turn/face to/towards; direct/draw one's attention to; steer/pilot (ship); adynamos_A = mkA "adynamos" "adynamos" "adynamon" ; -- [XXXNO] :: weakened, diluted (like wine); adytum_N_N = mkN "adytum" ; -- [XXXCO] :: innermost part of a temple, sanctuary, shrine; innermost recesses/chamber; adzelor_V = mkV "adzelari" ; -- [DEXFS] :: be zealous against one; be angry with; @@ -2653,9 +2888,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aecor_N_N = mkN "aecor" "aecoris " neuter ; -- [XXXBO] :: level/smooth surface, plain; surface of the sea; sea, ocean; aecoreus_A = mkA "aecoreus" "aecorea" "aecoreum" ; -- [XXXCO] :: of/connected with the sea, situated near/bordering on/surrounded by the sea; aecum_N_N = mkN "aecum" ; -- [XXXBO] :: level ground; equal footing/terms; what is right/fair/equitable, equity; --- SLASHSTUFF aecus_A : A2 aecus, aeca -um, aecior -or -us, aecissimus -a -um -- [XXXAO] :: level, even, equal, like; just, kind, impartial, fair; patient, contented; + aecus_A = mkA "aecus" ; -- [XXXAO] :: level, even, equal, like; just, kind, impartial, fair; patient, contented; aedes_F_N = mkN "aedes" "aedis " feminine ; -- [XXXBO] :: temple, shrine; tomb; apartment, room; house (pl.), abode, dwelling; household; aedicula_F_N = mkN "aedicula" ; -- [XXXCO] :: small room/house/building/shrine; chapel, tomb, sepulcher; niche, closet; + aedifacio_V2 = mkV2 (mkV "aedifacere" "aedifacio" "aedifeci" "aedifactus ") ; -- [DXXES] :: build, erect, construct, make; create; establish; aedifex_M_N = mkN "aedifex" "aedificis " masculine ; -- [DTXFS] :: builder, contractor, one who has buildings erected; architect, maker, creator; aedificans_M_N = mkN "aedificans" "aedificantis " masculine ; -- [FXXEE] :: builder; aedificatio_F_N = mkN "aedificatio" "aedificationis " feminine ; -- [FGXCB] :: |edification, explanation; building up (argument); @@ -2689,7 +2925,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aedus_M_N = mkN "aedus" ; -- [XAXFO] :: kid, young goat; two stars in constellation Auriga (Charioteer), "The Kid"; aeer_F_N = mkN "aeer" "aeeris " feminine ; -- [XXXEZ] :: air(one of 4 elements); atmosphere, sky; cloud, mist, weather; breeze; odor; aeer_M_N = mkN "aeer" "aeeris " masculine ; -- [XXXEZ] :: air(one of 4 elements); atmosphere, sky; cloud, mist, weather; breeze; odor; --- SLASHSTUFF aeger_A : A2 aeger, aegra -um, aegrior -or -us, aegerrimus -a -um -- [XXXAO] :: sick/ill, infirm; unsound, injured; painful, grievous; corrupt; sad/sorrowful; + aeger_A = mkA "aeger" ; -- [XXXAO] :: sick/ill, infirm; unsound, injured; painful, grievous; corrupt; sad/sorrowful; aeger_M_N = mkN "aeger" ; -- [XXXCO] :: sick person, invalid, patient; aegilopa_F_N = mkN "aegilopa" ; -- [XXXFS] :: name of some plants (turkey oak, grass); ulcer of the eye, lachrymal fistula; aegilopium_N_N = mkN "aegilopium" ; -- [XXXNO] :: ulcer of the eye, lachrymal fistula; @@ -2698,7 +2934,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aegisonus_A = mkA "aegisonus" "aegisona" "aegisonum" ; -- [XXXFO] :: sounding with the aegis; aegithus_M_N = mkN "aegithus" ; -- [XAXNO] :: small bird, blue tit; species of hawk; aegocephalus_M_N = mkN "aegocephalus" ; -- [XAXNO] :: species of bird (horned owl?); --- TODO aegoceras_N : N1 aegoceras, aegoceratos/is -- N -- [XAXNS] :: fenugreek, Greek hay; (flour from seeds, herb medicine, pickled as a dainty); + aegoceras_1_N = mkN "aegoceras" "aegoceratis" neuter ; -- [XAXNS] :: fenugreek, Greek hay; (flour from seeds, herb medicine, pickled as a dainty); + aegoceras_2_N = mkN "aegoceras" "aegoceratos" neuter ; -- [XAXNS] :: fenugreek, Greek hay; (flour from seeds, herb medicine, pickled as a dainty); aegoceros_M_N = mkN "aegoceros" "aegocerotis " masculine ; -- [XPXES] :: wild goat (poet. for sign of zodiac - Capricorn); aegolethron_N_N = mkN "aegolethron" "aegolethri " neuter ; -- [XAXNO] :: plant supposed to be injurious to goats (Azalea pontica?); goat's bane; aegolios_M_N = mkN "aegolios" "aegolii " masculine ; -- [XAXNO] :: species of owl; @@ -2706,6 +2943,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aegophthalmos_M_N = mkN "aegophthalmos" "aegophthalmi " masculine ; -- [XXXNO] :: precious stone; aegre_Adv =mkAdv "aegre" "aegrius" "aegerrime" ; -- [XXXBO] :: scarcely, with difficulty, painfully, hardly; reluctantly, uncomfortably; aegreo_V = mkV "aegrere" ; -- [XBXEO] :: be sick/ill; + aegresco_V = mkV "aegrescere" "aegresco" nonExist nonExist; -- [XBXCO] :: become sick, grow worse; suffer mental/emotional distress, grieve; aegrimonia_F_N = mkN "aegrimonia" ; -- [XXXDO] :: sorrow, anxiety, melancholy, grief, mental distress/anguish; aegritiudo_F_N = mkN "aegritiudo" "aegritiudinis " feminine ; -- [FBXDE] :: illness, sickness; aegritudo_F_N = mkN "aegritudo" "aegritudinis " feminine ; -- [XXXCO] :: sickness, disease, grief, sorrow; affliction, anxiety; melancholy; @@ -2750,11 +2988,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aenus_A = mkA "aenus" "aena" "aenum" ; -- [XXXCO] :: copper, of copper (alloy); bronze, made of bronze, bronze-colored; brazen; aeolipila_F_N = mkN "aeolipila" ; -- [XSXFS] :: instruments/vessels (pl.) for investigating the nature of the wind; aeon_M_N = mkN "aeon" "aeonis " masculine ; -- [DXXFS] :: age; eternity; the Thirty Aeons (gods); --- SLASHSTUFF aequabilis_A : A2 aequabilis, aequabile, aequabilior -or -us, aequabilissimus -a -um -- [XXXBO] :: equal, alike, uniform, steady; unruffled; equal proportion, fair, just; + aequabilis_A = mkA "aequabilis" ; -- [XXXBO] :: equal, alike, uniform, steady; unruffled; equal proportion, fair, just; aequabilitas_F_N = mkN "aequabilitas" "aequabilitatis " feminine ; -- [XXXCO] :: equality, fairness; evenness, uniformity; analogy (gram.), correspondence; aequabiliter_Adv =mkAdv "aequabiliter" "aequabilitius" "aequabilitissime" ; -- [XXXCO] :: uniformly, equally; in equal proportions/a regular manner; smoothly; justly; aequaevus_A = mkA "aequaevus" "aequaeva" "aequaevum" ; -- [XXXCO] :: of the same age; contemporary; --- SLASHSTUFF aequalis_A : A2 aequalis, aequale, aequalior -or -us, aequalissimus -a -um -- [XXXAO] :: equal, similar; uniform, level, flat; of the same age/generation/duration; + aequalis_A = mkA "aequalis" ; -- [XXXAO] :: equal, similar; uniform, level, flat; of the same age/generation/duration; aequalis_F_N = mkN "aequalis" "aequalis " feminine ; -- [XXXCO] :: comrade; person of one's age/rank/ability, contemporary; equivalent; aequalis_M_N = mkN "aequalis" "aequalis " masculine ; -- [XXXCO] :: comrade; person of one's age/rank/ability, contemporary; equivalent; aequalitarismus_M_N = mkN "aequalitarismus" ; -- [GXXEK] :: egalitarianism; @@ -2819,7 +3057,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aequor_N_N = mkN "aequor" "aequoris " neuter ; -- [XXXBO] :: level/smooth surface, plain; surface of the sea; sea, ocean; aequoreus_A = mkA "aequoreus" "aequorea" "aequoreum" ; -- [XXXCO] :: of/connected with the sea, situated near/bordering on/surrounded by the sea; aequum_N_N = mkN "aequum" ; -- [XXXBO] :: level ground; equal footing/terms; what is right/fair/equitable, equity; --- SLASHSTUFF aequus_A : A2 aequus, aequa -um, aequior -or -us, aequissimus -a -um -- [XXXAO] :: level, even, equal, like; just, kind, impartial, fair; patient, contented; + aequus_A = mkA "aequus" ; -- [XXXAO] :: level, even, equal, like; just, kind, impartial, fair; patient, contented; aer_F_N = mkN "aer" "aeris " feminine ; -- [XXXCO] :: air (one of 4 elements); atmosphere, sky; cloud, mist, weather; breeze; odor; aer_M_N = mkN "aer" "aeris " masculine ; -- [XXXCO] :: air (one of 4 elements); atmosphere, sky; cloud, mist, weather; breeze; odor; aera_F_N = mkN "aera" ; -- [DXXES] :: |parameter from which a calculation is made; item of account; era/epoch; @@ -2910,7 +3148,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aestumo_V2 = mkV2 (mkV "aestumare") ; -- [XXXAO] :: value, assess; estimate; reckon; consider, judge (situation); esteem; aestuo_V = mkV "aestuare" ; -- [XXXBO] :: boil, seethe, foam; billow roll in waves; be agitated/hot; burn; waver; aestuose_Adv =mkAdv "aestuose" "aestuosius" "aestuosissime" ; -- [XXXFO] :: with fierce heat; fiery; --- SLASHSTUFF aestuosus_A : A2 aestuosus, aestuosa -um, aestuosior -or -us, aestuosissimus -a -um -- [XXXCO] :: burning hot, glowing, sweltering, sultry; fevered; seething (water), raging; + aestuosus_A = mkA "aestuosus" ; -- [XXXCO] :: burning hot, glowing, sweltering, sultry; fevered; seething (water), raging; aestus_M_N = mkN "aestus" "aestus " masculine ; -- [XXXAO] :: agitation, passion, seething; raging, boiling; heat/fire; sea tide/spray/swell; aesum_N_N = mkN "aesum" ; -- [XAXNO] :: live-forever, houseleek (Sempervivum tectorum); aetas_F_N = mkN "aetas" "aetatis " feminine ; -- [XXXAO] :: lifetime, age, generation; period; stage, period of life, time, era; @@ -2922,7 +3160,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aeterno_Adv = mkAdv "aeterno" ; -- [XXXEO] :: for ever, always; perpetually; also; constantly; aeterno_V2 = mkV2 (mkV "aeternare") ; -- [XXXEO] :: immortalize; confer undying fame on; aeternum_Adv = mkAdv "aeternum" ; -- [XXXCO] :: eternally, for ever, always; perpetually; also; constantly; --- SLASHSTUFF aeternus_A : A2 aeternus, aeterna -um, aeternior -or -us, aeternissimus -a -um -- [XXXAO] :: eternal/everlasting/imperishable; perpetual, w/out start/end; [in ~=>forever]; + aeternus_A = mkA "aeternus" ; -- [XXXAO] :: eternal/everlasting/imperishable; perpetual, w/out start/end; [in ~=>forever]; aethalus_M_N = mkN "aethalus" ; -- [XAENS] :: sort of grape in Egypt, soot grape; aethanolum_N_N = mkN "aethanolum" ; -- [GXXEK] :: ethanol (drinkable alcohol); aether_M_N = mkN "aether" "aetheris " masculine ; -- [XXXBO] :: upper air; ether; heaven, sky; sky (as a god); space surrounding a deity; @@ -2938,7 +3176,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aetoma_F_N = mkN "aetoma" ; -- [XXXIO] :: gable; aetoma_N_N = mkN "aetoma" "aetomatis " neuter ; -- [XXXIO] :: gable; aevitas_F_N = mkN "aevitas" "aevitatis " feminine ; -- [XXXAS] :: |time of existence; unending/endless time, forever; immortality; days of yore; --- SLASHSTUFF aeviternus_A : A2 aeviternus, aeviterna -um, aeviternior -or -us, aeviternissimus -a -um -- [XXXAO] :: eternal, everlasting, imperishable; perpetual; having no beginning/end; + aeviternus_A = mkA "aeviternus" ; -- [XXXAO] :: eternal, everlasting, imperishable; perpetual; having no beginning/end; aevum_N_N = mkN "aevum" ; -- [XXXAO] :: time, time of life, age, old age, generation; passage/lapse of time; all time; aevus_M_N = mkN "aevus" ; -- [XXXAO] :: time, time of life, age, old age, generation; passage/lapse of time; all time; aex_F_N = mkN "aex" "aegis " feminine ; -- [XXXEO] :: craggy rocks (pl.); rock (sg.) situated between islands of Tenedos and Chios; @@ -2972,8 +3210,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg affectus_A = mkA "affectus" "affecta" "affectum" ; -- [XXXBO] :: endowed with, possessed of; minded; affected; impaired, weakened; emotional; affectus_M_N = mkN "affectus" "affectus " masculine ; -- [XXXAO] :: |disposition; condition, state (of body/mind); feeling, mood, emotion; affero_V2 = mkV2 (mkV "afferre") ; -- [XXXAO] :: bring to (word/food), carry, convey; report, allege, announce; produce, cause; + afficio_V2 = mkV2 (mkV "afficere" "afficio" "affeci" "affectus ") ; -- [XXXAO] :: affect, make impression; move, influence; cause (hurt/death), afflict, weaken; afficticius_A = mkA "afficticius" "afficticia" "afficticium" ; -- [XXXFO] :: attached (to); + affigo_V2 = mkV2 (mkV "affigere" "affigo" "affixi" "affixus ") ; -- [XXXAO] :: fasten/fix/pin/attach to (w/DAT), annex; impress upon; pierce; chain, confine; affiguro_V2 = mkV2 (mkV "affigurare") ; -- [XGXEO] :: form (word) by analogy; + affingo_V2 = mkV2 (mkV "affingere" "affingo" "affinxi" "affictus ") ; -- [XXXBO] :: add to, attach; aggravate; embellish, counterfeit, forge; claim wrongly; affinis_A = mkA "affinis" "affinis" "affine" ; -- [XXXBO] :: neighboring, adjacent, next, bordering; related (marriage), akin, connected; affinis_F_N = mkN "affinis" "affinis " feminine ; -- [XXXCO] :: relation (by marriage); neighbor; accomplice; affinis_M_N = mkN "affinis" "affinis " masculine ; -- [XXXCO] :: relation (by marriage); neighbor; accomplice; @@ -3002,20 +3243,30 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg afflictrix_F_N = mkN "afflictrix" "afflictricis " feminine ; -- [XXXFO] :: one (female) who strikes against/down/overthrows; afflictus_A = mkA "afflictus" "afflicta" "afflictum" ; -- [XXXEO] :: in a state of ruin (persons/countries/affairs), shattered; afflictus_M_N = mkN "afflictus" "afflictus " masculine ; -- [XXXFO] :: collision, blow; a striking against/dashing together; + affligo_V2 = mkV2 (mkV "affligere" "affligo" "afflixi" "afflictus ") ; -- [XXXAO] :: overthrow/throw down; afflict, damage, crush, break, ruin; humble, weaken, vex; afflo_V = mkV "afflare" ; -- [XXXAO] :: blow/breathe (on/towards); inspire, infuse; waft; graze; breathe poison on; affluens_A = mkA "affluens" "affluentis"; -- [XXXCO] :: flowing/overflowing/abounding with; abundant, plentiful, sumptuous, copious; affluente_Adv =mkAdv "affluente" "affluentius" "affluentissime" ; -- [XXXES] :: richly, copiously, abundantly, extravagantly, opulently; affluenter_Adv =mkAdv "affluenter" "affluentius" "affluentissime" ; -- [XXXEO] :: abundantly, copiously; luxuriously, extravagantly; affluentia_F_N = mkN "affluentia" ; -- [XXXCO] :: flow (of a liquid); abundance, profusion, extravagance, opulence, riotousness; + affluo_V = mkV "affluere" "affluo" "affluxi" "affluxus "; -- [XXXBO] :: flow on/to/towards/by; glide/drift quietly; flock together, throng; abound; + affodio_V2 = mkV2 (mkV "affodere" "affodio" nonExist nonExist) ; -- [XXXNO] :: add by digging; affor_V = mkV "affari" ; -- [XXXCO] :: speak to, address; be spoked to/addressed (PASS), be decreed by fate; afforciamentum_N_N = mkN "afforciamentum" ; -- [FXXFM] :: strengthening; W:fortification; afformido_V = mkV "afformidare" ; -- [XXXFO] :: be afraid, fear; + affrango_V2 = mkV2 (mkV "affrangere" "affrango" nonExist nonExist) ; -- [XXXEO] :: cause to be broken against, crush/strike/break against; break in pieces; + affremo_V = mkV "affremere" "affremo" nonExist nonExist; -- [XXXEO] :: roar/rage/growl (at); assent noisily to (w/DAT); affricatio_F_N = mkN "affricatio" "affricationis " feminine ; -- [DXXES] :: rubbing on/against (thing); friction; abrasion; affrico_V2 = mkV2 (mkV "affricare") ; -- [XXXCO] :: rub (one thing against another); apply/communicate/impart by rubbing, smear on; affrictus_M_N = mkN "affrictus" "affrictus " masculine ; -- [XXXEO] :: friction; rubbing on; + affringo_V2 = mkV2 (mkV "affringere" "affringo" nonExist nonExist) ; -- [XXXFS] :: cause to be broken against, crush/strike/break against; break in pieces; affrio_V2 = mkV2 (mkV "affriare") ; -- [XXXFO] :: sprinkle (powder); crumble, grate; affulgeo_V2 = mkV2 (mkV "affulgere") Dat_Prep ; -- [XXXCO] :: shine forth, appear, dawn; shine/smile upon (w/favor), appear favorable; + affundo_V2 = mkV2 (mkV "affundere" "affundo" "affudi" "affusus ") ; -- [XXXBO] :: pour on/upon/into, heap up; shed/spill (blood); wash; + affundor_V = mkV "affundi" "affundor" "affusus sum " ; -- [XXXCO] :: prostrate oneself; cause to be spread on/over; flow alongside/past (streams); + affuo_V = mkV "affuere" "affuo" "affuxi" nonExist; -- [XXXEO] :: flow/stream/issue (from), flow away; abound in (w/ABL), be abundant, abound; afluens_A = mkA "afluens" "afluentis"; -- [XXXFO] :: abundant, plentiful, copious; + afluo_V = mkV "afluere" "afluo" "afluxi" nonExist; -- [XXXEO] :: flow/stream/issue (from), flow away; abound in (w/ABL), be abundant, abound; africanus_M_N = mkN "africanus" ; -- [XXXEO] :: panthers (pl.); (African cats); (other wild beasts); agaga_M_N = mkN "agaga" ; -- [XXXFO] :: catamite (rude), a boy kept for unnatural purposes, pathic; agalma_F_N = mkN "agalma" ; -- [FXXEM] :: statue; image; @@ -3038,14 +3289,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ager_M_N = mkN "ager" ; -- [XXXAO] :: field, ground; farm, land, estate, park; territory, country; terrain; soil; ageraton_N_N = mkN "ageraton" "agerati " neuter ; -- [XAXNS] :: plant that does not easily wither (Achillea ageraton?); agerius_M_N = mkN "agerius" ; -- [ELXEX] :: Agerius; fictional name in Law; + agero_V2 = mkV2 (mkV "agerere" "agero" nonExist nonExist) ; -- [XXXEO] :: take away, remove; ageto_V = mkV "agetare" ; -- [BXXES] :: stir/drive/shake/move about; revolve; live; control, ride; consider, pursue; aggaudeo_V = mkV "aggaudere" ; -- [DXXES] :: delight in; be delighted with; + aggemo_V = mkV "aggemere" "aggemo" nonExist nonExist; -- [XXXEO] :: groan in conjunction/sympathy (with); aggenero_V2 = mkV2 (mkV "aggenerare") ; -- [DXXES] :: beget in addition; aggeniculor_V = mkV "aggeniculari" ; -- [DXXES] :: kneel before, bend the knee before; agger_M_N = mkN "agger" "aggeris " masculine ; -- [XXXAO] :: rampart (or material for); causeway, pier; heap/pile/mound; dam/dike; mud wall; aggeratim_Adv = mkAdv "aggeratim" ; -- [XXXFO] :: in heaps/piles; aggeratio_F_N = mkN "aggeratio" "aggerationis " feminine ; -- [XXXFO] :: heaped/piled up material; - aggero_V2 = mkV2 (mkV "aggerare") ; -- [XXXBO] :: heap/fill up, bring, carry; increase, add fuel; push/crowd/press together; + aggero_V2 = mkV2 (mkV "aggerere" "aggero" "aggessi" "aggestus ") ; -- [XXXBO] :: heap/cover up over, pile/build up, erect; accumulate; intensify, exaggerate; aggestim_Adv = mkAdv "aggestim" ; -- [DXXFS] :: in heaps, abundantly; aggestio_F_N = mkN "aggestio" "aggestionis " feminine ; -- [DXXES] :: heap, heaping up; mass (of mud), heap (of sand); aggestum_N_N = mkN "aggestum" ; -- [DXXES] :: mound, dike, elevation formed like a dike/mound; @@ -3053,7 +3306,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg agglomero_V2 = mkV2 (mkV "agglomerare") ; -- [XXXCO] :: gather into a body, mass together, join forces; pile up in masses; agglomerate; agglutino_V2 = mkV2 (mkV "agglutinare") ; -- [XXXCO] :: glue/stick/adhere/fasten to/together; fit/grip on closely; bring in contact; aggratulor_V = mkV "aggratulari" ; -- [FXXFZ] :: give thanks (to); (JFW); + aggravesco_V = mkV "aggravescere" "aggravesco" nonExist nonExist; -- [XXXDS] :: become heavy; become severe/dangerous (illness), grow worse; be aggravated; aggravo_V2 = mkV2 (mkV "aggravare") ; -- [XXXCO] :: aggravate, exaggerate; weigh down, oppress; make heavier; embarrass further; + aggredio_V = mkV "aggredere" "aggredio" "aggressi" "aggressus "; -- [XXXDS] :: approach, advance; attack, assail; undertake, seize (opportunity), attempt; + aggredior_V = mkV "aggredi" "aggredior" "aggressus sum " ; -- [XXXAO] :: approach, advance; attack, assail; undertake, seize (opportunity), attempt; aggregatio_F_N = mkN "aggregatio" "aggregationis " feminine ; -- [FXXEE] :: aggregation; gathering together; aggregatus_M_N = mkN "aggregatus" ; -- [GXXEK] :: aggregate; aggrego_V2 = mkV2 (mkV "aggregare") ; -- [XXXBO] :: collect, include, group, implicate; (cause to) flock/join together, attach; @@ -3064,7 +3320,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aggressus_M_N = mkN "aggressus" "aggressus " masculine ; -- [XXXFO] :: attack, assault; agguberno_V = mkV "aggubernare" ; -- [XXXEO] :: steer (one's course); agiaspis_M_N = mkN "agiaspis" "agiaspidis " masculine ; -- [XWXFS] :: soldiers with glittering/bright (brazen?) shields; --- SLASHSTUFF agilis_A : A2 agilis, agile, agilior -or -us, agilissimus -a -um -- [XXXBO] :: agile, nimble, quick, swift; alert (mind), active; energetic, busy; rousing; + agilis_A = mkA "agilis" ; -- [XXXBO] :: agile, nimble, quick, swift; alert (mind), active; energetic, busy; rousing; agilitas_F_N = mkN "agilitas" "agilitatis " feminine ; -- [XXXCO] :: activity, quickness (mind/body), nimbleness, ease of movement; agiliter_Adv =mkAdv "agiliter" "agilitius" "agilitissime" ; -- [XXXEO] :: nimbly, swiftly, with agility; agina_F_N = mkN "agina" ; -- [XXXFS] :: opening in upper part of a balance in which the tongue moves; @@ -3076,7 +3332,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg agitatio_F_N = mkN "agitatio" "agitationis " feminine ; -- [XXXCO] :: brandishing/waving/shaking/moving violently; movement; exercise; working (land); agitator_M_N = mkN "agitator" "agitatoris " masculine ; -- [XXXCO] :: driver, charioteer; one who drives (animals); agitatrix_F_N = mkN "agitatrix" "agitatricis " feminine ; -- [XXXFO] :: that causes movement (of soul); --- SLASHSTUFF agitatus_A : A2 agitatus, agitata -um, agitatior -or -us, agitatissimus -a -um -- [XXXDO] :: agile, animated, brisk; + agitatus_A = mkA "agitatus" ; -- [XXXDO] :: agile, animated, brisk; agitatus_M_N = mkN "agitatus" "agitatus " masculine ; -- [XXXEO] :: movement, activity, state of motion; agite_Interj = ss "agite" ; -- [XXXCQ] :: come!, go to!, well!, all right!; agito_V = mkV "agitare" ; -- [XXXAO] :: stir/drive/shake/move about; revolve; live; control, ride; consider, pursue; @@ -3087,6 +3343,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg agminalis_A = mkA "agminalis" "agminalis" "agminale" ; -- [XXXES] :: pertaining to a march/train; pack (horses); agminatim_Adv = mkAdv "agminatim" ; -- [XXXEO] :: in hosts/hordes/crowds; in troops/trains; agna_F_N = mkN "agna" ; -- [XAXCO] :: ewe lamb; + agnascor_V = mkV "agnasci" "agnascor" "agnatus sum " ; -- [XLXBO] :: be born in addition/after father's will made; develop; grow later/on, arise; agnata_F_N = mkN "agnata" ; -- [XXXFO] :: female blood relation on father's side; agnaticius_A = mkA "agnaticius" "agnaticia" "agnaticium" ; -- [DLXFS] :: pertaining to agnati (born after will); [~ jus => right of agnati to inherit]; agnatio_F_N = mkN "agnatio" "agnationis " feminine ; -- [XLXCO] :: birth after father's will/death; consanguinity through father/male ancestor; @@ -3109,13 +3366,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg agnomino_V2 = mkV2 (mkV "agnominare") ; -- [DXXEV] :: give/honor with a nickname/additional name denoting achievement/characteristic; agnos_F_N = mkN "agnos" "agni " feminine ; -- [XXXEO] :: chaste-tree (vitex agnus castus), tall plant resembling the willow; agnoscibilis_A = mkA "agnoscibilis" "agnoscibilis" "agnoscibile" ; -- [DGXFS] :: that can be recognized/known, cognizable; + agnosco_V2 = mkV2 (mkV "agnoscere" "agnosco" "agnovi" "agnitus ") ; -- [XXXAO] :: recognize, realize, discern; acknowledge, claim, admit to/responsibility; agnosticismus_M_N = mkN "agnosticismus" ; -- [FEXEE] :: agnosticism; agnua_F_N = mkN "agnua" ; -- [XAXEO] :: square actus, a measure of land 120 yards square; agnus_M_N = mkN "agnus" ; -- [XAXCO] :: lamb; + ago_V2 = mkV2 (mkV "agere" "ago" "egi" "actus ") ; -- [XXXAO] :: drive/urge/conduct/act; spend (time w/cum); thank (w/gratias); deliver (speech); agoga_F_N = mkN "agoga" ; -- [XTXNS] :: channel for drawing off water (mining); agoge_F_N = mkN "agoge" "agoges " feminine ; -- [XTXNO] :: channel for drawing off water (mining); agolum_N_N = mkN "agolum" ; -- [XAXFS] :: shepherd's staff/crook; --- TODO agon_N : N1 agon, agonos/is -- M -- [XXXCO] :: struggle, contest; public exhibition of games; + agon_1_N = mkN "agon" "agonis" masculine ; -- [XXXCO] :: struggle, contest; public exhibition of games; + agon_2_N = mkN "agon" "agonos" masculine ; -- [XXXCO] :: struggle, contest; public exhibition of games; agonal_N_N = mkN "agonal" "agonalis " neuter ; -- [XEIEC] :: festival of Janus (pl.); agonalium_N_N = mkN "agonalium" ; -- [XEIEC] :: festival of Janus (pl.); agonia_F_N = mkN "agonia" ; -- [XEXFS] :: victim; beast for sacrifice; (at Agonalia/festival of Janus); @@ -3165,11 +3425,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aiens_A = mkA "aiens" "aientis"; -- [XXXFO] :: affirmative; affirming, saying aye; aientia_F_N = mkN "aientia" ; -- [DXXFS] :: affirmation; aigilps_A = mkA "aigilps" "aigilpis"; -- [XXXFO] :: steep, sheer; --- IGNORED ain_N : N1 ain, undeclined -- N -- [DEQEW] :: ayin; (16th letter of Hebrew alphabet); (silent); --- TODO aio_V : V1 aio, -, - -- [XXXAO] :: say (defective), assert; say yes/so, affirm, assent; prescribe/lay down (law); + ain_N = constN "ain" neuter ; -- [DEQEW] :: ayin; (16th letter of Hebrew alphabet); (silent); + aio_V = mkV0 "aio" ; -- [XXXAO] :: say (defective), assert; say yes/so, affirm, assent; prescribe/lay down (law); aisne_Interj = ss "aisne" ; -- [XXXES] :: indeed? really? is it possible? do you really mean it? (surprise/wonder); ait_V0 = mkV0 "ait" ; -- [XXXAO] :: he says (ait), it is said; they say (aiunt); --- TODO aithales_N : N1 aithales, aithalidos/is -- F -- [DAXFS] :: plant (aizoon), houseleek; + aithales_1_N = mkN "aithales" "aithalidis" feminine ; -- [DAXFS] :: plant (aizoon), houseleek; + aithales_2_N = mkN "aithales" "aithalidos" feminine ; -- [DAXFS] :: plant (aizoon), houseleek; aizon_N_N = mkN "aizon" "aizi " neuter ; -- [XAXNO] :: live-forever, houseleek (Sempervivum tectorum); aizoon_N_N = mkN "aizoon" "aizoi " neuter ; -- [XAXNS] :: live-forever, houseleek (Sempervivum tectorum); stone-crop (Sedum album); ajuga_F_N = mkN "ajuga" ; -- [XBXFS] :: plant which has the power of producing abortion (also called abiga); @@ -3180,7 +3441,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg alabastrum_N_N = mkN "alabastrum" ; -- [XXXDO] :: conical box for perfume (made of alabaster); antimony; alabeta_M_N = mkN "alabeta" ; -- [XAEFS] :: fish common in the Nile; alabetes_M_N = mkN "alabetes" "alabetae " masculine ; -- [XAENO] :: fish common in the Nile; --- SLASHSTUFF alacer_A : A2 alacer, alacris -e, alacrior -or -us, alacerrimus -a -um -- [XXXBO] :: eager/keen/spirited; quick/brisk; active/lively; courageous/ready; cheerful; + alacer_A = mkA "alacer" ; -- [XXXBO] :: eager/keen/spirited; quick/brisk; active/lively; courageous/ready; cheerful; alacris_A = mkA "alacris" "alacris" "alacre" ; -- [XXXEO] :: eager/keen/spirited; quick/brisk; active/lively; courageous/ready; cheerful; alacritas_F_N = mkN "alacritas" "alacritatis " feminine ; -- [XXXCO] :: eagerness, enthusiasm, ardor, alacrity; cheerfulness, liveliness; alacriter_Adv = mkAdv "alacriter" ; -- [XXXEO] :: eagerly, briskly; @@ -3204,8 +3465,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg albedo_F_N = mkN "albedo" "albedinis " feminine ; -- [DEXES] :: white color, whiteness; albens_A = mkA "albens" "albentis"; -- [XXXCO] :: white, light, bleached; made/covered in white; pale, pallid; bright, clear; albeo_V = mkV "albere" ; -- [XXXCO] :: be/appear white/pale/light-colored/white with age; + albesco_V = mkV "albescere" "albesco" nonExist nonExist; -- [XXXCO] :: become white/pale/light-colored/white with age; become bright, gleam, glow; albicantius_Adv = mkAdv "albicantius" ; -- [DXXFS] :: somewhat in the way of white; albicapillus_A = mkA "albicapillus" "albicapilla" "albicapillum" ; -- [XXXFO] :: gray-haired; + albicasco_V = mkV "albicascere" "albicasco" nonExist nonExist; -- [XXXFO] :: grow bright; albiceratus_A = mkA "albiceratus" "albicerata" "albiceratum" ; -- [XXXNO] :: pale yellow, wax-white; [albicerata ficus => a variety of fig]; albiceris_A = mkA "albiceris" "albiceris" "albicere" ; -- [XXXEO] :: pale yellow, wax-white; [olea albiceris => a variety of olive]; albicerus_A = mkA "albicerus" "albicera" "albicerum" ; -- [XXXNO] :: pale yellow, wax-white; @@ -3213,7 +3476,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg albicolor_A = mkA "albicolor" "albicoloris"; -- [DXXFS] :: of a white color, white colored; albicomus_A = mkA "albicomus" "albicoma" "albicomum" ; -- [XXXFS] :: white-haired; having white fibers (flowers/plants); albicor_V = mkV "albicari" ; -- [XXXDO] :: be white; have a whitish tinge, verge on white; --- SLASHSTUFF albidus_A : A2 albidus, albida -um, albidior -or -us, albidissimus -a -um -- [XXXCO] :: white, whitish, pale; + albidus_A = mkA "albidus" ; -- [XXXCO] :: white, whitish, pale; albineus_A = mkA "albineus" "albinea" "albineum" ; -- [DXXFS] :: white; albinus_M_N = mkN "albinus" ; -- [DTXFS] :: plasterer, one who covers walls with stucco/plaster; albitudo_F_N = mkN "albitudo" "albitudinis " feminine ; -- [XXXFO] :: whiteness; @@ -3231,7 +3494,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg albumentum_N_N = mkN "albumentum" ; -- [DXXES] :: egg white; alburnum_N_N = mkN "alburnum" ; -- [XAXNO] :: sapwood, soft white wood next to the bark of trees; alburnus_M_N = mkN "alburnus" ; -- [DAXFS] :: white fish; (bleak or blay?); --- SLASHSTUFF albus_A : A2 albus, alba -um, albior -or -us, albissimus -a -um -- [XXXAO] :: white, pale, fair, hoary, gray; bright, clear; favorable, auspicious, fortunate; + albus_A = mkA "albus" ; -- [XXXAO] :: white, pale, fair, hoary, gray; bright, clear; favorable, auspicious, fortunate; alcalinus_A = mkA "alcalinus" "alcalina" "alcalinum" ; -- [GSXEK] :: alkali; alce_F_N = mkN "alce" "alces " feminine ; -- [XAXEO] :: elk; alcea_F_N = mkN "alcea" ; -- [XAXNO] :: species of mallow (mucilaginous flowering plant having hairy stems and leaves); @@ -3270,11 +3533,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg alecula_F_N = mkN "alecula" ; -- [XXXES] :: fish sauce; alembicum_N_N = mkN "alembicum" ; -- [GXXEK] :: still; aleo_M_N = mkN "aleo" "aleonis " masculine ; -- [XXXEO] :: gambler; --- IGNORED aleph_N : N1 aleph, undeclined -- N -- [DEQEW] :: aleph; (1st letter of Hebrew alphabet); (silent, use as an A only in order); + aleph_N = constN "aleph" neuter ; -- [DEQEW] :: aleph; (1st letter of Hebrew alphabet); (silent, use as an A only in order); alerius_A = mkA "alerius" "aleria" "alerium" ; -- [XXXEQ] :: concerned with gambling; ales_A = mkA "ales" "alitis"; -- [XXXCO] :: winged, having wings; swift/quick; [ales deus => Mercury; ales puer => Cupid]; ales_F_N = mkN "ales" "alitis " feminine ; -- [XXXCO] :: bird; (esp. large); winged god/monster; omen/augury; [regia ales => eagle]; ales_M_N = mkN "ales" "alitis " masculine ; -- [XXXCO] :: bird; (esp. large); winged god/monster; omen/augury; [regia ales => eagle]; + alesco_V = mkV "alescere" "alesco" nonExist nonExist; -- [XXXEO] :: be nourished; grow up; increase (late Latin); aletudo_F_N = mkN "aletudo" "aletudinis " feminine ; -- [XXXFO] :: corpulence, fatness; alex_N_N = mkN "alex" "alecis " neuter ; -- [XXXFS] :: herrings; a fish sauce; pickle; alexipharmacon_N_N = mkN "alexipharmacon" "alexipharmaci " neuter ; -- [XXXNO] :: antidote for poison; @@ -3283,6 +3547,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg algens_A = mkA "algens" "algentis"; -- [XXXCO] :: cold (weather), chilly (insufficient clothing); cold (of things normally hot); algensis_A = mkA "algensis" "algensis" "algense" ; -- [XAXNO] :: living on seaweed (spec. of a variety of purple fish); algeo_V = mkV "algere" ; -- [XXXCO] :: be/feel/become cold/chilly/cool; endure cold; be neglected/left in the cold; + algesco_V = mkV "algescere" "algesco" "alsi" nonExist; -- [DXXCS] :: catch cold; become cold (things); algidus_A = mkA "algidus" "algida" "algidum" ; -- [XXXEO] :: cold; algificus_A = mkA "algificus" "algifica" "algificum" ; -- [XXXFO] :: chilling; algor_M_N = mkN "algor" "algoris " masculine ; -- [XXXCO] :: cold, coldness; chilliness; a fit of shivering; cold weather (pl.); @@ -3294,7 +3559,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg alias_Adv = mkAdv "alias" ; -- [XXXAO] :: at/in another time/place; previously, subsequently; elsewhere; otherwise; aliatum_N_N = mkN "aliatum" ; -- [XXXFO] :: food made with garlic; alibi_Adv = mkAdv "alibi" ; -- [XXXBO] :: elsewhere, in another place; in other respects , otherwise; in another matter; --- SLASHSTUFF alibilis_A : A2 alibilis, alibile, alibilior -or -us, alibilissimus -a -um -- [XAXEO] :: nourishing (food), nutritious; able to be fattened (animals); + alibilis_A = mkA "alibilis" ; -- [XAXEO] :: nourishing (food), nutritious; able to be fattened (animals); alica_F_N = mkN "alica" ; -- [XAXCO] :: emmer (wheat) (Triticum dicoccum) groats/grits; porridge/gruel made with these; alicacius_A = mkA "alicacius" "alicacia" "alicacium" ; -- [XAXNO] :: made of emmer (wheat) (Triticum dicoccum) groats/grits; spelt grits (L+S); alicaria_F_N = mkN "alicaria" ; -- [XXXEO] :: prostitute (who often were found near the mill grinding alica), "mill girl"; @@ -3312,12 +3577,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg alieno_V2 = mkV2 (mkV "alienare") ; -- [XXXAO] :: alienate, give up, lose possession, transfer by sale, estrange; become numb; alienor_V = mkV "alienari" ; -- [XXXCO] :: avoid (with antipathy); cause to feel disgust; be insane/mad; be different; alienum_N_N = mkN "alienum" ; -- [XXXCO] :: another's property/land/possessions; foreign soil; other's affairs/views (pl.); --- SLASHSTUFF alienus_A : A2 alienus, aliena -um, alienior -or -us, alienissimus -a -um -- [XXXAO] :: foreign; unconnected; another's; contrary; unworthy; averse, hostile; mad; + alienus_A = mkA "alienus" ; -- [XXXAO] :: foreign; unconnected; another's; contrary; unworthy; averse, hostile; mad; alienus_M_N = mkN "alienus" ; -- [XXXCO] :: foreigner; outsider; stranger to the family; person/slave of another house; alietum_N_N = mkN "alietum" ; -- [EAXFW] :: osprey; alifer_A = mkA "alifer" "alifera" "aliferum" ; -- [XXXFO] :: winged; aliger_A = mkA "aliger" "aligera" "aligerum" ; -- [XXXCO] :: winged, having wings; moving with the speed of flight; --- alii_Conj : Conj alii -- [XXXCC] :: some ... others (alii ... alii); + alii_Conj = mkConj "alii" "alii" plural missing ; -- [XXXCC] :: some ... others (alii ... alii); alimentarius_A = mkA "alimentarius" "alimentaria" "alimentarium" ; -- [XLXEO] :: of maintenance by (public) charity, welfare; charity supported; alimentarius_M_N = mkN "alimentarius" ; -- [XLXEO] :: person whose maintenance is provided by (public/private) charity/alms/by a will; alimentum_N_N = mkN "alimentum" ; -- [XXXBO] :: food/nourishment, provisions; sustenance, maintenance, livelihood; alms; fuel; @@ -3356,12 +3621,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aliquid_Adv = mkAdv "aliquid" ; -- [XXXCO] :: to some degree/extent; somewhat; aliquit_Adv = mkAdv "aliquit" ; -- [XXXCO] :: to some degree/extent; somewhat; aliquo_Adv = mkAdv "aliquo" ; -- [XXXCO] :: to some place/person (or other); in some/any direction/quarter; some/anywhere; --- IGNORED aliquod_A : A2 aliquod, undeclined -- [XXXCO] :: some, several; a few; not many; a number (of); more than one; --- IGNORED aliquod_N : N1 aliquod, undeclined -- N -- [XXXDO] :: some/several/a few people; more than one; a number; + aliquod_A = constA "aliquod" ; -- [XXXCO] :: some, several; a few; not many; a number (of); more than one; + aliquod_N = constN "aliquod" neuter ; -- [XXXDO] :: some/several/a few people; more than one; a number; aliquodfariam_Adv = mkAdv "aliquodfariam" ; -- [XXXFO] :: in several places; aliquomodo_Adv = mkAdv "aliquomodo" ; -- [FXXEE] :: in some manner, somehow; --- IGNORED aliquot_A : A2 aliquot, undeclined -- [XXXCO] :: some, several; a few; not many; a number (of); more than one; --- IGNORED aliquot_N : N1 aliquot, undeclined -- N -- [XXXDO] :: some/several/a few people; more than one; a number; + aliquot_A = constA "aliquot" ; -- [XXXCO] :: some, several; a few; not many; a number (of); more than one; + aliquot_N = constN "aliquot" neuter ; -- [XXXDO] :: some/several/a few people; more than one; a number; aliquotfariam_Adv = mkAdv "aliquotfariam" ; -- [XXXEO] :: in several places; aliquotiens_Adv = mkAdv "aliquotiens" ; -- [XXXCO] :: number of times, several times; aliquoties_Adv = mkAdv "aliquoties" ; -- [XXXCO] :: number of times, several times; @@ -3378,11 +3643,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg alium_N_N = mkN "alium" ; -- [XAXCO] :: garlic, garlic plant; aliunde_Adv = mkAdv "aliunde" ; -- [XXXBO] :: from another person/place, from elsewhere/a different source/cause/material; -- BLACKLISTED alius_A : A2 alius, alia, aliud -- blacklisted -- [XXXAQ] :: other, another; different, changed; [alii...alii => some...others]; (A+G); --- alius_Conj : Conj alius -- [XXXCO] :: the_one ... the_other (alius ... alius); + alius_Conj = mkConj "alius" "alius" singular missing ; -- [XXXCO] :: the_one ... the_other (alius ... alius); aliusmodi_Adv = mkAdv "aliusmodi" ; -- [XXXCN] :: of another kind; in another way/different fashion; somehow else; aliuta_Adv = mkAdv "aliuta" ; -- [XXXEO] :: in another way/manner, otherwise; + allabor_V = mkV "allabi" "allabor" "allapsus sum " ; -- [XXXCO] :: glide/move/flow/fall towards (w/DAT/ACC); creep up; steal into; fly (missiles); allaboro_V = mkV "allaborare" ; -- [XXXEO] :: make a special effort; take trouble to; allacrimo_V = mkV "allacrimare" ; -- [XXXEL] :: shed tears, cry, weep (at or as an accompaniment to something); + allambo_V2 = mkV2 (mkV "allambere" "allambo" nonExist nonExist) ; -- [XXXFO] :: lick (of flames); touch; allapsus_M_N = mkN "allapsus" "allapsus " masculine ; -- [XXXEO] :: gliding up; gliding/stealthy approach; flowing towards or near; allatro_V2 = mkV2 (mkV "allatrare") ; -- [XXXCO] :: bark at; rail at; rage, roar (sea); allaudabilis_A = mkA "allaudabilis" "allaudabilis" "allaudabile" ; -- [XXXEO] :: praiseworthy, commendable; @@ -3397,7 +3664,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg allegatio_F_N = mkN "allegatio" "allegationis " feminine ; -- [XXXEO] :: allegation, charge; intercession; representation made on behalf of another; allegatum_N_N = mkN "allegatum" ; -- [FXXEE] :: account; something pledged allegatus_M_N = mkN "allegatus" "allegatus " masculine ; -- [XXXEO] :: instigation, prompting; - allego_V2 = mkV2 (mkV "allegare") ; -- [XXXBO] :: depute/send as agent, commission; put up, suborn; urge/plea, lay before; allege; + allego_V2 = mkV2 (mkV "allegere" "allego" "allegi" "allectus ") ; -- [XXXCO] :: choose, admit, elect, recruit, select, appoint; allegoria_F_N = mkN "allegoria" ; -- [XGXEO] :: allegory; allegorice_Adv = mkAdv "allegorice" ; -- [DGXFS] :: allegorically; allegoricus_A = mkA "allegoricus" "allegorica" "allegoricum" ; -- [DGXFS] :: allegorical; @@ -3415,13 +3682,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg allex_N_N = mkN "allex" "allecis " neuter ; -- [XXXCO] :: herrings; a fish sauce; pickle; alliatum_N_N = mkN "alliatum" ; -- [XXXFS] :: food composed of/seasoned with garlic; allibentia_F_N = mkN "allibentia" ; -- [XXXFO] :: inclination (for); + allibesco_V = mkV "allibescere" "allibesco" nonExist nonExist; -- [XXXDO] :: be pleasing, gratify; be roused with desire (for); + allicefacio_V2 = mkV2 (mkV "allicefacere" "allicefacio" "allicefeci" "allicefactus ") ; -- [XXXEO] :: entice, allure; attract, lure, seduce; allicefio_V = mkV "alliceferi" ; -- [XXXEO] :: be/become enticed/allured/lured; (allicefacio PASS); + allicio_V2 = mkV2 (mkV "allicere" "allicio" "allexi" "allectus ") ; -- [XXXBO] :: draw gently to, entice, lure, induce (sleep), attract, win over, encourage; + allido_V2 = mkV2 (mkV "allidere" "allido" "allisi" "allisus ") ; -- [XXXCO] :: dash/crush against, bruise; ruin, damage; shipwreck; (PASS) suffer damage; alligamentum_N_N = mkN "alligamentum" ; -- [XXXES] :: band, binding, tie; alligatio_F_N = mkN "alligatio" "alligationis " feminine ; -- [XXXEO] :: tying or binding to supports; a bond; band; alligator_M_N = mkN "alligator" "alligatoris " masculine ; -- [XXXFO] :: one who ties or binds (to a support); alligatura_F_N = mkN "alligatura" ; -- [XXXEO] :: band, binding; fastening; alligatus_M_N = mkN "alligatus" ; -- [DXXES] :: slaves (pl.) who are fettered; alligo_V2 = mkV2 (mkV "alligare") ; -- [XXXAO] :: bind/fetter (to); bandage; hinder, impede, detain; accuse; implicate/involve in; + allino_V2 = mkV2 (mkV "allinere" "allino" "allinevi" "allinitus ") ; -- [XXXCO] :: smear/spread/dash over (W/DAT); spread out on; adhere to; allisio_F_N = mkN "allisio" "allisionis " feminine ; -- [DXXFS] :: dashing against; striking upon; allium_N_N = mkN "allium" ; -- [FAXEK] :: garlic; alloco_V = mkV "allocare" ; -- [FXXEM] :: stow; hire; let; @@ -3429,11 +3701,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg allodium_N_N = mkN "allodium" ; -- [FLXEM] :: freehold; heritable estate; allod/alod/alloidium/aloidium;; allophylus_A = mkA "allophylus" "allophyla" "allophylum" ; -- [DXXFS] :: foreign; of another race/stock; alloquium_N_N = mkN "alloquium" ; -- [XXXCO] :: address, addressing, talk; talking to, encouragement, friendly/reassuring words; + alloquor_V = mkV "alloqui" "alloquor" "allocutus sum " ; -- [XXXCO] :: speak to (friendly); address, harangue, make a speech (to); call on; console; allubentia_F_N = mkN "allubentia" ; -- [XXXFO] :: inclination (for); + allubesco_V = mkV "allubescere" "allubesco" nonExist nonExist; -- [XXXEO] :: be pleasing, gratify; be roused with desire (for); alluceo_V = mkV "allucere" ; -- [XXXDO] :: shine upon; light (torch); show/give (opportunity/chance); give/supply light; allucinator_M_N = mkN "allucinator" "allucinatoris " masculine ; -- [DXXFS] :: idle dreamer, silly fellow; one who is wandering in mind; alluctor_V = mkV "alluctari" ; -- [XXXEO] :: wrestle; wrestle with (w/DAT); alludio_V = mkV "alludiare" ; -- [XXXEO] :: play/frolic (with); + alludo_V2 = mkV2 (mkV "alludere" "alludo" "allusi" "allusus ") ; -- [XXXCO] :: frolic/play/sport around/with, play against; jest, make mocking allusion to; + alluo_V2 = mkV2 (mkV "alluere" "alluo" "allui" nonExist) ; -- [XXXCO] :: wash/flow past/near/against, lap; beset; bathe (pers.) (tears); deposit silt; allus_M_N = mkN "allus" ; -- [XBXFO] :: big toe; allusio_F_N = mkN "allusio" "allusionis " feminine ; -- [DXXFS] :: playing/frolicking/sporting with; alluvies_F_N = mkN "alluvies" "alluviei " feminine ; -- [XXXCL] :: |inundation, flood; overflow; superabundance; @@ -3449,6 +3725,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg alneus_A = mkA "alneus" "alnea" "alneum" ; -- [XXXFO] :: of alder-wood, alder; alnus_A = mkA "alnus" "alna" "alnum" ; -- [XXXEO] :: of alder-wood, alder-; alnus_F_N = mkN "alnus" ; -- [XXXCO] :: alder; (something usually made of alder wood) plank, bridge, boat, ship; + alo_V2 = mkV2 (mkV "alere" "alo" "alui" "altus ") ; -- [XXXAO] :: feed, nourish, rear, nurse, suckle; cherish; support, maintain, develop; aloe_F_N = mkN "aloe" "aloes " feminine ; -- [XXXEO] :: aloe plant (Aloe vera); thickened aloe juice (as purgative); bitterness; alogia_F_N = mkN "alogia" ; -- [XXXEO] :: folly, nonsense; irrational conduct/action; dumbness, muteness (L+S); alogus_A = mkA "alogus" "aloga" "alogum" ; -- [DXXFS] :: irrational, nonsensical; that does not correspond (math); irregular (verse); @@ -3456,7 +3733,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg alopecis_F_N = mkN "alopecis" "alopecidis " feminine ; -- [XAXNO] :: variety of vine; alopecuros_F_N = mkN "alopecuros" "alopecuri " feminine ; -- [XAXNO] :: beard-grass, similar grass; fox-tail (L+S); alopex_F_N = mkN "alopex" "alopecis " feminine ; -- [XAXNO] :: thresher shark (alopias vulpes); sea-fox (L+S); --- IGNORED alpha_N : N1 alpha, undeclined -- N -- [XXHEO] :: alpha, 1st letter of Greek alphabet; A; first/foremost (group/class); beginning; + alpha_N = constN "alpha" neuter ; -- [XXHEO] :: alpha, 1st letter of Greek alphabet; A; first/foremost (group/class); beginning; alphabeticus_A = mkA "alphabeticus" "alphabetica" "alphabeticum" ; -- [GGXEK] :: alphabetic; alphabetum_N_N = mkN "alphabetum" ; -- [DXGES] :: alphabet; alphos_M_N = mkN "alphos" "alphi " masculine ; -- [XBXFO] :: skin disease (psoriasis gutlata?); white spot on the skin (L+S); @@ -3467,7 +3744,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg alsiosus_M_N = mkN "alsiosus" ; -- [XBXFO] :: people (pl.) liable to catch cold; alsius_A = mkA "alsius" "alsia" "alsium" ; -- [XXXFO] :: liable to injury from cold; chilly/cool/cold (L+S); alsulegia_F_N = mkN "alsulegia" ; -- [GDXEK] :: hockey; --- SLASHSTUFF alsus_A : A2 alsus, alsa -um, alsior -or -us, alsissimus -a -um -- [XXXEO] :: cool, chilly (of a place); + alsus_A = mkA "alsus" ; -- [XXXEO] :: cool, chilly (of a place); altanus_M_N = mkN "altanus" ; -- [XXXEO] :: south-south-west wind; land breeze; altar_N_N = mkN "altar" "altaris " neuter ; -- [DXXES] :: altar, fittings for burnt offerings; burnt offerings; high altar; altaragium_N_N = mkN "altaragium" ; -- [FEXEE] :: altarage, stole fees, perquisites for baptism/marriage/etc.; @@ -3476,7 +3753,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg altarium_N_N = mkN "altarium" ; -- [EEXDW] :: altar; high altar; alte_Adv =mkAdv "alte" "altius" "altissime" ; -- [XXXAO] :: high, on high, from above, loftily; deep, deeply; far, remotely; profoundly; alter_A = mkA "alter" "altera" "alterum" ; -- [XXXAO] :: |second/further/next/other/latter/some person/thing (PRONominal ADJ); either; --- alter_Conj : Conj alter -- [XXXCO] :: the_one ... the_other (alter ... alter); otherwise; + alter_Conj = mkConj "alter" "alter" singular missing ; -- [XXXCO] :: the_one ... the_other (alter ... alter); otherwise; alteramentum_N_N = mkN "alteramentum" ; -- [DXXFS] :: alteration, change; alteras_Adv = mkAdv "alteras" ; -- [XXXEO] :: at another time; at one time ... at another; alteratio_F_N = mkN "alteratio" "alterationis " feminine ; -- [FXXDE] :: alteration, change; @@ -3534,7 +3811,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg altruista_M_N = mkN "altruista" ; -- [GXXEK] :: altruist; altum_Adv = mkAdv "altum" ; -- [XXXCS] :: deeply, deep; high, on high, from above; altum_N_N = mkN "altum" ; -- [XXXBO] :: the_deep, the_sea; deep water; a height/depth; remote/obscure period/source; --- SLASHSTUFF altus_A : A2 altus, alta -um, altior -or -us, altissimus -a -um -- [XXXAO] :: high; deep/profound; shrill; lofty/noble; deep rooted; far-fetched; grown great; + altus_A = mkA "altus" ; -- [XXXAO] :: high; deep/profound; shrill; lofty/noble; deep rooted; far-fetched; grown great; altus_M_N = mkN "altus" "altus " masculine ; -- [DXXFS] :: nourishing, support; alucinatio_F_N = mkN "alucinatio" "alucinationis " feminine ; -- [XXXEO] :: wandering in mind, idle dream, delusion; idle/aimless behavior (w/mentis); alucinator_M_N = mkN "alucinator" "alucinatoris " masculine ; -- [DXXFS] :: idle dreamer, silly fellow; one who is wandering in mind; @@ -3580,7 +3857,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg alytharches_M_N = mkN "alytharches" "alytharchae " masculine ; -- [XEXFS] :: magistrate who superintended religious exhibitions; alytharchia_M_N = mkN "alytharchia" ; -- [XEXFS] :: office of magistrate who superintended religious exhibitions; ama_F_N = mkN "ama" ; -- [XXXDO] :: bucket; water bucket; (esp. fireman's bucket); --- SLASHSTUFF amabilis_A : A2 amabilis, amabile, amabilior -or -us, amabilissimus -a -um -- [XXXCO] :: worthy to be loved, lovable; amiable, pleasant; lovely, attractive, delightful; + amabilis_A = mkA "amabilis" ; -- [XXXCO] :: worthy to be loved, lovable; amiable, pleasant; lovely, attractive, delightful; amabilitas_F_N = mkN "amabilitas" "amabilitatis " feminine ; -- [XXXEO] :: attractiveness, lovableness; amabiliter_Adv =mkAdv "amabiliter" "amabilius" "amabilissime" ; -- [XXXCO] :: lovingly; pleasantly; in a loving/friendly manner; amandatio_F_N = mkN "amandatio" "amandationis " feminine ; -- [XXXFO] :: dismissal, banishment, sending away; regulation; @@ -3597,6 +3874,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg amaracus_C_N = mkN "amaracus" ; -- [XAXCO] :: marjoram; feverfew (pyrethrum parthenium); amarantus_M_N = mkN "amarantus" ; -- [XAXDO] :: amaranth (imaginary flower said never to fade)/(ornamental w/colored leaves); amare_Adv =mkAdv "amare" "amarius" "amarissime" ; -- [XXXDO] :: with bitterness, acidly, spitefully, bitterly; + amaresco_V = mkV "amarescere" "amaresco" nonExist nonExist; -- [DXXFS] :: become bitter; amarico_V2 = mkV2 (mkV "amaricare") ; -- [DEXES] :: make bitter; excite, irritate; amaricor_V = mkV "amaricari" ; -- [FXXEE] :: grow bitter; amaritas_F_N = mkN "amaritas" "amaritatis " feminine ; -- [XXXFO] :: bitterness (of taste), harshness; @@ -3608,7 +3886,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg amarulentus_A = mkA "amarulentus" "amarulenta" "amarulentum" ; -- [XXXFO] :: having sour disposition; acrimonious; very bitter, full of bitterness (L+S); amarum_Adv = mkAdv "amarum" ; -- [XXXFS] :: with bitterness, acidly, spitefully, bitterly; amarum_N_N = mkN "amarum" ; -- [XXXEC] :: bitterness; unpleasantness; (often pl.); --- SLASHSTUFF amarus_A : A2 amarus, amara -um, amarior -or -us, amarissimus -a -um -- [XXXBO] :: bitter, brackish, pungent; harsh, shrill; sad, calamitous; ill-natured, caustic; + amarus_A = mkA "amarus" ; -- [XXXBO] :: bitter, brackish, pungent; harsh, shrill; sad, calamitous; ill-natured, caustic; + amasco_V = mkV "amascere" "amasco" nonExist nonExist; -- [XXXFO] :: begin to love; amasia_F_N = mkN "amasia" ; -- [FEXFZ] :: female lover; (JFW guess from amasius = lover); amasio_M_N = mkN "amasio" "amasionis " masculine ; -- [XXXEO] :: lover; amasiuncula_F_N = mkN "amasiuncula" ; -- [XXXFO] :: loved one, darling, sweetheart; fond lover; @@ -3623,6 +3902,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg amatorius_A = mkA "amatorius" "amatoria" "amatorium" ; -- [XXXCO] :: of love or lovers, amatory; inducing love (potions); amorous, procuring love; amatrix_A = mkA "amatrix" "amatricis"; -- [XXXDO] :: amorous; (applied to things); amatrix_F_N = mkN "amatrix" "amatricis " feminine ; -- [XXXCO] :: sweetheart, mistress; hussy; woman who loves (in sexual sense); + amaturio_V2 = mkV2 (mkV "amaturire" "amaturio" "amaturivi" "amaturitus ") ; -- [DXXFS] :: wish to love; amatus_A = mkA "amatus" "amata" "amatum" ; -- [XXXEO] :: loved, beloved; amaxites_M_N = mkN "amaxites" "amaxitae " masculine ; -- [XXXFO] :: waggoner, carter, teamster; ambactus_M_N = mkN "ambactus" ; -- [XXXEO] :: vassal, dependent; retainer, servant; @@ -3640,14 +3920,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ambifarie_Adv = mkAdv "ambifarie" ; -- [DGXFS] :: ambiguously; on two sides; in two ways; ambifarius_A = mkA "ambifarius" "ambifaria" "ambifarium" ; -- [DGXES] :: ambiguous, of double meaning, that has two meanings; that has two sides; ambiga_F_N = mkN "ambiga" ; -- [DXXES] :: cap of a still; --- TODO ambigo_V : V2 ambigo, ambigere, -, - -- Declension: 3rd -- Comment: [XXXBO] :: hesitate, be in doubt; argue, dispute, contend; call in question; be at issue; + ambigo_V = mkV "ambigere" "ambigo" nonExist nonExist ; -- [XXXBO] :: hesitate, be in doubt; argue, dispute, contend; call in question; be at issue; ambigue_Adv = mkAdv "ambigue" ; -- [XXXCO] :: ambiguously, equivocally; with uncertain meaning/outcome; unreliably; ambiguitas_F_N = mkN "ambiguitas" "ambiguitatis " feminine ; -- [XXXCO] :: ambiguity of meaning; an equivocal expression, ambiguity; ambiguum_N_N = mkN "ambiguum" ; -- [XXXCO] :: varying/doubtful/uncertain state/condition/expression; ambiguity; ambiguus_A = mkA "ambiguus" "ambigua" "ambiguum" ; -- [XXXAO] :: changeable, doubtful, ambiguous, wavering, fickle; treacherous, unethical; + ambio_V2 = mkV2 (mkV "ambire" "ambio" "ambivi" "ambitus ") ; -- [XXXAO] :: go round, visit in rotation, inspect; solicit, canvass; circle, embrace; ambitio_F_N = mkN "ambitio" "ambitionis " feminine ; -- [XXXAO] :: ambition; desire for/currying favor/popularity, flattery; vote canvassing; pomp; ambitiose_Adv =mkAdv "ambitiose" "ambitiosius" "ambitiosissime" ; -- [XXXCO] :: ingratiatingly, earnestly; ambitiously, presumptuously; ostentatiously; --- SLASHSTUFF ambitiosus_A : A2 ambitiosus, ambitiosa -um, ambitiosior -or -us, ambitiosissimus -a -um -- [XXXBO] :: ambitious, eager to please/for advancement/favor; showy; winding, twisting; + ambitiosus_A = mkA "ambitiosus" ; -- [XXXBO] :: ambitious, eager to please/for advancement/favor; showy; winding, twisting; ambitor_M_N = mkN "ambitor" "ambitoris " masculine ; -- [DLXES] :: candidate; ambitudo_F_N = mkN "ambitudo" "ambitudinis " feminine ; -- [DLXES] :: period of revolution; ambitus_M_N = mkN "ambitus" "ambitus " masculine ; -- [XXXAO] :: circuit, edge, extent; orbit, cycle; canvass, bribery; circumlocution; show; @@ -3679,6 +3960,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ambultus_M_N = mkN "ambultus" "ambultus " masculine ; -- [DXXFS] :: walking (act of); amburbale_N_N = mkN "amburbale" "amburbalis " neuter ; -- [XXIFS] :: annual expiatory procession around Rome (with sacrificial victims - hostiae); amburbium_N_N = mkN "amburbium" ; -- [XXIFO] :: annual expiatory procession around Rome (with sacrificial victims - hostiae); + amburo_V2 = mkV2 (mkV "amburere" "amburo" "ambussi" "ambustus ") ; -- [XXXBO] :: burn around, scorch, char, scald; fire harden; burn up, cremate; frost-bite/nip; ambustio_F_N = mkN "ambustio" "ambustionis " feminine ; -- [XBXES] :: burn; fire, conflagration; ambustulatus_A = mkA "ambustulatus" "ambustulata" "ambustulatum" ; -- [XXXFO] :: scorched around, burned around the edges; half roasted; ambustum_N_N = mkN "ambustum" ; -- [XBXES] :: burn; @@ -3702,7 +3984,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg amfitapa_F_N = mkN "amfitapa" ; -- [XXXEO] :: rug with pile on both sides; amflexus_A = mkA "amflexus" "amflexa" "amflexum" ; -- [XXXFS] :: curved around, bent double; amfractus_M_N = mkN "amfractus" "amfractus " masculine ; -- [XXXBO] :: bend, curvature; circuit, (annual) round, orbit; spiral, coil; circumlocution; --- IGNORED ami_N : N1 ami, undeclined -- N -- [XAXEO] :: ammi, Bishop-weed; umbelliferous (flowers radiating from point) plant; + ami_N = constN "ami" neuter ; -- [XAXEO] :: ammi, Bishop-weed; umbelliferous (flowers radiating from point) plant; amia_F_N = mkN "amia" ; -- [XAXEO] :: small tunny, bonito; amiantus_M_N = mkN "amiantus" ; -- [XXXNO] :: mineral having properties similar to asbestos, chysolite?; amias_M_N = mkN "amias" "amiae " masculine ; -- [XAXFO] :: small tunny, bonito; @@ -3715,6 +3997,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg amicicia_F_N = mkN "amicicia" ; -- [FXXEO] :: friendship, bond between friends; alliance, association; friendly relations; amicimen_N_N = mkN "amicimen" "amiciminis " neuter ; -- [XXXFO] :: clothing, garment; amicinum_N_N = mkN "amicinum" ; -- [DXXFS] :: neck of a winesack; + amicio_V2 = mkV2 (mkV "amicire" "amicio" "amixi" "amictus ") ; -- [XXXBO] :: clothe, cover, dress; wrap about; surround; veil; clothe with words; amiciter_Adv = mkAdv "amiciter" ; -- [BXXEO] :: in a friendly manner; kindly, amicably; amicitia_F_N = mkN "amicitia" ; -- [XXXBO] :: friendship, bond between friends; alliance, association; friendly relations; amicities_F_N = mkN "amicities" "amicitiei " feminine ; -- [XXXFO] :: friendship; @@ -3726,7 +4009,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg amicula_F_N = mkN "amicula" ; -- [XXXDO] :: mistress, lady friend, girl friend; amiculum_N_N = mkN "amiculum" ; -- [XXXCO] :: cloak; mantle, outer garment; coat; clothing (pl.), dress; amiculus_M_N = mkN "amiculus" ; -- [XXXEO] :: little friend (familiar or depreciatory), dear friend, humble friend; --- SLASHSTUFF amicus_A : A2 amicus, amica -um, amicior -or -us, amicissimus -a -um -- [XXXAO] :: friendly, dear, fond of; supporting (political), loyal, devoted; loving; + amicus_A = mkA "amicus" ; -- [XXXAO] :: friendly, dear, fond of; supporting (political), loyal, devoted; loving; amicus_M_N = mkN "amicus" ; -- [XXXBO] :: friend, ally, disciple; loved one; patron; counselor/courtier (to a prince); amigro_V = mkV "amigrare" ; -- [XXXFO] :: go away, remove; amilum_N_N = mkN "amilum" ; -- [XXXDO] :: fine meal, starch, gruel; @@ -3737,16 +4020,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg amitina_F_N = mkN "amitina" ; -- [XXXEO] :: female first cousin, daughter of father's sister or mother's brother; amitinus_A = mkA "amitinus" "amitina" "amitinum" ; -- [XXXES] :: descended from a father's sister (or mother's brother?); amitinus_M_N = mkN "amitinus" ; -- [XXXEO] :: male first cousin, son of father's sister or mother's brother; + amitto_V2 = mkV2 (mkV "amittere" "amitto" "amisi" "amissus ") ; -- [XXXAO] :: lose; lose by death; send away, dismiss; part with; let go/slip/fall, drop; amium_N_N = mkN "amium" ; -- [XAXES] :: ammi, Bishop-weed; umbelliferous (flowers radiating from point) plant; ammaturo_V2 = mkV2 (mkV "ammaturare") ; -- [XXXFO] :: hasten (an occurrence); bring to maturity, mature, ripen; ammento_V2 = mkV2 (mkV "ammentare") ; -- [XXXDO] :: fit with a throwing strap; give impetus with a throwing strap; speed on; ammentum_N_N = mkN "ammentum" ; -- [XXXCO] :: throwing-strap, thong/loop attached to spear for throwing; (shoe) thong/strap; ammeo_V = mkV "ammeare" ; -- [DXXFS] :: go to, approach; --- IGNORED ammi_N : N1 ammi, undeclined -- N -- [XAXEO] :: ammi, Bishop-weed; umbelliferous (flowers radiating from point) plant; + ammetior_V = mkV "ammetiri" "ammetior" "ammensus sum " ; -- [XXXCO] :: measure out (to); + ammi_N = constN "ammi" neuter ; -- [XAXEO] :: ammi, Bishop-weed; umbelliferous (flowers radiating from point) plant; ammigro_V = mkV "ammigrare" ; -- [XXXFO] :: go and live with; go to a place; come to; be added to; amminiculabundus_A = mkA "amminiculabundus" "amminiculabunda" "amminiculabundum" ; -- [XXXES] :: self-supporting, supporting one's self; amminiculator_M_N = mkN "amminiculator" "amminiculatoris " masculine ; -- [XXXFO] :: assistant, supporter; one who supports; --- SLASHSTUFF amminiculatus_A : A2 amminiculatus, amminiculata -um, amminiculatior -or -us, amminiculatissimus -a -u -- [XXXFO] :: well stocked; supported; well furnished/provided; + amminiculatus_A = mkA "amminiculatus" ; -- [XXXFO] :: well stocked; supported; well furnished/provided; amminiculo_V2 = mkV2 (mkV "amminiculare") ; -- [XAXCO] :: prop (up), support (with props); support with authority; applied to adverb; amminiculor_V = mkV "amminiculari" ; -- [XAXFS] :: prop (up), support (with props) (vines); amminiculum_N_N = mkN "amminiculum" ; -- [XAXBO] :: prop (vines), pole, stake; support, stay, bulwark; means, aid, tool; auxiliary; @@ -3777,6 +4062,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ammissus_M_N = mkN "ammissus" "ammissus " masculine ; -- [DXXES] :: admission, letting in; ammistio_F_N = mkN "ammistio" "ammistionis " feminine ; -- [DXXES] :: mixture, admixture, mingling; ammistus_M_N = mkN "ammistus" "ammistus " masculine ; -- [DXXES] :: mixture, admixture, mingling; + ammitto_V2 = mkV2 (mkV "ammittere" "ammitto" "ammisi" "ammissus ") ; -- [XXXAO] :: urge on, put to a gallop; let in, admit, receive; grant, permit, let go; ammium_N_N = mkN "ammium" ; -- [XAXES] :: ammi, Bishop-weed; umbelliferous (flowers radiating from point) plant; ammixtio_F_N = mkN "ammixtio" "ammixtionis " feminine ; -- [XXXEO] :: mixture, admixture, mingling; ammixtus_A = mkA "ammixtus" "ammixta" "ammixtum" ; -- [XXXES] :: mixed; contaminated; not simple; confused; @@ -3788,6 +4074,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ammodulor_V = mkV "ammodulari" ; -- [DXXFS] :: harmonize/accord with; ammodum_Adv = mkAdv "ammodum" ; -- [XXXBO] :: very, exceedingly, greatly, quite; excessively; just so; certainly, completely; ammodytes_M_N = mkN "ammodytes" "ammodytae " masculine ; -- [XAAES] :: kind of serpent in Africa; + ammoenio_V2 = mkV2 (mkV "ammoenire" "ammoenio" "ammoenivi" "ammoenitus ") ; -- [XXXEO] :: bring (siege engine) into operation, draw near the walls; besiege, invest; + ammolior_V = mkV "ammoliri" "ammolior" "ammolitus sum " ; -- [XXXDO] :: struggle, exert oneself (to); put one's hand on object/task; lay violent hands; + ammonefacio_V2 = mkV2 (mkV "ammonefacere" "ammonefacio" "ammonefeci" "ammonefactus ") ; -- [DXXFS] :: admonish; warn; urge; call to duty; ammonefio_V = mkV "ammoneferi" ; -- [DXXFS] :: be admonished/warned/urged; be called to duty; (admonefacio PASS); ammoneo_V2 = mkV2 (mkV "ammonere") ; -- [XXXAO] :: admonish, remind, prompt; suggest, advise, raise; persuade, urge; warn, caution; ammoniacum_N_N = mkN "ammoniacum" ; -- [GSXEK] :: ammonia-water; @@ -3804,6 +4093,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ammorsus_M_N = mkN "ammorsus" "ammorsus " masculine ; -- [XXXEO] :: bite, biting, gnawing; ammotio_F_N = mkN "ammotio" "ammotionis " feminine ; -- [XXXFO] :: act of moving towards/on to; application; ammoveo_V2 = mkV2 (mkV "ammovere") ; -- [XXXAO] :: move up, bring up/near; lean on, conduct; draw near, approach; apply, add; + ammugio_V = mkV "ammugire" "ammugio" nonExist nonExist; -- [XAXFO] :: low (to); bellow (to); (like a bull); ammulco_V2 = mkV2 (mkV "ammulcare") ; -- [DXXFS] :: stroke; ammurmuratio_F_N = mkN "ammurmuratio" "ammurmurationis " feminine ; -- [XXXEO] :: murmur of comment; murmuring; ammurmuro_V = mkV "ammurmurare" ; -- [XXXDO] :: murmur in protest or approval; murmur at; @@ -3826,8 +4116,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg amoeniter_Adv = mkAdv "amoeniter" ; -- [XXXFO] :: delightfully, in an agreeable manner; amoeno_V2 = mkV2 (mkV "amoenare") ; -- [DXXES] :: make pleasant (places); please, delight; amoenum_N_N = mkN "amoenum" ; -- [DXXFS] :: pleasant places (pl.); --- SLASHSTUFF amoenus_A : A2 amoenus, amoena -um, amoenior -or -us, amoenissimus -a -um -- [XXXCO] :: beautiful, attractive, pleasant, agreeable, enjoyable, charming, lovely; + amoenus_A = mkA "amoenus" ; -- [XXXCO] :: beautiful, attractive, pleasant, agreeable, enjoyable, charming, lovely; amoletum_N_N = mkN "amoletum" ; -- [XXXNO] :: amulet/charm (to avert evil); act which averts evil; power to avert evil; + amolior_V = mkV "amoliri" "amolior" "amolitus sum " ; -- [XXXBO] :: remove, clear away; get rid of, dispose of, remove, obliterate; avert, refute; amolitio_F_N = mkN "amolitio" "amolitionis " feminine ; -- [XXXEO] :: removal (physical); removal (by death); amomis_F_N = mkN "amomis" "amomidis " feminine ; -- [XAXNO] :: plant resembling amomum (eastern spice plant) but inferior in fragrance; amomon_N_N = mkN "amomon" "amomi " neuter ; -- [XAQCO] :: amonum, eastern spice-plant; spice from the plant; unguent/balm with this spice; @@ -3883,6 +4174,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg amphorarius_A = mkA "amphorarius" "amphoraria" "amphorarium" ; -- [XXXFO] :: contained/stored in amphora/jars; ampla_F_N = mkN "ampla" ; -- [XXXFO] :: opportunity; ample_Adv =mkAdv "ample" "amplius" "amplissime" ; -- [XXXCO] :: in liberal manner/complimentary terms/dignified style, handsomely, impressively; + amplector_V = mkV "amplecti" "amplector" "amplexus sum " ; -- [XXXAO] :: surround, encircle, embrace, clasp; esteem; cherish; surround, include, grasp; amplexo_V2 = mkV2 (mkV "amplexare") ; -- [XXXBO] :: take and hold in arms, embrace, clasp; welcome, accept gladly; cling/attach to; amplexor_V = mkV "amplexari" ; -- [XXXBO] :: take and hold in arms, embrace, clasp; welcome, accept gladly; cling/attach to; amplexus_M_N = mkN "amplexus" "amplexus " masculine ; -- [XXXCO] :: clasp, embrace, surrounding; sexual embrace; coil (snake); circumference; @@ -3897,13 +4189,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg amplio_V2 = mkV2 (mkV "ampliare") ; -- [XXXBO] :: enlarge, augment, intensify, widen; ennoble, glorify; postpone, adjourn; ampliter_Adv = mkAdv "ampliter" ; -- [XXXCO] :: in liberal manner, generously, handsomely; amply, fully, very; deeply, far; amplitudo_F_N = mkN "amplitudo" "amplitudinis " feminine ; -- [XXXBO] :: greatness; extent, breadth, width, bulk; importance; fullness (of expression); --- IGNORED amplius_A : A2 amplius, undeclined -- [XXXCL] :: greater (w/indef. subject, eg., number than), further/more, longer; + amplius_A = constA "amplius" ; -- [XXXCL] :: greater (w/indef. subject, eg., number than), further/more, longer; amplius_Adv = mkAdv "amplius" ; -- [XXXAO] :: greater number (than); further, more, beyond, besides; more than (w/numerals); --- IGNORED amplius_N : N1 amplius, undeclined -- N -- [XXXCO] :: greater amount/number/distance, more, any more/further; "judgment reserved"; + amplius_N = constN "amplius" neuter ; -- [XXXCO] :: greater amount/number/distance, more, any more/further; "judgment reserved"; ampliuscule_Adv = mkAdv "ampliuscule" ; -- [XXXFO] :: rather more (freely/deeply); ampliusculus_A = mkA "ampliusculus" "ampliuscula" "ampliusculum" ; -- [XXXFO] :: fairly large, considerable; amplo_V2 = mkV2 (mkV "amplare") ; -- [BXXFS] :: enlarge, extend, increase; develop; magnify, amplify; praise, exalt, glorify; --- SLASHSTUFF amplus_A : A2 amplus, ampla -um, amplior -or -us, amplissimus -a -um -- [XXXAO] :: great, large, spacious, wide, ample; distinguished, important, honorable; + amploctor_V = mkV "amplocti" "amploctor" "amploxus sum " ; -- [BXXAS] :: surround, encircle, embrace, clasp; esteem; cherish; surround, include, grasp; + amplus_A = mkA "amplus" ; -- [XXXAO] :: great, large, spacious, wide, ample; distinguished, important, honorable; ampola_F_N = mkN "ampola" ; -- [FEXEE] :: cruet; ampollata_F_N = mkN "ampollata" ; -- [FEXEE] :: cruet; amptruo_V = mkV "amptruare" ; -- [XEXEO] :: execute a figure/movement (by leader of ceremonial dance); @@ -3939,7 +4232,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg amylo_V2 = mkV2 (mkV "amylare") ; -- [DXXES] :: mix with starch; amylum_N_N = mkN "amylum" ; -- [XXXDO] :: fine meal; starch; gruel; amystis_F_N = mkN "amystis" "amystidis " feminine ; -- [XXXFO] :: drink taken in one draught; --- an_Conj : Conj an -- [XXXAO] :: |whether; (utrum ... an = whether ... or); or; either; + an_Conj = mkConj "an" missing ; -- [XXXAO] :: |whether; (utrum ... an = whether ... or); or; either; anabaptismus_M_N = mkN "anabaptismus" ; -- [DEXFS] :: second baptism; anabaptista_F_N = mkN "anabaptista" ; -- [GEXEE] :: Anabaptists (pl.); (Protestant sect); anabasis_F_N = mkN "anabasis" "anabasis " feminine ; -- [XAXNO] :: plant name applied by Pliny to any equisetum (e.g., horsetail, mare's tail); @@ -3958,8 +4251,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg anaclinterium_N_N = mkN "anaclinterium" ; -- [DXXFS] :: cushion for leaning on; anactorium_N_N = mkN "anactorium" ; -- [DAXFS] :: sword grass; anadema_N_N = mkN "anadema" "anadematis " neuter ; -- [XXXEO] :: band for the hair, head-band; ornament for the head/hair, fillet; + anadiplosis_1_N = mkN "anadiplosis" "anadiploseis" feminine ; -- [DGXFS] :: repetition of the same word; + anadiplosis_2_N = mkN "anadiplosis" "anadiploseos" feminine ; -- [DGXFS] :: repetition of the same word; anadiplosis_F_N = mkN "anadiplosis" "anadiplosis " feminine ; -- [DGXFS] :: repetition of the same word; --- TODO anadiplosis_N : N1 anadiplosis, anadiploseos/is -- F -- [DGXFS] :: repetition of the same word; anaesthesia_F_N = mkN "anaesthesia" ; -- [GBXEK] :: anaesthesia; anagallis_F_N = mkN "anagallis" "anagallidis " feminine ; -- [XAXNO] :: pimpernel (Anagallis aruensis) (small flowering annual) ("scarlet pimpernel"); anaglyphum_N_N = mkN "anaglyphum" ; -- [XXXEE] :: sculpture in relief; @@ -3968,13 +4262,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg anaglypticus_A = mkA "anaglypticus" "anaglyptica" "anaglypticum" ; -- [DTXFS] :: carved/embossed in low/bas relief; anaglyptum_N_N = mkN "anaglyptum" ; -- [XTXFO] :: vessels (pl.) carved in low relief; anaglyptus_A = mkA "anaglyptus" "anaglypta" "anaglyptum" ; -- [XTXEO] :: carved in low/bas relief; --- TODO anagnosis_N : N1 anagnosis, anagnoseos/is -- F -- [FEXFE] :: lectionary; (book of lessons for divine service; list of appointed passages); + anagnosis_1_N = mkN "anagnosis" "anagnoseis" feminine ; -- [FEXFE] :: lectionary; (book of lessons for divine service; list of appointed passages); + anagnosis_2_N = mkN "anagnosis" "anagnoseos" feminine ; -- [FEXFE] :: lectionary; (book of lessons for divine service; list of appointed passages); anagnostes_M_N = mkN "anagnostes" "anagnostae " masculine ; -- [XXXEO] :: reader, one who reads aloud, slave trained to read aloud; anagolaium_N_N = mkN "anagolaium" ; -- [FEXFE] :: amice; (oblong white shawl draped over shoulders of priest, worn w/alb); anagyros_F_N = mkN "anagyros" "anagyri " feminine ; -- [XAXNO] :: stinking bean-trefoil (Anagyris foetida); analecta_M_N = mkN "analecta" ; -- [XXXEO] :: slave who collected crumbs/scraps/gleanings after a meal; analectris_F_N = mkN "analectris" "analectridis " feminine ; -- [XAXEL] :: pad worn under the shoulder blades; shoulder pad (to improve the figure); --- TODO analemma_N : N1 analemma, analemmatos/is -- N -- [XSXFO] :: diagram showing length of sundial pin with time of year; (fig. 8 on globe); + analemma_1_N = mkN "analemma" "analemmatis" neuter ; -- [XSXFO] :: diagram showing length of sundial pin with time of year; (fig. 8 on globe); + analemma_2_N = mkN "analemma" "analemmatos" neuter ; -- [XSXFO] :: diagram showing length of sundial pin with time of year; (fig. 8 on globe); analemptris_F_N = mkN "analemptris" "analemptridis " feminine ; -- [XXXFO] :: shoulder pad (to improve the figure); suspensory bandage (L+S); analeptris_F_N = mkN "analeptris" "analeptridis " feminine ; -- [XXXEO] :: shoulder pad (to improve the figure); suspensory bandage (L+S); analogia_F_N = mkN "analogia" ; -- [XGXCO] :: ratio, proportion; analogy/similarity (in inflections/derivations of words); @@ -3999,7 +4295,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg anapauomenos_M_N = mkN "anapauomenos" "anapauomeni " masculine ; -- [XXXFO] :: man resting (as title of painting); anaphora_F_N = mkN "anaphora" ; -- [XGXFS] :: |repetition of word beginning successive clauses; improper preceding reference; anaphoricus_A = mkA "anaphoricus" "anaphorica" "anaphoricum" ; -- [XSXFO] :: adjusted according to the rising/ascension of the stars; --- TODO anaphysema_N : N1 anaphysema, anaphysematos/is -- N -- [XXXFO] :: upward blast; + anaphysema_1_N = mkN "anaphysema" "anaphysematis" neuter ; -- [XXXFO] :: upward blast; + anaphysema_2_N = mkN "anaphysema" "anaphysematos" neuter ; -- [XXXFO] :: upward blast; anapleroticus_A = mkA "anapleroticus" "anaplerotica" "anapleroticum" ; -- [DXXFS] :: suitable for filling up; anarchia_F_N = mkN "anarchia" ; -- [FXXEM] :: anarchy; lawlessness; lack of a leader/commander; anarchista_M_N = mkN "anarchista" ; -- [GXXEK] :: anarchist; @@ -4056,7 +4353,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ancoralis_A = mkA "ancoralis" "ancoralis" "ancorale" ; -- [XWXFO] :: of/used for anchor; ancorarius_A = mkA "ancorarius" "ancoraria" "ancorarium" ; -- [XWXFO] :: of/used for anchor; ancra_F_N = mkN "ancra" ; -- [XXXIO] :: valley (pl.), gorge; --- TODO ancter_N : N1 ancter, ancteros/is -- M -- [XBXFO] :: surgical clip; + ancter_1_N = mkN "ancter" "ancteris" masculine ; -- [XBXFO] :: surgical clip; + ancter_2_N = mkN "ancter" "ancteros" masculine ; -- [XBXFO] :: surgical clip; ancula_F_N = mkN "ancula" ; -- [XXXFO] :: maid servant; anculo_V2 = mkV2 (mkV "anculare") ; -- [XXXEO] :: serve (wine); bring as a servant; have the care of (L+S); anculus_M_N = mkN "anculus" ; -- [XXXFO] :: man servant; @@ -4068,7 +4366,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg andrachle_F_N = mkN "andrachle" "andrachles " feminine ; -- [XAXEO] :: tree resembling the arbutus (strawberry tree/shrub) (Arbustus enedo); andrachne_F_N = mkN "andrachne" "andrachnes " feminine ; -- [XAXNS] :: |plant, purslane (Portulacca oleraca); andremas_F_N = mkN "andremas" "andremae " feminine ; -- [DAXNS] :: plant, purslane (Portulacca oleraca); --- TODO androdamas_N : N1 androdamas, androdantos/is -- M -- [XXXNS] :: variety of hematite (native sesquioxide of iron Fe2O3); silver marcasite; + androdamas_1_N = mkN "androdamas" "androdantis" masculine ; -- [XXXNS] :: variety of hematite (native sesquioxide of iron Fe2O3); silver marcasite; + androdamas_2_N = mkN "androdamas" "androdantos" masculine ; -- [XXXNS] :: variety of hematite (native sesquioxide of iron Fe2O3); silver marcasite; androgynus_M_N = mkN "androgynus" ; -- [XXXCO] :: hermaphrodite, person of indeterminate sex; andron_M_N = mkN "andron" "andronis " masculine ; -- [XXXEO] :: corridor, hallway, aisle, passage; men's apartment in a house; andronitis_M_N = mkN "andronitis" "andronitidis " masculine ; -- [XXHEO] :: men's apartment in a house (Greek); @@ -4104,6 +4403,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg angiportum_N_N = mkN "angiportum" ; -- [XXXDO] :: narrow street, alley; lane; angiportus_M_N = mkN "angiportus" "angiportus " masculine ; -- [XXXDO] :: narrow street, alley; lane; anglicismus_M_N = mkN "anglicismus" ; -- [GEXEK] :: Anglicism; + ango_V2 = mkV2 (mkV "angere" "ango" "anxi" "anctus ") ; -- [XBXAO] :: choke, throttle, strangle; press tight; distress, cause pain, vex, trouble; angolarius_A = mkA "angolarius" "angolaria" "angolarium" ; -- [XXXIO] :: occurring or placed at a corner; angor_M_N = mkN "angor" "angoris " masculine ; -- [XBXCO] :: suffocation, choking, strangulation; mental distress, anxiety, anguish, vexation angorio_V2 = mkV2 (mkV "angoriare") ; -- [FXXEE] :: compel; force; @@ -4144,7 +4444,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg angustitas_F_N = mkN "angustitas" "angustitatis " feminine ; -- [XXXEO] :: narrowness of space, confined position, closeness; angusto_V2 = mkV2 (mkV "angustare") ; -- [XXXCO] :: narrow, reduce width/size/amount, constrict, limit; choke, crowd together/hamper angustum_N_N = mkN "angustum" ; -- [XXXCO] :: small/confined/narrow space/place/passage, strait, channel; crisis, extremities; --- SLASHSTUFF angustus_A : A2 angustus, angusta -um, angustior -or -us, angustissimus -a -um -- [XXXAO] :: narrow, steep, close, confined; scanty, poor; low, mean; narrowminded, petty; + angustus_A = mkA "angustus" ; -- [XXXAO] :: narrow, steep, close, confined; scanty, poor; low, mean; narrowminded, petty; anhelitio_F_N = mkN "anhelitio" "anhelitionis " feminine ; -- [XXXCO] :: panting, gasping; shortness of breath; iridescence, play of colors on gem; anhelitor_M_N = mkN "anhelitor" "anhelitoris " masculine ; -- [XXXNO] :: one who suffers from shortness of breath; asthmatic; anhelitus_M_N = mkN "anhelitus" "anhelitus " masculine ; -- [XXXBO] :: panting, puffing, gasping, shortness of breath; breath, exhalation; bad breath; @@ -4167,6 +4467,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg animabilis_A = mkA "animabilis" "animabilis" "animabile" ; -- [XXXFS] :: made of air; animal, of living creatures, living, live, animate; vital; animadversio_F_N = mkN "animadversio" "animadversionis " feminine ; -- [XXXBO] :: paying attention; observation, attention, notice; censure, reproach, punishment; animadversor_M_N = mkN "animadversor" "animadversoris " masculine ; -- [XXXFO] :: observer, one who notices/pays attention/observes; + animadverto_V2 = mkV2 (mkV "animadvertere" "animadverto" "animadverti" "animadversus ") ; -- [XXXAO] :: pay attention to, attend to; notice, observe; judge, estimate; punish (in+ACC); animaequitas_F_N = mkN "animaequitas" "animaequitatis " feminine ; -- [XXXIO] :: composure; animaequus_A = mkA "animaequus" "animaequa" "animaequum" ; -- [DXXES] :: composed/patient/not easily moved; of good courage; of calm/confident mind; animal_N_N = mkN "animal" "animalis " neuter ; -- [XXXBO] :: animal, living thing/offspring; creature, beast, brute; insect; @@ -4194,14 +4495,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg anisatum_N_N = mkN "anisatum" ; -- [GXXEK] :: aniseed liqueur; anisocyclum_N_N = mkN "anisocyclum" ; -- [XTXFO] :: system of gears (pl.); screws/elastic springs (L+S); anisum_N_N = mkN "anisum" ; -- [XAXCO] :: anise (Pimpinella anisum); aniseed; --- IGNORED ann_N : N1 ann., abb. -- M -- [XXXCG] :: year; abb. ann./a.; [regnavit ann(is). XLIIII => he reigned for 44 years]; + ann_N = constN "ann." masculine ; -- [XXXCG] :: year; abb. ann./a.; [regnavit ann(is). XLIIII => he reigned for 44 years]; annale_N_N = mkN "annale" "annalis " neuter ; -- [XXXES] :: festival (pl.) held at the beginning of the year; annalis_M_N = mkN "annalis" "annalis " masculine ; -- [XXXCO] :: book of annuals/chronicles; annals (pl.), chronicle, history, yearbooks; annarius_A = mkA "annarius" "annaria" "annarium" ; -- [XXXFO] :: of age qualifications for public office [lex ~ => law defining age ...]; annata_F_N = mkN "annata" ; -- [HEXFE] :: annates (w/media), a tax on benefices in the 1917 Code annato_V = mkV "annatare" ; -- [XXXCO] :: swim to/up to; swim beside/alongside; annavigo_V = mkV "annavigare" ; -- [XXXNO] :: sail to/up to/towards; sail beside/alongside; --- anne_Conj : Conj anne -- [XXXEO] :: |whether (or not) (an-ne); + anne_Conj = mkConj "anne" missing ; -- [XXXEO] :: |whether (or not) (an-ne); + annecto_V2 = mkV2 (mkV "annectere" "annecto" "annexui" "annexus ") ; -- [XXXBO] :: tie on/to, tie up (ship); bind to; fasten on; attach, connect, join, annex; annego_V2 = mkV2 (mkV "annegare") ; -- [XXXFO] :: refuse; withhold; annexio_F_N = mkN "annexio" "annexionis " feminine ; -- [DXXFS] :: tying/binding to, connecting; annexation; annexus_A = mkA "annexus" "annexa" "annexum" ; -- [XXXDO] :: attached, linked, joined; contiguous (to); related by blood; concerned; @@ -4210,6 +4512,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg anniculus_A = mkA "anniculus" "annicula" "anniculum" ; -- [XXXCO] :: one year old, yearling; lasting only one year, limited to a year; annifer_A = mkA "annifer" "annifera" "anniferum" ; -- [XAXEO] :: bearing fruit all year round; producing new shoots every year; annihilo_V2 = mkV2 (mkV "annihilare") ; -- [DXXEC] :: annihilate, destroy, demolish, ruin, bring to nothing; + annitor_V = mkV "anniti" "annitor" "annixus sum " ; -- [XXXCO] :: lean/rest upon, support oneself, (w/genibus) kneel; strive, work, exert, try; annius_M_N = mkN "annius" "annius " masculine ; -- [DXXFS] :: striving; exertion; anniversarie_Adv = mkAdv "anniversarie" ; -- [DXXFS] :: annually; anniversarium_N_N = mkN "anniversarium" ; -- [FXXEE] :: anniversary; birthday (Cal); @@ -4218,7 +4521,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg anno_V = mkV "annare" ; -- [XXXCO] :: swim to/towards, approach by swimming; sail to/towards; brought by sea (goods); anno_V2 = mkV2 (mkV "annare") ; -- [DXXFS] :: pass/live through a year; annodo_V2 = mkV2 (mkV "annodare") ; -- [XAXEO] :: cut (shoot) right back, cut flush; cut off knots, cut away suckers; --- annon_Conj : Conj annon -- [XXXCO] :: can it be that (introducing a question expecting a positive answer); + annon_PConj = ss "annon" ; -- [XXXCO] :: can it be that (introducing a question expecting a positive answer); annona_F_N = mkN "annona" ; -- [XXXBO] :: year's produce; provisions; allotment/rations; wheat/food; price of grain/food; annonarius_A = mkA "annonarius" "annonaria" "annonarium" ; -- [XXXEO] :: of/concerned with the grain supply; annonor_V = mkV "annonari" ; -- [DXXFS] :: collect provisions; @@ -4250,8 +4553,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg annuntiatrix_F_N = mkN "annuntiatrix" "annuntiatricis " feminine ; -- [EEXEP] :: announcer, preacher, one who announces; prophetess (Souter); annuntio_V2 = mkV2 (mkV "annuntiare") ; -- [XXXCO] :: announce, say, make known; report, bring news; prophesy/announce before; preach; annuntius_A = mkA "annuntius" "annuntia" "annuntium" ; -- [XXXFO] :: announcer, that brings news/announces/makes known; + annuo_V2 = mkV2 (mkV "annuere" "annuo" "annui" "annutus ") ; -- [XXXBO] :: designate w/nod, nod assent; indicate, declare; favor/smile on; agree to, grant; annus_M_N = mkN "annus" ; -- [XXXAO] :: year (astronomical/civil); age, time of life; year's produce; circuit, course; annuto_V = mkV "annutare" ; -- [XXXDO] :: nod (to); order/assent to by a nod; bow to; + annutrio_V2 = mkV2 (mkV "annutrire" "annutrio" nonExist nonExist) ; -- [XXXNO] :: train (on); annuum_N_N = mkN "annuum" ; -- [XXXDO] :: yearly payment (usu. pl.); annual stipend, pension, annuity (L+S); annuus_A = mkA "annuus" "annua" "annuum" ; -- [XXXBO] :: for a year, lasting/appointed for a year; paid/performed yearly, annual; anodynon_N_N = mkN "anodynon" "anodyni " neuter ; -- [DXXES] :: painkiller, anodyne, that which soothes; @@ -4266,6 +4571,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg anonymos_F_N = mkN "anonymos" "anonymi " feminine ; -- [XARNO] :: Scythian plant; anonymus_A = mkA "anonymus" "anonyma" "anonymum" ; -- [EXXEE] :: anonymous, name unknown; without a name; anquina_F_N = mkN "anquina" ; -- [XWXEO] :: halyard (rope/tackle used to raise/lower a sail/spar/flag); + anquiro_V2 = mkV2 (mkV "anquirere" "anquiro" "anquisivi" "anquisitus ") ; -- [XLXCO] :: seek, search diligently after, inquire into, examine judicially; indict; anquisitio_F_N = mkN "anquisitio" "anquisitionis " feminine ; -- [XLXFO] :: indictment; ansa_F_N = mkN "ansa" ; -- [XXXCO] :: handle (cup/jar/door), tiller; opening, opportunity; (rope) end, loop, hook; ansarium_N_N = mkN "ansarium" ; -- [XLXIO] :: duty paid on food stuffs/comestibles brought to Rome for sale; @@ -4274,6 +4580,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg anser_M_N = mkN "anser" "anseris " masculine ; -- [XAXCO] :: goose; [anser masculus => gander]; anserculus_M_N = mkN "anserculus" ; -- [XAXFO] :: gosling, young goose; anserinus_A = mkA "anserinus" "anserina" "anserinum" ; -- [XAXDO] :: of/obtained from a goose, goose-; + anstruo_V2 = mkV2 (mkV "anstruere" "anstruo" "anstruxi" "anstructus ") ; -- [FXXEE] :: support; ansula_F_N = mkN "ansula" ; -- [XXXEO] :: handle of a cup; tie loop of sandal; hook, staple, small ring; little handle; anta_F_N = mkN "anta" ; -- [XTXFO] :: square pilasters/columns/pillars (pl.); antachates_M_N = mkN "antachates" "antachatae " masculine ; -- [XXXNO] :: variety of agate; @@ -4283,28 +4590,34 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg antapodosis_F_N = mkN "antapodosis" "antapodosis " feminine ; -- [XSXFO] :: parallelism in comparisons, application of similitude; antarcticus_A = mkA "antarcticus" "antarctica" "antarcticum" ; -- [XSXEO] :: southern, antarctic; antarius_A = mkA "antarius" "antaria" "antarium" ; -- [XWXEO] :: supporting in front (ropes), fore-; (rope) for raising (scaffold, mast); - ante_Acc_Prep = mkPrep "ante" Acc ; -- [XXXAO] :: in front/presence of, in view; before (space/time/degree); over against, facing; + ante_Acc_Prep = mkPrep "ante" acc ; -- [XXXAO] :: in front/presence of, in view; before (space/time/degree); over against, facing; ante_Adv = mkAdv "ante" ; -- [XXXBO] :: before, previously, first, before this, earlier; in front/advance of; forwards; antea_Adv = mkAdv "antea" ; -- [XXXBO] :: before, before this; formerly, previously, in the past; anteactus_A = mkA "anteactus" "anteacta" "anteactum" ; -- [XXXDO] :: past, that passed or was spent previously; + anteago_V2 = mkV2 (mkV "anteagere" "anteago" "anteegi" "anteactus ") ; -- [FXXEE] :: do before; anteambulo_M_N = mkN "anteambulo" "anteambulonis " masculine ; -- [XXXDO] :: forerunner; one who proceeds another to clear the way; antebasis_F_N = mkN "antebasis" "antebasis " feminine ; -- [XWXFS] :: rear prop of a ballista, hindmost small pillar at pedestal of ballista; antecantamentum_N_N = mkN "antecantamentum" ; -- [XXXFO] :: prelude, overture; preliminary; antecantativus_A = mkA "antecantativus" "antecantativa" "antecantativum" ; -- [DXXES] :: pertaining to a prelude/overture; + antecapio_V2 = mkV2 (mkV "antecapere" "antecapio" "antecepi" "anteceptus ") ; -- [XXXCO] :: take/seize beforehand, pre-occupy, forestall; anticipate; antecedens_A = mkA "antecedens" "antecedentis"; -- [XXXCO] :: foregoing, preceding; former; prior; previously existent, pre-existing; antecedente_N_N = mkN "antecedente" "antecedentis " neuter ; -- [XXXCO] :: what precedes; premises for reasoning; antecedent matters (pl.); --- TODO antecello_V : V2 antecello, antecellere, -, - -- Declension: 3rd -- Comment: [XXXCO] :: surpass, excel; be stronger than; prevail over; + antecedo_V2 = mkV2 (mkV "antecedere" "antecedo" "antecessi" "antecessus ") ; -- [XXXAO] :: precede, go before/ahead/in front of, attain before; excel, surpass, outstrip; + antecello_V = mkV "antecellere" "antecello" nonExist nonExist ; -- [XXXCO] :: surpass, excel; be stronger than; prevail over; antecenium_N_N = mkN "antecenium" ; -- [XXXFO] :: meal taken earlier in the day than the main meal; antecessio_F_N = mkN "antecessio" "antecessionis " feminine ; -- [XXXEO] :: going forward/before, preceding; what leads to action/state; antecedents; antecessor_M_N = mkN "antecessor" "antecessoris " masculine ; -- [XXXES] :: he that goes before, predecessor; scout/vanguard (army); law professors; antecessus_M_N = mkN "antecessus" "antecessus " masculine ; -- [XLXDO] :: payments in advance; + antecurro_V2 = mkV2 (mkV "antecurrere" "antecurro" "antecurri" "antecursus ") ; -- [XXXFO] :: run in front of/before; antecursor_M_N = mkN "antecursor" "antecursoris " masculine ; -- [XWXCO] :: scout, forerunner; vanguard (pl.), leading troops; predecessor in office; --- TODO anteeo_V : V1 anteeo, anteire, anteivi(ii), anteitus -- [XXXAO] :: go/walk before/ahead, precede, antedate; surpass; anticipate; prevent; + anteeo_1_V2 = mkV2 (mkV "anteire" "anteeo" "anteivi" "anteitus") ; -- [XXXAO] :: go/walk before/ahead, precede, antedate; surpass; anticipate; prevent; + anteeo_2_V2 = mkV2 (mkV "anteire" "anteeo" "anteii" "anteitus" ) ; -- [XXXAO] :: go/walk before/ahead, precede, antedate; surpass; anticipate; prevent; antefero_V2 = mkV2 (mkV "anteferre") ; -- [XXXBO] :: carry before; place before/in front of; bring in advance, anticipate; prefer; antefixum_N_N = mkN "antefixum" ; -- [XTXDO] :: object/part fixed in front of something; ornamental tiles/figures at roof edge; antefixus_A = mkA "antefixus" "antefixa" "antefixum" ; -- [XTXFO] :: fixed/fastened in front of; antegenitalis_A = mkA "antegenitalis" "antegenitalis" "antegenitale" ; -- [XXXNO] :: that existed before birth; antegerio_Adv = mkAdv "antegerio" ; -- [XXXEO] :: greatly, very; + antegredior_V = mkV "antegredi" "antegredior" "antegressus sum " ; -- [XXXDO] :: move in front of; go before, precede; occur before; be an antecedent to; antehabeo_V2 = mkV2 (mkV "antehabere") ; -- [XXXEO] :: have previously; prefer; antehac_Adv = mkAdv "antehac" ; -- [XXXCO] :: before this time, up til now; before now/then; previously, earlier; in the past; anteida_Adv = mkAdv "anteida" ; -- [BXXBS] :: before, before this; formerly, previously, in the past; @@ -4319,13 +4632,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg antemeridianus_A = mkA "antemeridianus" "antemeridiana" "antemeridianum" ; -- [XXXDO] :: before noon, morning; occurring/done before noon; antemeridies_F_N = mkN "antemeridies" "antemeridiei " feminine ; -- [XXXFO] :: morning, forenoon; (OLD gives N); antemeridies_M_N = mkN "antemeridies" "antemeridiei " masculine ; -- [XXXFO] :: morning, forenoon; (OLD gives N); + antemitto_V2 = mkV2 (mkV "antemittere" "antemitto" "antemisi" "antemmissus ") ; -- [XXXDO] :: send ahead. send in advance; place in front; antemna_F_N = mkN "antemna" ; -- [XXXCO] :: yard of a ship; yardarm; sail (poet.); antenna (Cal); + antemoenio_V2 = mkV2 (mkV "antemoenire" "antemoenio" "antemoenivi" "antemoenitus ") ; -- [XWXFS] :: provide with a front/protecting wall, provide with a rampart; antemurale_N_N = mkN "antemurale" "antemuralis " neuter ; -- [DEXES] :: protecting wall as outwork, breastwork; antemuranus_A = mkA "antemuranus" "antemurana" "antemuranum" ; -- [DXXFS] :: that is before the wall; antenatus_M_N = mkN "antenatus" ; -- [FLXFJ] :: younger son; antenna_F_N = mkN "antenna" ; -- [XXXCO] :: yard of a ship; yardarm; sail (poet.); antenna (Cal); antenuptialis_A = mkA "antenuptialis" "antenuptialis" "antenuptiale" ; -- [DXXES] :: before marriage; --- TODO anteo_V : V1 anteo, antire, antivi(ii), antitus -- [XXXAO] :: go before, go ahead, precede; surpass; anticipate; prevent; (anteeo drop e); + anteo_1_V2 = mkV2 (mkV "antire" "anteo" "antivi" "antitus") ; -- [XXXAO] :: go before, go ahead, precede; surpass; anticipate; prevent; (anteeo drop e); + anteo_2_V2 = mkV2 (mkV "antire" "anteo" "antii" "antitus") ; -- [XXXAO] :: go before, go ahead, precede; surpass; anticipate; prevent; (anteeo drop e); anteoccupatio_F_N = mkN "anteoccupatio" "anteoccupationis " feminine ; -- [XGXFO] :: anticipation of an opponents arguments; anteoccupo_F_N = mkN "anteoccupo" "anteoccuponis " feminine ; -- [DGXFS] :: anticipation of an opponents arguments; antepaenultimus_A = mkA "antepaenultimus" "antepaenultima" "antepaenultimum" ; -- [DGXFS] :: pertaining to the third syllable from the end, antepenultimate; @@ -4338,10 +4654,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg antepes_M_N = mkN "antepes" "antepedis " masculine ; -- [XAXFO] :: forefoot, forepaw; antepilanus_M_N = mkN "antepilanus" ; -- [XXXEO] :: men (pl.) who fought in the first or second line in a Roman battle formation; antepolleo_V = mkV "antepollere" ; -- [XXXEO] :: be stronger/more powerful than; surpass physically, excel; + antepono_V2 = mkV2 (mkV "anteponere" "antepono" "anteposui" "antepositus ") ; -- [XXXBO] :: set before (w/DAT), place/station before, serve (food); prefer, value above; anteportanus_A = mkA "anteportanus" "anteportana" "anteportanum" ; -- [XYXIO] :: epithet of Hercules; antepotens_A = mkA "antepotens" "antepotentis"; -- [XXXFO] :: superior in power/fortune, strongest; exceeding; antepreparatorius_A = mkA "antepreparatorius" "antepreparatoria" "antepreparatorium" ; -- [HXXFE] :: pre-preparatory, antepreparatory; --- antequam_Conj : Conj antequam -- [XXXAO] :: before, sooner than; until; + antequam_Conj = mkConj "antequam" missing ; -- [XXXAO] :: before, sooner than; until; anteridion_N_N = mkN "anteridion" "anteridii " neuter ; -- [XTXFS] :: little prop/support; anterior_A = mkA "anterior" "anterior" "anterius" ; -- [XXXEO] :: earlier, previous, former; that is before, foremost; anterioritas_F_N = mkN "anterioritas" "anterioritatis " feminine ; -- [GXXEK] :: antecedence; @@ -4357,8 +4674,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg antetestatus_M_N = mkN "antetestatus" ; -- [XLXES] :: witness; anteurbanum_N_N = mkN "anteurbanum" ; -- [DXXFS] :: suburbs (pl.); anteurbanus_A = mkA "anteurbanus" "anteurbana" "anteurbanum" ; -- [XXXFO] :: suburban; situated near the city; + antevenio_V2 = mkV2 (mkV "antevenire" "antevenio" "anteveni" "anteventus ") ; -- [XXXCO] :: come/go/arrive/act before, get in front of; anticipate, forestall; surpass; anteventulus_A = mkA "anteventulus" "anteventula" "anteventulum" ; -- [XXXFO] :: lying forward (of hair), projecting in front; anteversio_F_N = mkN "anteversio" "anteversionis " feminine ; -- [DXXFS] :: anticipating, preventing; + anteverto_V2 = mkV2 (mkV "antevertere" "anteverto" "anteverti" "anteversus ") ; -- [XXXCO] :: act first, get ahead; anticipate; forestall; give priority; take precedence; antevio_V = mkV "anteviare" ; -- [DXXES] :: go before, precede; antevolo_V2 = mkV2 (mkV "antevolare") ; -- [XXXDO] :: fly in front of/before; anthalium_N_N = mkN "anthalium" ; -- [XAXNO] :: earth-almond (Cyperus esculentus), chufa (plant with small tubers, pig food); @@ -4426,10 +4745,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg antictonis_M_N = mkN "antictonis" "antictonis " masculine ; -- [XXXEO] :: people (pl.) of the southern hemisphere; antipodes (L+S); anticus_A = mkA "anticus" "antica" "anticum" ; -- [XXXES] :: foremost, that is in front; anticus_M_N = mkN "anticus" ; -- [XXXCO] :: men (pl.) of old, ancients, early authorities/writers; ancestors; --- SLASHSTUFF anticuus_A : A2 anticuus, anticua -um, anticuior -or -us, anticuissimus -a -um -- [XXXAO] :: old, ancient; aged; time-honored; primeval; simple, classic, venerable; senior; + anticuus_A = mkA "anticuus" ; -- [XXXAO] :: old, ancient; aged; time-honored; primeval; simple, classic, venerable; senior; antidactylus_A = mkA "antidactylus" "antidactyla" "antidactylum" ; -- [DPXFS] :: reversed dactyl (short-short-long) (w/pes); antidea_Adv = mkAdv "antidea" ; -- [BXXBX] :: before, before this; formerly, previously, in the past; --- TODO antideo_V : V1 antideo, antidire, antidivi(ii), antiditus -- [XXXCO] :: go before, go ahead, precede; surpass; anticipate; prevent; (anteeo drop e); + antideo_1_V2 = mkV2 (mkV "antidire" "antideo" "antidivi" "antiditus") ; -- [XXXCO] :: go before, go ahead, precede; surpass; anticipate; prevent; (anteeo drop e); + antideo_2_V2 = mkV2 (mkV "antidire" "antideo" "antidii" "antiditus") ; -- [XXXCO] :: go before, go ahead, precede; surpass; anticipate; prevent; (anteeo drop e); antidepressivum_N_N = mkN "antidepressivum" ; -- [HBXEK] :: antidepressant; antidhac_Adv = mkAdv "antidhac" ; -- [BXXDX] :: before this time, up til now; before now/then; previously, earlier; in the past; antidoron_N_N = mkN "antidoron" "antidori " neuter ; -- [FEHFE] :: blessed bread distributed after the liturgy in the Greek rite @@ -4471,14 +4791,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg antiquarius_A = mkA "antiquarius" "antiquaria" "antiquarium" ; -- [DXXES] :: reading/copying ancient manuscripts (w/ars); antiquarius_M_N = mkN "antiquarius" ; -- [GXXEK] :: antiquarian; antiquatio_F_N = mkN "antiquatio" "antiquationis " feminine ; -- [DLXFS] :: abrogating, annulling; --- SLASHSTUFF antiquatus_A : A2 antiquatus, antiquata -um, antiquatior -or -us, antiquatissimus -a -um -- [FXXEE] :: old/ancient/aged; time-honored; simple/classic; venerable; archaic/outdated; + antiquatus_A = mkA "antiquatus" ; -- [FXXEE] :: old/ancient/aged; time-honored; simple/classic; venerable; archaic/outdated; antique_Adv =mkAdv "antique" "antiquius" "antiquissime" ; -- [XXXDO] :: in the old way, in an old fashioned manner; antiquitas_F_N = mkN "antiquitas" "antiquitatis " feminine ; -- [XXXBO] :: antiquity, the good old days; the ancients; virtues of olden times; being old; --- SLASHSTUFF antiquitus_A : A2 antiquitus, antiquita -um, antiquitior -or -us, antiquitissimus -a -um -- [FXXEE] :: old/ancient/aged; time-honored; simple/classic; venerable; archaic/outdated; + antiquitus_A = mkA "antiquitus" ; -- [FXXEE] :: old/ancient/aged; time-honored; simple/classic; venerable; archaic/outdated; antiquitus_Adv = mkAdv "antiquitus" ; -- [XXXCO] :: formerly, in former/ancient/olden times, from antiquity; long ago/before; antiquo_V2 = mkV2 (mkV "antiquare") ; -- [XXXCO] :: reject (bill); vote for the rejection; antiquum_N_N = mkN "antiquum" ; -- [DXXES] :: antiquity; things of olden times; old custom/habit; --- SLASHSTUFF antiquus_A : A2 antiquus, antiqua -um, antiquior -or -us, antiquissimus -a -um -- [XXXAO] :: old/ancient/aged; time-honored; simple/classic; venerable; archaic/outdated; + antiquus_A = mkA "antiquus" ; -- [XXXAO] :: old/ancient/aged; time-honored; simple/classic; venerable; archaic/outdated; antiquus_M_N = mkN "antiquus" ; -- [XXXCO] :: men (pl.) of old, ancients, early authorities/writers; ancestors; antirabicus_A = mkA "antirabicus" "antirabica" "antirabicum" ; -- [HBXEK] :: anti-rabies; antirrhinon_N_N = mkN "antirrhinon" "antirrhini " neuter ; -- [XAXNO] :: snapdragon, antirrhinum; @@ -4544,10 +4864,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg apathia_F_N = mkN "apathia" ; -- [XSXFO] :: apathy; freedom from emotion/passion (as a Stoic value); apathicus_A = mkA "apathicus" "apathica" "apathicum" ; -- [GXXEK] :: apathetic; apeliotes_F_N = mkN "apeliotes" "apeliotae " feminine ; -- [XXXDO] :: east wind; + apello_V2 = mkV2 (mkV "apellere" "apello" "apepuli" "apulsus ") ; -- [EXXEW] :: draw/push/drive aside/away (from); aper_C_N = mkN "aper" ; -- [XAXCO] :: boar, wild boar (as animal, food, or used as a Legion standard/symbol); a fish; aperantologia_F_N = mkN "aperantologia" ; -- [XXXFO] :: interminable discussion; aperculum_N_N = mkN "aperculum" ; -- [GXXEK] :: can-opener; aperibilis_A = mkA "aperibilis" "aperibilis" "aperibile" ; -- [DXXES] :: opening; + aperio_V2 = mkV2 (mkV "aperire" "aperio" "aperui" "apertus ") ; -- [XXXAO] :: uncover, open, disclose; explain, recount; reveal; found; excavate; spread out; aperitio_F_N = mkN "aperitio" "aperitionis " feminine ; -- [FXXEE] :: opening; aperture; aperito_F_N = mkN "aperito" "aperitonis " feminine ; -- [EXXEE] :: opening; revelation/disclosure; apernor_V = mkV "apernari" ; -- [FXXEE] :: scorn; @@ -4558,7 +4880,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg apertor_M_N = mkN "apertor" "apertoris " masculine ; -- [DXXES] :: he who opens/begins, opener; apertum_N_N = mkN "apertum" ; -- [XXXBO] :: area free from obstacles, open/exposed space, the open (air); known facts (pl.); apertura_F_N = mkN "apertura" ; -- [XXXDS] :: act of opening; opening (will); an opening, aperture, hole; --- SLASHSTUFF apertus_A : A2 apertus, aperta -um, apertior -or -us, apertissimus -a -um -- [XXXAO] :: open/public/free; uncovered/exposed/opened; frank/clear/manifest; cloudless; + apertus_A = mkA "apertus" ; -- [XXXAO] :: open/public/free; uncovered/exposed/opened; frank/clear/manifest; cloudless; apes_F_N = mkN "apes" "apis " feminine ; -- [DAXCS] :: bee; swarm regarded as a portent; apex_M_N = mkN "apex" "apicis " masculine ; -- [XGXES] :: |long mark over vowel; outlines of letters, letter; least particle, speck; apexabo_M_N = mkN "apexabo" "apexabonis " masculine ; -- [XXXFO] :: kind of sausage; @@ -4595,9 +4917,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg apicius_A = mkA "apicius" "apicia" "apicium" ; -- [XAXFO] :: name of a variety of grape and wine; ("sought/liked by bees"); apicula_F_N = mkN "apicula" ; -- [XAXEO] :: little bee; apina_F_N = mkN "apina" ; -- [XXXFO] :: trifles (pl.), nonsense; + apio_V2 = mkV2 (mkV "apere" "apio" nonExist "aptus ") ; -- [XXXEO] :: fasten, attach, join, connect, bind; apios_F_N = mkN "apios" "apii " feminine ; -- [XAXNO] :: kind of spurge; apirocalus_M_N = mkN "apirocalus" ; -- [XXXFO] :: one lacking in taste; apis_F_N = mkN "apis" "apis " feminine ; -- [XAXCO] :: bee; swarm regarded as a portent; Apis, sacred bull worshiped in Egypt; + apiscor_V = mkV "apisci" "apiscor" "aptus sum " ; -- [XXXCO] :: reach, obtain, win (lawsuit); grasp; catch (person); attack (infection); pursue; apium_N_N = mkN "apium" ; -- [GXXEK] :: celery; aplanes_A = mkA "aplanes" "aplanes" "aplanes" ; -- [DXXFS] :: standing firm, not moving about; aplestia_F_N = mkN "aplestia" ; -- [EXXEP] :: surfeit, excess; excessive amount/supply/indulgence/consumption/gluttony; @@ -4605,8 +4929,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aplustre_N_N = mkN "aplustre" "aplustris " neuter ; -- [XWXCO] :: ornamented stern-post of a ship; (also plural for a single) ship (pl.); aplustrum_N_N = mkN "aplustrum" ; -- [XWXCO] :: ornamented stern-post of a ship; (also plural for a single) ship (pl.); aplysia_F_N = mkN "aplysia" ; -- [XAXNO] :: sponge of inferior quality; + apo_V2 = mkV2 (mkV "apere" "apo" nonExist "aptus ") ; -- [XXXES] :: fasten, attach, join, connect, bind; + apocalypsis_1_N = mkN "apocalypsis" "apocalypsis" feminine ; -- [EEXEW] :: revelation, disclosing; (Book of Revelations, Apocalypse of St John); + apocalypsis_2_N = mkN "apocalypsis" "apocalypsos" feminine ; -- [EEXEW] :: revelation, disclosing; (Book of Revelations, Apocalypse of St John); apocalypsis_F_N = mkN "apocalypsis" "apocalypsis " feminine ; -- [DEXES] :: revelation, disclosing; (Book of Revelations, Apocalypse of St John); --- TODO apocalypsis_N : N1 apocalypsis, apocalypsos/is -- F -- [EEXEW] :: revelation, disclosing; (Book of Revelations, Apocalypse of St John); apocalypticus_A = mkA "apocalypticus" "apocalyptica" "apocalypticum" ; -- [EXXEE] :: pertaining to the Apocalypse/Book of Revelations; apocarteresis_F_N = mkN "apocarteresis" "apocarteresis " feminine ; -- [XXXFS] :: voluntary starvation; hunger strike; apocatastasis_F_N = mkN "apocatastasis" "apocatastasis " feminine ; -- [DXXES] :: restoration, re-establishment, return to former position; (stars to last year); @@ -4622,7 +4948,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg apoculo_V2 = mkV2 (mkV "apoculare") ; -- [XXXFO] :: go away, remove oneself, leave; apocynon_N_N = mkN "apocynon" "apocyni " neuter ; -- [XAXNO] :: dog's bane, a plant poisonous to dogs; magic bone in left side of venomous frog; apodicticus_A = mkA "apodicticus" "apodictica" "apodicticum" ; -- [XGXFO] :: demonstrative, convincing; proving clearly (L+S); --- TODO apodixis_N : N1 apodixis, apodixos/is -- F -- [XLXEO] :: proof, demonstration; conclusive proof (L+S); + apodixis_1_N = mkN "apodixis" "apodixis" feminine ; -- [XLXEO] :: proof, demonstration; conclusive proof (L+S); + apodixis_2_N = mkN "apodixis" "apodixos" feminine ; -- [XLXEO] :: proof, demonstration; conclusive proof (L+S); apodosis_F_N = mkN "apodosis" "apodosis " feminine ; -- [DGXFS] :: subsequent proposition; clause referring to one preceding; apodyterium_N_N = mkN "apodyterium" ; -- [XXXDO] :: undressing-room in a bathing-house; apogeus_A = mkA "apogeus" "apogea" "apogeum" ; -- [XXXNO] :: blowing/coming from the land, land (breeze); @@ -4643,7 +4970,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg apophegmatismos_M_N = mkN "apophegmatismos" "apophegmatismi " masculine ; -- [DBXFS] :: remedy for expelling phlegm, expectorant; apophoretum_N_N = mkN "apophoretum" ; -- [XXXDO] :: presents (pl.) for guests to take with them; apophoretus_A = mkA "apophoretus" "apophoreta" "apophoretum" ; -- [XXXFO] :: designed (for guests) to take with them (of presents); --- TODO apophysis_N : N1 apophysis, apophysos/is -- F -- [XTXFO] :: curving outward (archit.), curve of column at top/bottom, apophyge; + apophysis_1_N = mkN "apophysis" "apophysis" feminine ; -- [XTXFO] :: curving outward (archit.), curve of column at top/bottom, apophyge; + apophysis_2_N = mkN "apophysis" "apophysos" feminine ; -- [XTXFO] :: curving outward (archit.), curve of column at top/bottom, apophyge; apoplecticus_A = mkA "apoplecticus" "apoplectica" "apoplecticum" ; -- [DBXES] :: apoplectic, stroke; apoplexia_F_N = mkN "apoplexia" ; -- [DBXES] :: apoplexy, stroke; apoplexis_F_N = mkN "apoplexis" "apoplexis " feminine ; -- [DBXES] :: apoplexy, stroke; @@ -4682,26 +5010,31 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg apothecarius_M_N = mkN "apothecarius" ; -- [DXXES] :: warehouseman, shopkeeper; clerk, druggist; apotheco_V2 = mkV2 (mkV "apothecare") ; -- [DXXES] :: store, lay up in a storehouse; apotheosis_F_N = mkN "apotheosis" "apotheosis " feminine ; -- [DEXES] :: deification, transformation into a god; (by extension) canonization (saint); --- TODO apothesis_N : N1 apothesis, apothesos/is -- F -- [XTXFS] :: curving outward (archit.), curve of column at top/bottom, apophyge; --- TODO apothysis_N : N1 apothysis, apothysos/is -- F -- [XTXFS] :: curving outward (archit.), curve of column at top/bottom, apophyge; + apothesis_1_N = mkN "apothesis" "apothesis" feminine ; -- [XTXFS] :: curving outward (archit.), curve of column at top/bottom, apophyge; + apothesis_2_N = mkN "apothesis" "apothesos" feminine ; -- [XTXFS] :: curving outward (archit.), curve of column at top/bottom, apophyge; + apothysis_1_N = mkN "apothysis" "apothysis" feminine ; -- [XTXFS] :: curving outward (archit.), curve of column at top/bottom, apophyge; + apothysis_2_N = mkN "apothysis" "apothysos" feminine ; -- [XTXFS] :: curving outward (archit.), curve of column at top/bottom, apophyge; apoxyomenos_M_N = mkN "apoxyomenos" "apoxyomeni " masculine ; -- [XXXFO] :: statue by Lysippus of an athlete using a strigil to clean himself in the bath; apozema_N_N = mkN "apozema" "apozematis " neuter ; -- [XSXFS] :: decoction, boiling away, concentration/extraction by boiling away liquid; apozima_F_N = mkN "apozima" ; -- [FBXFM] :: decoction; (alt. form of apozema, atis); apozymo_V2 = mkV2 (mkV "apozymare") ; -- [DAXFS] :: make ferment; appagineculus_M_N = mkN "appagineculus" ; -- [XTXFO] :: kind of decorative attachment (archit.); appalis_A = mkA "appalis" "appalis" "appale" ; -- [XXXFS] :: greasy, fatty; of/with fat/grease; + appango_V2 = mkV2 (mkV "appangere" "appango" "appegi" "appactus ") ; -- [DXXFS] :: fasten to; apparamentum_N_N = mkN "apparamentum" ; -- [DXXFS] :: preparation, preparing; that which is prepared; apparate_Adv =mkAdv "apparate" "apparatius" "apparatissime" ; -- [XXXCO] :: sumptuously; apparatio_F_N = mkN "apparatio" "apparationis " feminine ; -- [XXXCO] :: careful preparation; task/act of providing; provisions; designing, construction; apparator_M_N = mkN "apparator" "apparatoris " masculine ; -- [XEXFO] :: one who prepares; official who sacrifices to the Magna Mater; apparatorium_N_N = mkN "apparatorium" ; -- [XEXFO] :: place/room where preparations were made for sacrifice; apparatrix_F_N = mkN "apparatrix" "apparatricis " feminine ; -- [DXXFS] :: she who prepares (sacrifices); --- SLASHSTUFF apparatus_A : A2 apparatus, apparata -um, apparatior -or -us, apparatissimus -a -um -- [XXXCO] :: prepared, equipped, ready; splendid, elaborate, well-appointed; labored; + apparatus_A = mkA "apparatus" ; -- [XXXCO] :: prepared, equipped, ready; splendid, elaborate, well-appointed; labored; apparatus_M_N = mkN "apparatus" "apparatus " masculine ; -- [XXXAO] :: preparation; instruments, equipment, supplies, stock; splendor, pomp, trappings; apparens_A = mkA "apparens" "apparentis"; -- [XXXCO] :: exposed to the air; exposed to view, visible; perceptible, audible; apparent; apparentia_F_N = mkN "apparentia" ; -- [DXXES] :: becoming visible, appearing, appearance; external appearance; appareo_V = mkV "apparere" ; -- [XXXAO] :: appear; be evident/visible/noticed/found; show up, occur; serve (w/DAT); + apparesco_V = mkV "apparescere" "apparesco" nonExist nonExist; -- [DXXES] :: begin to appear; apparet_V0 = mkV0 "apparet" ; -- [XXXBO] :: it is apparent/evident/clear/certain/visible/noticeable/found; it appears; + appario_V2 = mkV2 (mkV "apparere" "appario" nonExist nonExist) ; -- [XXXFO] :: acquire, gain in addition; apparitio_F_N = mkN "apparitio" "apparitionis " feminine ; -- [XXXCO] :: service, attendance; servants, attendants; provision, supplying, preparation; apparitor_M_N = mkN "apparitor" "apparitoris " masculine ; -- [XLXCO] :: civil servant; lictor, clerk; attendant on a magistrate; apparitorius_A = mkA "apparitorius" "apparitoria" "apparitorium" ; -- [XLXFO] :: of/for an apparitor (civil servant; lictor, clerk; attendant on a magistrate); @@ -4715,13 +5048,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg appellatorius_A = mkA "appellatorius" "appellatoria" "appellatorium" ; -- [XXXEO] :: of/used in appeals; appellatus_M_N = mkN "appellatus" ; -- [FLXFJ] :: appellee; one appealed against; appellito_V = mkV "appellitare" ; -- [XXXCO] :: call or name (frequently or habitually); - appello_V2 = mkV2 (mkV "appellare") ; -- [XXXAO] :: call (upon); address; dun; solicit; appeal (to); bring to court; accuse; name; + appello_V2 = mkV2 (mkV "appellere" "appello" "appuli" "appulsus ") ; -- [XXXBO] :: drive to, move up, bring along, force towards; put ashore at, land (ship); appellum_N_N = mkN "appellum" ; -- [FLXFJ] :: appeal; appendeo_V = mkV "appendere" ; -- [XLXFO] :: to be pending; appendicula_F_N = mkN "appendicula" ; -- [XXXFO] :: small addition/appendix/annex; appendage; appendicum_N_N = mkN "appendicum" ; -- [DXXFS] :: appendage; appenditium_N_N = mkN "appenditium" ; -- [FLXEM] :: appurtenance; accessory; hanging cloth(eg curtain); pent-house; appendix_F_N = mkN "appendix" "appendicis " feminine ; -- [XXXCO] :: appendix, supplement, annex; appendage, adjunct; hanger on; barberry bush/fruit; + appendo_V2 = mkV2 (mkV "appendere" "appendo" "appendi" "appensus ") ; -- [XXXCO] :: weigh out; pay/give out; hang, cause to be suspended; appensor_M_N = mkN "appensor" "appensoris " masculine ; -- [DXXFS] :: weigher, he who weighs out; appensorius_A = mkA "appensorius" "appensoria" "appensorium" ; -- [EXXEE] :: with a handle; appertineo_V = mkV "appertinere" ; -- [XXXFS] :: belong to, appertain to; (w/DAT or ad); @@ -4729,12 +5063,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg appetenter_Adv = mkAdv "appetenter" ; -- [XXXEO] :: greedily, avidly; appetentia_F_N = mkN "appetentia" ; -- [XXXCO] :: desire, longing after, appetite for; appetibilis_A = mkA "appetibilis" "appetibilis" "appetibile" ; -- [XXXFO] :: be sought after, desirable; + appetisso_V2 = mkV2 (mkV "appetissere" "appetisso" nonExist nonExist) ; -- [XXXFO] :: seek eagerly after; appetitio_F_N = mkN "appetitio" "appetitionis " feminine ; -- [XXXCO] :: desire, appetite; action of trying to reach/grasp, stretching out for; grasping; appetitor_M_N = mkN "appetitor" "appetitoris " masculine ; -- [XXXFO] :: one who has a desire/liking for (something); appetitus_M_N = mkN "appetitus" "appetitus " masculine ; -- [XXXCO] :: appetite, desire; esp. natural/instinctive desire; appetivitus_A = mkA "appetivitus" "appetivita" "appetivitum" ; -- [XXXEE] :: having appetite/desire/liking for (something); appeto_M_N = mkN "appeto" "appetonis " masculine ; -- [XXXFO] :: one who is covetous; + appeto_V2 = mkV2 (mkV "appetere" "appeto" "appetivi" "appetitus ") ; -- [XXXAO] :: seek/grasp after, desire; assail; strive eagerly/long for; approach, near; + appiciscor_V = mkV "appicisci" "appiciscor" nonExist ; -- [XXXFO] :: bargain?; + appingo_V2 = mkV2 (mkV "appingere" "appingo" nonExist nonExist) ; -- [DXXFS] :: |fasten/join to; applar_N_N = mkN "applar" "applaris " neuter ; -- [XXXFO] :: dish or spoon?; + applaudo_V2 = mkV2 (mkV "applaudere" "applaudo" "applausi" "applausus ") ; -- [XXXCO] :: strike together; clap, applaud; strike, slap; dash to the ground (w/terrae); applausor_M_N = mkN "applausor" "applausoris " masculine ; -- [XGXFS] :: one expressing agreement/approval/pleasure/satisfaction by clapping hands; applausus_M_N = mkN "applausus" "applausus " masculine ; -- [XXXFO] :: flapping/beating of wings; applex_A = mkA "applex" "applicis"; -- [DXXFS] :: closely joined/attached to; @@ -4743,17 +5082,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg applicatus_A = mkA "applicatus" "applicata" "applicatum" ; -- [XXXCO] :: situated close (to town w/DAT); clinging to (side of hill); devoted (to); applico_V = mkV "applicare" ; -- [GXXEK] :: apply, put in practice; applico_V2 = mkV2 (mkV "applicare") ; -- [DXXAX] :: connect, place near, bring into contact; land (ship); adapt; apply/devote to; + applodo_V2 = mkV2 (mkV "applodere" "applodo" "applosi" "applosus ") ; -- [XXXEO] :: strike together; clap, applaud; strike, slap; dash to the ground (w/terrae); apploro_V = mkV "applorare" ; -- [XXXFS] :: lament, weep at/on account of; deplore (thing); appluda_F_N = mkN "appluda" ; -- [XAXEO] :: chaff; applumbator_M_N = mkN "applumbator" "applumbatoris " masculine ; -- [XXXFO] :: solderer; applumbo_V2 = mkV2 (mkV "applumbare") ; -- [XXXFO] :: solder, solder on, affix by soldering, close/seal by soldering/with solder; + appono_V2 = mkV2 (mkV "apponere" "appono" "apposui" "appositus ") ; -- [XXXAO] :: place near, set before/on table, serve up; put/apply/add to; appoint/assign; apporrectus_A = mkA "apporrectus" "apporrecta" "apporrectum" ; -- [XXXFO] :: stretched out near/beside; apportatio_F_N = mkN "apportatio" "apportationis " feminine ; -- [XXXFO] :: conveyance to, carrying to; apporto_V2 = mkV2 (mkV "apportare") ; -- [XXXBO] :: carry/convey/bring (to); import; present (play); bring (news); make one's way; + apposco_V2 = mkV2 (mkV "apposcere" "apposco" nonExist nonExist) ; -- [XXXFO] :: demand in addition; apposite_Adv = mkAdv "apposite" ; -- [XXXFO] :: in a manner suited (to); suitably, appositely; appositio_F_N = mkN "appositio" "appositionis " feminine ; -- [XXXFO] :: comparison, action of comparing; appositum_N_N = mkN "appositum" ; -- [XGXFO] :: adjective, epithet; --- SLASHSTUFF appositus_A : A2 appositus, apposita -um, appositior -or -us, appositissimus -a -um -- [XXXBO] :: adjacent, near, accessible, akin; opposite; fit, appropriate, apt; based upon; + appositus_A = mkA "appositus" ; -- [XXXBO] :: adjacent, near, accessible, akin; opposite; fit, appropriate, apt; based upon; appositus_M_N = mkN "appositus" "appositus " masculine ; -- [XBXNO] :: application (of medicine); appostulo_V2 = mkV2 (mkV "appostulare") ; -- [DXXFS] :: beg/entreaty/solicit importunately/persistently/troublesomely/pressingly; appotus_A = mkA "appotus" "appota" "appotum" ; -- [XXXEO] :: drunk, intoxicated; @@ -4762,14 +5104,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg appreciatum_N_N = mkN "appreciatum" ; -- [EXXEZ] :: appraisal, valuing; apprecio_V2 = mkV2 (mkV "appreciare") ; -- [EEXCE] :: value/prize, set/estimate price, appraise; purchase/buy; appropriate to self; apprecor_V = mkV "apprecari" ; -- [XEXEO] :: address prayer to, pray to , invoke, beseech; + apprehendo_V2 = mkV2 (mkV "apprehendere" "apprehendo" "apprehendi" "apprehensus ") ; -- [XXXAO] :: seize (upon), grasp, cling to, lay hold of; apprehend; embrace; overtake; apprehensibil_A = mkA "apprehensibil" "apprehensibilis"; -- [DXXES] :: intelligible, understandable, that can be understood; apprehensio_F_N = mkN "apprehensio" "apprehensionis " feminine ; -- [DXXES] :: seizing upon, laying hold of; (philosophical) apprehension, understanding; + apprendo_V2 = mkV2 (mkV "apprendere" "apprendo" "apprendi" "apprensus ") ; -- [XXXAO] :: seize (upon), grasp, cling to, lay hold of; apprehend; embrace; overtake; apprenso_V2 = mkV2 (mkV "apprensare") ; -- [XXXFO] :: snatch at; appretiatamentum_N_N = mkN "appretiatamentum" ; -- [FXXFM] :: appraisal, valuing; appretiatio_F_N = mkN "appretiatio" "appretiationis " feminine ; -- [FXXEM] :: appraisal, valuing; appretiatum_N_N = mkN "appretiatum" ; -- [EXXEZ] :: appraisal, valuing; appretio_V2 = mkV2 (mkV "appretiare") ; -- [DEXCS] :: value/prize, set/estimate price, appraise; purchase/buy; appropriate to self; apprime_Adv = mkAdv "apprime" ; -- [XXXCO] :: to the highest degree, to a high degree, extremely, especially, very; + apprimo_V2 = mkV2 (mkV "apprimere" "apprimo" "appressi" "appressus ") ; -- [XXXEO] :: press on/to; clench (the teeth); apprimus_A = mkA "apprimus" "apprima" "apprimum" ; -- [XXXEO] :: very first, most excellent; approbatio_F_N = mkN "approbatio" "approbationis " feminine ; -- [XXXBO] :: approbation, giving approval; proof, confirmation; decision; approbator_M_N = mkN "approbator" "approbatoris " masculine ; -- [XXXEO] :: one who approves; @@ -4777,6 +5122,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg approbo_V2 = mkV2 (mkV "approbare") ; -- [XXXAO] :: approve, commend, endorse; prove; confirm; justify; allow; make good; approbus_A = mkA "approbus" "approba" "approbum" ; -- [XXXEO] :: excellent, worthy; appromissor_M_N = mkN "appromissor" "appromissoris " masculine ; -- [XXXEO] :: one who promises/gives security on behalf of another; + appromitto_V2 = mkV2 (mkV "appromittere" "appromitto" "appromisi" "appromissus ") ; -- [XXXEO] :: promise in addition (to another), promise also; approno_V2 = mkV2 (mkV "appronare") ; -- [XXXEO] :: lean forwards; appropero_V = mkV "approperare" ; -- [XXXCO] :: hasten, hurry, come hastily, make haste; accelerate, speed up; appropinquatio_F_N = mkN "appropinquatio" "appropinquationis " feminine ; -- [XXXEO] :: approach, drawing near; @@ -4797,7 +5143,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg apricula_F_N = mkN "apricula" ; -- [XXXEO] :: unidentified fish; apriculus_M_N = mkN "apriculus" ; -- [XAXEO] :: unidentified fish; apricum_N_N = mkN "apricum" ; -- [XXXEO] :: sunny place/region; sunlight, light of day; --- SLASHSTUFF apricus_A : A2 apricus, aprica -um, apricior -or -us, apricissimus -a -um -- [XXXCO] :: sunny, having lots of sunshine; warmed by/exposed to/open to the sun, basking; + apricus_A = mkA "apricus" ; -- [XXXCO] :: sunny, having lots of sunshine; warmed by/exposed to/open to the sun, basking; aprineus_A = mkA "aprineus" "aprinea" "aprineum" ; -- [XAXFO] :: of a wild boar, boar-; aprinus_A = mkA "aprinus" "aprina" "aprinum" ; -- [XAXEO] :: of a wild boar, boar-; apronia_F_N = mkN "apronia" ; -- [XAXNO] :: black byrony (plant Tamus communis); @@ -4808,15 +5154,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aprugnus_A = mkA "aprugnus" "aprugna" "aprugnum" ; -- [XAXEO] :: of wild boar, boar's; apruna_F_N = mkN "apruna" ; -- [DAXFS] :: flesh/meat of the wild boar; aprunus_A = mkA "aprunus" "apruna" "aprunum" ; -- [XAXEO] :: of wild boar, boar's; + apscedo_V = mkV "apscedere" "apscedo" "apscessi" "apscessus "; -- [XXXAO] :: withdraw, depart, retire; go/pass off/away; desist; recede (coasts); slough; apscessio_F_N = mkN "apscessio" "apscessionis " feminine ; -- [XXXEO] :: removal; loss, separation, going away; diminution; apscessus_M_N = mkN "apscessus" "apscessus " masculine ; -- [XXXCO] :: going away, departure, withdrawal, absence; remoteness; abscess; + apscido_V2 = mkV2 (mkV "apscidere" "apscido" "apscidi" "apscisus ") ; -- [XXXBO] :: |take away violently; expel/banish; destroy (hope); amputate; prune; cut short; + apscindo_V2 = mkV2 (mkV "apscindere" "apscindo" "apscidi" "apscissus ") ; -- [XXXBO] :: tear (away/off) (clothing); cut off/away/short; part, break, divide, separate; apscise_Adv = mkAdv "apscise" ; -- [XXXEO] :: abruptly, brusquely, curtly; shortly, concisely, distinctly; apscisio_F_N = mkN "apscisio" "apscisionis " feminine ; -- [XGXEO] :: loss of voice; aposiopesis (rhetoric, breaking off emotionally), interruption; apscissio_F_N = mkN "apscissio" "apscissionis " feminine ; -- [XGXFS] :: loss of voice; aposiopesis (rhetoric, breaking off emotionally), interruption; --- SLASHSTUFF apscisus_A : A2 apscisus, apscisa -um, apscisior -or -us, apscisissimus -a -um -- [XXXCO] :: steep, sheer, precipitous; abrupt, curt, brusque; restricted; cut off, severed; + apscisus_A = mkA "apscisus" ; -- [XXXCO] :: steep, sheer, precipitous; abrupt, curt, brusque; restricted; cut off, severed; apscondite_Adv = mkAdv "apscondite" ; -- [XXXEO] :: abstrusely; profoundly; secretly; apsconditum_N_N = mkN "apsconditum" ; -- [XXXCE] :: hidden/secret/concealed place/thing; secret; apsconditus_A = mkA "apsconditus" "apscondita" "apsconditum" ; -- [XXXAO] :: hidden, secret, concealed; covert, disguised; abstruse, recondite; + apscondo_V2 = mkV2 (mkV "apscondere" "apscondo" "apscondi" "apsconditus ") ; -- [XXXBO] :: hide, conceal, secrete, "shelter"; leave behind; bury, engulf, swallow up; keep; apsconse_Adv = mkAdv "apsconse" ; -- [XXXEO] :: secretly; apsconsio_F_N = mkN "apsconsio" "apsconsionis " feminine ; -- [EXXCE] :: shelter; apsconsus_A = mkA "apsconsus" "apsconsa" "apsconsum" ; -- [EXXCE] :: hidden, secret, concealed, unknown; @@ -4829,12 +5179,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg apsento_V2 = mkV2 (mkV "apsentare") ; -- [XXXES] :: send away, cause one to be absent; be absent; apsida_F_N = mkN "apsida" ; -- [XSXCS] :: arc described by a planet; arc, segment of a circle; kind of round vessel/bowl; apsidata_F_N = mkN "apsidata" ; -- [XXXFO] :: alcove, niche; + apsilio_V = mkV "apsilire" "apsilio" nonExist nonExist; -- [XXXDO] :: rush/fly away (from); burst/fly apart; apsimilis_A = mkA "apsimilis" "apsimilis" "apsimile" ; -- [XXXCO] :: unlike, dissimilar; apsinthites_M_N = mkN "apsinthites" "apsinthitae " masculine ; -- [XAXEO] :: wine flavored with wormwood; apsinthium_N_N = mkN "apsinthium" ; -- [XXXEO] :: wormwood; infusion/tincture of wormwood; apsinthius_A = mkA "apsinthius" "apsinthia" "apsinthium" ; -- [XAXFS] :: containing wormwood (e.g., wine); (often mixed with honey to mask taste); apsinthius_M_N = mkN "apsinthius" ; -- [XAXFO] :: wormwood; infusion/tincture of wormwood (often mixed with honey to mask taste); apsis_F_N = mkN "apsis" "apsidis " feminine ; -- [XSXCO] :: arc described by a planet; arc, segment of a circle; kind of round vessel/bowl; + apsisto_V = mkV "apsistere" "apsisto" "apsistiti" nonExist; -- [XXXCO] :: withdraw from; desist, cease; leave off; depart, go away from; stand back; apsistus_A = mkA "apsistus" "apsista" "apsistum" ; -- [DXXFS] :: distant, lying away; apsit_Interj = ss "apsit" ; -- [EEXCE] :: "god forbid", "let it be far from the hearts of the faithful"; apsocer_M_N = mkN "apsocer" ; -- [DXXFS] :: great-great grandfather of the husband or wife (in-law); @@ -4842,17 +5194,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg apsolutio_F_N = mkN "apsolutio" "apsolutionis " feminine ; -- [XXXCO] :: finishing, completion; acquittal, release (obligat.); perfection; completeness; apsolutorium_N_N = mkN "apsolutorium" ; -- [XXXFS] :: means of deliverance from; apsolutorius_A = mkA "apsolutorius" "apsolutoria" "apsolutorium" ; -- [XXXCO] :: favoring/securing acquittal; effecting a cure; --- SLASHSTUFF apsolutus_A : A2 apsolutus, apsoluta -um, apsolutior -or -us, apsolutissimus -a -um -- [XXXBO] :: fluent; fully developed, complete, finished; perfect, pure; unconditional; + apsolutus_A = mkA "apsolutus" ; -- [XXXBO] :: fluent; fully developed, complete, finished; perfect, pure; unconditional; + apsolvo_V2 = mkV2 (mkV "apsolvere" "apsolvo" "apsolvi" "apsolutus ") ; -- [XLXAO] :: free (bonds), release; acquit; vote for/secure acquittal; pay off; sum up; apsone_Adv = mkAdv "apsone" ; -- [XXXEO] :: harshly, discordantly; apsono_V = mkV "apsonare" ; -- [XXXEO] :: have harsh/discordant/unpleasant sound; apsonus_A = mkA "apsonus" "apsona" "apsonum" ; -- [XXXCO] :: harsh/discordant/inharmonious; jarring; inconsistent; unsuitable, in bad taste; apsorbeo_V2 = mkV2 (mkV "apsorbere") ; -- [XXXDX] :: devour; swallow up; engulf, submerge; engross; absorb, suck in; import; dry up; apsorptio_F_N = mkN "apsorptio" "apsorptionis " feminine ; -- [XXXFS] :: drink, beverage; - apsque_Abl_Prep = mkPrep "apsque" Abl ; -- [XXXCO] :: without, apart from, away from; but for; except for; were it not for; (early); + apsque_Abl_Prep = mkPrep "apsque" abl ; -- [XXXCO] :: without, apart from, away from; but for; except for; were it not for; (early); apstantia_F_N = mkN "apstantia" ; -- [XXXEO] :: distance; apstemia_F_N = mkN "apstemia" ; -- [XXXEO] :: distance; apstemius_A = mkA "apstemius" "apstemia" "apstemium" ; -- [XXXCO] :: abstemious, abstaining from drink; sober, temperate; moderate; fasting; saving; apstergeo_V2 = mkV2 (mkV "apstergere") ; -- [XXXCO] :: wipe off/clean/away, clean away, cleanse, strip off; banish, expel, dispel; + apstergo_V2 = mkV2 (mkV "apstergere" "apstergo" "apstersi" "apstersus ") ; -- [XXXCO] :: wipe off/clean/away, clean away, cleanse, strip off; banish, expel, dispel; apsterreo_V2 = mkV2 (mkV "apsterrere") ; -- [XXXCO] :: frighten off/away; drive away; deter, discourage; keep away/withhold from, den; apstinax_A = mkA "apstinax" "apstinacis"; -- [XXXEO] :: abstemious, staying away from liquor; temperate/sparing in drink/food; apstinens_A = mkA "apstinens" "apstinentis"; -- [XXXCO] :: abstinent, temperate; showing restraint, self restrained; not covetous; chaste; @@ -4861,11 +5215,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg apstineo_V = mkV "apstinere" ; -- [XXXAO] :: withhold, keep away/clear; abstain, fast; refrain (from); avoid; keep hands of; apsto_V = mkV "apstare" ; -- [XXXEO] :: stand at a distance, stand off; keep at a distance; apstractio_F_N = mkN "apstractio" "apstractionis " feminine ; -- [DXXFS] :: separation; + apstraho_V2 = mkV2 (mkV "apstrahere" "apstraho" "apstraxi" "apstractus ") ; -- [XXXAO] :: drag away from, remove forcibly, abort; carry off to execution; split; + apstrudo_V2 = mkV2 (mkV "apstrudere" "apstrudo" "apstrusi" "apstrusus ") ; -- [XXXCO] :: thrust away, conceal, hide; suppress/prevent (emotion) becoming apparent; apstruse_Adv = mkAdv "apstruse" ; -- [XXXFS] :: secretly; remotely; abstrusely; apstrusio_F_N = mkN "apstrusio" "apstrusionis " feminine ; -- [DXXFS] :: removing, concealing; --- SLASHSTUFF apstrusus_A : A2 apstrusus, apstrusa -um, apstrusior -or -us, apstrusissimus -a -um -- [XXXBO] :: secret, reserved; concealed, hidden; remote, secluded; abstruse, recondite; + apstrusus_A = mkA "apstrusus" ; -- [XXXBO] :: secret, reserved; concealed, hidden; remote, secluded; abstruse, recondite; + apstulo_V2 = mkV2 (mkV "apstulere" "apstulo" nonExist nonExist) ; -- [XXXFO] :: to take away, withdraw; apsum_V = mkV "apesse" "apsum" "afui" "afuturus " ; -- Comment: [XXXAO] :: be away/absent/distant/missing; be free/removed from; be lacking; be distinct; apsumedo_F_N = mkN "apsumedo" "apsumedinis " feminine ; -- [XXXEO] :: act of squandering/wasting/using up; + apsumo_V2 = mkV2 (mkV "apsumere" "apsumo" "apsumpsi" "apsumptus ") ; -- [XXXAO] :: spend, waste, squander, use up; take up (time); consume; exhaust, wear out; apsumptio_F_N = mkN "apsumptio" "apsumptionis " feminine ; -- [XXXEO] :: act of spending/using up; apsurde_Adv = mkAdv "apsurde" ; -- [XXXCO] :: as to be out of tune, discordantly; preposterously, absurdly, inappropriately; apsurdus_A = mkA "apsurdus" "apsurda" "apsurdum" ; -- [XXXBO] :: out of tune, discordant; absurd, nonsensical, out of place; awkward, uncouth; @@ -4878,12 +5236,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg apto_V2 = mkV2 (mkV "aptare") ; -- [XXXAO] :: adapt, fit, apply, adjust, accommodate; put on, fasten; prepare, furnish; aptotum_N_N = mkN "aptotum" ; -- [DGXFS] :: substantives (pl.) that are not declined, aptotes; aptrum_N_N = mkN "aptrum" ; -- [XXXFO] :: vine leaves (pl.)?; --- SLASHSTUFF aptus_A : A2 aptus, apta -um, aptior -or -us, aptissimus -a -um -- [XXXAO] :: suitable, adapted; ready; apt, proper; tied, attached to; dependent on (w/ex); + aptus_A = mkA "aptus" ; -- [XXXAO] :: suitable, adapted; ready; apt, proper; tied, attached to; dependent on (w/ex); apua_F_N = mkN "apua" ; -- [XAXEO] :: small/young fish; whitebait; - apud_Acc_Prep = mkPrep "apud" Acc ; -- [XXXAO] :: at, by, near, among; at the house of; before, in the presence/writings/view of; + apud_Acc_Prep = mkPrep "apud" acc ; -- [XXXAO] :: at, by, near, among; at the house of; before, in the presence/writings/view of; apulsus_M_N = mkN "apulsus" ; -- [EXXFW] :: one drawn/pushed/driven aside/away (from); apus_F_N = mkN "apus" "apodis " feminine ; -- [XAXNO] :: bird (the swift?); kind of swallow (said to have no feet), black martin (L+S); - aput_Acc_Prep = mkPrep "aput" Acc ; -- [XXXAO] :: at, by, near, among; at the house of; before, in presence/writings/view/eyes of; + aput_Acc_Prep = mkPrep "aput" acc ; -- [XXXAO] :: at, by, near, among; at the house of; before, in presence/writings/view/eyes of; apyrenum_N_N = mkN "apyrenum" ; -- [XAXDO] :: pomegranate (kind with soft kernels); apyrenus_A = mkA "apyrenus" "apyrena" "apyrenum" ; -- [XAXDO] :: lacking a hard kernel (of fruit); with soft kernel/seeds; apyretus_A = mkA "apyretus" "apyreta" "apyretum" ; -- [DBXES] :: without fever; @@ -4912,7 +5270,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aquatio_F_N = mkN "aquatio" "aquationis " feminine ; -- [XXXCO] :: fetching/drawing water; place from which water is drawn, watering place; rains; aquator_M_N = mkN "aquator" "aquatoris " masculine ; -- [XXXEO] :: water-carrier/bearer, one who fetches water; aquatum_N_N = mkN "aquatum" ; -- [XSXFO] :: aqueous solution, mixture with water; --- SLASHSTUFF aquatus_A : A2 aquatus, aquata -um, aquatior -or -us, aquatissimus -a -um -- [XXXDO] :: diluted/mixed with water, watered down. watery; having a watery constitution; + aquatus_A = mkA "aquatus" ; -- [XXXDO] :: diluted/mixed with water, watered down. watery; having a watery constitution; aqueus_A = mkA "aqueus" "aquea" "aqueum" ; -- [FXXFM] :: aqueous; watery; aquicelus_M_N = mkN "aquicelus" ; -- [XAXNS] :: pine kernels boiled in honey; aquiducus_A = mkA "aquiducus" "aquiduca" "aquiducum" ; -- [DXXFS] :: drawing of water; @@ -4943,7 +5301,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aquivergium_N_N = mkN "aquivergium" ; -- [DXXFS] :: place in which water is collected, catchment, basin; cistern; aquola_F_N = mkN "aquola" ; -- [XXXDO] :: small amount of water; small stream; aquor_V = mkV "aquari" ; -- [XXXCO] :: get/fetch/bring water; be watered; --- SLASHSTUFF aquosus_A : A2 aquosus, aquosa -um, aquosior -or -us, aquosissimus -a -um -- [XXXCO] :: abounding in water, well watered, wet; humid, rainy; clear as water, watery; + aquosus_A = mkA "aquosus" ; -- [XXXCO] :: abounding in water, well watered, wet; humid, rainy; clear as water, watery; aquula_F_N = mkN "aquula" ; -- [XXXFO] :: small amount of water; small stream; ara_F_N = mkN "ara" ; -- [XEXAO] :: altar, structure for sacrifice, pyre; sanctuary; home; refuge, shelter; arabarches_M_N = mkN "arabarches" "arabarchae " masculine ; -- [XLEEO] :: Egyptian tax/customs collector; contemptuously of Pompey for raising taxes; @@ -5002,6 +5360,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg arbor_F_N = mkN "arbor" "arboris " feminine ; -- [XAXBO] :: tree; tree trunk; mast; oar; ship; gallows; spearshaft; beam; squid?; arborarius_A = mkA "arborarius" "arboraria" "arborarium" ; -- [XAXEO] :: tree-, of/concerned w/trees; [falx ~ => pruning hook; picus ~ => woodpecker]; arborator_M_N = mkN "arborator" "arboratoris " masculine ; -- [XAXEO] :: tree pruner; + arboresco_V = mkV "arborescere" "arboresco" nonExist nonExist; -- [XAXNO] :: grow into a tree, become a tree; arboretum_N_N = mkN "arboretum" ; -- [XAXEO] :: plantation of trees, place growing with trees; arboreus_A = mkA "arboreus" "arborea" "arboreum" ; -- [XAXCO] :: tree-, of tree(s); resembling a tree, branching; wooden; arboria_F_N = mkN "arboria" ; -- [DAXES] :: black ivy (as growing on trees); @@ -5032,10 +5391,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg arceo_V2 = mkV2 (mkV "arcere") ; -- [XXXAO] :: ward/keep off/away; keep close, confine; prevent, hinder; protect; separate; arcera_F_N = mkN "arcera" ; -- [GXXEK] :: |ambulance; arceracus_A = mkA "arceracus" "arceraca" "arceracum" ; -- [XAXNO] :: variety of vine (arceracae vites); + arcersio_V2 = mkV2 (mkV "arcersire" "arcersio" "arcersivi" "arcersitus ") ; -- [XXXCS] :: send for, summon; indict/accuse; fetch, import; invite; invoke; bring on oneself + arcerso_V2 = mkV2 (mkV "arcersere" "arcerso" "arcersivi" "arcersitus ") ; -- [XXXDO] :: send for, summon; indict/accuse; fetch, import; invite; invoke; bring on oneself + arcessio_V2 = mkV2 (mkV "arcessire" "arcessio" "arcessivi" "arcesitus ") ; -- [XXXCS] :: send for, summon; indict/accuse; fetch, import; invite; invoke; bring on oneself arcessitio_F_N = mkN "arcessitio" "arcessitionis " feminine ; -- [DXXFS] :: summons, sending for; [dies propriae ~ => day of death]; arcessitor_M_N = mkN "arcessitor" "arcessitoris " masculine ; -- [XLXEO] :: one who comes to summon/call/fetch another; accuser; arcessitus_A = mkA "arcessitus" "arcessita" "arcessitum" ; -- [XXXCO] :: brought from elsewhere, foreign; extraneous; self-inflicted (death); sent for; arcessitus_M_N = mkN "arcessitus" "arcessitus " masculine ; -- [XXXEO] :: summons, sending for; + arcesso_V2 = mkV2 (mkV "arcessere" "arcesso" "arcessivi" "arcessitus ") ; -- [XXXAO] :: send for, summon, indict; fetch, import; invite; invoke; bring on oneself; arceuthinus_A = mkA "arceuthinus" "arceuthina" "arceuthinum" ; -- [DEXFS] :: of the juniper tree; archaeologia_F_N = mkN "archaeologia" ; -- [HSXFE] :: archaeology; study of antiquities; archaeologicus_A = mkA "archaeologicus" "archaeologica" "archaeologicum" ; -- [HSXFE] :: archaeological; pertaining to archaeology/study of antiquities; @@ -5109,7 +5472,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg arcisellium_N_N = mkN "arcisellium" ; -- [XXXFO] :: chair with rounded back; arcitectus_M_N = mkN "arcitectus" ; -- [XTXCO] :: architect, master-builder; inventor, designer; arcitenens_A = mkA "arcitenens" "arcitenentis"; -- [XEXCO] :: carries/holding a bow (epithet of Apollo/Artimis), (constellation) the Archer; --- TODO arco_V : V2 arco, arcere, arcui, - -- Declension: 3rd -- Comment: [XXXCW] :: keep away, protect; + arco_V2 = mkV2 (mkV "arcere" "arco" "arcui" nonExist ) ; -- [XXXCW] :: keep away, protect; arcosolium_N_N = mkN "arcosolium" ; -- [DEXEE] :: arcosolium, arched recess/niche/cell as burial place in Roman Catacombs; arcs_F_N = mkN "arcs" "arcis " feminine ; -- [XXXCO] :: citadel, stronghold; height; the Capitoline hill Rome; defense, refuge; arcte_Adv =mkAdv "arcte" "arctius" "arctissime" ; -- [XXXBO] :: closely/tightly (bound/filled/holding); briefly, in a confined space, compactly; @@ -5146,16 +5509,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ardenter_Adv =mkAdv "ardenter" "ardentius" "ardentissime" ; -- [XXXCO] :: with burning/parching effect; passionately, ardently, eagerly, zealously; ardeo_V = mkV "ardere" ; -- [XXXAO] :: be on fire; burn, blaze; flash; glow, sparkle; rage; be in a turmoil/love; ardeola_F_N = mkN "ardeola" ; -- [XAXNS] :: heron (small?); + ardesco_V = mkV "ardescere" "ardesco" "arsi" nonExist; -- [XXXCO] :: catch/take fire, kindle; become ignited/inflamed/hot/eager; erupt (volcano); ardesiacus_A = mkA "ardesiacus" "ardesiaca" "ardesiacum" ; -- [GXXEK] :: slate-colored; ardifetus_A = mkA "ardifetus" "ardifeta" "ardifetum" ; -- [XXXFO] :: pregnant with fire/flame (lamp/torch); ardiola_F_N = mkN "ardiola" ; -- [XAXNO] :: heron (small?); ardor_M_N = mkN "ardor" "ardoris " masculine ; -- [XXXAO] :: fire, flame, heat; brightness, flash, gleam or color; ardor, love, intensity; arduitas_F_N = mkN "arduitas" "arduitatis " feminine ; -- [XXXFO] :: steepness; --- SLASHSTUFF ardus_A : A2 ardus, arda -um, ardior -or -us, ardissimus -a -um -- [XXXAO] :: dry, arid, parched; water/rain-less; used dry, dried; thirsty; poor; shriveled; + ardus_A = mkA "ardus" ; -- [XXXAO] :: dry, arid, parched; water/rain-less; used dry, dried; thirsty; poor; shriveled; arduum_N_N = mkN "arduum" ; -- [XXXBO] :: steep/high place, heights, elevation; arduous/difficult/hard task; challenge; --- SLASHSTUFF arduus_A : A2 arduus, ardua -um, arduior -or -us, arduissimus -a -um -- [XXXAO] :: steep, high, lofty, towering, tall; erect, rearing; uphill; arduous, difficult; + arduus_A = mkA "arduus" ; -- [XXXAO] :: steep, high, lofty, towering, tall; erect, rearing; uphill; arduous, difficult; + arduvo_V2 = mkV2 (mkV "arduvere" "arduvo" nonExist nonExist) ; -- [AXXFO] :: add, insert, bring/attach to, say in addition; increase; impart; associate; area_F_N = mkN "area" ; -- [XXXBO] :: open space; park, playground; plot; threshing floor; courtyard; site; bald spot; arealis_A = mkA "arealis" "arealis" "areale" ; -- [DAXFS] :: of/pertaining to (area) open space/threshing floor/courtyard; areal; + arefacio_V2 = mkV2 (mkV "arefacere" "arefacio" "arefeci" "arefactus ") ; -- [XXXDO] :: dry up, wither up, break down; make dry, dry; arena_F_N = mkN "arena" ; -- [XXXBO] :: sand, grains of sand; sandy land or desert; seashore; arena, place of contest; arenaceus_A = mkA "arenaceus" "arenacea" "arenaceum" ; -- [XXXNS] :: sandy; arenaria_F_N = mkN "arenaria" ; -- [XXXEO] :: sand-pit; @@ -5175,6 +5541,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg areo_V = mkV "arere" ; -- [XXXCO] :: be dry/parched; be thirsty; be withered (plants/animals, from lack of water); areola_F_N = mkN "areola" ; -- [XXXEO] :: open courtyard; garden plot, seed bed; arepennis_M_N = mkN "arepennis" "arepennis " masculine ; -- [XAFEO] :: arpent/land measure (Gallic; half jugerum (=5/16 acre); (5/6 to 1 1/4 acre OED); + aresco_V = mkV "arescere" "aresco" "arui" nonExist; -- [XAXCS] :: become dry; dry up; wither (plants); run dry (stream/tears); languish (L+S); aretalogus_M_N = mkN "aretalogus" ; -- [XDXEO] :: reciter/teller of fairy-tales/stories of the gods; prattler on virtue; boaster; arfacio_V = mkV "arfaceri" ; -- [XXXDS] :: be/become dried up/withered/dry; (arefacio PASS); arferia_F_N = mkN "arferia" ; -- [DEXFS] :: water which was poured in offering to the dead?; @@ -5213,6 +5580,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg argumentor_V = mkV "argumentari" ; -- [XXXBO] :: support/prove by argument, reason, discuss; draw a conclusion; proven (PASS); argumentosus_A = mkA "argumentosus" "argumentosa" "argumentosum" ; -- [XXXFO] :: abounding in subject matter/material; rich in proof; argumentum_N_N = mkN "argumentum" ; -- [DGXEZ] :: |trick; token (Vulgate); riddle; dark speech; + arguo_V2 = mkV2 (mkV "arguere" "arguo" "argui" "argutus ") ; -- [XXXAO] :: prove, argue, allege; disclose; accuse, complain of, charge, blame, convict; argutatio_F_N = mkN "argutatio" "argutationis " feminine ; -- [XXXFO] :: creaking, creak; rustling; argutator_M_N = mkN "argutator" "argutatoris " masculine ; -- [XXXFO] :: one who uses over-smart arguments, wiseguy; sophist; argutatrix_A = mkA "argutatrix" "argutatricis"; -- [XXXFO] :: garrulous, talkative (feminine adjective); @@ -5223,7 +5591,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg arguto_V = mkV "argutare" ; -- [XXXEO] :: babble, say childishly/foolishly; argutor_V = mkV "argutari" ; -- [XXXDO] :: chatter; prattle, babble; stamp (with feet) (L+S); argutulus_A = mkA "argutulus" "argutula" "argutulum" ; -- [XXXEO] :: clever/shrewd/acute, (somewhat) subtle; little noisy/talkative/loquacious (L+S); --- SLASHSTUFF argutus_A : A2 argutus, arguta -um, argutior -or -us, argutissimus -a -um -- [XXXBO] :: melodious, clear (sounds), ringing; eloquent; wise, witty, cunning; talkative; + argutus_A = mkA "argutus" ; -- [XXXBO] :: melodious, clear (sounds), ringing; eloquent; wise, witty, cunning; talkative; argyranche_F_N = mkN "argyranche" "argyranches " feminine ; -- [XXXEO] :: inability to speak due to bribery; "silver quinsy" (L+S); argyraspis_A = mkA "argyraspis" "argyraspidis"; -- [BWHFS] :: having silver shields (corps in army of Alexander/successors, Silver Shields); argyraspis_M_N = mkN "argyraspis" "argyraspidis " masculine ; -- [BWHEO] :: corps (pl.) in army of Alexander and successors, Silver Shields; @@ -5241,8 +5609,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ariditas_F_N = mkN "ariditas" "ariditatis " feminine ; -- [XXXEO] :: dryness; drought; scanty food; anything (pl.) dry/withered/parched; aridulus_A = mkA "aridulus" "aridula" "aridulum" ; -- [XXXEO] :: dry, parched (somewhat); aridum_N_N = mkN "aridum" ; -- [XXXDO] :: dry land; dry place; dry surface; dryness; --- SLASHSTUFF aridus_A : A2 aridus, arida -um, aridior -or -us, aridissimus -a -um -- [XXXAO] :: dry, arid, parched; water/rain-less; used dry, dried; thirsty; poor; shriveled; --- IGNORED ariel_N : N1 ariel, undeclined -- N -- [EEQEW] :: altar, fire-altar, fire-hearth of God; (Ezekiel 43:15); name = lion of God; + aridus_A = mkA "aridus" ; -- [XXXAO] :: dry, arid, parched; water/rain-less; used dry, dried; thirsty; poor; shriveled; + ariel_N = constN "ariel" neuter ; -- [EEQEW] :: altar, fire-altar, fire-hearth of God; (Ezekiel 43:15); name = lion of God; ariera_F_N = mkN "ariera" ; -- [XAJNO] :: banana; fruit of the Indian tree; aries_M_N = mkN "aries" "arietis " masculine ; -- [XXXBO] :: ram (sheep); battering ram; the Ram (zodiac); large unidentified marine animal; arietarius_A = mkA "arietarius" "arietaria" "arietarium" ; -- [XXXFO] :: of/for a battering ram; @@ -5280,7 +5648,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg armariolum_N_N = mkN "armariolum" ; -- [XXXES] :: little chest/casket, small cabinet; bookcase; armarium_N_N = mkN "armarium" ; -- [FXXEK] :: cupboard; armatura_F_N = mkN "armatura" ; -- [XWXCO] :: equipment, armor; troop (of gladiators); [levis ~ pedites => light infantry]; --- SLASHSTUFF armatus_A : A2 armatus, armata -um, armatior -or -us, armatissimus -a -um -- [XWXBO] :: armed, equipped; defensively armed, armor clad; fortified; of the use of arms; + armatus_A = mkA "armatus" ; -- [XWXBO] :: armed, equipped; defensively armed, armor clad; fortified; of the use of arms; armatus_M_N = mkN "armatus" "armatus " masculine ; -- [XWXDO] :: type of arms/equipment, armor; [gravis armatus => heavy-armed troops]; armellinum_N_N = mkN "armellinum" ; -- [FAXEE] :: ermine; armeniacum_N_N = mkN "armeniacum" ; -- [FAXEK] :: apricot; @@ -5291,7 +5659,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg armentarius_M_N = mkN "armentarius" ; -- [XAXDO] :: herdsman, cowboy; armenticius_A = mkA "armenticius" "armenticia" "armenticium" ; -- [XAXEO] :: consisting of cattle, bovine; armentivus_A = mkA "armentivus" "armentiva" "armentivum" ; -- [XAXNO] :: kept in herds; pertaining to a herd; --- SLASHSTUFF armentosus_A : A2 armentosus, armentosa -um, armentosior -or -us, armentosissimus -a -um -- [XAXFO] :: abounding in cattle; + armentosus_A = mkA "armentosus" ; -- [XAXFO] :: abounding in cattle; armentum_N_N = mkN "armentum" ; -- [XAXBO] :: herd (of cattle); a head of cattle, individual bull/horse; cattle/horses (pl.); armiclausa_F_N = mkN "armiclausa" ; -- [DWXES] :: military upper garment; armicustos_M_N = mkN "armicustos" "armicustodis " masculine ; -- [XWXIO] :: armorer, keeper of arms; @@ -5350,9 +5718,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg arramio_V = mkV "arramiare" ; -- [FLXFJ] :: arraign; indict, accuse; arrectarium_N_N = mkN "arrectarium" ; -- [XTXFO] :: vertical post, upright; arrectarius_A = mkA "arrectarius" "arrectaria" "arrectarium" ; -- [DTXES] :: erect, in an erect position, perpendicular; --- SLASHSTUFF arrectus_A : A2 arrectus, arrecta -um, arrectior -or -us, arrectissimus -a -um -- [XXXEL] :: erect, perpendicular, upright, standing; steep, precipitous; excited, eager; + arrectus_A = mkA "arrectus" ; -- [XXXEL] :: erect, perpendicular, upright, standing; steep, precipitous; excited, eager; arremigo_V = mkV "arremigare" ; -- [XXXEO] :: row up to/towards; arrenicum_N_N = mkN "arrenicum" ; -- [XXXNO] :: yellow arsenic, orpiment (arsenic trisulphide); + arrepo_V = mkV "arrepere" "arrepo" "arrepsi" "arreptus "; -- [XXXCO] :: creep/move stealthily towards, steal up; feel one's way, worm one's way (trust); arrepticius_A = mkA "arrepticius" "arrepticia" "arrepticium" ; -- [DXXES] :: seized/possessed (in mind), inspired; raving, delirious; raving mad; arreptitius_A = mkA "arreptitius" "arreptitia" "arreptitium" ; -- [EXXEE] :: seized/possessed (in mind), inspired; raving, delirious; raving mad; arreptius_A = mkA "arreptius" "arreptia" "arreptium" ; -- [DXXFS] :: seized/possessed (in mind), inspired; raving, delirious; @@ -5365,9 +5734,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg arrhenogonos_A = mkA "arrhenogonos" "arrhenogonos" "arrhenogonon" ; -- [XBXNO] :: of species of plant (crataegis) that when taken promotes male children; arrhetos_M_N = mkN "arrhetos" "arrheti " masculine ; -- [DSXFS] :: one of Aeons of Valentinus; arrideo_V = mkV "arridere" ; -- [XXXCO] :: smile at/upon; please, be pleasing/satisfactory (to); be/seem familiar (to); - arrigo_V2 = mkV2 (mkV "arrigare") ; -- [XAXFO] :: water (plants), moisten the soil around; + arrigo_V2 = mkV2 (mkV "arrigere" "arrigo" "arrexi" "arrectus ") ; -- [XXXBO] :: set upright, tilt upwards, stand on end, raise; become sexually excited/aroused; + arripio_V2 = mkV2 (mkV "arripere" "arripio" "arripui" "arreptus ") ; -- [XXXAO] :: take hold of; seize (hand/tooth/claw), snatch; arrest; assail; pick up, absorb; arrisio_F_N = mkN "arrisio" "arrisionis " feminine ; -- [XXXFL] :: smile of approval; action of smiling (at/on); arrisor_M_N = mkN "arrisor" "arrisoris " masculine ; -- [XXXFO] :: one who smiles (at a person), smiler; flatterer, fawner (L+S); + arrodo_V2 = mkV2 (mkV "arrodere" "arrodo" "arrosi" "arrosus ") ; -- [XXXCO] :: gnaw/nibble (away part); erode, eat away(disease/chemicals). wash away (water); arrogans_A = mkA "arrogans" "arrogantis"; -- [XXXBO] :: arrogant, insolent, overbearing; conceited; presumptuous, assuming; arroganter_Adv =mkAdv "arroganter" "arrogentius" "arrogentissime" ; -- [XXXCO] :: insolently, arrogantly, haughtily; presumptuously; in a conceited manner; arrogantia_F_N = mkN "arrogantia" ; -- [XXXCO] :: insolence, arrogance, conceit, haughtiness; presumption; @@ -5378,9 +5749,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg arrosor_M_N = mkN "arrosor" "arrosoris " masculine ; -- [XXXFO] :: one who nibbles/gnaws at; arrotans_A = mkA "arrotans" "arrotantis"; -- [DXXFS] :: in a winding/circular motion, turning; wavering; arrugia_F_N = mkN "arrugia" ; -- [XXXNO] :: kind of galleried mine; + arruo_V2 = mkV2 (mkV "arruere" "arruo" "arrui" "arrutus ") ; -- [XXXFO] :: heap up (earth); cover (with earth), bury; ars_F_N = mkN "ars" "artis " feminine ; -- [XXXAO] :: skill/craft/art; trick, wile; science, knowledge; method, way; character (pl.); arsella_F_N = mkN "arsella" ; -- [DAXFS] :: plant; (also called argemonia); --- TODO arsen_N : N1 arsen, arsenos/is -- M -- [XAXNO] :: male (plant); + arsen_1_N = mkN "arsen" "arsenis" masculine ; -- [XAXNO] :: male (plant); + arsen_2_N = mkN "arsen" "arsenos" masculine ; -- [XAXNO] :: male (plant); arsenicon_N_N = mkN "arsenicon" "arsenici " neuter ; -- [XXXFO] :: yellow arsenic, orpiment (arsenic trisulphide); arsenicum_N_N = mkN "arsenicum" ; -- [XXXFO] :: yellow arsenic, orpiment (arsenic trisulphide); arsenogonon_N_N = mkN "arsenogonon" "arsenogoni " neuter ; -- [XAXNO] :: plant (genus Mercurialis?); @@ -5422,14 +5795,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg artificiatus_A = mkA "artificiatus" "artificiata" "artificiatum" ; -- [FXXEZ] :: crafted; artificial; artificiose_Adv =mkAdv "artificiose" "artificiosius" "artificiosissime" ; -- [XTXCO] :: skillfully; artistically; systematically, technically, by rules; artificially; artificiositas_F_N = mkN "artificiositas" "artificiositatis " feminine ; -- [GXXEK] :: art, manner of that made with art; --- SLASHSTUFF artificiosus_A : A2 artificiosus, artificiosa -um, artificiosior -or -us, artificiosissimus -a -um -- [XTXBO] :: skillfully; technical, by the rules, prescribed by art; artificial, unnatural; + artificiosus_A = mkA "artificiosus" ; -- [XTXBO] :: skillfully; technical, by the rules, prescribed by art; artificial, unnatural; artificium_N_N = mkN "artificium" ; -- [XTXBO] :: art/craft/trade; skill/talent/craftsmanship; art work; method/trick; technology; artilleria_F_N = mkN "artilleria" ; -- [GWXEK] :: artillery; + artio_V2 = mkV2 (mkV "artire" "artio" "artivi" nonExist) ; -- [XTXEO] :: insert tightly, wedge; be a tight fit, crowd; artius_A = mkA "artius" "artia" "artium" ; -- [XXXFO] :: sound in mind and body; complete, perfect; skilled in arts; artful, cunning; arto_V2 = mkV2 (mkV "artare") ; -- [XXXAO] :: wedge in, fit/close firmly, tighten; compress, abridge; pack, limit, cramp; artocopus_M_N = mkN "artocopus" ; -- [DXXES] :: baker; --- TODO artocreas_N : N1 artocreas, artocratos/is -- N -- [XXXES] :: bread and meat distributed free; meat pie (L+S); --- TODO artocrias_N : N1 artocrias, artocrios/is -- N -- [XXXIO] :: bread and meat distributed free; + artocreas_1_N = mkN "artocreas" "artocratis" neuter ; -- [XXXES] :: bread and meat distributed free; meat pie (L+S); + artocreas_2_N = mkN "artocreas" "artocratos" neuter ; -- [XXXES] :: bread and meat distributed free; meat pie (L+S); + artocrias_1_N = mkN "artocrias" "artocriis" neuter ; -- [XXXIO] :: bread and meat distributed free; + artocrias_2_N = mkN "artocrias" "artocrios" neuter ; -- [XXXIO] :: bread and meat distributed free; artolaganus_M_N = mkN "artolaganus" ; -- [XXXEO] :: kind of fatty cake; (made of meal, wine, milk, oil, lard, pepper L+S); artophorion_N_N = mkN "artophorion" "artophorii " neuter ; -- [EEXFE] :: vessel for Blessed Sacrament in Greek churches; artopta_F_N = mkN "artopta" ; -- [XXXEO] :: bread pan; cake mold; @@ -5441,7 +5817,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg artufex_F_N = mkN "artufex" "artuficis " feminine ; -- [XXXAO] :: artist, actor; craftsman; master of an art; author, maker; mastermind, schemer; artufex_M_N = mkN "artufex" "artuficis " masculine ; -- [XXXAO] :: artist, actor; craftsman; master of an art; author, maker; mastermind, schemer; artum_N_N = mkN "artum" ; -- [XXXBO] :: narrow/limited space/limits/scope/sphere; dangerous situation, short supply; --- SLASHSTUFF artus_A : A2 artus, arta -um, artior -or -us, artissimus -a -um -- [XXXAO] :: close, firm, tight; thrifty; dense, narrow; strict; scarce, critical; brief; + artus_A = mkA "artus" ; -- [XXXAO] :: close, firm, tight; thrifty; dense, narrow; strict; scarce, critical; brief; artus_M_N = mkN "artus" "artus " masculine ; -- [XBXBO] :: arm/leg/limb, joint, part of the body; frame (pl.), body; sexual members/organs; artutus_A = mkA "artutus" "artuta" "artutum" ; -- [XBXFO] :: hefty, large-limbed (?); arula_F_N = mkN "arula" ; -- [DEXDS] :: small altar; base of an altar; turf laid like an altar round base of a tree; @@ -5455,6 +5831,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg arutaena_F_N = mkN "arutaena" ; -- [XXXEO] :: ladle; vessel for taking up liquids (L+S); arva_F_N = mkN "arva" ; -- [BAXFO] :: arable land, plowed field; soil, region; countryside; dry land; lowlands, plain; arvalis_A = mkA "arvalis" "arvalis" "arvale" ; -- [XAXDO] :: of cultivated land; [frater ~ => priest who made offering to Lares for harvest]; + arveho_V2 = mkV2 (mkV "arvehere" "arveho" "arvexi" "arvectus ") ; -- [XXXEO] :: carry, bring, convey (to); [advehor => arrive by travel, ride to]; arviga_F_N = mkN "arviga" ; -- [XEXFS] :: ram for offering/sacrifice; arvina_F_N = mkN "arvina" ; -- [XXXDO] :: fat, lard, suet, grease; small fat/suet; (on kidneys of sacrificial victim); arvix_F_N = mkN "arvix" "arvigis " feminine ; -- [XEXFS] :: ram for offering/sacrifice; @@ -5472,22 +5849,26 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg asbestos_M_N = mkN "asbestos" "asbesti " masculine ; -- [XXXNO] :: mineral or gem; iron-gray stoner from Arcadia (not common asbestos) (L+S); ascalabotes_M_N = mkN "ascalabotes" "ascalabotae " masculine ; -- [XAXNS] :: lizard (stellio in pure Latin) (Lacerta gecko); ascalia_F_N = mkN "ascalia" ; -- [XAXNO] :: edible base of the artichoke; + ascalpo_V2 = mkV2 (mkV "ascalpere" "ascalpo" nonExist nonExist) ; -- [XXXFO] :: scratch; scratch at; ascaules_M_N = mkN "ascaules" "ascaulis " masculine ; -- [XDXFO] :: bagpiper (utricularius in pure Latin L+S); ascea_F_N = mkN "ascea" ; -- [XTXCO] :: carpenter's axe; mason's trowel;[sub ~ => under the trowel/construction]; ascella_F_N = mkN "ascella" ; -- [EXXEW] :: wing; pinion; armpit; upper arm/foreleg/fin; ascendens_A = mkA "ascendens" "ascendentis"; -- [XXXFO] :: of/for climbing (machine); enabling one to climb; ascendibilis_A = mkA "ascendibilis" "ascendibilis" "ascendibile" ; -- [XXXFO] :: climbable, that can be climbed; + ascendo_V2 = mkV2 (mkV "ascendere" "ascendo" "ascendi" "ascensus ") ; -- [XXXAO] :: climb; go/climb up; mount, scale; mount up, embark; rise, ascend, move upward; ascensio_F_N = mkN "ascensio" "ascensionis " feminine ; -- [XXXEO] :: ascent; progress, advancement; rising series/flight of stairs; soaring; ascensor_M_N = mkN "ascensor" "ascensoris " masculine ; -- [DXXES] :: one who ascends/rises; one who mounts a horse/chariot, rider, charioteer; ascensus_M_N = mkN "ascensus" "ascensus " masculine ; -- [XXXBO] :: ascent; act of scaling (walls); approach; a stage/step in advancement; height; + ascesis_1_N = mkN "ascesis" "asceseis" feminine ; -- [EXXFE] :: discipline; training; + ascesis_2_N = mkN "ascesis" "asceseos" feminine ; -- [EXXFE] :: discipline; training; ascesis_F_N = mkN "ascesis" "ascesis " feminine ; -- [EXXEE] :: discipline; training; --- TODO ascesis_N : N1 ascesis, asceseos/is -- F -- [EXXFE] :: discipline; training; asceta_M_N = mkN "asceta" ; -- [EEXEE] :: ascetic, hermit; penitent; one who has taken vows; asceterium_N_N = mkN "asceterium" ; -- [DEXES] :: place for the abode of ascetics (pl.); hermitage; monastery (Ecc); asceticus_A = mkA "asceticus" "ascetica" "asceticum" ; -- [EEXFE] :: ascetical; of spiritual exercises to attain virtue/perfection; ascetria_F_N = mkN "ascetria" ; -- [DEXEE] :: nun; ascetic (female); women (pl.) who have taken vows (L+S); ascia_F_N = mkN "ascia" ; -- [XTXCO] :: carpenter's axe; mason's trowel; [sub ~ => under the trowel/construction]; - ascio_V2 = mkV2 (mkV "asciare") ; -- [XTXFO] :: chop/slice with a trowel; + ascio_V2 = mkV2 (mkV "ascire" "ascio" nonExist nonExist) ; -- [XXXDO] :: take to/up; associate, admit; adopt as one's own; take upon (General's) staff; + ascisco_V2 = mkV2 (mkV "asciscere" "ascisco" "ascivi" "ascitus ") ; -- [XXXAO] :: adopt, assume; receive, admit, approve of, associate; take over, claim; ascites_M_N = mkN "ascites" "ascitae " masculine ; -- [XBXFS] :: kind of dropsy; ascitus_A = mkA "ascitus" "ascita" "ascitum" ; -- [XXXES] :: derived, assumed; foreign; ascitus_M_N = mkN "ascitus" "ascitus " masculine ; -- [XXXFS] :: acceptance, reception; @@ -5496,6 +5877,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg asclepion_N_N = mkN "asclepion" "asclepii " neuter ; -- [XAXNS] :: medicinal herb (named after Aesculapius); ascopa_F_N = mkN "ascopa" ; -- [XXXFO] :: leather bag, wallet; ascopera_F_N = mkN "ascopera" ; -- [XXXFS] :: leather bag/sack; + ascribo_V2 = mkV2 (mkV "ascribere" "ascribo" "ascripsi" "ascriptus ") ; -- [XXXAO] :: add/state in writing, insert; appoint; enroll, enfranchise; reckon, number; ascripticius_A = mkA "ascripticius" "ascripticia" "ascripticium" ; -- [XWXEO] :: enrolled in addition (as citizen/soldier); ascriptio_F_N = mkN "ascriptio" "ascriptionis " feminine ; -- [XXXEO] :: addendum, addition in writing; ascriptivus_A = mkA "ascriptivus" "ascriptiva" "ascriptivum" ; -- [XWXEO] :: enrolled in addition (as a soldier), supernumerary; @@ -5529,16 +5911,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aspaltus_M_N = mkN "aspaltus" ; -- [EAXFW] :: thorny shrub from which fragrant oil was obtained; camel thorn (Vulgate); asparagus_M_N = mkN "asparagus" ; -- [XXXCO] :: asparagus; shoot/sprout like asparagus; [~ Gallicus => samphire/garden fennel]; aspargo_F_N = mkN "aspargo" "asparginis " feminine ; -- [XXXBO] :: spray, sprinkling/scattering; moisture in form of drops; water damage; staining; --- SLASHSTUFF aspectabilis_A : A2 aspectabilis, aspectabile, aspectabilior -or -us, aspectabilissimus -a -um -- [XXXEO] :: visible, able to be seen; worthy to be seen, pleasing to look at; + aspargo_V2 = mkV2 (mkV "aspargere" "aspargo" "asparsi" "asparsus ") ; -- [XXXAO] :: sprinkle/strew on, splatter, splash; defile, stain; cast (slur); inflict (harm); + aspectabilis_A = mkA "aspectabilis" ; -- [XXXEO] :: visible, able to be seen; worthy to be seen, pleasing to look at; aspectamen_N_N = mkN "aspectamen" "aspectaminis " neuter ; -- [DXXFS] :: look, sight; aspectio_F_N = mkN "aspectio" "aspectionis " feminine ; -- [XEXFO] :: right of watching for/observing auguries; aspecto_V2 = mkV2 (mkV "aspectare") ; -- [XXXCO] :: look/gaze at/upon; observe, watch; pay heed; face/look towards (place/person); aspectus_M_N = mkN "aspectus" "aspectus " masculine ; -- [XXXAO] :: appearance, aspect, mien; act of looking; sight, vision; glance, view; horizon; + aspello_V2 = mkV2 (mkV "aspellere" "aspello" nonExist nonExist) ; -- [XXXCO] :: drive away; banish; aspendios_M_N = mkN "aspendios" "aspendii " masculine ; -- [XAXNS] :: kind of vine; --- SLASHSTUFF asper_A : A2 asper, aspra -um, asprior -or -us, - -- [XXXEO] :: rough/uneven, coarse/harsh; sharp/pointed; rude; savage; pungent; keen; bitter; + asper_A = mkA "asper" ; -- [XXXEO] :: rough/uneven, coarse/harsh; sharp/pointed; rude; savage; pungent; keen; bitter; aspere_Adv =mkAdv "aspere" "asperius" "asperrime" ; -- [XXXBS] :: roughly, harshly, severely, vehemently; with rough materials; coarsely; aspergillum_N_N = mkN "aspergillum" ; -- [EEXEE] :: aspergillum, holy water sprinkler/brush; aspergo_F_N = mkN "aspergo" "asperginis " feminine ; -- [XXXBO] :: spray, sprinkling/scattering; moisture in form of drops; water damage; staining; + aspergo_V2 = mkV2 (mkV "aspergere" "aspergo" "aspersi" "aspersus ") ; -- [XXXAO] :: sprinkle/strew on, splatter, splash; defile, stain; cast (slur); inflict (harm); asperitas_F_N = mkN "asperitas" "asperitatis " feminine ; -- [XXXAO] :: roughness; severity; difficulty; harshness; shrillness, sharpness; fierceness; asperiter_Adv = mkAdv "asperiter" ; -- [XXXFO] :: by rough materials/harsh sound; coarsely/roughly; harshly/severely; drastically; aspernabilis_A = mkA "aspernabilis" "aspernabilis" "aspernabile" ; -- [XXXEO] :: contemptible, negligible; worthy to be disdained, such as might be disdained; @@ -5556,6 +5941,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aspharagus_M_N = mkN "aspharagus" ; -- [DXXCS] :: asparagus; shoot/sprout like asparagus; [~ Gallicus => samphire/garden fennel]; asphodelum_N_N = mkN "asphodelum" ; -- [XAXEO] :: asphodel (Asphodelus ramosus); asphodelus_M_N = mkN "asphodelus" ; -- [XAXEO] :: asphodel (Asphodelus ramosus); + aspicio_V2 = mkV2 (mkV "aspicere" "aspicio" "aspexi" "aspectus ") ; -- [XXXAO] :: look/gaze on/at, see, observe, behold, regard; face; consider, contemplate; aspilates_M_N = mkN "aspilates" "aspilatae " masculine ; -- [XXQNS] :: precious stone of Arabia; aspiramen_N_N = mkN "aspiramen" "aspiraminis " neuter ; -- [XXXFO] :: breathing on, immission; insertion, introduction; aspiratio_F_N = mkN "aspiratio" "aspirationis " feminine ; -- [XXXCO] :: exhalation; blowing on; aspiration; sounding "h"; @@ -5563,8 +5949,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aspiratrum_N_N = mkN "aspiratrum" ; -- [GXXEK] :: vacuum cleaner; aspirinum_N_N = mkN "aspirinum" ; -- [HBXEK] :: aspirin; aspiro_V = mkV "aspirare" ; -- [XXXAO] :: breathe/blow (upon); aspirate; instill, infuse; be fragrant; influence; aspire; + aspis_1_N = mkN "aspis" "aspidis" feminine ; -- [XXACO] :: asp, venomous snake of North Africa; + aspis_2_N = mkN "aspis" "aspidos" feminine ; -- [XXACO] :: asp, venomous snake of North Africa; aspis_F_N = mkN "aspis" "aspidis " feminine ; -- [EXAEW] :: asp, venomous snake of North Africa; --- TODO aspis_N : N1 aspis, aspidos/is -- F -- [XXACO] :: asp, venomous snake of North Africa; aspisatis_F_N = mkN "aspisatis" "aspisatis " feminine ; -- [XXXNO] :: unknown precious stone; asplenon_N_N = mkN "asplenon" "aspleni " neuter ; -- [XAXNO] :: fern (Ceterach officinarum?); miltwort, spleenwort (L+S); asplenos_F_N = mkN "asplenos" "aspleni " feminine ; -- [XAXNO] :: fern (Ceterach officinarum?); miltwort, spleenwort (L+S); @@ -5576,6 +5963,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aspretum_N_N = mkN "aspretum" ; -- [XXXEO] :: rough/broken/uneven ground; aspriter_Adv = mkAdv "aspriter" ; -- [XXXFO] :: by rough materials/harsh sound; coarsely/roughly; harshly/severely; drastically; aspritudo_F_N = mkN "aspritudo" "aspritudinis " feminine ; -- [XXXCO] :: roughness to touch, grittiness; unevenness (ground); (w/ocularum) trachoma; + aspuo_V2 = mkV2 (mkV "aspuere" "aspuo" "aspui" "asputus ") ; -- [XXXNO] :: spit (at/on); assa_F_N = mkN "assa" ; -- [XXXFO] :: dry-nurse, nurse, nanny; assarius_A = mkA "assarius" "assaria" "assarium" ; -- [XXXFO] :: roasted, browned (?); having the value/weight of an as (?); assarius_M_N = mkN "assarius" ; -- [XLXFO] :: as (penny, copper) as a monetary unit; @@ -5592,6 +5980,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg assedo_M_N = mkN "assedo" "assedonis " masculine ; -- [XLXES] :: assessor, counselor, one who sits by to give advice; assefolium_N_N = mkN "assefolium" ; -- [DAXFS] :: plant; (also called agrostis); assellor_V = mkV "assellari" ; -- [DBXFS] :: defecate, void; + assenesco_V = mkV "assenescere" "assenesco" nonExist nonExist; -- [DXXFS] :: become old (to any thing); assensio_F_N = mkN "assensio" "assensionis " feminine ; -- [XXXCO] :: assent, agreement, belief; approval, approbation, applause; assensor_M_N = mkN "assensor" "assensoris " masculine ; -- [XXXDO] :: one who agrees or approves; assensus_M_N = mkN "assensus" "assensus " masculine ; -- [XXXCO] :: assent, agreement, belief; approval, approbation, applause; @@ -5600,17 +5989,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg assentator_M_N = mkN "assentator" "assentatoris " masculine ; -- [XXXCO] :: yes-man, flatterer, toady; assentatorie_Adv = mkAdv "assentatorie" ; -- [XXXFO] :: like a flatterer; fawningly, in a flattering manner; assentatrix_F_N = mkN "assentatrix" "assentatricis " feminine ; -- [XXXFO] :: woman who flatters; + assentio_V = mkV "assentire" "assentio" "assensi" "assensus "; -- [XXXCO] :: assent, approve, agree in opinion; admit the truth of (w/DAT), agree (with); + assentior_V = mkV "assentiri" "assentior" "assensus sum " ; -- [XXXBO] :: assent to, agree, approve, comply with; admit the truth of (w/PREP); assentor_V = mkV "assentari" ; -- [XXXCO] :: flatter, humor; agree, assent, confirm; agree to everything; assequela_F_N = mkN "assequela" ; -- [DXXFS] :: succession, succeeding; + assequor_V = mkV "assequi" "assequor" "assecutus sum " ; -- [XXXAO] :: follow on, pursue, go after; overtake; gain, achieve; equal, rival; understand; asser_M_N = mkN "asser" "asseris " masculine ; -- [XXXCO] :: pole (wooden), post, stake, beam; joist, rafter; pole of a litter; asserculum_N_N = mkN "asserculum" ; -- [XXXEO] :: small beam/pole/post; asserculus_M_N = mkN "asserculus" ; -- [XXXEO] :: small beam/pole/post; + assero_V2 = mkV2 (mkV "asserere" "assero" "assevi" "assitus ") ; -- [XXXDO] :: plant/set at/near; assertio_F_N = mkN "assertio" "assertionis " feminine ; -- [FGXDB] :: |assertion; statement; assertor_M_N = mkN "assertor" "assertoris " masculine ; -- [XXXCO] :: one asserting status of another; restorer of liberty, protector, champion; assertorius_A = mkA "assertorius" "assertoria" "assertorium" ; -- [DLXFS] :: of/pertaining to a restoration of freedom; assertum_N_N = mkN "assertum" ; -- [DGXES] :: assertion; asservatio_F_N = mkN "asservatio" "asservationis " feminine ; -- [FXXFE] :: keeping, preservation; reservation; --- asservio_V2 : V4 asservio, asservire, asservivi, asservitus -- Declension: 4th -- Case: DAT -- Comment: [XXXFO] :: devote/apply oneself to (w/DAT); aid, help, assist; + asservio_V2 = mkV2 (mkV "asservire" "asservio" "asservivi" "asservitus ") Dat_Prep ; -- [XXXFO] :: devote/apply oneself to (w/DAT); aid, help, assist; asservo_V2 = mkV2 (mkV "asservare") ; -- [XXXBO] :: keep/guard/preserve; watch/observe; keep in custody; rescue/save life; reserve; assesio_F_N = mkN "assesio" "assesionis " feminine ; -- [FXXFE] :: siting as assessor; act of assessing; sitting beside one (console/give advice); assessio_F_N = mkN "assessio" "assessionis " feminine ; -- [XXXFO] :: sitting beside one (to console/give advice); @@ -5625,20 +6018,23 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg asseveratio_F_N = mkN "asseveratio" "asseverationis " feminine ; -- [XXXCO] :: affirmation, (confident/earnest) assertion; seriousness/earnestness, gravity; assevero_V2 = mkV2 (mkV "asseverare") ; -- [XXXCO] :: act earnestly; assert strongly/emphatically, declare; profess; be serious; assibilo_V2 = mkV2 (mkV "assibilare") ; -- [XXXFO] :: hiss out (breath) upon (w/DAT); murmur/whisper to/at (L+S); + assiccesco_V = mkV "assiccescere" "assiccesco" "assiccui" nonExist; -- [XXXFO] :: dry out/up, become dry; assicco_V2 = mkV2 (mkV "assiccare") ; -- [XXXDO] :: dry, dry out, dry up, make dry; assiculus_M_N = mkN "assiculus" ; -- [XXXFS] :: small axle; small plank, slat; small beam/pole, pin (L+S); assideo_V = mkV "assidere" ; -- [XXXBO] :: sit by/in council/as assessor; watch over; camp near, besiege; resemble (w/DAT); + assido_V = mkV "assidere" "assido" "assedi" nonExist; -- [XXXCO] :: sit down, take a seat; perch, alight, settle; sit by/near (to) (w/DAT); assidue_Adv =mkAdv "assidue" "assiduius" "assiduissime" ; -- [XXXCO] :: continually, constantly, regularly; assiduitas_F_N = mkN "assiduitas" "assiduitatis " feminine ; -- [XXXCO] :: attendance, constant presence/attention/practice, care; recurrence, repetition; assiduo_Adv = mkAdv "assiduo" ; -- [XXXDO] :: continually, constantly, regularly; assiduo_V2 = mkV2 (mkV "assiduare") ; -- [XXXFS] :: apply constantly; make constant use of (Souter); use regularly/incessantly; --- SLASHSTUFF assiduus_A : A2 assiduus, assidua -um, assiduior -or -us, assiduissimus -a -um -- [XXXAO] :: constant, regular; unremitting, incessant; ordinary; landowning, first-class; + assiduus_A = mkA "assiduus" ; -- [XXXAO] :: constant, regular; unremitting, incessant; ordinary; landowning, first-class; assiduus_M_N = mkN "assiduus" ; -- [XXXES] :: tribute/tax payer, rich person; first-rate person/writer?; assifornus_A = mkA "assifornus" "assiforna" "assifornum" ; -- [XDXIO] :: touring gladiatorial show; assignatio_F_N = mkN "assignatio" "assignationis " feminine ; -- [XLXCO] :: distribution/allotment of land; the plot of land granted; allocation (other); assignator_M_N = mkN "assignator" "assignatoris " masculine ; -- [XLXFO] :: allocator, one who assigns; assignifico_V2 = mkV2 (mkV "assignificare") ; -- [XXXDO] :: show (w/ACC + INF), make evident; mean/denote (words); assigno_V2 = mkV2 (mkV "assignare") ; -- [XXXAO] :: assign, distribute, allot; award, bestow (rank/honors); impute; affix seal; + assilio_V2 = mkV2 (mkV "assilire" "assilio" "assilui" "assultus ") ; -- [XXXBO] :: jump/leap (up/on/towards), rush/dash (at/against), assault; mount (male-female); assimilanter_Adv = mkAdv "assimilanter" ; -- [XXXEO] :: similarly, analogically; assimilatio_F_N = mkN "assimilatio" "assimilationis " feminine ; -- [XXXDS] :: likeness, similarity in form; comparison; deceit, pretense, feigning, pretending assimilatus_A = mkA "assimilatus" "assimilata" "assimilatum" ; -- [XXXES] :: similar, like, made similar; imitated, feigned, pretended. dissembled; @@ -5657,6 +6053,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg assis_M_N = mkN "assis" "assis " masculine ; -- [XXXEO] :: plank, board; assisa_F_N = mkN "assisa" ; -- [FLXFJ] :: Assise; county court room; assistentia_F_N = mkN "assistentia" ; -- [FXXEE] :: help, assistance; attendance; + assisto_V2 = mkV2 (mkV "assistere" "assisto" "asstiti" "asstatus ") ; -- [XXXBO] :: take position/stand (near/by), attend; appear before; set/place near; defend; assistrix_F_N = mkN "assistrix" "assistricis " feminine ; -- [XLXFS] :: assessor (female), counselor, who sits by to give advice; attendant/assistant; assitus_A = mkA "assitus" "assita" "assitum" ; -- [XXXEO] :: planted/set/situated at/near; asso_V2 = mkV2 (mkV "assare") ; -- [XXXFO] :: roast, bake, broil; dry; @@ -5668,9 +6065,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg assolo_V2 = mkV2 (mkV "assolare") ; -- [DWXES] :: level to the ground, destroy; assono_V = mkV "assonare" ; -- [XXXDO] :: respond, reply; sound in accompaniment; sing as an accompaniment; asspersorium_N_N = mkN "asspersorium" ; -- [EEXEE] :: aspergillum, holy water sprinkler/brush; + assubrigo_V2 = mkV2 (mkV "assubrigere" "assubrigo" nonExist nonExist) ; -- [XXXNO] :: stretch up, raise; + assudesco_V = mkV "assudescere" "assudesco" nonExist nonExist; -- [XXXEO] :: sweat, break out in a sweat; + assuefacio_V2 = mkV2 (mkV "assuefacere" "assuefacio" "assuefeci" "assuefactus ") ; -- [XXXCO] :: accustom (to), habituate, inure; make accustomed/used (to), train; assuefio_V = mkV "assueferi" ; -- [XXXCO] :: be/become accustomed (to), be habituated; be trained; (assuefacio PASS); + assuesco_V2 = mkV2 (mkV "assuescere" "assuesco" "assuevi" "assuetus ") ; -- [XXXBO] :: accustom, become/grow accustomed to/used to/intimate with; make familiar; assuetudo_F_N = mkN "assuetudo" "assuetudinis " feminine ; -- [XXXCO] :: custom, habit; repeated practice/experience/association; intimacy, intercourse; --- SLASHSTUFF assuetus_A : A2 assuetus, assueta -um, assuetior -or -us, assuetissimus -a -um -- [XXXBO] :: accustomed, customary, usual, to which one is accustomed/used; + assuetus_A = mkA "assuetus" ; -- [XXXBO] :: accustomed, customary, usual, to which one is accustomed/used; + assugo_V2 = mkV2 (mkV "assugere" "assugo" "assuxi" "assuctus ") ; -- [XXXFO] :: suck towards; assula_F_N = mkN "assula" ; -- [XXXDO] :: splinter, chip of wood/stone; assulatim_Adv = mkAdv "assulatim" ; -- [XXXEO] :: into splinters; assulose_Adv = mkAdv "assulose" ; -- [XXXNO] :: into splinters, splinter-wise; @@ -5682,9 +6084,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg assumentum_N_N = mkN "assumentum" ; -- [DXXFS] :: that which is to be sewed upon, that which is to be patched; patch (Ecc); assumptio_F_N = mkN "assumptio" "assumptionis " feminine ; -- [XXXCO] :: adoption; acquisition, assumption, claim; minor premise; introduction (point); assumptivus_A = mkA "assumptivus" "assumptiva" "assumptivum" ; -- [XGXEO] :: based on extraneous arguments (rhet., of the treatment of a case); + assuo_V = mkV "assuere" "assuo" "assui" "assutus "; -- [XXXEO] :: sew or patch on; + assurgo_V = mkV "assurgere" "assurgo" "assurrexi" "assurrectus "; -- [XXXAO] :: rise/stand up, rise to one's feet/from bed; climb, lift oneself; grow; soar; assus_A = mkA "assus" "assa" "assum" ; -- [XXXCO] :: roasted, baked; dry (from sunbathing); dry (w/o mortar); w/unaccompanied voice; + assuscipio_V2 = mkV2 (mkV "assuscipere" "assuscipio" nonExist nonExist) ; -- [XXXIO] :: undertake (vows); assuspiro_V = mkV "assuspirare" ; -- [XXXFO] :: sigh in response (to) (w/DAT); --- ast_Conj : Conj ast -- [XXXBO] :: but, on the other hand/contrary; but yet; at least; in that event; if further; + ast_Conj = mkConj "ast" missing ; -- [XXXBO] :: but, on the other hand/contrary; but yet; at least; in that event; if further; asta_F_N = mkN "asta" ; -- [XWXBO] :: spear, javelin; spear stuck in ground for public auction/centumviral court; astacus_M_N = mkN "astacus" ; -- [XAXNO] :: lobster/crayfish; kind of crab (L+S); astaphis_F_N = mkN "astaphis" "astaphidis " feminine ; -- [XAXNO] :: stavesacre (Delphinium staphisagria); @@ -5701,6 +6106,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg asterion_N_N = mkN "asterion" "asterii " neuter ; -- [XAXNO] :: venomous spider; asteriscus_M_N = mkN "asteriscus" ; -- [DGXES] :: small star; asterisk (as a typographical mark); asterites_M_N = mkN "asterites" "asteritae " masculine ; -- [DYXFS] :: kind of basilisk/cockatrice; + asterno_V2 = mkV2 (mkV "asternere" "asterno" "astravi" "astratus ") ; -- [XXXEO] :: prostrate oneself, lie prone (on); asthenia_F_N = mkN "asthenia" ; -- [GXXEK] :: anesthesia/anaesthesia; asthma_N_N = mkN "asthma" "asthmatis " neuter ; -- [XBXNO] :: asthma, attack of asthma; shortness of breath; asthmaticus_A = mkA "asthmaticus" "asthmatica" "asthmaticum" ; -- [XBXNO] :: suffering from shortness of breath, asthmatic; @@ -5710,6 +6116,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg astipulatus_M_N = mkN "astipulatus" "astipulatus " masculine ; -- [XXXNO] :: assent, agreement in a command; astipulo_V = mkV "astipulare" ; -- [XLXFS] :: join in stipulation/covenant; join in demanding; support (in an argument); astipulor_V = mkV "astipulari" ; -- [XLXDO] :: join in stipulation/covenant; join in demanding; support (in an argument); + astituo_V2 = mkV2 (mkV "astituere" "astituo" "astitui" "astitutus ") ; -- [XXXDO] :: place near/before; make to stand before; asto_V = mkV "astare" ; -- [XXXBO] :: stand at/on/by; assist; stand up/upright/waiting/still, stand on one's feet; astolos_F_N = mkN "astolos" "astoli " feminine ; -- [XXXNO] :: precious stone; astragalus_M_N = mkN "astragalus" ; -- [XTXEO] :: convex molding (usu. round top/bottom of a column), astragal; @@ -5719,19 +6126,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg astrapias_M_N = mkN "astrapias" "astrapiae " masculine ; -- [XXXNS] :: precious stone (black in color with gleams of light crossing the middle); astrapoplectus_A = mkA "astrapoplectus" "astrapoplecta" "astrapoplectum" ; -- [XXXES] :: struck by lightening; astreans_A = mkA "astreans" "astreantis"; -- [DXXFS] :: gleaming like a star; --- TODO astrepo_V : V2 astrepo, astrepere, astrepui, - -- Declension: 3rd -- Comment: [XXXCO] :: make a noise at, shout in support, take up a cry; assail with noise; murmur; + astrepo_V2 = mkV2 (mkV "astrepere" "astrepo" "astrepui" nonExist ) ; -- [XXXCO] :: make a noise at, shout in support, take up a cry; assail with noise; murmur; astricte_Adv =mkAdv "astricte" "astrictius" "astrictissime" ; -- [XXXCO] :: tightly (bound), firmly; strictly, by strict rules; concisely, tersely, pithily; astrictio_F_N = mkN "astrictio" "astrictionis " feminine ; -- [XBXNO] :: astringency, an astringent action; astrictorius_A = mkA "astrictorius" "astrictoria" "astrictorium" ; -- [XBXNO] :: astringent, binding, constrictive, styptic; (effect on organic tissue); --- SLASHSTUFF astrictus_A : A2 astrictus, astricta -um, astrictior -or -us, astrictissimus -a -um -- [XXXBO] :: |busy/preoccupied (with), intent (on); parsimonious, tight; astringent (taste); + astrictus_A = mkA "astrictus" ; -- [XXXBO] :: |busy/preoccupied (with), intent (on); parsimonious, tight; astringent (taste); astricus_A = mkA "astricus" "astrica" "astricum" ; -- [XSXFO] :: starry, of the stars; astrideo_V = mkV "astridere" ; -- [XXXFO] :: hiss (at); + astrido_V = mkV "astridere" "astrido" nonExist nonExist; -- [XXXFO] :: hiss (at); astrifer_A = mkA "astrifer" "astrifera" "astriferum" ; -- [XSXDO] :: starry, star-laden; astrifico_V2 = mkV2 (mkV "astrificare") ; -- [DSXFS] :: make/produce stars; astrificus_A = mkA "astrificus" "astrifica" "astrificum" ; -- [DSXFS] :: star producing/making; astriger_A = mkA "astriger" "astrigera" "astrigerum" ; -- [XSXEO] :: star-bearing; starry; astriloquus_A = mkA "astriloquus" "astriloqua" "astriloquum" ; -- [DSXFS] :: talking of the stars; astrilucus_A = mkA "astrilucus" "astriluca" "astrilucum" ; -- [DSXFS] :: shining/gleaming like stars; + astringo_V2 = mkV2 (mkV "astringere" "astringo" "astrinxi" "astrictus ") ; -- [XXXAO] :: |oblige, commit; compress, narrow, restrict; knit (brows); freeze, solidify; astrion_N_N = mkN "astrion" "astrii " neuter ; -- [XXJNO] :: precious stone; (crystalline, found in India, sapphire? L+S); astriotes_F_N = mkN "astriotes" "astriotae " feminine ; -- [XXXNS] :: precious stone (w/magical properties); (OLD says neuter); astrobolos_F_N = mkN "astrobolos" "astroboli " feminine ; -- [XXXNS] :: precious stone (onyx?, chalcedon?); @@ -5748,7 +6157,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg astructio_F_N = mkN "astructio" "astructionis " feminine ; -- [DGXES] :: accumulation of proof, putting together, composition; astructor_M_N = mkN "astructor" "astructoris " masculine ; -- [DGXFS] :: one who adduces/brings forward/cites/alleges proof; astrum_N_N = mkN "astrum" ; -- [XSXAO] :: star, heavenly body, planet/sun/moon; the stars, constellation; sky, heaven; --- IGNORED astu_N : N1 astu, undeclined -- N -- [XXHDO] :: city (esp. Athens), town (as opp. to rest of Attica/city-state); + astruo_V2 = mkV2 (mkV "astruere" "astruo" "astruxi" "astructus ") ; -- [XXXBO] :: build on/additional structure; heap/pile (on); add to/on, contribute, provide; + astu_N = constN "astu" neuter ; -- [XXHDO] :: city (esp. Athens), town (as opp. to rest of Attica/city-state); astula_F_N = mkN "astula" ; -- [XXXEO] :: splinter/chip; shavings; [astula regia => the plant asphodel]; astupeo_V = mkV "astupere" ; -- [XXXDO] :: be stunned/astounded/astonished/amazed (at); be enthralled (by) (w/DAT); astur_M_N = mkN "astur" "asturis " masculine ; -- [DAXES] :: species of hawk; inhabitant of Asturia in Hispania Tarraconensis; @@ -5757,8 +6167,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg astute_Adv =mkAdv "astute" "astutius" "astutissime" ; -- [XXXCO] :: cunningly, craftily, cleverly, astutely; astutia_F_N = mkN "astutia" ; -- [XXXCO] :: cunning, cleverness, astuteness; cunning procedure/method, trick, stratagem; astutulus_A = mkA "astutulus" "astutula" "astutulum" ; -- [XXXEO] :: cunning (person/action), crafty, clever, astute; --- SLASHSTUFF astutus_A : A2 astutus, astuta -um, astutior -or -us, astutissimus -a -um -- [XXXCO] :: clever, astute, sly, cunning; expert; --- IGNORED asty_N : N1 asty, undeclined -- N -- [XXHDO] :: city (esp. Athens), town (as opp. to rest of Attica/city-state); + astutus_A = mkA "astutus" ; -- [XXXCO] :: clever, astute, sly, cunning; expert; + asty_N = constN "asty" neuter ; -- [XXHDO] :: city (esp. Athens), town (as opp. to rest of Attica/city-state); astytis_F_N = mkN "astytis" "astytidis " feminine ; -- [XAXNS] :: kind of lettuce; asureus_A = mkA "asureus" "asurea" "asureum" ; -- [FXXDM] :: azure; blue; of lapis lazuli; asyla_F_N = mkN "asyla" ; -- [XAXNO] :: unidentified plant; @@ -5767,7 +6177,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg asymptota_F_N = mkN "asymptota" ; -- [GXXEK] :: asymptote (math.); asyndeton_N_N = mkN "asyndeton" "asyndeti " neuter ; -- [DGXFS] :: rhetorical omission of connecting particle; (pure Latin dissolutio); asyndetus_A = mkA "asyndetus" "asyndeta" "asyndetum" ; -- [DSXES] :: standing without any connection with/reference to constellations (stars); --- at_Conj : Conj at -- [XXXAO] :: but, but on the other hand; on the contrary; while, whereas; but yet; at least; + at_Conj = mkConj "at" missing ; -- [XXXAO] :: but, but on the other hand; on the contrary; while, whereas; but yet; at least; atamussim_Adv = mkAdv "atamussim" ; -- [XXXES] :: according to a ruler/level, exactly, accurately; atat_Interj = ss "atat" ; -- [XXXFO] :: ah! oh! alas! (expression of sudden enlightenment/surprise/fear/warning); atatae_Interj = ss "atatae" ; -- [XXXFO] :: ah! oh! alas! (expression of sudden enlightenment/surprise/fear/warning); @@ -5778,8 +6188,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg atavus_M_N = mkN "atavus" ; -- [XXXCO] :: great-great-great grandfather; (father of abavus/abavia); ancestor, forefather; atechnos_A = mkA "atechnos" "atechnos" "atechnon" ; -- [XXXFO] :: inartistic; ategro_V2 = mkV2 (mkV "ategrare") ; -- [DEXES] :: pour out wine in sacrifices; --- atenim_Conj : Conj atenim -- [XXXEO] :: but/yet in spite of what has been said; but/yet nevertheless/all the same; --- SLASHSTUFF ater_A : A2 ater, atra -um, atrior -or -us, aterrimus -a -um -- [XXXAO] :: |deadly, terrible, grisly (esp. connected with underworld); poisonous; spiteful; + atenim_Conj = mkConj "atenim" missing ; -- [XXXEO] :: but/yet in spite of what has been said; but/yet nevertheless/all the same; + ater_A = mkA "ater" ; -- [XXXAO] :: |deadly, terrible, grisly (esp. connected with underworld); poisonous; spiteful; atermum_N_N = mkN "atermum" ; -- [XAXNO] :: plant (tough, stubborn pest?); atheismus_M_N = mkN "atheismus" ; -- [FEXEE] :: atheism; atheista_M_N = mkN "atheista" ; -- [GEXEK] :: atheistic; @@ -5808,9 +6218,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg atomus_A = mkA "atomus" "atoma" "atomum" ; -- [XSXNO] :: indivisible, atomic, that cannot be cut; atomus_F_N = mkN "atomus" ; -- [XXXCO] :: atom, ultimate component of matter, particle incapable of being divided; atopto_V2 = mkV2 (mkV "atoptare") ; -- [XXXBO] :: adopt, select, secure, pick out; wish/name for oneself; adopt legally; --- atque_Conj : Conj atque -- [XXXAO] :: and, as well/soon as; together with; and moreover/even; and too/also/now; yet; --- atqui_Conj : Conj atqui -- [XXXBO] :: but, yet, notwithstanding, however, rather, well/but now; and yet, still; --- atquin_Conj : Conj atquin -- [XXXBO] :: but, yet, notwithstanding, however, rather, well/but now; and yet, still; + atque_Conj = mkConj "atque" missing ; -- [XXXAO] :: and, as well/soon as; together with; and moreover/even; and too/also/now; yet; + atqui_Conj = mkConj "atqui" missing ; -- [XXXBO] :: but, yet, notwithstanding, however, rather, well/but now; and yet, still; + atquin_Conj = mkConj "atquin" missing ; -- [XXXBO] :: but, yet, notwithstanding, however, rather, well/but now; and yet, still; atractylis_F_N = mkN "atractylis" "atractylidis " feminine ; -- [XAXNO] :: plant of the genus Carthamus, spindle-thistle (used as antidote to poisons); atramentarium_N_N = mkN "atramentarium" ; -- [DXXES] :: inkstand; inkpot, inkwell; atramentum_N_N = mkN "atramentum" ; -- [XXXCO] :: writing-ink; blacking, black pigment/ink; [~ sepiae => cuttle-fish ink]; @@ -5825,7 +6235,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg atriplex_N_N = mkN "atriplex" "atriplicis " neuter ; -- [XAXNO] :: kitchen herb, orach; atriplexum_N_N = mkN "atriplexum" ; -- [XAXFO] :: kitchen herb, orach; atritas_F_N = mkN "atritas" "atritatis " feminine ; -- [BAXFO] :: blackness; --- SLASHSTUFF atritus_A : A2 atritus, atrita -um, atritior -or -us, atritissimus -a -um -- [XXXFO] :: blackened; + atritus_A = mkA "atritus" ; -- [XXXFO] :: blackened; atrium_N_N = mkN "atrium" ; -- [XXXBO] :: atrium, reception hall in a Roman house; auction room; palace (pl.), house; atrocitas_F_N = mkN "atrocitas" "atrocitatis " feminine ; -- [XXXBO] :: fury; barbarity, cruelty; wickedness; severity, harshness; horror, dreadfulness; atrociter_Adv =mkAdv "atrociter" "atrocius" "atrocissime" ; -- [XXXCO] :: violently; bitterly, acrimoniously; cruelly, savagely; severely, harshly; @@ -5837,6 +6247,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg atrusca_F_N = mkN "atrusca" ; -- [DAXFS] :: kind of grape; atta_M_N = mkN "atta" ; -- [XXXFO] :: father (term of respect used when addressing old men); attachiamentum_N_N = mkN "attachiamentum" ; -- [FLXFJ] :: attachment; + attachio_V2 = mkV2 (mkV "attachire" "attachio" "attachivi" "attachitus ") ; -- [FXXFM] :: attach; fasten; attactus_M_N = mkN "attactus" "attactus " masculine ; -- [XXXDO] :: touch , contact, action of touching; attacus_M_N = mkN "attacus" ; -- [DAXFS] :: kind of locust; attagen_M_N = mkN "attagen" "attagenis " masculine ; -- [XAXDO] :: bird resembling partridge, francolin? hazel-hen/heath-cock (L+S); @@ -5855,31 +6266,38 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg attemperatio_F_N = mkN "attemperatio" "attemperationis " feminine ; -- [EXXFE] :: accommodation; adjusting, adjustment, fitting; attempero_V2 = mkV2 (mkV "attemperare") ; -- [XXXEO] :: fit, adjust, accommodate; attempto_V2 = mkV2 (mkV "attemptare") ; -- [XXXCO] :: attack, assail; call into question; try to seduce/use; make an attempt on, try; + attendo_V2 = mkV2 (mkV "attendere" "attendo" "attendi" "attentus ") ; -- [XXXAO] :: turn/stretch towards; apply; attend/pay (close) attention to, listen carefully; attentatio_F_N = mkN "attentatio" "attentationis " feminine ; -- [DXXFS] :: attempting, attempt, trying, try, effort; attentatum_N_N = mkN "attentatum" ; -- [FXXFE] :: prohibited innovation during process; attempt, try; attente_Adv =mkAdv "attente" "attentius" "attentissime" ; -- [XXXCO] :: diligently, carefully, with concentration, with close attention; attentio_F_N = mkN "attentio" "attentionis " feminine ; -- [XXXEO] :: attention, application, attentiveness; attento_V2 = mkV2 (mkV "attentare") ; -- [XXXCO] :: attack, assail; call into question; try to seduce/use; make an attempt on, try; --- SLASHSTUFF attentus_A : A2 attentus, attenta -um, attentior -or -us, attentissimus -a -um -- [XXXCO] :: attentive, heedful; careful, conscientious, intent; frugal, economical; + attentus_A = mkA "attentus" ; -- [XXXCO] :: attentive, heedful; careful, conscientious, intent; frugal, economical; attenuate_Adv = mkAdv "attenuate" ; -- [XXXFO] :: plainly, barely, simply; attenuatio_F_N = mkN "attenuatio" "attenuationis " feminine ; -- [XXXEO] :: diminution, act of lessening, attenuation; plainness (of style); --- SLASHSTUFF attenuatus_A : A2 attenuatus, attenuata -um, attenuatior -or -us, attenuatissimus -a -um -- [XXXEO] :: plain (style), bare, subdued; thin, impoverished; lessened, diminished; + attenuatus_A = mkA "attenuatus" ; -- [XXXEO] :: plain (style), bare, subdued; thin, impoverished; lessened, diminished; attenuo_V2 = mkV2 (mkV "attenuare") ; -- [XXXBO] :: thin (out); weaken, lessen, diminish, shrink, reduce in size; make plain; attermino_V2 = mkV2 (mkV "atterminare") ; -- [XXXFS] :: set bounds to, measure, limit; + attero_V2 = mkV2 (mkV "atterere" "attero" "attrivi" "attritus ") ; -- [XXXBO] :: rub, rub against; grind; chafe; wear out/down/away; diminish, impair; waste; atterraneus_A = mkA "atterraneus" "atterranea" "atterraneum" ; -- [XXXFO] :: coming to/from the earth; earth-borne; attertiarius_A = mkA "attertiarius" "attertiaria" "attertiarium" ; -- [DXXFS] :: whole and a third; attertiatus_A = mkA "attertiatus" "attertiata" "attertiatum" ; -- [XXXFS] :: reduced/boiled down to a third; attestatio_F_N = mkN "attestatio" "attestationis " feminine ; -- [XLXFO] :: testimony, attestation; attestatus_A = mkA "attestatus" "attestata" "attestatum" ; -- [XXXEO] :: confirmatory, corroboratory; attestor_V = mkV "attestari" ; -- [XXXEO] :: confirm, attest, bear witness to; + attexo_V2 = mkV2 (mkV "attexere" "attexo" "attexui" "attextus ") ; -- [XXXCO] :: add, join on, link to; weave/plait on, attach by weaving; atticisso_V = mkV "atticissare" ; -- [XXXES] :: imitate the Attic/Athenian (elegant) manner of speaking; + attigo_V2 = mkV2 (mkV "attigere" "attigo" "attigi" "attactus ") ; -- [BXXAO] :: touch, touch/border on; reach, arrive at, achieve; mention briefly; belong to; attiguus_A = mkA "attiguus" "attigua" "attiguum" ; -- [XXXDO] :: contiguous, adjoining, adjacent, neighboring; attillo_V2 = mkV2 (mkV "attillare") ; -- [DXXFS] :: tickle, please; attilus_M_N = mkN "attilus" ; -- [XAXNO] :: large fish, great sturgeon/beluga; attina_F_N = mkN "attina" ; -- [XAXFO] :: heap of stones as a boundary marker; (pl.) (L+S); attineo_V = mkV "attinere" ; -- [XXXAO] :: hold on/to/near/back/together/fast; restrain, keep (in custody), retain; delay; + attingo_V2 = mkV2 (mkV "attingere" "attingo" "attinxi" "attinctus ") ; -- [XXXFO] :: wipe/smear on?; + attinguo_V2 = mkV2 (mkV "attinguere" "attinguo" nonExist nonExist) ; -- [DXXFS] :: moisten, bedew, sprinkle with a liquid; attitulo_V2 = mkV2 (mkV "attitulare") ; -- [DLXFS] :: name, entitle; attolero_V2 = mkV2 (mkV "attolerare") ; -- [XXXFO] :: support, sustain, bear; + attollo_V2 = mkV2 (mkV "attollere" "attollo" nonExist nonExist) ; -- [XXXAO] :: raise/lift up/towards/to a higher position; erect, build; exalt; extol, exalt; attondeo_V2 = mkV2 (mkV "attondere") ; -- [XAXCO] :: clip (hair close), shear; strip of money, fleece; thrash; prune, trim, crop; attonite_Adv = mkAdv "attonite" ; -- [XXXFS] :: frantically; bewilderedly, confoundedly; attonitus_A = mkA "attonitus" "attonita" "attonitum" ; -- [XXXBO] :: astonished, fascinated; lightning/thunder-struck, stupefied, dazed; inspired; @@ -5892,21 +6310,26 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg attractivus_A = mkA "attractivus" "attractiva" "attractivum" ; -- [FXXEK] :: interesting; attracto_V2 = mkV2 (mkV "attractare") ; -- [XXXCO] :: touch; lay hands on; handle (roughly), assault (sexually), violate; deal with; attractorius_A = mkA "attractorius" "attractoria" "attractorium" ; -- [DXXFS] :: attractive, having the power of attraction; --- SLASHSTUFF attractus_A : A2 attractus, attracta -um, attractior -or -us, attractissimus -a -um -- [XXXEO] :: drawn together (brows), knit; + attractus_A = mkA "attractus" ; -- [XXXEO] :: drawn together (brows), knit; attractus_M_N = mkN "attractus" "attractus " masculine ; -- [XXXFS] :: attraction, drawing to; + attraho_V2 = mkV2 (mkV "attrahere" "attraho" "attraxi" "attractus ") ; -- [XXXBO] :: attract, draw/drag together/in/before/along; inhale; gather saliva; bend (bow); attrectatio_F_N = mkN "attrectatio" "attrectationis " feminine ; -- [XGXEO] :: touching, handling; grammatical term for words denoting many things together; attrectatus_M_N = mkN "attrectatus" "attrectatus " masculine ; -- [XXXFO] :: touching, handling, feeling; attrecto_V2 = mkV2 (mkV "attrectare") ; -- [XXXCO] :: touch; lay hands on; handle (roughly), assault (sexually), violate; deal with; + attremo_V = mkV "attremere" "attremo" nonExist nonExist; -- [XXXFO] :: tremble (at) (w/DAT); attrepido_V = mkV "attrepidare" ; -- [XXXFO] :: bestir oneself; hobble along; attribulo_V2 = mkV2 (mkV "attribulare") ; -- [XXXFS] :: thresh, press hard; + attribuo_V2 = mkV2 (mkV "attribuere" "attribuo" "attribui" "attributus ") ; -- [XXXAO] :: assign/allot/attribute/impute to; grant, pay; appoint, put under jurisdiction; attributio_F_N = mkN "attributio" "attributionis " feminine ; -- [XXXCO] :: assignment of debt; one's destined lot; grant; attribution; predicate attribute; attributum_N_N = mkN "attributum" ; -- [XLXFO] :: grant of public money; predicate, attribute (gram.) (L+S); attributus_A = mkA "attributus" "attributa" "attributum" ; -- [XXXES] :: ascribed, attributed; assigned, allotted; attritio_F_N = mkN "attritio" "attritionis " feminine ; -- [DXXES] :: rubbing/grinding against/on (something); friction, abrasion; --- SLASHSTUFF attritus_A : A2 attritus, attrita -um, attritior -or -us, attritissimus -a -um -- [XXXCS] :: |rubbed (off/away), wasted; bruised; shameless, impudent, brazen; + attritus_A = mkA "attritus" ; -- [XXXCS] :: |rubbed (off/away), wasted; bruised; shameless, impudent, brazen; attritus_M_N = mkN "attritus" "attritus " masculine ; -- [XXXCO] :: action/process of rubbing/grinding; friction; chafing, abrasion, bruising; attubernalis_M_N = mkN "attubernalis" "attubernalis " masculine ; -- [DAXFS] :: one who lives in an adjoining hut; + attulo_V2 = mkV2 (mkV "attulere" "attulo" nonExist nonExist) ; -- [AXXFS] :: bring/carry/bear to; attumulo_V2 = mkV2 (mkV "attumulare") ; -- [XXXNO] :: heap up against; bank up (with something); + attuor_V = mkV "attui" "attuor" nonExist ; -- [XXXFO] :: observe, look at; atvero_Adv = mkAdv "atvero" ; -- [FXXFE] :: however; atypus_A = mkA "atypus" "atypa" "atypum" ; -- [XXXFO] :: that does not form the letters properly in speaking; atypus_M_N = mkN "atypus" ; -- [XXXFO] :: one who does not form the letters properly in speaking; who stammers, stammering @@ -5944,12 +6367,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg auctoror_V = mkV "auctorari" ; -- [XXXDO] :: hire out, sell; give authorization (guardian on behalf of ward); authorize; auctrix_F_N = mkN "auctrix" "auctricis " feminine ; -- [DXXDX] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; auctumnalis_A = mkA "auctumnalis" "auctumnalis" "auctumnale" ; -- [XXXES] :: autumnal. of autumn, for use in autumn; + auctumnasct_V0 = mkV0 "auctumnasct"; -- [DXXFS] :: autumn is approaching, autumn is coming on; + auctumnesct_V0 = mkV0 "auctumnesct"; -- [DXXFS] :: autumn is approaching, autumn is coming on; auctumnitas_F_N = mkN "auctumnitas" "auctumnitatis " feminine ; -- [XXXDO] :: autumn, the autumn season; autumn fruits (poet.); auctumno_V = mkV "auctumnare" ; -- [XXXNS] :: bring autumnal conditions; auctumnum_N_N = mkN "auctumnum" ; -- [XXXCO] :: autumn; autumn fruits, harvest; auctumnus_A = mkA "auctumnus" "auctumna" "auctumnum" ; -- [XXXDS] :: of autumn, autumnal; auctumnus_M_N = mkN "auctumnus" ; -- [XXXCO] :: autumn; autumn fruits, harvest; --- SLASHSTUFF auctus_A : A2 auctus, aucta -um, auctior -or -us, auctissimus -a -um -- [XXXCO] :: enlarged, large, abundant, ample; richer/increased in power/wealth/importance; + auctus_A = mkA "auctus" ; -- [XXXCO] :: enlarged, large, abundant, ample; richer/increased in power/wealth/importance; auctus_M_N = mkN "auctus" "auctus " masculine ; -- [XXXBO] :: growth, increase, enlargement, act of increasing; accession; prosperity; bulk; aucupabundus_A = mkA "aucupabundus" "aucupabunda" "aucupabundum" ; -- [DXXFS] :: watching, lurking for; aucupalis_A = mkA "aucupalis" "aucupalis" "aucupale" ; -- [DAXFS] :: of/pertaining to bird-watching/fowling; @@ -5964,13 +6389,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg audacter_Adv =mkAdv "audacter" "audacius" "audacissime" ; -- [XXXBO] :: boldly, audaciously, confidently, proudly, fearlessly; impudently, rashly; audaculus_A = mkA "audaculus" "audacula" "audaculum" ; -- [XXXEO] :: bold (little/bit), courageous; audacious, impudent, impertinent; audax_A = mkA "audax" "audacis"; -- [XXXAO] :: bold, daring; courageous; reckless, rash; audacious, presumptuous; desperate; --- audem_Conj : Conj audem -- [XXXEO] :: but (postpositive), on the other hand/contrary; while, however; moreover, also; + audem_Conj = mkConj "audem" missing ; -- [XXXEO] :: but (postpositive), on the other hand/contrary; while, however; moreover, also; audens_A = mkA "audens" "audentis"; -- [XXXCO] :: daring, bold, courageous; characterized by boldness/license of expression; audenter_Adv =mkAdv "audenter" "audentius" "audentissime" ; -- [XXXCO] :: boldly, fearlessly; audaciously, presumptuously, rashly; audentia_F_N = mkN "audentia" ; -- [XXXDO] :: boldness, courage, enterprise; boldness/license of expression; audeo_V = mkV "audere" ; -- [XXXAO] :: intend, be prepared; dare/have courage (to go/do), act boldly, venture, risk; audiens_M_N = mkN "audiens" "audientis " masculine ; -- [DEXES] :: catechumen (eccl.), convert under instruction before baptism; new initiate; audientia_F_N = mkN "audientia" ; -- [XXXCO] :: hearing, act of listening, attention; audience, body of listeners; + audio_V2 = mkV2 (mkV "audire" "audio" "audivi" "auditus ") ; -- [XXXAO] :: hear, listen, accept, agree with; obey; harken, pay attention; be able to hear; auditio_F_N = mkN "auditio" "auditionis " feminine ; -- [XXXCO] :: hearing, act/sense of hearing; report, hearsay, rumor; lecture, recital; auditiuncula_F_N = mkN "auditiuncula" ; -- [XXXFO] :: scrap of hearsay information; brief discourse (L+S); audito_V2 = mkV2 (mkV "auditare") ; -- [XXXFO] :: hear frequently; @@ -5982,10 +6408,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg audivisificus_A = mkA "audivisificus" "audivisifica" "audivisificum" ; -- [HXXEK] :: audiovisual; audo_V = mkV "audere" ; -- [XXXAO] :: intend, be prepared; dare/have courage (to go/do), act boldly, venture, risk; aufero_V2 = mkV2 (mkV "auferre") ; -- [XXXAO] :: bear/carry/take/fetch/sweep/snatch away/off, remove, withdraw; steal, obtain; --- TODO aufugio_V : V2 aufugio, aufugere, aufugi, - -- Declension: 3rd -- Comment: [XXXCO] :: flee, flee from, shun; run/fly away, escape; disappear (things), vanish; + aufugio_V2 = mkV2 (mkV "aufugere" "aufugio" "aufugi" nonExist ) ; -- [XXXCO] :: flee, flee from, shun; run/fly away, escape; disappear (things), vanish; augeo_V2 = mkV2 (mkV "augere") ; -- [XXXAO] :: increase, enlarge, augment; spread; honor, promote, raise; exalt; make a lot of; auger_F_N = mkN "auger" "augeris " feminine ; -- [BEXCS] :: augur, one who interprets behavior of birds; diviner, seer, prophet, soothsayer; auger_M_N = mkN "auger" "augeris " masculine ; -- [BEXCS] :: augur, one who interprets behavior of birds; diviner, seer, prophet, soothsayer; + augesco_V = mkV "augescere" "augesco" nonExist nonExist; -- [XXXBO] :: grow, increase in size/amount/number; develop; prosper; rise/be swollen (river); augifico_V2 = mkV2 (mkV "augificare") ; -- [XXXFO] :: increase, enlarge, make larger; auginos_F_N = mkN "auginos" "augini " feminine ; -- [DAXFS] :: plant; (also called hyoscyamos); augitis_F_N = mkN "augitis" "augitidis " feminine ; -- [XXXNO] :: precious stone; @@ -6013,7 +6440,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg augustatus_A = mkA "augustatus" "augustata" "augustatum" ; -- [DEXES] :: made venerable; consecrated; auguste_Adv =mkAdv "auguste" "augustius" "augustissime" ; -- [XEXDO] :: reverently, solemnly; with dignity; majestically; sacredly; augusto_V2 = mkV2 (mkV "augustare") ; -- [DEXES] :: glorify; render venerable; --- SLASHSTUFF augustus_A : A2 augustus, augusta -um, augustior -or -us, augustissimus -a -um -- [XEXCO] :: sacred, venerable; majestic, august, solemn; dignified; worthy of honor (Ecc); + augustus_A = mkA "augustus" ; -- [XEXCO] :: sacred, venerable; majestic, august, solemn; dignified; worthy of honor (Ecc); aula_F_N = mkN "aula" ; -- [XXXBO] :: hall; church/temple; palace/castle; inner/royal court; courtiers; royal power; aulaea_F_N = mkN "aulaea" ; -- [FDXFV] :: canopy/covering; theater curtain; hangings/folds (pl.), tapestries/drapery; aulaeum_N_N = mkN "aulaeum" ; -- [XDXCO] :: canopy/covering; theater curtain; hangings/folds (pl.), tapestries/drapery; @@ -6053,6 +6480,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aureola_F_N = mkN "aureola" ; -- [EEXEE] :: halo; nimbus, aura; aureole; aureolus_A = mkA "aureolus" "aureola" "aureolum" ; -- [XXXCO] :: golden, made of gold, gold colored; beautiful, brilliant, excellent, splendid; aureolus_M_N = mkN "aureolus" ; -- [XXXEO] :: gold coin, gold piece; + auresco_V = mkV "aurescere" "auresco" nonExist nonExist; -- [XXXEO] :: become golden in color; aureus_A = mkA "aureus" "aurea" "aureum" ; -- [XXXBO] :: of gold, golden; gilded; gold bearing; gleaming like gold; beautiful, splendid; aureus_M_N = mkN "aureus" ; -- [XLXCO] :: gold coin (equivalent to 25 silver denarii at Rome) (120 grains/0.25 oz.); auricalcinus_A = mkA "auricalcinus" "auricalcina" "auricalcinum" ; -- [EXXFW] :: made of brass, brass-; of a gold-colored metal; @@ -6124,19 +6552,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg auspicalis_A = mkA "auspicalis" "auspicalis" "auspicale" ; -- [XEXNO] :: giving omens; pertaining to/suitable for divination/auguries; auspicaliter_Adv = mkAdv "auspicaliter" ; -- [XEXFO] :: after taking the auspices; with the appropriate taking of auguries; auspicato_Adv = mkAdv "auspicato" ; -- [XEXCO] :: after taking the auspices/auguries; with good omens; auspiciously; --- SLASHSTUFF auspicatus_A : A2 auspicatus, auspicata -um, auspicatior -or -us, auspicatissimus -a -um -- [XXXCO] :: consecrated/approved by auguries, hollowed; auspicious/fortunate/lucky/happy; + auspicatus_A = mkA "auspicatus" ; -- [XXXCO] :: consecrated/approved by auguries, hollowed; auspicious/fortunate/lucky/happy; auspicatus_M_N = mkN "auspicatus" "auspicatus " masculine ; -- [XEXES] :: augury, taking of auspices; auspicium_N_N = mkN "auspicium" ; -- [XXXBO] :: divination (by birds); omen; beginning; auspices (pl.); right of doing auspices; auspico_V = mkV "auspicare" ; -- [XXXEO] :: take auspices; seek omens; begin with auspices, make ceremonial start; portend; auspicor_V = mkV "auspicari" ; -- [XXXCO] :: take auspices; seek omens; begin with auspices, make ceremonial start; portend; austellus_M_N = mkN "austellus" ; -- [XXXFO] :: south (diminutive/contemptuous); southern parts (pl.); gentle south wind (L+S); --- SLASHSTUFF auster_A : A2 auster, austeris -e, austerior -or -us, austerrimus -a -um -- [XXXDS] :: austere, plain; bitter, sour; dry (wine); sharp, pungent; dark, somber, morose; + auster_A = mkA "auster" ; -- [XXXDS] :: austere, plain; bitter, sour; dry (wine); sharp, pungent; dark, somber, morose; auster_M_N = mkN "auster" ; -- [XXXBO] :: south; south wind; southern parts (pl.); austeralis_F_N = mkN "austeralis" "austeralis " feminine ; -- [DAXFS] :: plant (usually called sisymbrium); austere_Adv =mkAdv "austere" "austerius" "austerissime" ; -- [XXXFS] :: rigidly, austerely, severely; austeritas_F_N = mkN "austeritas" "austeritatis " feminine ; -- [XXXCO] :: harshness, sourness, bitterness; gloominess, somberness; severity, rigor; austerulus_A = mkA "austerulus" "austerula" "austerulum" ; -- [XXXFO] :: somewhat dry/astringent/harsh; --- SLASHSTUFF austerus_A : A2 austerus, austera -um, austerior -or -us, austerissimus -a -um -- [XXXBO] :: austere, plain; bitter, sour; dry (wine); sharp, pungent; dark, somber, morose; + austerus_A = mkA "austerus" ; -- [XXXBO] :: austere, plain; bitter, sour; dry (wine); sharp, pungent; dark, somber, morose; austium_N_N = mkN "austium" ; -- [XXXCO] :: door (w/frame); front door; starting gate; entrance to underworld; river mouth; australis_A = mkA "australis" "australis" "australe" ; -- [XXXCO] :: southern; of/brought by the south wind; of southern hemisphere (constellation); austrifer_A = mkA "austrifer" "austrifera" "austriferum" ; -- [XXXFO] :: bringing the south wind; @@ -6145,10 +6573,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg austrinus_A = mkA "austrinus" "austrina" "austrinum" ; -- [XXXDO] :: southern; of/brought by the south wind; of southern hemisphere (constellation); austrum_N_N = mkN "austrum" ; -- [XXXCO] :: purple dye; purple color; material dyed purple (garment, coverlet); ausum_N_N = mkN "ausum" ; -- [XXXCO] :: daring/bold deed, exploit, venture; attempt; presumptuous act, outrage; crime; --- TODO ausum_V : V1 ausum, -, -, - -- [XXXAO] :: intend, be prepared; dare (to go/do), act boldly, risk; (SUB for audeo-kludge); + ausum_V = mkV0 "ausum" ; -- [XXXAO] :: intend, be prepared; dare (to go/do), act boldly, risk; (SUB for audeo-kludge); ausus_M_N = mkN "ausus" "ausus " masculine ; -- [XXXCO] :: daring, initiative; ventures (pl.); --- aut_Conj : Conj aut -- [XXXAO] :: or, or rather/else; either...or (aut...aut) (emphasizing one); --- autem_Conj : Conj autem -- [XXXAO] :: but (postpositive), on the other hand/contrary; while, however; moreover, also; + aut_Conj = mkConj "aut" missing ; -- [XXXAO] :: or, or rather/else; either...or (aut...aut) (emphasizing one); + autem_Conj = mkConj "autem" missing ; -- [XXXAO] :: but (postpositive), on the other hand/contrary; while, however; moreover, also; autenta_M_N = mkN "autenta" ; -- [FLXES] :: chief prince, head; autenticus_A = mkA "autenticus" "autentica" "autenticum" ; -- [FDXEO] :: original (document), genuine, authentic; that comes from the author; autentus_M_N = mkN "autentus" ; -- [FLXES] :: chief prince, head; @@ -6208,8 +6636,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg autopyrus_M_N = mkN "autopyrus" ; -- [XAXEO] :: coarse bread made of unbolted/unsifted wheaten meal, whole-wheat bread; autoraeda_F_N = mkN "autoraeda" ; -- [GTXEK] :: car; autoraedarius_M_N = mkN "autoraedarius" ; -- [GXXEK] :: driver; --- IGNORED autumnal_A : A2 autumnal, undeclined -- [BXXDX] :: autumnal, of autumn, for use in autumn; + autumnal_A = constA "autumnal" ; -- [BXXDX] :: autumnal, of autumn, for use in autumn; autumnalis_A = mkA "autumnalis" "autumnalis" "autumnale" ; -- [XXXCO] :: autumnal, of autumn, for use in autumn; + autumnasct_V0 = mkV0 "autumnasct"; -- [DXXFS] :: autumn is approaching, autumn is coming on; + autumnesct_V0 = mkV0 "autumnesct"; -- [DXXFS] :: autumn is approaching, autumn is coming on; autumnitas_F_N = mkN "autumnitas" "autumnitatis " feminine ; -- [XXXDO] :: autumn, the autumn season; autumn fruits (poet.); autumno_V = mkV "autumnare" ; -- [XXXNO] :: bring autumnal conditions; autumnus_A = mkA "autumnus" "autumna" "autumnum" ; -- [XXXDO] :: of autumn, autumnal; @@ -6236,10 +6666,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg avariter_Adv = mkAdv "avariter" ; -- [XXXEO] :: greedily, avariciously, rapaciously; thriftily, economically, stingily, miserly; avaritia_F_N = mkN "avaritia" ; -- [XXXBO] :: greed, avarice; rapacity; miserliness, stinginess, meanness; avarities_F_N = mkN "avarities" "avaritiei " feminine ; -- [DXXFS] :: greed, avarice; rapacity; miserliness, stinginess, meanness; --- SLASHSTUFF avarus_A : A2 avarus, avara -um, avarior -or -us, avarissimus -a -um -- [XXXBO] :: avaricious, greedy; stingy, miserly, mean; covetous, hungry for; + avarus_A = mkA "avarus" ; -- [XXXBO] :: avaricious, greedy; stingy, miserly, mean; covetous, hungry for; avarus_M_N = mkN "avarus" ; -- [XXXBO] :: miser; stingy/mean/greedy person; ave_Interj = ss "ave" ; -- [XXXCO] :: hail!, formal expression of greetings; + aveho_V2 = mkV2 (mkV "avehere" "aveho" "avexi" "avectus ") ; -- [XXXCO] :: carry away, carry; (passive) ride away/off, sail away, go away, depart; avellanus_A = mkA "avellanus" "avellana" "avellanum" ; -- [XXXFS] :: Abellian; + avello_V2 = mkV2 (mkV "avellere" "avello" "avulsi" "avulsus ") ; -- [XXXBO] :: tear/pluck/wrench away/out/off; separate by force, part; take away, wrest; avena_F_N = mkN "avena" ; -- [XAXAO] :: reed, straw; shepherd's pipe, pan pipe; oats, wild oats, other allied grasses; avenaceus_A = mkA "avenaceus" "avenacea" "avenaceum" ; -- [XAXNO] :: made from oats, oaten, oat-; avenarius_A = mkA "avenarius" "avenaria" "avenarium" ; -- [XAXNO] :: of/connected with oats, oat-; @@ -6248,6 +6680,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aveo_V = mkV "avere" ; -- [XXXCL] :: |be eager or anxious; desire, wish for, long after, crave; averium_N_N = mkN "averium" ; -- [FAXFJ] :: beast; avernus_M_N = mkN "avernus" ; -- [EEXEE] :: hell; the infernal regions; the lower world; + averro_V2 = mkV2 (mkV "averrere" "averro" "averri" "aversus ") ; -- [XXXEO] :: sweep/brush away, take away, clear away (table); averrunco_V2 = mkV2 (mkV "averruncare") ; -- [XXXCO] :: avert (something bad), ward off; aversabilis_A = mkA "aversabilis" "aversabilis" "aversabile" ; -- [XXXFO] :: repulsive, loathsome, abominable; (from which one would turn away); aversatio_F_N = mkN "aversatio" "aversationis " feminine ; -- [XXXDO] :: aversion, feeling of dislike (for); @@ -6258,9 +6691,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg aversor_M_N = mkN "aversor" "aversoris " masculine ; -- [XXXFO] :: embezzler; pilferer, thief; aversor_V = mkV "aversari" ; -- [XXXBO] :: turn oneself away in disgust/horror, recoil; avoid, shun; refuse, reject; aversum_N_N = mkN "aversum" ; -- [XXXES] :: back, back/hinder part; other side, obverse; --- SLASHSTUFF aversus_A : A2 aversus, aversa -um, aversior -or -us, aversissimus -a -um -- [XXXAO] :: turned/facing away, w/back turned; behind, in rear; distant; averse; hostile; + aversus_A = mkA "aversus" ; -- [XXXAO] :: turned/facing away, w/back turned; behind, in rear; distant; averse; hostile; averta_F_N = mkN "averta" ; -- [DXXES] :: saddle-bags, traveling bag, luggage for horseback, portmanteau; (mantica); avertarius_M_N = mkN "avertarius" ; -- [DXXFS] :: horse that bears the averta (saddle/traveling bag), pack-horse, sumpter; + averto_V2 = mkV2 (mkV "avertere" "averto" "averti" "aversus ") ; -- [XXXAO] :: turn away from/aside, divert, rout; disturb; withdraw; steal, misappropriate; avia_F_N = mkN "avia" ; -- [XXXFO] :: unidentified plant; groundsel (L+S); (also called senecio, erigeron); aviarium_N_N = mkN "aviarium" ; -- [XAXDO] :: aviary, enclosure for birds; haunt of wild birds (poet.); aviarius_A = mkA "aviarius" "aviaria" "aviarium" ; -- [XAXFO] :: used for birds, bird-; @@ -6271,7 +6705,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg avide_Adv =mkAdv "avide" "avidius" "avidissime" ; -- [XXXCO] :: greedily, hungrily, avariciously; eagerly, impatiently; aviditas_F_N = mkN "aviditas" "aviditatis " feminine ; -- [XXXBO] :: greed, covetousness; keen desire, lust/passion; appetite (food/drink), gluttony; aviditer_Adv = mkAdv "aviditer" ; -- [XXXFO] :: greedily; eagerly; --- SLASHSTUFF avidus_A : A2 avidus, avida -um, avidior -or -us, avidissimus -a -um -- [XXXAO] :: greedy, eager, ardent, desirous of; avaricious, insatiable; lustful, passionate; + avidus_A = mkA "avidus" ; -- [XXXAO] :: greedy, eager, ardent, desirous of; avaricious, insatiable; lustful, passionate; avipes_A = mkA "avipes" "avipedis"; -- [XXXFO] :: bird-footed; fleet-footed; avis_F_N = mkN "avis" "avis " feminine ; -- [XAXBO] :: bird; sign, omen, portent; avite_Adv = mkAdv "avite" ; -- [DXXFS] :: from ancient times, of old; @@ -6288,8 +6722,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg avolsio_F_N = mkN "avolsio" "avolsionis " feminine ; -- [XAXNO] :: process of tearing away/pulling off; avolsor_M_N = mkN "avolsor" "avolsoris " masculine ; -- [XAXNS] :: one who plucks/tears off/away; avonculus_M_N = mkN "avonculus" ; -- [XXXCO] :: maternal uncle, mother's brother, mother's sister's husband; great uncle; + avorro_V2 = mkV2 (mkV "avorrere" "avorro" "avorri" "avorsus ") ; -- [XXXEO] :: sweep/brush away, take away, clear away (table); avorsor_V = mkV "avorsari" ; -- [XXXBO] :: turn oneself away in disgust/horror, recoil; avoid, shun; refuse, reject; --- SLASHSTUFF avorsus_A : A2 avorsus, avorsa -um, avorsior -or -us, avorsissimus -a -um -- [XXXAO] :: turned/facing away, w/back turned; behind, in rear; distant; averse; hostile; + avorsus_A = mkA "avorsus" ; -- [XXXAO] :: turned/facing away, w/back turned; behind, in rear; distant; averse; hostile; + avorto_V2 = mkV2 (mkV "avortere" "avorto" "avorti" "avorsus ") ; -- [BXXDX] :: turn away from/aside, divert, rout; disturb; withdraw; steal, misappropriate; avos_M_N = mkN "avos" "avi " masculine ; -- [XXXFS] :: grandfather; forefather, ancestor; avulsio_F_N = mkN "avulsio" "avulsionis " feminine ; -- [XAXNO] :: process of tearing away/pulling off; avulsor_M_N = mkN "avulsor" "avulsoris " masculine ; -- [XAXNO] :: one who plucks/tears off/away; @@ -6306,7 +6742,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg axis_M_N = mkN "axis" "axis " masculine ; -- [XXXCO] :: plank, board; axitia_F_N = mkN "axitia" ; -- [XXXFO] :: unidentified toilet article; axitiosus_A = mkA "axitiosus" "axitiosa" "axitiosum" ; -- [XXXFO] :: extravagant in use of axitia (unidentified toilet article); --- TODO axon_N : N1 axon, axonos/is -- M -- [XWXEO] :: axis of a sundial; axis/roller of a ballista; line on a sundial (L+S); + axon_1_N = mkN "axon" "axonis" masculine ; -- [XWXEO] :: axis of a sundial; axis/roller of a ballista; line on a sundial (L+S); + axon_2_N = mkN "axon" "axonos" masculine ; -- [XWXEO] :: axis of a sundial; axis/roller of a ballista; line on a sundial (L+S); axulus_M_N = mkN "axulus" ; -- [XXXFO] :: small plank/board; axungia_F_N = mkN "axungia" ; -- [XXXEO] :: axle grease (hog/animal fat) (also used as medicament); azanius_A = mkA "azanius" "azania" "azanium" ; -- [XAXNO] :: kind of pine cone; pine cones which open while yet on the tree (L+S); @@ -6376,6 +6813,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg badizo_V = mkV "badizare" ; -- [BXXFO] :: go, proceed; walk; bae_F_N = mkN "bae" "baes " feminine ; -- [EXXFW] :: palm branch; Baiae (pl.) posh Bay of Naples resort w/hot springs, the Palms; baeticatus_A = mkA "baeticatus" "baeticata" "baeticatum" ; -- [XASFO] :: clothed in wool from Baectia (province in southern Spain, Andalusia/Granada); + baeto_V = mkV "baetere" "baeto" nonExist nonExist; -- [XXXEO] :: go; baetulus_M_N = mkN "baetulus" ; -- [XXXNO] :: species of meteoric stone; baia_F_N = mkN "baia" ; -- [XXXES] :: palm branch; Baiae (pl.) posh Bay of Naples resort w/hot springs, the Palms; baijulo_V2 = mkV2 (mkV "baijulare") ; -- [XXXDO] :: carry, bear (load); @@ -6403,8 +6841,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg balbe_Adv = mkAdv "balbe" ; -- [XXXEO] :: inarticulately; obscurely; balbus_A = mkA "balbus" "balba" "balbum" ; -- [XXXCO] :: stammering, stuttering, lisping, suffering from a speech defect; fumbling; balbuties_F_N = mkN "balbuties" "balbutiei " feminine ; -- [FXXFM] :: stammering; (balbuties); --- TODO balbutio_V : V2 balbutio, balbutire, -, - -- Declension: 4th -- Comment: [XXXCO] :: stammer, stutter; lisp; speak obscurely/indistinctly; babble; --- TODO balbuttio_V : V2 balbuttio, balbuttire, -, - -- Declension: 4th -- Comment: [XXXCO] :: stammer, stutter; lisp; speak obscurely/indistinctly; babble; + balbutio_V = mkV "balbutire" "balbutio" nonExist nonExist ; -- [XXXCO] :: stammer, stutter; lisp; speak obscurely/indistinctly; babble; + balbuttio_V = mkV "balbuttire" "balbuttio" nonExist nonExist ; -- [XXXCO] :: stammer, stutter; lisp; speak obscurely/indistinctly; babble; baldachinum_N_N = mkN "baldachinum" ; -- [FXXFE] :: canopy; baldachinus_M_N = mkN "baldachinus" ; -- [FXXFE] :: canopy; balena_F_N = mkN "balena" ; -- [XAXES] :: whale; @@ -6504,15 +6942,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg barbaricus_A = mkA "barbaricus" "barbarica" "barbaricum" ; -- [XXXCO] :: outlandish; foreign, strange; barbarous, savage; of uncivilized world/people; barbaries_F_N = mkN "barbaries" "barbariei " feminine ; -- [XXXCO] :: strange/foreign land; uncivilized races, barbarity; brutality; barbarism; barbarismus_M_N = mkN "barbarismus" ; -- [XXXCO] :: barbarism, impropriety of speech; --- TODO barbarolexis_N : N1 barbarolexis, barbaroleos/is -- F -- [DGXFS] :: perversion of form of a word, change/inflection of Greek to Latin usage; + barbarolexis_1_N = mkN "barbarolexis" "barbaroleis" feminine ; -- [DGXFS] :: perversion of form of a word, change/inflection of Greek to Latin usage; + barbarolexis_2_N = mkN "barbarolexis" "barbaroleos" feminine ; -- [DGXFS] :: perversion of form of a word, change/inflection of Greek to Latin usage; barbarum_N_N = mkN "barbarum" ; -- [XXXEO] :: barbarism; impropriety of speech; kind of plaster (applied to raw wounds L+S); --- SLASHSTUFF barbarus_A : A2 barbarus, barbara -um, barbarior -or -us, barbarissimus -a -um -- [XXXAO] :: foreign, of/used by/typical of foreigners; cruel, savage; uncivilized, uncouth; + barbarus_A = mkA "barbarus" ; -- [XXXAO] :: foreign, of/used by/typical of foreigners; cruel, savage; uncivilized, uncouth; barbarus_M_N = mkN "barbarus" ; -- [XXXCO] :: barbarian, uncivilized person; foreigner (not Greek/Roman); barbasculus_M_N = mkN "barbasculus" ; -- [XXXFO] :: whipper-snapper?; barbatoria_F_N = mkN "barbatoria" ; -- [XXXFO] :: ceremony of the first shaving of the beard; shaving of the beard; barbatulus_A = mkA "barbatulus" "barbatula" "barbatulum" ; -- [XXXEO] :: having small/foppish beard; barbatus_A = mkA "barbatus" "barbata" "barbatum" ; -- [XXXCO] :: bearded, having a beard; (like the men of antiquity); (as sign of) adult; + barbesco_V = mkV "barbescere" "barbesco" nonExist nonExist; -- [DXXFS] :: get a beard, begin to grow/sprout a beard; barbiger_A = mkA "barbiger" "barbigera" "barbigerum" ; -- [XAXFO] :: bearded (like a goat); + barbio_V = mkV "barbire" "barbio" "barbivi" "barbitus "; -- [DXXES] :: raise/grow a beard; barbitium_N_N = mkN "barbitium" ; -- [XXXEO] :: growth of beard; beard; barbiton_N_N = mkN "barbiton" "barbiti " neuter ; -- [EXXEE] :: lyre (properly of a lower pitch); lute (Ecc); barbitonsor_M_N = mkN "barbitonsor" "barbitonsoris " masculine ; -- [XXXEE] :: barber; @@ -6537,6 +6978,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg baroptenus_C_N = mkN "baroptenus" ; -- [XXXNO] :: precious stone; barosus_A = mkA "barosus" "barosa" "barosum" ; -- [DXXFS] :: foolish, stupid, weak, effeminate; barrinus_A = mkA "barrinus" "barrina" "barrinum" ; -- [DAXFS] :: of/pertaining to/belonging to an elephant; + barrio_V = mkV "barrire" "barrio" nonExist nonExist; -- [XAXFO] :: trumpet (of an elephant); barritus_M_N = mkN "barritus" "barritus " masculine ; -- [XWXEO] :: trumpeting (of an elephant); war-cry, battle-cry (of the Germans); barrus_M_N = mkN "barrus" ; -- [XXXFO] :: elephant; barycephalus_A = mkA "barycephalus" "barycephala" "barycephalum" ; -- [XXXFO] :: top-heavy; with low walls and broad roofs (L+S); @@ -6545,7 +6987,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg barython_M_N = mkN "barython" "barythonis " masculine ; -- [DAXFS] :: plant; (also called Sabina); barythonos_A = mkA "barythonos" "barythonos" "barythonon" ; -- [DGXFS] :: not accented on the last syllable; barytonista_M_N = mkN "barytonista" ; -- [GDXEK] :: baritone; --- TODO bas_N : N1 bas, baseos/is -- F -- [XXXBO] :: pedestal; base, point of attachment; foundation, support; chord (of an arc); + bas_1_N = mkN "bas" "baseis" feminine ; -- [XXXBO] :: pedestal; base, point of attachment; foundation, support; chord (of an arc); + bas_2_N = mkN "bas" "baseos" feminine ; -- [XXXBO] :: pedestal; base, point of attachment; foundation, support; chord (of an arc); basaltes_M_N = mkN "basaltes" "basaltis " masculine ; -- [DXAES] :: dark and very hard species of marble in Ethiopia; (M, contrary to rule L+S); basanites_M_N = mkN "basanites" "basanitae " masculine ; -- [XXXNO] :: kind of quartz used in touchstones/whetstones/mortars (basanite?); teststone; bascauda_F_N = mkN "bascauda" ; -- [XXBEO] :: basin (kind of British origin); mat or dish holder of fine basket-work (L+S); @@ -6570,7 +7013,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg basio_V2 = mkV2 (mkV "basiare") ; -- [XXXCO] :: kiss, give a kiss; basioballum_N_N = mkN "basioballum" ; -- [XXXFS] :: woman (slang), piece, bit of fluff, crumpet; basiolum_N_N = mkN "basiolum" ; -- [XXXEO] :: little kiss, peck; --- TODO basis_N : N1 basis, basos/is -- F -- [XXXBO] :: pedestal; base, point of attachment; foundation, support; chord (of an arc); + basis_1_N = mkN "basis" "basis" feminine ; -- [XXXBO] :: pedestal; base, point of attachment; foundation, support; chord (of an arc); + basis_2_N = mkN "basis" "basos" feminine ; -- [XXXBO] :: pedestal; base, point of attachment; foundation, support; chord (of an arc); basium_N_N = mkN "basium" ; -- [XXXCO] :: kiss; kiss of the hand; bassilica_F_N = mkN "bassilica" ; -- [XXXCO] :: basilica; oblong hall with colonnade used as law court or exchange; bassista_M_N = mkN "bassista" ; -- [GDXEK] :: bass-singer; @@ -6584,10 +7028,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bastardus_M_N = mkN "bastardus" ; -- [FLXEM] :: bastard; bastard son; basterna_F_N = mkN "basterna" ; -- [DXXES] :: sedan chair/litter (enclosed on all sides, carried by mules); basternarius_M_N = mkN "basternarius" ; -- [DXXES] :: bearer of a sedan chair/litter; --- bat_Conj : Conj bat -- [XXXEO] :: but, while, however; (contemptuous parity of "at" - b-b-but); + bat_Conj = mkConj "bat" missing ; -- [XXXEO] :: but, while, however; (contemptuous parity of "at" - b-b-but); batalaria_F_N = mkN "batalaria" ; -- [XWXFS] :: kind of warship; batallum_N_N = mkN "batallum" ; -- [FXXFE] :: clapper (of bell); --- batenim_Conj : Conj batenim -- [XXXEO] :: but, yet, nevertheless, however; (contemptuous parity of "atenim" - b-b-but); + batenim_Conj = mkConj "batenim" missing ; -- [XXXEO] :: but, yet, nevertheless, however; (contemptuous parity of "atenim" - b-b-but); bathrum_N_N = mkN "bathrum" ; -- [XXXIO] :: base, pedestal; batia_F_N = mkN "batia" ; -- [XAXNO] :: fish; (perh. skate or ray); batiaca_F_N = mkN "batiaca" ; -- [XXXFS] :: drinking vessel, cup, goblet; @@ -6602,13 +7046,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg batrachus_M_N = mkN "batrachus" ; -- [XAXNO] :: fish (prob. angler, Lophius piscatorius); battalia_F_N = mkN "battalia" ; -- [DWXES] :: fighting/fencing exercises of soldiers and gladiators; battis_F_N = mkN "battis" "battis " feminine ; -- [XAXEO] :: plant (prob. samphire, Crithmum maritimum and sim. species); --- TODO batto_V : V2 batto, battere, -, - -- Declension: 3rd -- Comment: [XXFDO] :: pound, beat, hit, strike; fence (with swords); + batto_V = mkV "battere" "batto" nonExist nonExist ; -- [XXFDO] :: pound, beat, hit, strike; fence (with swords); battualia_F_N = mkN "battualia" ; -- [DWXES] :: fighting/fencing exercises of soldiers and gladiators; battuarium_N_N = mkN "battuarium" ; -- [DBXFS] :: mortar; battuens_M_N = mkN "battuens" "battuentis " masculine ; -- [GXXEK] :: fencer; --- TODO battuo_V : V2 battuo, battuere, -, - -- Declension: 3rd -- Comment: [XXXDO] :: pound, beat hit, strike; fence (with swords); + battuo_V = mkV "battuere" "battuo" nonExist nonExist ; -- [XXXDO] :: pound, beat hit, strike; fence (with swords); battutus_A = mkA "battutus" "battuta" "battutum" ; -- [GXXEK] :: whipped (as in whipped cream); --- TODO batuo_V : V2 batuo, batuere, -, - -- Declension: 3rd -- Comment: [XXXDO] :: pound, beat hit, strike; fence (with swords); + batuo_V = mkV "batuere" "batuo" nonExist nonExist ; -- [XXXDO] :: pound, beat hit, strike; fence (with swords); batus_F_N = mkN "batus" ; -- [XAXES] :: bramble; blackberry bush, raspberry bush; batus_M_N = mkN "batus" ; -- [EEQFS] :: bath, Hebrew liquid measure (about 9 gallons); baubatus_M_N = mkN "baubatus" "baubatus " masculine ; -- [GXXEK] :: barking; @@ -6640,10 +7084,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bechicus_A = mkA "bechicus" "bechica" "bechicum" ; -- [DBXES] :: of/for a cough; bechion_N_N = mkN "bechion" "bechii " neuter ; -- [XAXNO] :: plant (perh. coltsfoot, Tussiago farfara); (good for cough L+S); bee_Interj = ss "bee" ; -- [DAXFS] :: baa; sound made by a sheep; --- IGNORED behemoth_N : N1 behemoth, undeclined -- N -- [EAQFE] :: behemoth (Hebrew), great/monstrous beast; (hippopotamus?); (Job 40:10); --- IGNORED behmoth_N : N1 behmoth, undeclined -- N -- [EAQFE] :: behemoth (Hebrew), great/monstrous beast; (hippopotamus?); (Job 40:10); + behemoth_N = constN "behemoth" neuter ; -- [EAQFE] :: behemoth (Hebrew), great/monstrous beast; (hippopotamus?); (Job 40:10); + behmoth_N = constN "behmoth" neuter ; -- [EAQFE] :: behemoth (Hebrew), great/monstrous beast; (hippopotamus?); (Job 40:10); beia_Interj = ss "beia" ; -- [XXXFO] :: see!; (comic word as contemptuous echo of "heia"); --- IGNORED bekah_N : N1 bekah, undeclined -- N -- [ELQFE] :: half shekel (Hebrew); + bekah_N = constN "bekah" neuter ; -- [ELQFE] :: half shekel (Hebrew); belbus_M_N = mkN "belbus" ; -- [DAXFS] :: hyena; belion_N_N = mkN "belion" "belii " neuter ; -- [DAXFS] :: strong smelling plant (poley-germander, Teucrium polium?); belivus_A = mkA "belivus" "beliva" "belivum" ; -- [FXXFZ] :: bleating; baaing; talking foolishly; @@ -6659,7 +7103,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg belle_Adv =mkAdv "belle" "bellius" "bellissime" ; -- [XXXBO] :: |well; [w/esse => have a nice time; w/habere => be well; w/est => all is well]; belliatulus_A = mkA "belliatulus" "belliatula" "belliatulum" ; -- [XXXFO] :: pretty little (term of endearment); belliatus_A = mkA "belliatus" "belliata" "belliatum" ; -- [XXXFO] :: pretty, beautiful; --- SLASHSTUFF bellicosus_A : A2 bellicosus, bellicosa -um, bellicosior -or -us, bellicosissimus -a -um -- [XWXCO] :: warlike, fierce; fond of war; + bellicosus_A = mkA "bellicosus" ; -- [XWXCO] :: warlike, fierce; fond of war; bellicrepus_A = mkA "bellicrepus" "bellicrepa" "bellicrepum" ; -- [XWXFO] :: marked by sound of arms; [~a saltio => armed dance, dance in arms]; bellicum_N_N = mkN "bellicum" ; -- [XWXCS] :: signal (on trumpet) for march/attack/etc. (w/canere); military trumpet call; bellicus_A = mkA "bellicus" "bellica" "bellicum" ; -- [XWXCO] :: of war, military; warlike; [~um canere => sound attack horn/begin hostilities]; @@ -6685,7 +7129,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bellule_Adv = mkAdv "bellule" ; -- [XXXEO] :: prettily, nicely, finely; bellulus_A = mkA "bellulus" "bellula" "bellulum" ; -- [XXXEO] :: pretty/nice (little), fine, lovely, beautiful; bellum_N_N = mkN "bellum" ; -- [XWXAO] :: war, warfare; battle, combat, fight; (at/in) (the) war(s); military force, arms; --- SLASHSTUFF bellus_A : A2 bellus, bella -um, bellior -or -us, bellissimus -a -um -- [XXXBO] :: pretty, handsome, charming, pleasant, agreeable, polite; nice, fine, excellent; + bellus_A = mkA "bellus" ; -- [XXXBO] :: pretty, handsome, charming, pleasant, agreeable, polite; nice, fine, excellent; belo_V = mkV "belare" ; -- [XAXEO] :: bleat, baa (like a sheep); talk foolishly; beloacos_M_N = mkN "beloacos" "beloaci " masculine ; -- [DAXFS] :: plant; (also called dictamnus); belone_F_N = mkN "belone" "belones " feminine ; -- [XAXNO] :: fish (same as acus); pipefish, needlefish, hornpike, gar; @@ -6700,12 +7144,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bema_N_N = mkN "bema" "bematis " neuter ; -- [EEXEE] :: sanctuary; bishop's chair; pulpit; bene_Adv =mkAdv "bene" "melius" "optime" ; -- [XXXAO] :: well, very, quite, rightly, agreeably, cheaply, in good style; better; best; benedice_Adv = mkAdv "benedice" ; -- [XXXFO] :: with friendly words, kindly; + benedico_V2 = mkV2 (mkV "benedicere" "benedico" "benedixi" "benedictus ") ; -- [EEXAX] :: bless; praise; speak well of; speak kindly of (classically 2 words); benedictio_F_N = mkN "benedictio" "benedictionis " feminine ; -- [EEXCS] :: blessing; benediction; extolling, praising; consecrated/sacred object; benedictionale_N_N = mkN "benedictionale" "benedictionalis " neuter ; -- [EEXFE] :: book of benedictions/formulas of blessings; benedictorium_N_N = mkN "benedictorium" ; -- [GXXEK] :: stoup; holy-water basin; benedictus_A = mkA "benedictus" "benedicta" "benedictum" ; -- [EEXDX] :: blessed; blest; approved/praised/spoken well of (person); benedictus_M_N = mkN "benedictus" ; -- [EEXDX] :: blessed/blest one; an approved/praised person, spoken well of; benedicus_A = mkA "benedicus" "benedica" "benedicum" ; -- [DXXFS] :: friendly, kind; speaking friendly words; beneficent; + benefacio_V2 = mkV2 (mkV "benefacere" "benefacio" "benefeci" "benefactus ") ; -- [XXXCO] :: do service/good to; make well/ably; benefit; bless; (usu. 2 words); benefactio_F_N = mkN "benefactio" "benefactionis " feminine ; -- [DXXES] :: performing an act of kindness; doing a favor/kindness/boon; benefactor_M_N = mkN "benefactor" "benefactoris " masculine ; -- [DXXCS] :: benefactor; he who does/confers a favor/kindness; benefactum_N_N = mkN "benefactum" ; -- [XXXCO] :: benefit, service (also as 2 words); good deed (usu. pl.); @@ -6716,10 +7162,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg beneficiatus_M_N = mkN "beneficiatus" "beneficiatus " masculine ; -- [XXXIO] :: status of beneficiarius, privileged soldier (exempt from certain duties); beneficientia_F_N = mkN "beneficientia" ; -- [XXXFO] :: beneficence, kindness; beneficium_N_N = mkN "beneficium" ; -- [XXXBO] :: kindness, favor, benefit, service, help; privilege, right; --- SLASHSTUFF beneficus_A : A2 beneficus, benefica -um, beneficentior -or -us, beneficentissimus -a -um -- [XXXCO] :: beneficent, kind, generous, liberal, serviceable; + beneficus_A = mkA "beneficus" ; -- [XXXCO] :: beneficent, kind, generous, liberal, serviceable; benefio_V = mkV "beneferi" ; -- [XXXCO] :: be blessed; receive a benefit; (benefacio PASS); benemerens_A = mkA "benemerens" "benemerentis"; -- [XXXEO] :: well deserving; --- SLASHSTUFF benemeritus_A : A2 benemeritus, benemerita -um, benemeritior -or -us, benemeritissimus -a -um -- [XXXEO] :: well deserved/due/deserving; + benemeritus_A = mkA "benemeritus" ; -- [XXXEO] :: well deserved/due/deserving; benemorius_A = mkA "benemorius" "benemoria" "benemorium" ; -- [XXXFO] :: having good moral qualities; beneolentia_F_N = mkN "beneolentia" ; -- [DXXFS] :: agreeable smell; beneplacens_A = mkA "beneplacens" "beneplacentis"; -- [DEXEE] :: pleasing, acceptable; @@ -6740,7 +7186,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg benignitas_F_N = mkN "benignitas" "benignitatis " feminine ; -- [XXXCO] :: kindness, courtesy; friendliness, benevolence; liberality, favor; bounty; mercy; benigniter_Adv = mkAdv "benigniter" ; -- [XXXFO] :: kindly, in a friendly manner; benignly; benignor_V = mkV "benignari" ; -- [EEXFS] :: rejoice, take delight (in); --- SLASHSTUFF benignus_A : A2 benignus, benigna -um, benignior -or -us, benignissimus -a -um -- [XXXBO] :: kind, favorable, obliging; kindly, mild, affable; liberal, bounteous; + benignus_A = mkA "benignus" ; -- [XXXBO] :: kind, favorable, obliging; kindly, mild, affable; liberal, bounteous; benivole_Adv = mkAdv "benivole" ; -- [XXXDO] :: in a spirit of good will, in a friendly manner; benivolens_A = mkA "benivolens" "benivolentis"; -- [XXXCO] :: kind, friendly, benevolent, well-wishing, kind-hearted; benivolens_F_N = mkN "benivolens" "benivolentis " feminine ; -- [XXXCO] :: friend, well-wisher, kind-heart; @@ -6773,13 +7219,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bestiarius_M_N = mkN "bestiarius" ; -- [XXXDO] :: fighter with wild beasts at public shows; bestiola_F_N = mkN "bestiola" ; -- [XAXCO] :: little creature, insect; beta_F_N = mkN "beta" ; -- [XAXCO] :: beet, beetroot; --- IGNORED beta_N : N1 beta, undeclined -- N -- [XXHEO] :: beta (second letter of Greek alphabet); second of anything, second item; + beta_N = constN "beta" neuter ; -- [XXHEO] :: beta (second letter of Greek alphabet); second of anything, second item; betaceus_A = mkA "betaceus" "betacea" "betaceum" ; -- [XAXEO] :: of/from/pertaining to a beet; betaceus_M_N = mkN "betaceus" ; -- [XAXES] :: beetroot; --- IGNORED beth_N : N1 beth, undeclined -- N -- [DEQEW] :: bet; (2nd letter of Hebrew alphabet); (transliterate as B and V); + beth_N = constN "beth" neuter ; -- [DEQEW] :: bet; (2nd letter of Hebrew alphabet); (transliterate as B and V); betis_F_N = mkN "betis" "betis " feminine ; -- [XAXCS] :: beet, beetroot; betisso_V = mkV "betissare" ; -- [XXXFS] :: be languid (soft as a beet); betizo_V = mkV "betizare" ; -- [XXXFO] :: be languid (soft as a beet); + beto_V = mkV "betere" "beto" nonExist nonExist; -- [XXXFO] :: go; betula_F_N = mkN "betula" ; -- [XAXNS] :: birch tree; betulla_F_N = mkN "betulla" ; -- [XAXNO] :: birch tree; biaeothanatus_A = mkA "biaeothanatus" "biaeothanata" "biaeothanatum" ; -- [DXXFS] :: dying by violence; that dies a violent death; @@ -6806,6 +7253,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bibliothecula_F_N = mkN "bibliothecula" ; -- [DXXFS] :: small library/collection of books; biblus_F_N = mkN "biblus" ; -- [XXEFO] :: Egyptian papyrus; bibo_M_N = mkN "bibo" "bibonis " masculine ; -- [XXXFS] :: hard drinker, tippler, drunkard; kind of worm bread in wine; + bibo_V2 = mkV2 (mkV "bibere" "bibo" "bibi" "bibitus ") ; -- [XXXAO] :: drink; toast; visit, frequent (w/river name); drain, draw off; thirst for; suck; bibonius_M_N = mkN "bibonius" ; -- [DXXFS] :: hard drinker, tippler, drunkard; bibosus_A = mkA "bibosus" "bibosa" "bibosum" ; -- [XXXEO] :: addicted/given to drink, fond of drink; bibrevis_A = mkA "bibrevis" "bibrevis" "bibreve" ; -- [DPXFS] :: having meter consisting of two short syllables; @@ -6883,6 +7331,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bikinianus_A = mkA "bikinianus" "bikiniana" "bikinianum" ; -- [GXXEK] :: bikini-like; bilanx_A = mkA "bilanx" "bilancis"; -- [DXXFS] :: having two scales (balance); bilateralis_A = mkA "bilateralis" "bilateralis" "bilaterale" ; -- [FXXFE] :: bilateral; mutual; + bilbo_V = mkV "bilbere" "bilbo" nonExist nonExist; -- [DXXFS] :: make a noise like a liquid agitated in a vessel; (slosh?); bilibra_F_N = mkN "bilibra" ; -- [XSXFS] :: two pounds; (two Roman pounds equals about one and a half US pounds); bilibralis_A = mkA "bilibralis" "bilibralis" "bilibrale" ; -- [DSXES] :: two-pound, weighing/containing two pounds; (2 Roman pounds = one and a half US); bilibris_A = mkA "bilibris" "bilibris" "bilibre" ; -- [XSXDO] :: two-pound, weighing/containing two pounds; (2 Roman pounds = one and a half US); @@ -6937,6 +7386,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bipalium_N_N = mkN "bipalium" ; -- [XAXDO] :: bimattock, double mattock, implement for double-digging/trenching; bipalmis_A = mkA "bipalmis" "bipalmis" "bipalme" ; -- [XXXEO] :: two palms/spans (long/broad - 6 inches, Roman foot being 4 palmi); bipalmus_A = mkA "bipalmus" "bipalma" "bipalmum" ; -- [DXXES] :: two palms/spans (long/broad - 6 inches, Roman foot being 4 palmi); + bipartio_V2 = mkV2 (mkV "bipartire" "bipartio" "bipartivi" "bipartitus ") ; -- [XXXES] :: divide in two parts; bisect; divide; bipartitio_F_N = mkN "bipartitio" "bipartitionis " feminine ; -- [XXXFO] :: twofold division; dividing in two, split; bipartito_Adv = mkAdv "bipartito" ; -- [XXXCO] :: in two parts/divisions/ways/directions; [esse ~ => to be divided]; bipartitus_A = mkA "bipartitus" "bipartita" "bipartitum" ; -- [XXXCO] :: bipartite, that is divided in two parts; double (Ecc); @@ -6950,6 +7400,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bipennis_A = mkA "bipennis" "bipennis" "bipenne" ; -- [XXXDO] :: two-edged; having two wings; bipennis_F_N = mkN "bipennis" "bipennis " feminine ; -- [XWXCO] :: two edged ax; battle ax; bipensilis_A = mkA "bipensilis" "bipensilis" "bipensile" ; -- [XXXFS] :: that may be suspended on two sides; + bipertio_V2 = mkV2 (mkV "bipertire" "bipertio" "bipertivi" "bipertitus ") ; -- [XXXEO] :: divide in two parts; bisect; divide; bipertitio_F_N = mkN "bipertitio" "bipertitionis " feminine ; -- [XXXFO] :: twofold division; dividing in two, split; bipertito_Adv = mkAdv "bipertito" ; -- [XXXCO] :: in two parts/divisions/ways; [esse ~ => to be divided]; bipertitus_A = mkA "bipertitus" "bipertita" "bipertitum" ; -- [XXXCO] :: bipartite, that is divided in two parts; double (Ecc); @@ -6992,7 +7443,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bisonus_A = mkA "bisonus" "bisona" "bisonum" ; -- [DXXES] :: sounding twice; bispellio_F_N = mkN "bispellio" "bispellionis " feminine ; -- [DXXFS] :: man with two skins; cunning man; bissa_F_N = mkN "bissa" ; -- [FAXEM] :: female deer; --- IGNORED bisse_N : N1 bisse., abb. -- N -- [FXXEM] :: forty minutes (pl.); + bisse_N = constN "bisse." neuter ; -- [FXXEM] :: forty minutes (pl.); bissextilis_A = mkA "bissextilis" "bissextilis" "bissextile" ; -- [EXXFE] :: leap (year); (two "sixth" days before first/calends of March); bissextum_N_N = mkN "bissextum" ; -- [XXXEO] :: two day period of 24 Feb. and leap year intercalary day (Julian calendar); bissextus_A = mkA "bissextus" "bissexta" "bissextum" ; -- [XXXFE] :: leap (year); (two "sixth" days before first/calends of March); @@ -7003,6 +7454,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bisulcus_A = mkA "bisulcus" "bisulca" "bisulcum" ; -- [XXXCO] :: forked, divided into two parts; cloven-footed; bisyllabus_A = mkA "bisyllabus" "bisyllaba" "bisyllabum" ; -- [XGXFO] :: disyllabic; bithalassus_A = mkA "bithalassus" "bithalassa" "bithalassum" ; -- [EXHFP] :: w/two seas touching/bounding; where two seas meet (Rheims); between two seas; + bito_V = mkV "bitere" "bito" nonExist nonExist; -- [BXXCO] :: go; bitumen_N_N = mkN "bitumen" "bituminis " neuter ; -- [XXXCO] :: bitumen, pitch, asphalt (generic name for various hydrocarbons); bituminatus_A = mkA "bituminatus" "bituminata" "bituminatum" ; -- [XXXNO] :: tinctured/impregnated with bitumen (generic for hydrocarbons); bituminous; bitumineus_A = mkA "bitumineus" "bituminea" "bitumineum" ; -- [XXXFO] :: of/connected with bitumen (generic name for various hydrocarbons); @@ -7035,6 +7487,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg blandiloquium_N_N = mkN "blandiloquium" ; -- [XXXFS] :: soft words; flattering speech; blandiloquus_A = mkA "blandiloquus" "blandiloqua" "blandiloquum" ; -- [XXXFO] :: charming/persuasive in speech, smooth talking; blandimentum_N_N = mkN "blandimentum" ; -- [XXXBO] :: blandishment, coaxing/wheedling behavior, cajolery; favors; charm, delight; + blandio_V = mkV "blandire" "blandio" "blandivi" "blanditus "; -- [XXXBO] :: flatter, delude; fawn; coax, urge, behave/speak ingratiatingly; allure; please; + blandior_V = mkV "blandiri" "blandior" "blanditus sum " ; -- [XXXBO] :: flatter, delude; fawn; coax, urge, behave/speak ingratiatingly; allure; please; blanditer_Adv = mkAdv "blanditer" ; -- [XXXEO] :: in coaxing/winning manner, charmingly, persuasively, seductively; blanditia_F_N = mkN "blanditia" ; -- [XXXCO] :: flattery, caress, compliment; charm (pl.), flatteries, enticement, courtship; blandities_F_N = mkN "blandities" "blanditiei " feminine ; -- [XXXCO] :: flattery, caress, compliment; charm (pl.), flatteries, enticement, courtship; @@ -7044,7 +7498,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg blando_Adv = mkAdv "blando" ; -- [XXXFO] :: in coaxing/winning manner, charmingly, persuasively, seductively; blandulus_A = mkA "blandulus" "blandula" "blandulum" ; -- [XXXEO] :: charming; pleasant; blandum_Adv = mkAdv "blandum" ; -- [XXXFS] :: in coaxing/winning manner, charmingly, persuasively, seductively; --- SLASHSTUFF blandus_A : A2 blandus, blanda -um, blandior -or -us, blandissimus -a -um -- [XXXAO] :: flattering, coaxing; charming, pleasant; smooth, gentle; alluring, attractive; + blandus_A = mkA "blandus" ; -- [XXXAO] :: flattering, coaxing; charming, pleasant; smooth, gentle; alluring, attractive; blapsigonia_F_N = mkN "blapsigonia" ; -- [XAXNO] :: disease which prevents bees from breeding (foul brood?); blasphemabilis_A = mkA "blasphemabilis" "blasphemabilis" "blasphemabile" ; -- [DEXES] :: that deserves reproach; censurable; blasphematio_F_N = mkN "blasphematio" "blasphemationis " feminine ; -- [DEXES] :: censure, reproach, reviling; @@ -7056,7 +7510,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg blateratus_M_N = mkN "blateratus" "blateratus " masculine ; -- [DXXES] :: babbling, prattle; blatero_M_N = mkN "blatero" "blateronis " masculine ; -- [XXXFO] :: prater, babbler; blatero_V = mkV "blaterare" ; -- [XXXCO] :: prate, babble; utter in a babbling way; (applied to sounds of certain animals); --- TODO blatio_V : V2 blatio, blatire, -, - -- Declension: 4th -- Comment: [XXXEO] :: prate, babble; utter in a babbling way; (applied to sounds of certain animals); + blatio_V = mkV "blatire" "blatio" nonExist nonExist ; -- [XXXEO] :: prate, babble; utter in a babbling way; (applied to sounds of certain animals); blatium_N_N = mkN "blatium" ; -- [FABFM] :: sheaf; measure of grain; blatta_F_N = mkN "blatta" ; -- [XAXCO] :: cockroach, moth, book-worm; (applied to various insects); blattaria_F_N = mkN "blattaria" ; -- [XAXNO] :: species of Verbasceum (moth mullein?); @@ -7121,6 +7575,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bombax_Interj = ss "bombax" ; -- [XXXFO] :: Splendid! Marvelous!; bombilo_V = mkV "bombilare" ; -- [XXXFO] :: buzz, hum; bombinator_M_N = mkN "bombinator" "bombinatoris " masculine ; -- [DAXES] :: buzzer, hummer; (of bee); + bombio_V = mkV "bombire" "bombio" "bombivi" "bombitus "; -- [XXXFO] :: buzz, hum; bombito_V = mkV "bombitare" ; -- [XXXFS] :: buzz, hum; bombizatio_F_N = mkN "bombizatio" "bombizationis " feminine ; -- [DXXFO] :: buzzing (of bees); bombulum_N_N = mkN "bombulum" ; -- [EBXEW] :: break wind; fart; @@ -7140,10 +7595,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bonifatus_A = mkA "bonifatus" "bonifata" "bonifatum" ; -- [DXXFS] :: lucky, fortunate; bonitas_F_N = mkN "bonitas" "bonitatis " feminine ; -- [XXXBO] :: goodness, integrity, moral excellence; kindness, benevolence, tenderness; bonum_N_N = mkN "bonum" ; -- [XXXAO] :: good, good thing, profit, advantage; goods (pl.), possessions, wealth, estate; --- SLASHSTUFF bonus_A : A2 bonus, bona -um, melior -or -us, optimus -a -um -- [XXXAO] :: good, honest, brave, noble, kind, pleasant, right, useful; valid; healthy; + bonus_A = mkA "bonus" ; -- [XXXAO] :: good, honest, brave, noble, kind, pleasant, right, useful; valid; healthy; bonus_M_N = mkN "bonus" ; -- [XXXCO] :: good/moral/honest/brave man; man of honor, gentleman; better/rich people (pl.); bonusculum_N_N = mkN "bonusculum" ; -- [DLXES] :: small possessions (pl.); a little/small estate; --- TODO boo_V : V2 boo, boere, -, - -- Declension: 3rd -- Comment: [XXXCO] :: cry aloud, roar, bellow; call loudly upon; + boo_V = mkV "boere" "boo" nonExist nonExist ; -- [XXXCO] :: cry aloud, roar, bellow; call loudly upon; boopes_F_N = mkN "boopes" "boopis " feminine ; -- [DAXFS] :: plant (caerefolium); chervil (Anthiscus cerefolium) (OLD); (L+S says neuter); boopis_A = mkA "boopis" "boopis" "boope" ; -- [XXXFO] :: having large eyes (feminine); borborygmus_M_N = mkN "borborygmus" ; -- [GXXEK] :: borborygm; @@ -7152,11 +7607,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg boreotis_A = mkA "boreotis" "boreotidis"; -- [DXXFS] :: northern; boreus_A = mkA "boreus" "borea" "boreum" ; -- [XXXEO] :: northern; pertaining to north wind; boria_F_N = mkN "boria" ; -- [XXXNO] :: kind of jasper; --- IGNORED borith_N : N1 borith, undeclined -- N -- [DEXFS] :: soapwort, plant purifying like soap; (Hebrew); + borith_N = constN "borith" neuter ; -- [DEXFS] :: soapwort, plant purifying like soap; (Hebrew); borius_A = mkA "borius" "boria" "borium" ; -- [XXXES] :: northern; pertaining to north wind; + borrio_V = mkV "borrire" "borrio" "borrivi" "borritus "; -- [XXXFO] :: swarm; bos_F_N = mkN "bos" "bovis " feminine ; -- [XXXBO] :: ox; bull; cow; ox-ray; cattle (pl.); (ox-like animals); [luca ~ => elephant]; bos_M_N = mkN "bos" "bovis " masculine ; -- [XXXBO] :: ox; bull; cow; ox-ray; cattle (pl.); (ox-like animals); [luca ~ => elephant]; --- TODO boscas_N : N1 boscas, boscados/is -- F -- [XAXFS] :: kind of water fowl (teal?); + boscas_1_N = mkN "boscas" "boscadis" feminine ; -- [XAXFS] :: kind of water fowl (teal?); + boscas_2_N = mkN "boscas" "boscados" feminine ; -- [XAXFS] :: kind of water fowl (teal?); boscis_F_N = mkN "boscis" "boscidis " feminine ; -- [XAXFO] :: kind of water fowl (teal?); boscus_M_N = mkN "boscus" ; -- [FAXDM] :: wood; lumber; timber; firewood; woodland, wooded area; bossellus_M_N = mkN "bossellus" ; -- [GXXEK] :: bushel; @@ -7176,7 +7633,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg botruosus_A = mkA "botruosus" "botruosa" "botruosum" ; -- [DAXFS] :: full of clusters; botrus_F_N = mkN "botrus" ; -- [DAXFS] :: grape; botrus_M_N = mkN "botrus" "botrus " masculine ; -- [EAXFW] :: cluster of grapes; (Vulgate 4 Ezra 9:21); --- TODO botryitis_N : N1 botryitis, botryitidos/is -- F -- [XXXEO] :: kind of precious stone/calamine; [cadmia ~ => grape/cluster-shaped zinc oxide]; + botryitis_1_N = mkN "botryitis" "botryitidis" feminine ; -- [XXXEO] :: kind of precious stone/calamine; [cadmia ~ => grape/cluster-shaped zinc oxide]; + botryitis_2_N = mkN "botryitis" "botryitidos" feminine ; -- [XXXEO] :: kind of precious stone/calamine; [cadmia ~ => grape/cluster-shaped zinc oxide]; botryo_M_N = mkN "botryo" "botryonis " masculine ; -- [XAXFO] :: bunch/cluster of grapes; botryodes_A = mkA "botryodes" "botryodis"; -- [DXXFS] :: in form of a cluster of grapes; botryon_M_N = mkN "botryon" "botryonis " masculine ; -- [XAXFO] :: bunch/cluster of grapes; @@ -7198,7 +7656,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bovinor_V = mkV "bovinari" ; -- [XXXFS] :: bellow at, revile; brawl; bovinus_A = mkA "bovinus" "bovina" "bovinum" ; -- [DAXFS] :: of/pertaining to cattle/oxen/cows; bovista_F_N = mkN "bovista" ; -- [GXXEK] :: mushroom puffball; --- TODO bovo_V : V2 bovo, bovere, -, - -- Declension: 3rd -- Comment: [XXXCO] :: cry aloud, roar, bellow; call loudly upon; + bovo_V = mkV "bovere" "bovo" nonExist nonExist ; -- [XXXCO] :: cry aloud, roar, bellow; call loudly upon; box_M_N = mkN "box" "bocis " masculine ; -- [XAXFS] :: fish; (bogue or boce); (Box vulgaris); boxum_N_N = mkN "boxum" ; -- [XXXCO] :: box-wood; top; flute; brabeum_N_N = mkN "brabeum" ; -- [DXXFS] :: prize in games; @@ -7262,6 +7720,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg brattiarius_M_N = mkN "brattiarius" ; -- [XXXFO] :: gold-beater, worker in gold-leaf; bratus_F_N = mkN "bratus" ; -- [XAQNO] :: tree (similar to cypress); bravialis_A = mkA "bravialis" "bravialis" "braviale" ; -- [EEXEM] :: earning a prize/reward; + bravio_V = mkV "bravere" "bravio" nonExist nonExist; -- [EEXEM] :: gamble; bravium_N_N = mkN "bravium" ; -- [EEXEM] :: prize; reward; bregma_F_N = mkN "bregma" ; -- [XAJNO] :: defect/disease of pepper tree; brenthos_M_N = mkN "brenthos" "brenthi " masculine ; -- [XAXNO] :: sea bird (unidentified); @@ -7283,7 +7742,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg breviloquium_N_N = mkN "breviloquium" ; -- [DGXES] :: brevity of speech, conciseness; breviloquus_A = mkA "breviloquus" "breviloqua" "breviloquum" ; -- [DGXES] :: short in speech, brief; concise; speaking briefly; brevio_V2 = mkV2 (mkV "breviare") ; -- [XGXCO] :: shorten, abridge; abbreviate (speech/writing); pronounce short; --- SLASHSTUFF brevis_A : A2 brevis, breve, brevior -or -us, brevissimus -a -um -- [XXXAO] :: short, little, small, stunted; brief, concise, quick; narrow, shallow; humble; + brevis_A = mkA "brevis" ; -- [XXXAO] :: short, little, small, stunted; brief, concise, quick; narrow, shallow; humble; brevis_M_N = mkN "brevis" "brevis " masculine ; -- [DGXES] :: short catalog, summary document; brevitas_F_N = mkN "brevitas" "brevitatis " feminine ; -- [XXXBO] :: shortness, smallness, narrowness; brevity, conciseness, terseness; breviter_Adv =mkAdv "breviter" "brevitius" "brevitissime" ; -- [XXXBO] :: shortly, briefly, in a nut shell; quickly; for/within a short distance/time; @@ -7318,6 +7777,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg brutalitas_F_N = mkN "brutalitas" "brutalitatis " feminine ; -- [FXBFM] :: brutishness; insensitivity; brutaliter_Adv = mkAdv "brutaliter" ; -- [FXXEF] :: brutally; brutishly; in manner of a beast; brutes_F_N = mkN "brutes" "brutis " feminine ; -- [XXXIO] :: bride; + brutesco_V = mkV "brutescere" "brutesco" nonExist nonExist; -- [DXXCS] :: become brutish/rough/unreasonable; bruteus_A = mkA "bruteus" "brutea" "bruteum" ; -- [FXXEM] :: brutal, brutish; brutum_N_N = mkN "brutum" ; -- [FXXEF] :: beast, animal; brute; brutus_A = mkA "brutus" "bruta" "brutum" ; -- [XXXCO] :: heavy, unwieldy, inert; dull, stupid, brute; irrational, insensitive, brutish; @@ -7335,6 +7795,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bubleum_N_N = mkN "bubleum" ; -- [XAXFS] :: kind of wine; bublus_A = mkA "bublus" "bubla" "bublum" ; -- [XAXCO] :: of/connected with cattle; bull's/cow's/ox-; consisting of cattle; bubo_M_N = mkN "bubo" "bubonis " masculine ; -- [XXXCO] :: horned or eagle owl (esp. as bird of ill omen); + bubo_V = mkV "bubere" "bubo" nonExist nonExist; -- [XAXFS] :: cry like a bittern (bird that booms/roars like an ox during mating); bubonion_N_N = mkN "bubonion" "bubonii " neuter ; -- [XAXNO] :: plant (Aster amellus?); (useful for swelling in groin L+S); bubonium_N_N = mkN "bubonium" ; -- [XAXNS] :: plant (Aster amellus?); (useful for swelling in groin L+S); bubonocele_F_N = mkN "bubonocele" "bubonoceles " feminine ; -- [XBXFO] :: inguinal/groin hernia; @@ -7393,7 +7854,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg buglossa_F_N = mkN "buglossa" ; -- [XAXNS] :: bugloss (herb) (prickly ox-tongue, Helminthia echioides?); buglossos_F_N = mkN "buglossos" "buglossi " feminine ; -- [XAXNO] :: bugloss (herb) (prickly ox-tongue, Helminthia echioides?); bugonia_F_N = mkN "bugonia" ; -- [XXXFS] :: generation of bees from putrid cattle carcasses (title of work by Archelaus); --- IGNORED bul_N : N1 bul, undeclined -- N -- [EXQEW] :: Bul (rain), Heshvan, Jewish month; (8th in ecclesiastic year); (1 Kings 6:38); + bul_N = constN "bul" neuter ; -- [EXQEW] :: Bul (rain), Heshvan, Jewish month; (8th in ecclesiastic year); (1 Kings 6:38); bulapathum_N_N = mkN "bulapathum" ; -- [XAXNO] :: large species of plant Lapathum of genus Ramex (sorrel); herb (patience) (L+S); bulbaceus_A = mkA "bulbaceus" "bulbacea" "bulbaceum" ; -- [XAXNO] :: bulbous, having bulbs; bulbatio_F_N = mkN "bulbatio" "bulbationis " feminine ; -- [XAXNO] :: bulb-like formation (in a kind of stone); @@ -7417,7 +7878,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bullarium_N_N = mkN "bullarium" ; -- [FEXFE] :: collection of Papal bulls; bullatio_F_N = mkN "bullatio" "bullationis " feminine ; -- [XXXNO] :: bulb-like formation (in a kind of stone); bubbling; bullatus_A = mkA "bullatus" "bullata" "bullatum" ; -- [XXXDO] :: bombastic; with bosses/knobs; wearing/decorated with bulla/childhood locket; + bullesco_V = mkV "bullescere" "bullesco" nonExist nonExist; -- [XXXFO] :: bubble; form bubbles; bulligo_F_N = mkN "bulligo" "bulliginis " feminine ; -- [DXXFV] :: soup; bubbling/boiling liquid; broth; bouillon; + bullio_V = mkV "bullire" "bullio" "bullivi" "bullitus "; -- [XXXCO] :: bubble, boil; make bubbles; boil (with indignation); bullitus_M_N = mkN "bullitus" "bullitus " masculine ; -- [XXXFO] :: bubble (of water); bubbling (L+S); bullo_V = mkV "bullare" ; -- [XXXDO] :: bubble, boil, effervesce; bullula_F_N = mkN "bullula" ; -- [XXXEO] :: small bubble; watery vesicle/sac; small amulet/locket (bulla) for a boy; @@ -7432,7 +7895,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg bunion_N_N = mkN "bunion" "bunii " neuter ; -- [XAXNO] :: kind of turnip; bunitus_A = mkA "bunitus" "bunita" "bunitum" ; -- [DXXES] :: of/made of turnips (bunion); bupaeda_M_N = mkN "bupaeda" ; -- [DXXFS] :: big/huge boy/youth; --- TODO bupaes_N : N1 bupaes, bupaedos/is -- M -- [XXXFO] :: big/huge boy/youth; + bupaes_1_N = mkN "bupaes" "bupaedis" masculine ; -- [XXXFO] :: big/huge boy/youth; + bupaes_2_N = mkN "bupaes" "bupaedos" masculine ; -- [XXXFO] :: big/huge boy/youth; buphthalmos_M_N = mkN "buphthalmos" "buphthalmi " masculine ; -- [XAXES] :: flower of chrysanthemum family (Chrysanthemum coronarium?); kind of houseleek; buphthalmus_F_N = mkN "buphthalmus" ; -- [XAXEO] :: flower of chrysanthemum family (Chrysanthemum coronarium?); kind of houseleek; bupleuron_N_N = mkN "bupleuron" "bupleuri " neuter ; -- [XAXNO] :: plant (unidentified); (hare's-ear L+S); @@ -7462,6 +7926,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg burrhinon_N_N = mkN "burrhinon" "burrhini " neuter ; -- [DAXFS] :: plant (oxnose); burrichus_M_N = mkN "burrichus" ; -- [DAXES] :: small horse; burricus_M_N = mkN "burricus" ; -- [DAXES] :: small horse; + burrio_V = mkV "burrire" "burrio" "burrivi" "burritus "; -- [DXXFS] :: swarm; burrus_A = mkA "burrus" "burra" "burrum" ; -- [BXXFO] :: red; bursa_F_N = mkN "bursa" ; -- [EXXEV] :: purse; supply of money, funds; stock market (Cal); bursarius_M_N = mkN "bursarius" ; -- [GXXEK] :: stock; @@ -7519,6 +7984,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cacabus_M_N = mkN "cacabus" ; -- [XXXCO] :: cooking/kitchen pot; cacalia_F_N = mkN "cacalia" ; -- [XAXNO] :: plant (Mercurialis tomentosa); colt's foot; (also called leontice L+S); cacao_F_N = mkN "cacao" "cacaonis " feminine ; -- [GXXEK] :: cacao tree (Theobroma cacao), chocolate tree; its seeds; + cacaturio_V = mkV "cacaturire" "cacaturio" "cacaturivi" "cacaturitus "; -- [XBXEO] :: have urge to defecate; (rude); cacatus_M_N = mkN "cacatus" "cacatus " masculine ; -- [XBXFO] :: defecation, voiding of excrement; (rude); caccabaceus_A = mkA "caccabaceus" "caccabacea" "caccabaceum" ; -- [DXXFS] :: of/pertaining to cooking/kitchen pot/pan; caccabatus_A = mkA "caccabatus" "caccabata" "caccabatum" ; -- [DXXFS] :: black/sooty like cooking/kitchen pot; (opposite of immaculata); @@ -7564,6 +8030,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cadmea_F_N = mkN "cadmea" ; -- [XXXNO] :: zinc oxide, calamine; dross/slag formed in a furnace (L+S); citadel of Thebes; cadmia_F_N = mkN "cadmia" ; -- [XXXEO] :: zinc oxide, calamine; dross/slag formed in a furnace (L+S); cadmitis_F_N = mkN "cadmitis" "cadmitidis " feminine ; -- [XXXNO] :: precious stone; + cado_V = mkV "cadere" "cado" "cecidi" "casus "; -- [XXXAO] :: fall, sink, drop, plummet, topple; be slain, die; end, cease, abate; decay; caducarius_A = mkA "caducarius" "caducaria" "caducarium" ; -- [XLXES] :: epileptic; relating to property without a master; caduceator_M_N = mkN "caduceator" "caduceatoris " masculine ; -- [XWXDO] :: herald bearing a staff (caduceus) sent by non-Roman generals; priest's servant; caduceatus_A = mkA "caduceatus" "caduceata" "caduceatum" ; -- [XWXIS] :: having/bearing heralds wand/staff (caduceus); @@ -7586,13 +8053,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg caecitudo_F_N = mkN "caecitudo" "caecitudinis " feminine ; -- [XBXFO] :: blindness; [caecitudo nocturna => night blindness]; caeco_V = mkV "caecare" ; -- [XXXCO] :: blind; obscure, confuse, hide; morally blind; [stu ~ => throw dust, deceive]; caeculto_V = mkV "caecultare" ; -- [XBXEO] :: be dim-sighted, see badly, be almost blind; be like one blind/unseeing; --- SLASHSTUFF caecus_A : A2 caecus, caeca -um, caecior -or -us, caecissimus -a -um -- [XXXAO] :: blind; unseeing; dark, gloomy, hidden, secret; aimless, confused, random; rash; + caecus_A = mkA "caecus" ; -- [XXXAO] :: blind; unseeing; dark, gloomy, hidden, secret; aimless, confused, random; rash; caecus_M_N = mkN "caecus" ; -- [XXXFE] :: blind person; caecutientia_F_N = mkN "caecutientia" ; -- [GXXET] :: blindness; (Erasmus); + caecutio_V = mkV "caecutire" "caecutio" nonExist nonExist; -- [XBXEO] :: be blind, see poorly/faultily; + caecuttio_V = mkV "caecuttire" "caecuttio" nonExist nonExist; -- [XBXEO] :: be blind, see poorly/faultily; caedes_F_N = mkN "caedes" "caedis " feminine ; -- [XXXAO] :: murder/slaughter/massacre; assassination; feuding; slain/victims; blood/gore; caedis_F_N = mkN "caedis" "caedis " feminine ; -- [XXXAO] :: murder/slaughter/massacre; assassination; feuding; slain/victims; blood/gore; + caedo_V2 = mkV2 (mkV "caedere" "caedo" "cecidi" "caesus ") ; -- [XXXAO] :: chop, hew, cut out/down/to pieces; strike, smite, murder; slaughter; sodomize; caeduus_A = mkA "caeduus" "caedua" "caeduum" ; -- [XAXCO] :: ready/suitable for felling (tree); --- IGNORED cael_N : N1 cael, undeclined -- N -- [BSXEO] :: heaven, sky; universe, world; space; air, weather; Jehovah; (shortened form); + cael_N = constN "cael" neuter ; -- [BSXEO] :: heaven, sky; universe, world; space; air, weather; Jehovah; (shortened form); caela_F_N = mkN "caela" ; -- [XXSES] :: kind of beer (made in Spain); caelamen_N_N = mkN "caelamen" "caelaminis " neuter ; -- [XTXDO] :: bas-relief, low relief carving; raised ornamentation; caelator_M_N = mkN "caelator" "caelatoris " masculine ; -- [XXXCO] :: engraver, carver, worker in bas-relief; @@ -7605,7 +8075,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg caeles_A = mkA "caeles" "caelitis"; -- [XXXEO] :: heavenly; celestial (not found in NOM S); caeles_M_N = mkN "caeles" "caelitis " masculine ; -- [XEXCO] :: the_Gods (usu. pl.); divinity, dweller in heaven; saint (Ecc); caeleste_N_N = mkN "caeleste" "caelestis " neuter ; -- [XSXCO] :: supernatural/heavenly matters/things/bodies (pl.); high places; astronomy; --- SLASHSTUFF caelestis_A : A2 caelestis, caeleste, caelestior -or -us, caelestissimus -a -um -- [XXXBO] :: heavenly, of heavens/sky, from heaven/sky; celestial; divine; of the_Gods; + caelestis_A = mkA "caelestis" ; -- [XXXBO] :: heavenly, of heavens/sky, from heaven/sky; celestial; divine; of the_Gods; caelestis_F_N = mkN "caelestis" "caelestis " feminine ; -- [XEXCO] :: divinity, god/goddess; god-like person; the_Gods (pl.); caelestis_M_N = mkN "caelestis" "caelestis " masculine ; -- [XEXCO] :: divinity, god/goddess; god-like person; the_Gods (pl.); caelia_F_N = mkN "caelia" ; -- [XXSEO] :: kind of beer; (Spanish L+S); @@ -7642,12 +8112,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg caenator_M_N = mkN "caenator" "caenatoris " masculine ; -- [DXXFS] :: diner; dinner guest; caenatorium_N_N = mkN "caenatorium" ; -- [XXXEO] :: dining room, hall; evening dress, dinner wear (pl.); caenatorius_A = mkA "caenatorius" "caenatoria" "caenatorium" ; -- [XXXEO] :: of/used for dining; pertaining to dinner or the table; + caenaturio_V = mkV "caenaturire" "caenaturio" nonExist nonExist; -- [XXXFO] :: desire to dine; have an appetite for dinner; caenatus_A = mkA "caenatus" "caenata" "caenatum" ; -- [XXXCO] :: having dined/eaten; supplied with dinner; caencenatio_F_N = mkN "caencenatio" "caencenationis " feminine ; -- [XXXES] :: dinner party; (Cicero from Greek); supping together, table companionship (L+S); caenito_V = mkV "caenitare" ; -- [XXXCO] :: dine/eat habitually (in a particular place/manner); have dinner, dine (often); caeno_V = mkV "caenare" ; -- [XXXBO] :: dine, eat dinner/supper; have dinner with; dine on, make a meal of; caenositas_F_N = mkN "caenositas" "caenositatis " feminine ; -- [XXXES] :: dirty/foul/muddy place; --- SLASHSTUFF caenosus_A : A2 caenosus, caenosa -um, caenosior -or -us, caenosissimus -a -um -- [XXXDS] :: muddy; filthy, foul; slimy, marshy; impure; + caenosus_A = mkA "caenosus" ; -- [XXXDS] :: muddy; filthy, foul; slimy, marshy; impure; caenula_F_N = mkN "caenula" ; -- [XXXCO] :: little dinner/supper; caenulentus_A = mkA "caenulentus" "caenulenta" "caenulentum" ; -- [DXXFS] :: covered in mud/filth; muddy, filthy, slimy; caenum_N_N = mkN "caenum" ; -- [XXXBO] :: mud, mire, filth, slime, dirt, uncleanness; (of persons) scum/filth; @@ -7690,7 +8161,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg caesio_F_N = mkN "caesio" "caesionis " feminine ; -- [XAXFO] :: chopping/cutting/hewing down (trees); caesitas_F_N = mkN "caesitas" "caesitatis " feminine ; -- [DXXFS] :: blue; blueness; caesitius_A = mkA "caesitius" "caesitia" "caesitium" ; -- [BXXFS] :: bluish; dark blue; --- SLASHSTUFF caesius_A : A2 caesius, caesia -um, -, caesissumus -a -um -- [XXXCO] :: gray, gray-blue, steel-colored; having gray/gray-blue/steel-colored eyes; + caesius_A = mkA "caesius" ; -- [XXXCO] :: gray, gray-blue, steel-colored; having gray/gray-blue/steel-colored eyes; caesna_F_N = mkN "caesna" ; -- [BXXBS] :: dinner/supper, principle Roman meal (evening); course, dish; company at dinner; caesor_M_N = mkN "caesor" "caesoris " masculine ; -- [DAXES] :: hewer, one who hews; hewer (of wood); (stone) breaker; caespes_M_N = mkN "caespes" "caespitis " masculine ; -- [XAXBO] :: grassy ground, grass; earth; sod, turf; altar/rampart/mound of sod/turf/earth; @@ -7712,7 +8183,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg caetratus_A = mkA "caetratus" "caetrata" "caetratum" ; -- [XWXEO] :: armed with caetra (small light shield); caetratus_M_N = mkN "caetratus" ; -- [XWXDO] :: soldier armed with caetra (small light shield); Greek peltest; caetus_M_N = mkN "caetus" "caetus " masculine ; -- [XXXBE] :: |social intercourse (w/hominium), society, company; sexual intercourse; --- IGNORED caf_N : N1 caf, undeclined -- N -- [DEQEW] :: kaf; (11th letter of Hebrew alphabet); (transliterate as K and CH); + caf_N = constN "caf" neuter ; -- [DEQEW] :: kaf; (11th letter of Hebrew alphabet); (transliterate as K and CH); cafea_F_N = mkN "cafea" ; -- [GXXEK] :: coffee; cafearius_A = mkA "cafearius" "cafearia" "cafearium" ; -- [GXXEK] :: of coffee; cafeum_N_N = mkN "cafeum" ; -- [GXXEK] :: cafe; @@ -7820,8 +8291,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg caldicus_A = mkA "caldicus" "caldica" "caldicum" ; -- [XAXFO] :: hot (?); (descriptive of a kind of fig); caldor_M_N = mkN "caldor" "caldoris " masculine ; -- [XXXEO] :: heat, warmth; caldum_N_N = mkN "caldum" ; -- [XXXCO] :: drink of wine and hot water (w/spices); (usu. Roman winter drink); heat; --- SLASHSTUFF caldus_A : A2 caldus, calda -um, caldior -or -us, caldissimus -a -um -- [XXXAO] :: warm, hot; fiery, lusty; eager, rash, on the spot; having a warm climate/place; + caldus_A = mkA "caldus" ; -- [XXXAO] :: warm, hot; fiery, lusty; eager, rash, on the spot; having a warm climate/place; caleco_V2 = mkV2 (mkV "calecare") ; -- [XTXEO] :: coat with lime/whitewash, whitewash; + calefacio_V2 = mkV2 (mkV "calefacere" "calefacio" "calefeci" "calefactus ") ; -- [XXXBO] :: make warm/hot (exert/ferment); heat; excite/rouse; vex/trouble; pursue eagerly; calefactabilis_A = mkA "calefactabilis" "calefactabilis" "calefactabile" ; -- [DXXFS] :: that can be warmed/made hot; calefactio_F_N = mkN "calefactio" "calefactionis " feminine ; -- [XXXEO] :: heating, warming, making (bath) warm; calefacto_V2 = mkV2 (mkV "calefactare") ; -- [XXXEO] :: heat, warm; make a person warm by beating; @@ -7832,7 +8304,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg calendarium_N_N = mkN "calendarium" ; -- [XXXDO] :: calendar; ledger/account book (for monthly interest payments); calenter_Adv = mkAdv "calenter" ; -- [XXXFO] :: skillfully, cunningly; caleo_V = mkV "calere" ; -- [XXXAO] :: be/feel/be kept warm; be hot with passion/inflamed/active/driven hotly/urged; --- TODO calesco_V : V2 calesco, calescere, -, - -- Declension: 3rd -- Comment: [XXXCO] :: grow/become warm/hot; be heated; become inflamed (w/love/lust); be inspired; + calesco_V = mkV "calescere" "calesco" nonExist nonExist ; -- [XXXCO] :: grow/become warm/hot; be heated; become inflamed (w/love/lust); be inspired; + calfacio_V2 = mkV2 (mkV "calfacere" "calfacio" "calfeci" "calfactus ") ; -- [XXXBO] :: make warm/hot (exert/ferment); heat; excite/rouse; vex/trouble; pursue eagerly; + calficio_V2 = mkV2 (mkV "calficere" "calficio" nonExist nonExist) ; -- [XXXEO] :: make warm/hot (exertion/fermentation); heat; excite, rouse; vex, trouble; calfio_V = mkV "calferi" ; -- [XXXBS] :: be made/be warm/hot/heated/excited/roused/vexed/troubled; (calefacio PASS); caliandrum_N_N = mkN "caliandrum" ; -- [XXXEO] :: woman's wig, head-dress of false hair; calicatus_A = mkA "calicatus" "calicata" "calicatum" ; -- [DTXFS] :: plastered with lime; whitewashed; @@ -7847,7 +8321,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg calidarius_A = mkA "calidarius" "calidaria" "calidarium" ; -- [XXXES] :: used/suitable for warming/hot water; warm; for plastering bath walls; by heat; calide_Adv = mkAdv "calide" ; -- [XXXEO] :: in hot haste. in heat of the moment; rashly; calidum_N_N = mkN "calidum" ; -- [XXXCO] :: drink of wine and hot water (w/spices); (usu. Roman winter drink); heat; --- SLASHSTUFF calidus_A : A2 calidus, calida -um, calidior -or -us, calidissimus -a -um -- [XXXAO] :: warm, hot; fiery, lusty; eager, rash, on the spot; having a warm climate/place; + calidus_A = mkA "calidus" ; -- [XXXAO] :: warm, hot; fiery, lusty; eager, rash, on the spot; having a warm climate/place; caliendrum_N_N = mkN "caliendrum" ; -- [XXXEO] :: woman's wig, head-dress of false hair; caliga_F_N = mkN "caliga" ; -- [XWXCO] :: soldier's boot; boot; military service; caligaris_A = mkA "caligaris" "caligaris" "caligare" ; -- [XWXEO] :: of/for a soldier's boot; boot-; @@ -7879,10 +8353,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg callide_Adv =mkAdv "callide" "callidius" "callidissime" ; -- [XXXCO] :: expertly, skillfully, cleverly; well, thoroughly; cunningly, artfully; calliditas_F_N = mkN "calliditas" "calliditatis " feminine ; -- [XXXCO] :: shrewdness, skillfulness, skill; craftiness, cunning; subtle tricks (pl.); callidulus_A = mkA "callidulus" "callidula" "callidulum" ; -- [DXXFS] :: little cunning/sly/crafty; --- SLASHSTUFF callidus_A : A2 callidus, callida -um, callidior -or -us, callidissimus -a -um -- [XXXBO] :: crafty, sly, cunning; wise, expert, skillful, clever, experienced, ingenious; + callidus_A = mkA "callidus" ; -- [XXXBO] :: crafty, sly, cunning; wise, expert, skillful, clever, experienced, ingenious; calligo_V = mkV "calligare" ; -- [XXXES] :: be dark/gloomy/misty/cloudy; have bad vision; cloud; be blinded; be/make dizzy; calligonon_N_N = mkN "calligonon" "calligoni " neuter ; -- [XAXNS] :: plant; (also called polygonon mas); - callim_Acc_Prep = mkPrep "callim" Acc ; -- [AXXBO] :: without knowledge of, unknown to; concealed/secret from; (rarely w/ABL); + callim_Acc_Prep = mkPrep "callim" acc ; -- [AXXBO] :: without knowledge of, unknown to; concealed/secret from; (rarely w/ABL); callim_Adv = mkAdv "callim" ; -- [AXXBO] :: secretly, in secret, unknown to; privately; covertly; by fraud; callimus_M_N = mkN "callimus" ; -- [XXXNO] :: stone said to be found inside a type of eagle-stone; kind of eagle-stone (L+S); callion_N_N = mkN "callion" "callii " neuter ; -- [XAXNO] :: winter-cherry (Physalis alkekengi); (pure Latin vesicaria); @@ -7890,14 +8364,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg callipetalon_N_N = mkN "callipetalon" "callipetali " neuter ; -- [DAXFS] :: plant; (pure Latin quinquefolium); calliplocamos_A = mkA "calliplocamos" "calliplocamos" "calliplocamon" ; -- [XXXFO] :: having/with beautiful tresses; callis_M_N = mkN "callis" "callis " masculine ; -- [XAXCO] :: rough/stony track, path; moorland/mountain pasture; mountain pass/defile (L+S); + callisco_V = mkV "calliscere" "callisco" "callisci" nonExist; -- [XXXFO] :: grow insensitive; become dull/insensible (L+S); callisphyros_A = mkA "callisphyros" "callisphyros" "callisphyron" ; -- [XXXFO] :: having/with beautiful ankles; callistruthia_F_N = mkN "callistruthia" ; -- [XAXES] :: very delicate fig sparrows were fond of (L+S); (pure Latin ficus passerariae); callistruthis_F_N = mkN "callistruthis" "callistruthidis " feminine ; -- [XAXFS] :: very delicate fig sparrows were fond of (L+S); (pure Latin ficus passerariae); --- TODO callithrix_N : N1 callithrix, callitrichos/is -- F -- [XAXNO] :: waterwort (Asplenium trichomanes) (for hair coloring); an Ethiopian monkey; + callithrix_1_N = mkN "callithrix" "callitrichis" feminine ; -- [XAXNO] :: waterwort (Asplenium trichomanes) (for hair coloring); an Ethiopian monkey; + callithrix_2_N = mkN "callithrix" "callitrichos" feminine ; -- [XAXNO] :: waterwort (Asplenium trichomanes) (for hair coloring); an Ethiopian monkey; callitrichon_N_N = mkN "callitrichon" "callitrichi " neuter ; -- [XAXNO] :: maidenhair (Capillus Veneris), type of fern; commonly called adiantum (L+S); callitrichos_F_N = mkN "callitrichos" "callitrichi " feminine ; -- [XAXNS] :: maidenhair (Capillus Veneris), type of fern; commonly called adiantum (L+S); callositas_F_N = mkN "callositas" "callositatis " feminine ; -- [XBXFO] :: hardening/thickening of skin, callus; callousness; hardness; hardening; --- SLASHSTUFF callosus_A : A2 callosus, callosa -um, callosior -or -us, callosissimus -a -um -- [XXXCO] :: tough, hard/thick-skinned; made hard/tough by use; callused, indurated; + callosus_A = mkA "callosus" ; -- [XXXCO] :: tough, hard/thick-skinned; made hard/tough by use; callused, indurated; callum_N_N = mkN "callum" ; -- [XXXBO] :: hard/tough skin/hide, callus; callousness, lack of feeling; firm flesh/fruit; callus_M_N = mkN "callus" ; -- [XXXBO] :: hard/tough skin/hide, callus; callousness, lack of feeling; firm flesh/fruit; calo_M_N = mkN "calo" "calonis " masculine ; -- [XXXFO] :: wooden shoe; @@ -7930,10 +8406,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg calvatus_A = mkA "calvatus" "calvata" "calvatum" ; -- [XXXES] :: made bald, bare; bare (vines); calventinus_A = mkA "calventinus" "calventina" "calventinum" ; -- [XAXNO] :: variety of vine; calveo_V = mkV "calvere" ; -- [XBXNO] :: be bald/hairless; + calvesco_V = mkV "calvescere" "calvesco" nonExist nonExist; -- [XXXEO] :: lose one's hair, become bald; molt (birds); become bare/empty of vegetation; + calvio_V2 = mkV2 (mkV "calvire" "calvio" "calvivi" "calvitus ") ; -- [DXXES] :: deceive, intrigue/use subterfuge/tricks against; be tricked/deceived (PASS); calvities_F_N = mkN "calvities" "calvitiei " feminine ; -- [XBXFO] :: baldness, hairlessness; calvitium_N_N = mkN "calvitium" ; -- [XXXCO] :: baldness, absence/loss of hair; bareness/scantiness of vegetation; - calvo_V2 = mkV2 (mkV "calvare") ; -- [XXXEO] :: make/leave bare; --- SLASHSTUFF calvus_A : A2 calvus, calva -um, calvior -or -us, calvissimus -a -um -- [XXXCO] :: bald, bald-headed; having head shaved; smooth (nuts); bare/stripped (things) + calvo_V2 = mkV2 (mkV "calvere" "calvo" nonExist nonExist) ; -- [XXXES] :: deceive, intrigue/use subterfuge/tricks against; be tricked/deceived (PASS); + calvor_V = mkV "calvi" "calvor" nonExist ; -- [XXXCO] :: deceive, intrigue/use subterfuge/tricks against; + calvus_A = mkA "calvus" ; -- [XXXCO] :: bald, bald-headed; having head shaved; smooth (nuts); bare/stripped (things) calvus_M_N = mkN "calvus" ; -- [XBXEO] :: bald person; calx_F_N = mkN "calx" "calcis " feminine ; -- [XXXBO] :: limestone, lime; chalk, goal, goal-line (chalk mark), end of life; game piece; calx_M_N = mkN "calx" "calcis " masculine ; -- [XXXFO] :: lead vial/bottle/jar; @@ -7951,7 +8430,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg camaura_F_N = mkN "camaura" ; -- [FXXFE] :: close fitting cap; cambialis_A = mkA "cambialis" "cambialis" "cambiale" ; -- [GXXEK] :: of change; exchanging; cambio_V = mkV "cambiare" ; -- [FXXEK] :: change (of money); - cambio_V2 = mkV2 (mkV "cambiare") ; -- [XXXFO] :: exchange, barter; + cambio_V2 = mkV2 (mkV "cambire" "cambio" "campsi" "cambitus ") ; -- [XXXFS] :: exchange, barter; cambitas_F_N = mkN "cambitas" "cambitatis " feminine ; -- [DXXFS] :: exchange, barter; cambium_N_N = mkN "cambium" ; -- [FXXFM] :: change; transformable matter; cambuta_F_N = mkN "cambuta" ; -- [EEXFE] :: croiser; @@ -8014,10 +8493,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg campso_V2 = mkV2 (mkV "campsare") ; -- [BXXFO] :: go around; double; turn around in place; campsor_M_N = mkN "campsor" "campsoris " masculine ; -- [GXXEK] :: changer, banker; camptaules_M_N = mkN "camptaules" "camptaulae " masculine ; -- [DDXFS] :: musician (unknown kind); + campter_1_N = mkN "campter" "campteris" masculine ; -- [XXXEO] :: turning point at end of a race course; + campter_2_N = mkN "campter" "campteros" masculine ; -- [XXXEO] :: turning point at end of a race course; campter_M_N = mkN "campter" "campteris " masculine ; -- [DXXFS] :: bending; turning; angle; --- TODO campter_N : N1 campter, campteros/is -- M -- [XXXEO] :: turning point at end of a race course; campus_M_N = mkN "campus" ; -- [XXXAO] :: plain; level field/surface; open space for battle/games; sea; scope; campus; --- TODO camter_N : N1 camter, camteros/is -- M -- [XXXEO] :: turning point at end of a race course; + camter_1_N = mkN "camter" "camteris" masculine ; -- [XXXEO] :: turning point at end of a race course; + camter_2_N = mkN "camter" "camteros" masculine ; -- [XXXEO] :: turning point at end of a race course; camum_N_N = mkN "camum" ; -- [XXXFO] :: kind of beer; camur_A = mkA "camur" "camura" "camurum" ; -- [XXXEO] :: curved, bent, hooked, crocked; turned/arched inward, having such horns; camurus_A = mkA "camurus" "camura" "camurum" ; -- [XXXEO] :: curved, bent, hooked, crocked; turned/arched inward, having such horns; @@ -8052,12 +8533,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cancellus_M_N = mkN "cancellus" ; -- [XXXCO] :: lattice/grate/grid; bars, barrier, enclosure; boundaries/limits (pl.); railings; cancer_M_N = mkN "cancer" ; -- [XXXEO] :: lattice, grid; barrier; cancer_N_N = mkN "cancer" "canceris " neuter ; -- [XXXEO] :: crab; Cancer (zodiac); the_South; summer heat; cancer, disease, tumor, canker; + cancerasco_V = mkV "cancerascere" "cancerasco" "canceravi" "canceratus "; -- [DBXES] :: become cancerous; be afflicted with cancer; suppurate like a cancer; canceraticus_A = mkA "canceraticus" "canceratica" "canceraticum" ; -- [DBXES] :: cancerous; like a cancer; canceratus_A = mkA "canceratus" "cancerata" "canceratum" ; -- [DBXES] :: cancerous; canceroma_N_N = mkN "canceroma" "canceromatis " neuter ; -- [DBXES] :: cancer; canchrema_N_N = mkN "canchrema" "canchrematis " neuter ; -- [DBXFS] :: cancer; cancrigenus_A = mkA "cancrigenus" "cancrigena" "cancrigenum" ; -- [GBXEK] :: carcinogenic; cancroma_N_N = mkN "cancroma" "cancromatis " neuter ; -- [DBXES] :: cancer; + candefacio_V2 = mkV2 (mkV "candefacere" "candefacio" "candefeci" "candefactus ") ; -- [XXXEO] :: make dazzling white; make glowing; heat, make hot; candefio_V = mkV "candeferi" ; -- [XXXEO] :: become dazzling white; be/become glowing/heated/hot; (candefacio PASS); candela_F_N = mkN "candela" ; -- [XXXCO] :: tallow candle/taper; waxen cord; fire (L+S); small taper/candle (Ecc); candelaber_M_N = mkN "candelaber" ; -- [BXXES] :: candelabra; stand for holding burning candles or lamps; lamp stand; @@ -8067,7 +8550,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg candens_A = mkA "candens" "candentis"; -- [XXXBO] :: shining/bright/clear (light); (approaching) white; boiling/red-hot, glowing; candentia_F_N = mkN "candentia" ; -- [XXXFO] :: luminous area; whiteness (L+S); white clear luster; candeo_V = mkV "candere" ; -- [XXXCO] :: be of brilliant whiteness, shine, gleam (white); become/be hot; glow, sparkle; --- TODO candesco_V : V2 candesco, candescere, candui, - -- Declension: 3rd -- Comment: [XXXCO] :: grow/become light/bright white; begin to glisten/radiate; become (red) hot; + candesco_V2 = mkV2 (mkV "candescere" "candesco" "candui" nonExist ) ; -- [XXXCO] :: grow/become light/bright white; begin to glisten/radiate; become (red) hot; candetum_N_N = mkN "candetum" ; -- [XAFFS] :: area of 100 or 150 square feet; (10 or 15 square meters); candicens_A = mkA "candicens" "candicentis"; -- [XXXNO] :: white; approaching white; candico_V = mkV "candicare" ; -- [XXXEO] :: have white appearance; be white/whitish; @@ -8085,7 +8568,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg candidule_Adv = mkAdv "candidule" ; -- [DXXFS] :: candidly, sincerely; candidulus_A = mkA "candidulus" "candidula" "candidulum" ; -- [XXXEO] :: shining white; white, gleaming; candidum_N_N = mkN "candidum" ; -- [XXXNO] :: white (of an egg); --- SLASHSTUFF candidus_A : A2 candidus, candida -um, candidior -or -us, candidissimus -a -um -- [XXXAO] :: |radiant, unclouded; (dressed in) white; of light color; fair skinned, pale; + candidus_A = mkA "candidus" ; -- [XXXAO] :: |radiant, unclouded; (dressed in) white; of light color; fair skinned, pale; + candifico_V2 = mkV2 (mkV "candificere" "candifico" nonExist nonExist) ; -- [DXXFS] :: make dazzlingly white; candificus_A = mkA "candificus" "candifica" "candificum" ; -- [XXXFO] :: that cleans/makes white; canditatio_F_N = mkN "canditatio" "canditationis " feminine ; -- [FEXEE] :: whiteness; candor_M_N = mkN "candor" "candoris " masculine ; -- [XXXBO] :: whiteness; snow; radiance, bright light; heat, glow; beauty; purity; kindness; @@ -8095,7 +8579,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg caneo_V = mkV "canere" ; -- [XXXCO] :: be/become covered in white; be hoary, be white/gray (with age); canes_F_N = mkN "canes" "canis " feminine ; -- [BAXDO] :: dog; hound; subordinate; "jackal"; dog-star/fish; lowest dice throw; clamp; canes_M_N = mkN "canes" "canis " masculine ; -- [BAXDO] :: dog; hound; subordinate; "jackal"; dog-star/fish; lowest dice throw; clamp; --- TODO canesco_V : V2 canesco, canescere, -, - -- Declension: 3rd -- Comment: [XXXCO] :: become covered in white, whiten; grow old/hoary; be/grow white/gray with age; + canesco_V = mkV "canescere" "canesco" nonExist nonExist ; -- [XXXCO] :: become covered in white, whiten; grow old/hoary; be/grow white/gray with age; cania_F_N = mkN "cania" ; -- [XAXNO] :: kind of wild nettle; canica_F_N = mkN "canica" ; -- [XAXFO] :: bran (pl.); canicula_F_N = mkN "canicula" ; -- [XXXCO] :: bitch (also people); dog-star; dog-fish, shark; dog-days; lowest throw at dice; @@ -8127,8 +8611,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cannophorus_M_N = mkN "cannophorus" ; -- [XEXIO] :: reed-bearer in rites of Magna Mater; cannula_F_N = mkN "cannula" ; -- [XAXFO] :: reed; small/little/low reed; windpipe (L+S); cannulono_M_N = mkN "cannulono" "cannulonis " masculine ; -- [GXXEK] :: cannelloni; + cano_V2 = mkV2 (mkV "canere" "cano" "cecini" "cantus ") ; -- [XXXAO] :: sing, celebrate, chant; crow; recite; play (music)/sound (horn); foretell; + canon_1_N = mkN "canon" "canonis" masculine ; -- [XXXEO] :: sounding-board/channel of water organ; model/standard; measuring line, rule; + canon_2_N = mkN "canon" "canonos" masculine ; -- [XXXEO] :: sounding-board/channel of water organ; model/standard; measuring line, rule; canon_M_N = mkN "canon" "canonis " masculine ; -- [XXXES] :: sounding-board/channel of water organ; model/standard; measuring line, rule; --- TODO canon_N : N1 canon, canonos/is -- M -- [XXXEO] :: sounding-board/channel of water organ; model/standard; measuring line, rule; canonia_F_N = mkN "canonia" ; -- [FEXFE] :: canon's prebend/stipend; canonicalis_A = mkA "canonicalis" "canonicalis" "canonicale" ; -- [FEXCE] :: canonical/by canons/legal/lawful/right; of a canon; canonicarius_M_N = mkN "canonicarius" ; -- [DLXFS] :: collector of annual tribute; @@ -8188,6 +8674,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cantreda_F_N = mkN "cantreda" ; -- [FLXFM] :: cantred; land division; district containing a hundred townships (OED); cantrix_F_N = mkN "cantrix" "cantricis " feminine ; -- [XDXEO] :: singer (female), songstress; cantulus_M_N = mkN "cantulus" ; -- [DDXFS] :: little song; + canturio_V2 = mkV2 (mkV "canturire" "canturio" "canturivi" "canturitus ") ; -- [XXXEO] :: recite with musical intonation; sing continuously (birds); chirp; cantus_M_N = mkN "cantus" "cantus " masculine ; -- [XXXBO] :: song, chant; singing; cry (bird); blast (trumpet); poem, poetry; incantation; canua_F_N = mkN "canua" ; -- [XXXFO] :: basket; canum_N_N = mkN "canum" ; -- [XXXFS] :: wicker basket (used for food/flowers and in sacrifices); @@ -8214,8 +8701,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg capero_M_N = mkN "capero" "caperonis " masculine ; -- [GXXEK] :: hood; caperratus_A = mkA "caperratus" "caperrata" "caperratum" ; -- [XXXEO] :: wrinkled; furled (sails); caperro_V = mkV "caperrare" ; -- [XXXFO] :: be/become wrinkled; wrinkle (L+S); furl (sails); + capesco_V2 = mkV2 (mkV "capescere" "capesco" "capescivi" "capescitus ") ; -- [FXXAM] :: grasp, take; undertake, manage; pursue with zeal; carry out orders; (=capesso); + capesso_V2 = mkV2 (mkV "capessere" "capesso" "capessivi" "capessitus ") ; -- [XXXAO] :: grasp, take, seize eagerly; undertake, manage; pursue w/zeal; carry out orders; capetum_N_N = mkN "capetum" ; -- [DAXES] :: fodder for cattle; --- IGNORED caph_N : N1 caph, undeclined -- N -- [DEQEW] :: kaf; (11th letter of Hebrew alphabet); (transliterate as K and CH); + caph_N = constN "caph" neuter ; -- [DEQEW] :: kaf; (11th letter of Hebrew alphabet); (transliterate as K and CH); caphisterium_N_N = mkN "caphisterium" ; -- [XAXFO] :: vessel used for cleaning/separating seed-grain from the rest; capidulum_N_N = mkN "capidulum" ; -- [XXXFO] :: kind of covering for head; capillaceus_A = mkA "capillaceus" "capillacea" "capillaceum" ; -- [XXXNO] :: resembling/similar to hair; like hair; made of hair (L+S); @@ -8231,9 +8720,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg capillulus_M_N = mkN "capillulus" ; -- [XXXFS] :: fine/soft hair; capillus_M_N = mkN "capillus" ; -- [XXXBO] :: hair; hair of head; single hair; hair/fur/wool of animals; hair-like fiber; capio_F_N = mkN "capio" "capionis " feminine ; -- [XXXCO] :: taking/seizing; [usus ~ => getting ownership by continued possession]; - capio_V2 = mkV2 (mkV "capere") ; -- [XXXAO] :: take hold, seize; grasp; take bribe; arrest/capture; put on; occupy; captivate; + capio_V2 = mkV2 (mkV "capere" "capio" "cepi" "captus ") ; -- [XXXAO] :: take hold, seize; grasp; take bribe; arrest/capture; put on; occupy; captivate; + capis_1_N = mkN "capis" "capidis" feminine ; -- [XEXEO] :: cup/bowl with handle used mainly for ritual purposes; + capis_2_N = mkN "capis" "capidos" feminine ; -- [XEXEO] :: cup/bowl with handle used mainly for ritual purposes; capis_F_N = mkN "capis" "capidis " feminine ; -- [XEXEO] :: cup/bowl with handle used mainly for ritual purposes; --- TODO capis_N : N1 capis, capidos/is -- F -- [XEXEO] :: cup/bowl with handle used mainly for ritual purposes; + capisso_V2 = mkV2 (mkV "capissere" "capisso" "capissivi" "capissitus ") ; -- [XXXAO] :: grasp, take, seize eagerly; undertake, manage; pursue w/zeal; carry out orders; capisterium_N_N = mkN "capisterium" ; -- [XAXFO] :: vessel used for cleaning/separating seed-grain from the rest; capistrarius_M_N = mkN "capistrarius" ; -- [XAXIO] :: halter-maker; capistro_V2 = mkV2 (mkV "capistrare") ; -- [XAXEO] :: provide with a halter, put a halter on a horse; fasten with a headstall; bind; @@ -8241,7 +8732,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg capitagium_N_N = mkN "capitagium" ; -- [FLXEM] :: poll tax; head-penny; capital_N_N = mkN "capital" "capitalis " neuter ; -- [XLXCO] :: capital crime/punishment (loss of life or civil rights); priestess headband; capitale_N_N = mkN "capitale" "capitalis " neuter ; -- [XLXCO] :: capital crime/punishment (loss of life or civil rights); priestess headband; --- SLASHSTUFF capitalis_A : A2 capitalis, capitale, capitalior -or -us, capitalissimus -a -um -- [XXXBO] :: of/belonging to head/life; deadly, mortal; dangerous; excellent, first-rate; + capitalis_A = mkA "capitalis" ; -- [XXXBO] :: of/belonging to head/life; deadly, mortal; dangerous; excellent, first-rate; capitalismus_M_N = mkN "capitalismus" ; -- [GXXEK] :: capitalism; capitalista_M_N = mkN "capitalista" ; -- [GXXEK] :: capitalist; capitalisticus_A = mkA "capitalisticus" "capitalistica" "capitalisticum" ; -- [GXXEK] :: capitalist; @@ -8276,10 +8767,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg capo_M_N = mkN "capo" "caponis " masculine ; -- [XAXEO] :: capon; young cockerel?; cappa_F_N = mkN "cappa" ; -- [FXXDB] :: cape, cloak, cassock, cope. cappara_F_N = mkN "cappara" ; -- [DAXFS] :: plant; (also called portulacca); --- IGNORED cappari_N : N1 cappari, undeclined -- N -- [XAXFO] :: caper plant (Capparis spinosa); fruit of caper plant, caper; + cappari_N = constN "cappari" neuter ; -- [XAXFO] :: caper plant (Capparis spinosa); fruit of caper plant, caper; + capparis_1_N = mkN "capparis" "capparis" feminine ; -- [XAXCO] :: caper plant (Capparis spinosa); fruit of caper plant, caper; + capparis_2_N = mkN "capparis" "capparos" feminine ; -- [XAXCO] :: caper plant (Capparis spinosa); fruit of caper plant, caper; capparis_F_N = mkN "capparis" "capparis " feminine ; -- [FXXEK] :: caper; --- TODO capparis_N : N1 capparis, capparos/is -- F -- [XAXCO] :: caper plant (Capparis spinosa); fruit of caper plant, caper; --- TODO cappas_N : N1 cappas, cappados/is -- F -- [DAXFS] :: sea horse; + cappas_1_N = mkN "cappas" "cappadis" feminine ; -- [DAXFS] :: sea horse; + cappas_2_N = mkN "cappas" "cappados" feminine ; -- [DAXFS] :: sea horse; cappella_F_N = mkN "cappella" ; -- [FEXDE] :: chapel; choir; [a capella => unaccompanied (song); ~ magister => choirmaster]; cappellania_F_N = mkN "cappellania" ; -- [FEXFE] :: chaplaincy; cappellanus_M_N = mkN "cappellanus" ; -- [FEXDE] :: chaplain; @@ -8319,6 +8812,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg capsarius_M_N = mkN "capsarius" ; -- [XXXCO] :: slave toting boy's bookcase/satchel; who minded clothes at bath; satchelmaker; capsella_F_N = mkN "capsella" ; -- [XXXEO] :: small box/casket; coffer; capsicum_N_N = mkN "capsicum" ; -- [GXXEK] :: paprika, pepper; + capso_V2 = mkV2 (mkV "capsere" "capso" nonExist nonExist) ; -- [BXXAO] :: seize (only PRES form which is FUT); take bribe; capture; occupy; captivate; capsula_F_N = mkN "capsula" ; -- [XXXDO] :: small box for books; chest, casket; capsum_N_N = mkN "capsum" ; -- [GEXEK] :: church nave; capsus_M_N = mkN "capsus" ; -- [XXXEO] :: coach/carriage/wagon body; cage/pen for animals; @@ -8332,7 +8826,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg captio_F_N = mkN "captio" "captionis " feminine ; -- [XXXCO] :: deception/trick/fraud; disadvantage, loss; a sophistry/quibble; right to take; captiose_Adv = mkAdv "captiose" ; -- [XXXEO] :: in a manner to score over a person/take him in/deceive him; insidiously; captiosum_N_N = mkN "captiosum" ; -- [DGXFS] :: sophisms (pl.); --- SLASHSTUFF captiosus_A : A2 captiosus, captiosa -um, captiosior -or -us, captiosissimus -a -um -- [XXXBO] :: harmful, disadvantageous; captious, intended to ensnare (arguments), deceptive; + captiosus_A = mkA "captiosus" ; -- [XXXBO] :: harmful, disadvantageous; captious, intended to ensnare (arguments), deceptive; captito_V2 = mkV2 (mkV "captitare") ; -- [XXXEO] :: snatch at; strive eagerly after; captiuncula_F_N = mkN "captiuncula" ; -- [XGXFS] :: quirk; sophism, fallacy; captiva_F_N = mkN "captiva" ; -- [XXXCO] :: prisoner (female), captive; @@ -8362,7 +8856,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg capulus_M_N = mkN "capulus" ; -- [DXXES] :: |sepulcher, tomb, scacophagus; halter for catching/fastening cattle, lasso; capus_M_N = mkN "capus" ; -- [XAXEO] :: capon; young cockerel?; caput_N_N = mkN "caput" "capitis " neuter ; -- [FXXDE] :: |heading; chapter, principal division; [~ super pedibus => head over heels]; --- SLASHSTUFF caputalis_A : A2 caputalis, caputale, caputalior -or -us, caputalissimus -a -um -- [XXXBO] :: of/belonging to head/life; deadly, mortal; dangerous; excellent, first-rate; + caputalis_A = mkA "caputalis" ; -- [XXXBO] :: of/belonging to head/life; deadly, mortal; dangerous; excellent, first-rate; caputium_N_N = mkN "caputium" ; -- [FXXEE] :: hood; carabus_M_N = mkN "carabus" ; -- [GAXEK] :: scarabe; coleopteron, beetle; (Cal); caracalla_F_N = mkN "caracalla" ; -- [DXFCS] :: long tunic/great-coat worn by Gauls; (name for Emperor Antonius Caracalla); @@ -8385,6 +8879,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg carbonaria_F_N = mkN "carbonaria" ; -- [DAXFS] :: furnace/chimney/oven for making charcoal (by burning wood/etc.); carbonarius_A = mkA "carbonarius" "carbonaria" "carbonarium" ; -- [DAXFS] :: of/relating to charcoal; carbonarius_M_N = mkN "carbonarius" ; -- [XAXFO] :: charcoal-burner, collier; + carbonesco_V = mkV "carbonescere" "carbonesco" nonExist nonExist; -- [DAXFS] :: become charcoal; carboneum_N_N = mkN "carboneum" ; -- [GSXEK] :: carbon (element); carbonicus_A = mkA "carbonicus" "carbonica" "carbonicum" ; -- [GXXEK] :: carbonic; carbunculatio_F_N = mkN "carbunculatio" "carbunculationis " feminine ; -- [XAXNO] :: affliction with a form of vine blight; disease of trees (L+S); @@ -8442,6 +8937,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg careo_V = mkV "carere" ; -- [XXXAO] :: be without/absent from/devoid of/free from; miss; abstain from, lack, lose; careor_V = mkV "careri" ; -- [BXXAS] :: be without/absent from/devoid of/free from; miss; abstain from, lack, lose; careota_F_N = mkN "careota" ; -- [XAXDO] :: date; nut-shaped date (L+S); (as gift on Saturnalia); + caresco_V = mkV "carescere" "caresco" nonExist nonExist; -- [DXXFS] :: want, be without; careum_N_N = mkN "careum" ; -- [XAXEO] :: caraway; carex_F_N = mkN "carex" "caricis " feminine ; -- [XAXEO] :: reed-grass; sedges; rushes; carfiathum_N_N = mkN "carfiathum" ; -- [XXXNO] :: (superior) kind of incense; excellent kind of white frankincense; @@ -8495,7 +8991,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg carniger_A = mkA "carniger" "carnigera" "carnigerum" ; -- [DEXFS] :: bearing flesh; carnis_F_N = mkN "carnis" "carnis " feminine ; -- [XXXCO] :: meat/flesh; the_body; pulp/flesh of plants, sapwood; soft part; low passions; carnivorus_A = mkA "carnivorus" "carnivora" "carnivorum" ; -- [XXXNO] :: carnivorous, flesh-eating; --- SLASHSTUFF carnosus_A : A2 carnosus, carnosa -um, carnosior -or -us, carnosissimus -a -um -- [XXXCO] :: fleshy; characterized by flesh; consisting of meat; fleshy in color/appearance; + carnosus_A = mkA "carnosus" ; -- [XXXCO] :: fleshy; characterized by flesh; consisting of meat; fleshy in color/appearance; carnufex_A = mkA "carnufex" "carnuficis"; -- [XXXEO] :: tormenting, torturing; murderous, killing; deadly; carnufex_M_N = mkN "carnufex" "carnuficis " masculine ; -- [XXXCO] :: executioner, hangman; murderer, butcher, torturer; scoundrel, villain; carnuficina_F_N = mkN "carnuficina" ; -- [XXXCO] :: work/act/office of executioner/torturer; torture/execution; capital punishment; @@ -8506,6 +9002,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg carnulentus_A = mkA "carnulentus" "carnulenta" "carnulentum" ; -- [DXXES] :: like flesh; caro_Adv = mkAdv "caro" ; -- [XXXFO] :: dearly; dear, at a high price; caro_F_N = mkN "caro" "carnis " feminine ; -- [XXXBO] :: meat, flesh; the_body; pulpy/fleshy/soft parts (plant), sapwood; low passions; + caro_V2 = mkV2 (mkV "carere" "caro" nonExist nonExist) ; -- [XAXEO] :: card/comb (wool/flax/etc.); caroenum_N_N = mkN "caroenum" ; -- [DAXES] :: sweet wine boiled down one third; caros_M_N = mkN "caros" "cari " masculine ; -- [XAXNO] :: variety/seed of plant hypericum; heavy sleep, stupor, sleep of death (L+S); carota_F_N = mkN "carota" ; -- [XAXFS] :: carrot; @@ -8527,6 +9024,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg carpineus_F_N = mkN "carpineus" ; -- [XAXDO] :: hornbeam (tree Carpinus betulus); carpisculus_M_N = mkN "carpisculus" ; -- [DXXES] :: kind of shoe; groundwork/basement; carpistes_M_N = mkN "carpistes" "carpistae " masculine ; -- [DEXFS] :: one of Aeons of Valentinus; + carpo_V2 = mkV2 (mkV "carpere" "carpo" "carpsi" "carptus ") ; -- [XXXAO] :: |separate/divide, tear down; carve; despoil/fleece; pursue/harry; consume/erode; carpophyllon_N_N = mkN "carpophyllon" "carpophylli " neuter ; -- [XAXNO] :: shrub; (Ruscus hypophyllum?); carptim_Adv = mkAdv "carptim" ; -- [XXXCO] :: in separate/detached/disconnected parts/units; selectively; intermittently; carptor_M_N = mkN "carptor" "carptoris " masculine ; -- [XXXFO] :: carver (of game/poultry/etc.); @@ -8536,6 +9034,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg carrago_F_N = mkN "carrago" "carraginis " feminine ; -- [DWXES] :: fortification/barricade made of wagons; circled wagons; carrarius_M_N = mkN "carrarius" ; -- [XXXFO] :: one who makes/repairs wagons/carts/carriages; army cartwright; carrico_V = mkV "carricare" ; -- [GXXEK] :: charge (a weapon, a battery); + carro_V2 = mkV2 (mkV "carrere" "carro" nonExist nonExist) ; -- [XAXEO] :: card/comb (wool/flax/etc.); carrobalista_F_N = mkN "carrobalista" ; -- [DWXFS] :: ballista/catapult mounted on a carriage; (equivalent of "field gun"); carroballista_F_N = mkN "carroballista" ; -- [DWXFS] :: ballista/catapult mounted on a carriage; (equivalent of "field gun"); carroco_M_N = mkN "carroco" "carroconis " masculine ; -- [DAXFS] :: sturgeon (Acipenser sturio); @@ -8556,7 +9055,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cartus_M_N = mkN "cartus" ; -- [XXXFO] :: papyrus (sheet/page); record/letter, book/writing(s); thin metal sheet/leaf; carucata_F_N = mkN "carucata" ; -- [FLXFJ] :: carucate of land; 120-180 acres (as much land as can be plowed in a year); caruncula_F_N = mkN "caruncula" ; -- [XXXCO] :: little piece of flesh; piece of tissue (medical), fleshy growth; --- SLASHSTUFF carus_A : A2 carus, cara -um, carior -or -us, carissimus -a -um -- [XXXAO] :: dear, beloved; costly, precious, valued; high-priced, expensive; + carus_A = mkA "carus" ; -- [XXXAO] :: dear, beloved; costly, precious, valued; high-priced, expensive; caryinos_A = mkA "caryinos" "caryinos" "caryinon" ; -- [XXXNS] :: made of walnuts, walnut-; made of nuts (L+S); caryinus_A = mkA "caryinus" "caryina" "caryinum" ; -- [XXXNO] :: made of walnuts, walnut-; made of nuts (L+S); caryites_M_N = mkN "caryites" "caryitae " masculine ; -- [XAXNO] :: variety of spurge; species of tithymalus (L+S); @@ -8586,10 +9085,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg casignete_F_N = mkN "casignete" "casignetes " feminine ; -- [XAXNO] :: plant (unidentified); (also called dionysonymphadas); casila_F_N = mkN "casila" ; -- [AXXFO] :: helmet (metal) (Sabine form); wearer of a helmet; war, active service; casito_V = mkV "casitare" ; -- [DXXFS] :: fall/drop down repeatedly/frequently; --- IGNORED casleu_N : N1 casleu, undeclined -- N -- [EXQEW] :: Chislev/Kislev, Jewish month; (ninth in ecclesiastic year); + casleu_N = constN "casleu" neuter ; -- [EXQEW] :: Chislev/Kislev, Jewish month; (ninth in ecclesiastic year); casmila_F_N = mkN "casmila" ; -- [XEXFS] :: handmaiden/female of unblemished character attendant in religious ceremonies; casmilus_M_N = mkN "casmilus" ; -- [XEXFS] :: boy/noble youth attendant of a flamen/priest; --- IGNORED casnar_N : N1 casnar, undeclined -- M -- [BXXFS] :: old man; attendant; + casnar_N = constN "casnar" masculine ; -- [BXXFS] :: old man; attendant; cassabundus_A = mkA "cassabundus" "cassabunda" "cassabundum" ; -- [XXXFO] :: stumbling, tottering; ready to fall; cassia_F_N = mkN "cassia" ; -- [XAXFS] :: cinnamon (Cinnamomum tree/bark/spice); aromatic shrub (mezereon or marjoram?); cassiculus_M_N = mkN "cassiculus" ; -- [XAXFO] :: small net; cobweb; @@ -8625,15 +9124,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg castigatio_F_N = mkN "castigatio" "castigationis " feminine ; -- [XXXCO] :: punishment; reprimand, reproof; pruning (trees/etc.); tempering (speech) (L+S); castigator_M_N = mkN "castigator" "castigatoris " masculine ; -- [XXXDO] :: corrector, reprover, chastiser; castigatorius_A = mkA "castigatorius" "castigatoria" "castigatorium" ; -- [XXXFO] :: of nature of reproof; reproving, censuring (L+S); --- SLASHSTUFF castigatus_A : A2 castigatus, castigata -um, castigatior -or -us, castigatissimus -a -um -- [XXXCO] :: tightly drawn, restrained, confined, compressed; small/slender; strict, severe; + castigatus_A = mkA "castigatus" ; -- [XXXCO] :: tightly drawn, restrained, confined, compressed; small/slender; strict, severe; castigo_V = mkV "castigare" ; -- [XXXBO] :: chastise/chasten, punish; correct, reprimand/dress down, castigate; neutralize; castimonia_F_N = mkN "castimonia" ; -- [XXXCO] :: chastity, abstinence, ceremonial purity/purification; morality, moral purity; castimonialis_A = mkA "castimonialis" "castimonialis" "castimoniale" ; -- [DEXFS] :: pertaining to abstinence or continence/self-restraint; castimonium_N_N = mkN "castimonium" ; -- [XXXFO] :: abstinent practice; abstinence (sexual/from meat) for ritual; purity of morals; castitas_F_N = mkN "castitas" "castitatis " feminine ; -- [XXXCO] :: chastity, fidelity; virginity; sexual/moral/ritual purity; integrity, morality; castitudo_F_N = mkN "castitudo" "castitudinis " feminine ; -- [XXXFO] :: chastity, fidelity; virginity; sexual/moral/ritual purity; integrity, morality; + castor_1_N = mkN "castor" "castoris" masculine ; -- [XAXEO] :: beaver (Castor fiber); + castor_2_N = mkN "castor" "castoros" masculine ; -- [XAXEO] :: beaver (Castor fiber); castor_M_N = mkN "castor" "castoris " masculine ; -- [XAXDO] :: beaver (Castor fiber); --- TODO castor_N : N1 castor, castoros/is -- M -- [XAXEO] :: beaver (Castor fiber); castoreum_N_N = mkN "castoreum" ; -- [XXXCO] :: castor, aromatic secretion obtained from beaver used medicinally; castorinatus_A = mkA "castorinatus" "castorinata" "castorinatum" ; -- [DAXFS] :: clothed in beaver fur; castorinus_A = mkA "castorinus" "castorina" "castorinum" ; -- [DAXES] :: of/pertaining to beaver, beaver-; @@ -8655,7 +9155,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg castrum_N_N = mkN "castrum" ; -- [EWXDB] :: |castle, fortress; (fortified) town; [~ doloris => catafalque/coffin platform]; castula_F_N = mkN "castula" ; -- [XXXFS] :: kind of petticoat, garment worn by women; castum_N_N = mkN "castum" ; -- [XEXES] :: festival/period of ceremonial/required abstinence/continence dedicated to a god; --- SLASHSTUFF castus_A : A2 castus, casta -um, castior -or -us, castissimus -a -um -- [XXXAO] :: pure, moral; chaste, virtuous, pious; sacred; spotless; free from/untouched by; + castus_A = mkA "castus" ; -- [XXXAO] :: pure, moral; chaste, virtuous, pious; sacred; spotless; free from/untouched by; castus_M_N = mkN "castus" "castus " masculine ; -- [XEXEO] :: ceremonial state of abstinence; sexual abstinence on religious grounds; casu_Adv = mkAdv "casu" ; -- [XXXCS] :: by chance/accident; accidentally; casually; (ablative of casus); casualis_A = mkA "casualis" "casualis" "casuale" ; -- [XGXEO] :: relating to/depending on grammatical case; @@ -8663,7 +9163,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg casula_F_N = mkN "casula" ; -- [GXXEK] :: vestment; (Cal); casurus_M_N = mkN "casurus" "casurus " masculine ; -- [EXXFW] :: fall, overthrow; (Vulgate Acts 28:6); (calamity, plight; fate;) casus_M_N = mkN "casus" "casus " masculine ; -- [XGXEO] :: grammatical case; termination/ending (of words); - cata_Abl_Prep = mkPrep "cata" Abl ; -- [DXXFS] :: by; (in distributed sense); [cata mane mane => morning by morning]; + cata_Abl_Prep = mkPrep "cata" abl ; -- [DXXFS] :: by; (in distributed sense); [cata mane mane => morning by morning]; catabasis_F_N = mkN "catabasis" "catabasis " feminine ; -- [DEXFS] :: going down/decent; (name of a ceremonial at festival of Magna Mater); catabolensis_M_N = mkN "catabolensis" "catabolensis " masculine ; -- [DXXES] :: class of carriers who transport burdens by draft animals, kind of mule-skinners; catabulum_N_N = mkN "catabulum" ; -- [FXXEE] :: stable; menagerie; @@ -8703,7 +9203,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg catampo_M_N = mkN "catampo" "catamponis " masculine ; -- [XXXFO] :: kind of play/sport/game; catanance_F_N = mkN "catanance" "catanances " feminine ; -- [XAXNO] :: kind of vetch used for love charms; cataphagas_M_N = mkN "cataphagas" "cataphagae " masculine ; -- [XXXFO] :: glutton; gourmand; --- TODO cataphasis_N : N1 cataphasis, cataphasos/is -- F -- [DXXES] :: affirmation; + cataphasis_1_N = mkN "cataphasis" "cataphasis" feminine ; -- [DXXES] :: affirmation; + cataphasis_2_N = mkN "cataphasis" "cataphasos" feminine ; -- [DXXES] :: affirmation; cataphracta_M_N = mkN "cataphracta" ; -- [XWXEO] :: coat of mail; chain mail clad soldier; cataphractarius_A = mkA "cataphractarius" "cataphractaria" "cataphractarium" ; -- [XWXIO] :: armored; wearing mail; cataphractarius_M_N = mkN "cataphractarius" ; -- [XWXIO] :: armored soldier, soldier clad in mail; @@ -8821,6 +9322,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg catulaster_M_N = mkN "catulaster" ; -- [XXXFS] :: young man; boy, lad, stripling; catulina_F_N = mkN "catulina" ; -- [XAXNO] :: dog meat/flesh; catulinus_A = mkA "catulinus" "catulina" "catulinum" ; -- [XAXNO] :: of/belonging to (young) dogs; + catulio_V = mkV "catulire" "catulio" nonExist nonExist; -- [XAXEO] :: be in heat, desire to mate; (e.g., a bitch); catuloticus_A = mkA "catuloticus" "catulotica" "catuloticum" ; -- [DXXFS] :: good for heating over; catulus_M_N = mkN "catulus" ; -- [XAXCO] :: young dog, puppy, whelp; dog (any age); young of any animal, pup/cub; fetter; catus_A = mkA "catus" "cata" "catum" ; -- [XXXCO] :: knowing, clever, shrewd, wise, prudent, circumspect; shrill/clear (sound); @@ -8862,9 +9364,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg caupulus_M_N = mkN "caupulus" ; -- [XWXFO] :: kind of light boat?; cauricrepus_A = mkA "cauricrepus" "cauricrepa" "cauricrepum" ; -- [DSXFS] :: blown through by north-west wind (Caurus); caurinus_A = mkA "caurinus" "caurina" "caurinum" ; -- [XSXFO] :: of/belonging to north-west wind (Caurus); + caurio_V = mkV "caurire" "caurio" nonExist nonExist; -- [XAXFS] :: gurr; (natural sound of rutting panther); caurus_M_N = mkN "caurus" ; -- [XSXCO] :: north-west wind; causa_F_N = mkN "causa" ; -- [FXXDB] :: ||thing(s); [sine causa => in vain (Vulgate)]; - causa_Gen_Prep = mkPrep "causa" Gen ; -- [XXXAO] :: for sake/purpose of (preceded by GEN.), on account/behalf of, with a view to; + causa_Gen_Prep = mkPrep "causa" gen ; -- [XXXAO] :: for sake/purpose of (preceded by GEN.), on account/behalf of, with a view to; causabundus_A = mkA "causabundus" "causabunda" "causabundum" ; -- [FXXFV] :: blaming, censuring, accusing, reproaching, condemning; finding fault with; causalis_A = mkA "causalis" "causalis" "causale" ; -- [DLXES] :: pertaining to a cause, causal; causalitas_F_N = mkN "causalitas" "causalitatis " feminine ; -- [FXXES] :: causality; @@ -8887,7 +9390,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg causodes_A = mkA "causodes" "causodes" "causodes" ; -- [XXXFO] :: characterized by high temperature; burning; causor_V = mkV "causari" ; -- [XLXCO] :: allege an excuse/reason, object; excuse oneself; plead a cause, bring action; caussa_F_N = mkN "caussa" ; -- [XXXAO] :: |occasion, subject; plea, position; lawsuit, case, trial; proviso/stipulation; - caussa_Gen_Prep = mkPrep "caussa" Gen ; -- [XXXAO] :: for the sake/purpose of (preceded by GEN), on account/behalf of, with view to; + caussa_Gen_Prep = mkPrep "caussa" gen ; -- [XXXAO] :: for the sake/purpose of (preceded by GEN), on account/behalf of, with view to; caussidicus_M_N = mkN "caussidicus" ; -- [XLXCS] :: advocate, barrister; pleader of causes; caussor_V = mkV "caussari" ; -- [XLXCS] :: allege an excuse/reason, object; excuse oneself; plead a cause, bring action; caustice_F_N = mkN "caustice" "caustices " feminine ; -- [DAXFS] :: caustic plant; (pure Latin scelerata); @@ -8912,7 +9415,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cautroma_N_N = mkN "cautroma" "cautromatis " neuter ; -- [DXXFS] :: brand, mark produced by a hot iron; cautulus_A = mkA "cautulus" "cautula" "cautulum" ; -- [DXXFS] :: rather safe; cautum_N_N = mkN "cautum" ; -- [DWXFS] :: provisions (pl.) (of a law); concern (Ecc); --- SLASHSTUFF cautus_A : A2 cautus, cauta -um, cautior -or -us, cautissimus -a -um -- [XXXBO] :: cautious/careful; circumspect, prudent; wary, on guard; safe/secure; made safe; + cautus_A = mkA "cautus" ; -- [XXXBO] :: cautious/careful; circumspect, prudent; wary, on guard; safe/secure; made safe; cava_F_N = mkN "cava" ; -- [XXXFO] :: hollow; cage (Ecc); cavaedium_N_N = mkN "cavaedium" ; -- [XXXFO] :: inner court of a Roman house; (avus aedium); cavamen_N_N = mkN "cavamen" "cavaminis " neuter ; -- [DXXES] :: cavern, hollow; hollowing out; @@ -8921,10 +9424,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cavatio_F_N = mkN "cavatio" "cavationis " feminine ; -- [XXXFO] :: hollow shape, cavity; cavern, hollow; cavator_M_N = mkN "cavator" "cavatoris " masculine ; -- [XTXEO] :: excavator, one who hollows/digs out; cavatura_F_N = mkN "cavatura" ; -- [DXXES] :: cavity, hollow; --- SLASHSTUFF cavatus_A : A2 cavatus, cavata -um, cavatior -or -us, cavatissimus -a -um -- [XXXCS] :: hollow, hollow in form; hollowed out, excavated; forming a cave; + cavatus_A = mkA "cavatus" ; -- [XXXCS] :: hollow, hollow in form; hollowed out, excavated; forming a cave; cavea_F_N = mkN "cavea" ; -- [XXXBO] :: |cage/coop/stall/beehive/bird-cage; fence, enclosure; basket/crate; cavealis_A = mkA "cavealis" "cavealis" "caveale" ; -- [DXXFS] :: kept in a cave/cellar; caveatus_A = mkA "caveatus" "caveata" "caveatum" ; -- [XXXNO] :: shut in, caged. cooped up; arranged like seats in a theater; + cavefacio_V2 = mkV2 (mkV "cavefacere" "cavefacio" "cavefeci" "cavefactus ") ; -- [DXXIS] :: take precautions/defensive action, beware, avoid; give/get surety; stipulate; cavefio_V = mkV "caveferi" ; -- [DXXIS] :: be avoided; be stipulated; (cavefacio PASS); caveo_V = mkV "cavere" ; -- [XXXAO] :: beware, avoid, take precautions/defensive action; give/get surety; stipulate; caverna_F_N = mkN "caverna" ; -- [XXXBO] :: |aperture; orifice (body); interior (Trojan horse); celestial sphere; "depths"; @@ -8952,12 +9456,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cavus_M_N = mkN "cavus" ; -- [XXXCO] :: hole, cavity, depression, pit, opening; cave, burrow; enclosed space; aperture; cedens_A = mkA "cedens" "cedentis"; -- [XXXDO] :: unresisting/deferring/conceding/surrendering/withdrawing; yielding to touch; cedenter_Adv = mkAdv "cedenter" ; -- [DXXFS] :: by yielding; + cedo_V2 = mkV2 (mkV "cedere" "cedo" "cessi" "cessus ") ; -- [XXXAO] :: |grant, concede, yield, submit; fall back/to; happen/result; start (period); cedrelate_F_N = mkN "cedrelate" "cedrelates " feminine ; -- [XAQNO] :: Syrian cedar (Juniperus excelia); cedreus_A = mkA "cedreus" "cedrea" "cedreum" ; -- [XAXFS] :: of cedar, cedar-; obtained from cedar; cedria_F_N = mkN "cedria" ; -- [XAQEO] :: gum/resin of Syrian cedar (Juniperus excelia), cedar resin/pitch/tar; cedrinus_A = mkA "cedrinus" "cedrina" "cedrinum" ; -- [XAXEO] :: of cedar/cedar-wood, cedar-; obtained from cedar; + cedris_1_N = mkN "cedris" "cedridis" feminine ; -- [XAXNO] :: cone of cedar tree; kind of juniper?; fruit/berry of cedar/juniper (L+S); + cedris_2_N = mkN "cedris" "cedridos" feminine ; -- [XAXNO] :: cone of cedar tree; kind of juniper?; fruit/berry of cedar/juniper (L+S); cedris_F_N = mkN "cedris" "cedridis " feminine ; -- [XAXNO] :: cone of cedar tree; kind of juniper?; fruit/berry of cedar/juniper (L+S); --- TODO cedris_N : N1 cedris, cedridos/is -- F -- [XAXNO] :: cone of cedar tree; kind of juniper?; fruit/berry of cedar/juniper (L+S); cedrium_N_N = mkN "cedrium" ; -- [XAXEO] :: oil/wood-tar/pitch/resin obtained from cedar tree; oil of cedar; cedrostis_F_N = mkN "cedrostis" "cedrostis " feminine ; -- [XAXNO] :: Bryony (plant); white vine (L+S); cedrus_F_N = mkN "cedrus" ; -- [XAXCO] :: cedar/juniper; cedar wood; cedar-oil/tar (used as preservative/medicine); @@ -8968,18 +9474,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg celator_M_N = mkN "celator" "celatoris " masculine ; -- [XXXFO] :: one who conceals/keeps secrets; concealer/hider; celatum_N_N = mkN "celatum" ; -- [XXXFS] :: secret; celatura_F_N = mkN "celatura" ; -- [EEXFE] :: canopy over altar; --- SLASHSTUFF celeber_A : A2 celeber, celebris -e, celebrior -or -us, celeberrimus -a -um -- [XXXAO] :: |oft repeated, frequent; busy, crowded, much used/frequented, populous; festive; + celeber_A = mkA "celeber" ; -- [XXXAO] :: |oft repeated, frequent; busy, crowded, much used/frequented, populous; festive; celeberrime_Adv = mkAdv "celeberrime" ; -- [XXXFO] :: most/very frequently; celebrabilis_A = mkA "celebrabilis" "celebrabilis" "celebrabile" ; -- [DXXES] :: commendable; celebrans_M_N = mkN "celebrans" "celebrantis " masculine ; -- [EEXFE] :: celebrant, officiating minister; celebratio_F_N = mkN "celebratio" "celebrationis " feminine ; -- [XXXCO] :: celebrating a festival/mass; throng/crowd, audience/gathering; common use/vogue; celebrator_M_N = mkN "celebrator" "celebratoris " masculine ; -- [XXXFO] :: one who celebrates/extols; celebratus_A = mkA "celebratus" "celebrata" "celebratum" ; -- [XXXCO] :: crowded, much frequented, festive; current, popular; celebrated/distinguished; + celebresco_V = mkV "celebrescere" "celebresco" nonExist nonExist; -- [XXXFO] :: become famous/renowned/celebrated; celebris_A = mkA "celebris" "celebris" "celebre" ; -- [XXXCO] :: |oft repeated, frequent; busy, crowded, much used/frequented, populous; festive; celebritas_F_N = mkN "celebritas" "celebritatis " feminine ; -- [FXXEE] :: |celebration; feast; celebriter_Adv = mkAdv "celebriter" ; -- [EEBEM] :: solemnly; ceremonially; celebro_V2 = mkV2 (mkV "celebrare") ; -- [XXXAO] :: celebrate/perform; frequent; honor/glorify; publicize/advertise; discuss/bandy; --- SLASHSTUFF celer_A : A2 celer, celeris -e, celerior -or -us, celerrimus -a -um -- [XXXAO] :: swift, quick, agile, rapid, speedy, fast; rash, hasty, hurried; lively; early; + celer_A = mkA "celer" ; -- [XXXAO] :: swift, quick, agile, rapid, speedy, fast; rash, hasty, hurried; lively; early; celeranter_Adv = mkAdv "celeranter" ; -- [XXXFO] :: quickly, rapidly, speedily; with speed; in haste; celeratim_Adv = mkAdv "celeratim" ; -- [XXXFO] :: quickly, rapidly, speedily; celere_Adv = mkAdv "celere" ; -- [XXXDO] :: quickly/rapidly/speedily; hastily; soon/at an early moment; in a short period; @@ -8991,10 +9498,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg celero_V = mkV "celerare" ; -- [XXXCO] :: quicken/accelerate; make haste, act quickly/be quick; hasten, hurry, do quickly; celes_M_N = mkN "celes" "celetis " masculine ; -- [XWXNO] :: small/fast boat, yacht; (statue of) a race horse; celeste_N_N = mkN "celeste" "celestis " neuter ; -- [FSXCO] :: supernatural matter; the heavenly bodies; astronomy; --- SLASHSTUFF celestis_A : A2 celestis, celeste, celestior -or -us, celestissimus -a -um -- [FXXBO] :: heavenly, of the heavens/sky, from heaven/sky; celestial; divine; of the Gods; + celestis_A = mkA "celestis" ; -- [FXXBO] :: heavenly, of the heavens/sky, from heaven/sky; celestial; divine; of the Gods; celestis_F_N = mkN "celestis" "celestis " feminine ; -- [FEXCO] :: divinity, god/goddess; god-like person; the Gods; celestis_M_N = mkN "celestis" "celestis " masculine ; -- [FEXCO] :: divinity, god/goddess; god-like person; the Gods; --- TODO celetizon_N : N1 celetizon, celetizontos/is -- M -- [XXXNS] :: riders on horse-back; (statue by that name); + celetizon_1_N = mkN "celetizon" "celetizontis" masculine ; -- [XXXNS] :: riders on horse-back; (statue by that name); + celetizon_2_N = mkN "celetizon" "celetizontos" masculine ; -- [XXXNS] :: riders on horse-back; (statue by that name); celeuma_F_N = mkN "celeuma" ; -- [EXXFE] :: call of bosun giving time to rowers; song. shout (Ecc); celeuma_N_N = mkN "celeuma" "celeumatis " neuter ; -- [XWXEO] :: call of bosun giving time to rowers; song, shout (Ecc); celeusma_F_N = mkN "celeusma" ; -- [XWXFS] :: call of bosun giving time to rowers; song. shout (Ecc); @@ -9055,6 +9563,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cenator_M_N = mkN "cenator" "cenatoris " masculine ; -- [DXXFS] :: diner; dinner guest; cenatorium_N_N = mkN "cenatorium" ; -- [XXXEO] :: dining room, hall; evening dress, dinner wear (pl.); cenatorius_A = mkA "cenatorius" "cenatoria" "cenatorium" ; -- [XXXEO] :: of/used for dining; pertaining to dinner or the table; + cenaturio_V = mkV "cenaturire" "cenaturio" nonExist nonExist; -- [XXXFO] :: desire to dine; have an appetite for dinner; cenatus_A = mkA "cenatus" "cenata" "cenatum" ; -- [XXXCO] :: having dined/eaten; supplied with dinner; cenchris_F_N = mkN "cenchris" "cenchridis " feminine ; -- [XAXNO] :: species of hawk; (probably kestrel); cenchris_M_N = mkN "cenchris" "cenchris " masculine ; -- [XAXNO] :: kind of snake; @@ -9270,6 +9779,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ceritis_F_N = mkN "ceritis" "ceritidis " feminine ; -- [XXXNO] :: precious stone; wax-stone (L+S); cerium_N_N = mkN "cerium" ; -- [XBXNO] :: cyst/growth characterized by honeycomb pattern; bad swelling/ulcer (L+S); cernentia_F_N = mkN "cernentia" ; -- [DBXFS] :: sight, seeing; + cerno_V2 = mkV2 (mkV "cernere" "cerno" "crevi" "cretus ") ; -- [XXXAO] :: sift, separate, distinguish, discern, resolve, determine; see; examine; decide; cernophorus_C_N = mkN "cernophorus" ; -- [XEXIO] :: bearer of cernus (vessel for holding offerings); cernulo_V2 = mkV2 (mkV "cernulare") ; -- [XXXFO] :: throw headlong; throw down (L+S); cernulus_A = mkA "cernulus" "cernula" "cernulum" ; -- [XXXEO] :: head foremost; turning a somersault (L+S); @@ -9305,12 +9815,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg certifico_V = mkV "certificare" ; -- [FLXFJ] :: certify; register certim_Adv = mkAdv "certim" ; -- [DXXES] :: surely, certainly, without doubt, really; certioro_V2 = mkV2 (mkV "certiorare") ; -- [XLXCO] :: inform, show, apprise; + certisco_V = mkV "certiscere" "certisco" nonExist nonExist; -- [XXXFO] :: become more certain/sure/determined?; certitudo_F_N = mkN "certitudo" "certitudinis " feminine ; -- [FXXCO] :: certainty, certitude; assurance (Bee); truth; certo_Adv =mkAdv "certo" "certius" "certissime" ; -- [XXXBO] :: certainly, definitely, really, for certain/a fact, truly; surely, firmly; certo_V = mkV "certare" ; -- [XXXAO] :: vie (with), contest, contend/struggle (at law/politics), dispute; fight, strive; certor_V = mkV "certari" ; -- [XXXFO] :: compete (in a contest), contend/struggle (at law/politics), strive; certum_N_N = mkN "certum" ; -- [XXXBO] :: that which is fixed/regular/definite/specified/certain/fact/reliable/settled; --- SLASHSTUFF certus_A : A2 certus, certa -um, certior -or -us, certissimus -a -um -- [XXXAO] :: fixed, settled, firm; certain; trusty/reliable; sure; resolved, determined; + certus_A = mkA "certus" ; -- [XXXAO] :: fixed, settled, firm; certain; trusty/reliable; sure; resolved, determined; ceruchus_M_N = mkN "ceruchus" ; -- [XWXEO] :: braces (pl.) (supporting yard-arms), ropes fastened to sail-yards; cerula_F_N = mkN "cerula" ; -- [XXXEO] :: small piece of wax; red crayon (w/miniata); candlestick, stand for wax tapers; cerussa_F_N = mkN "cerussa" ; -- [XXXCO] :: carbonate of lead; white lead, ceruse; (for paint/cosmetics/medicine/poison); @@ -9426,9 +9937,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg chamaedracon_M_N = mkN "chamaedracon" "chamaedraconis " masculine ; -- [XAAFS] :: kind of African serpent; ground serpent; chamaedrops_F_N = mkN "chamaedrops" "chamaedropis " feminine ; -- [XAXNS] :: dwarf palm? (Chamaerops humilis); germander? (Teucrium chamaedrys) (medicine); chamaedrys_F_N = mkN "chamaedrys" "chamaedryis " feminine ; -- [XAXNO] :: germander; (plant Teucrium chamaedrys); (medical); (pure Latin trixago L+S); + chamaeleon_1_F_N = mkN "chamaeleon" "chamaeleontis" feminine ; -- [XAXNS] :: thistles; carline (Cardopatium corymbosum)/pine-thistle (Atractylis gummifera); + chamaeleon_1_M_N = mkN "chamaeleon" "chamaeleontis" masculine ; -- [XAXNS] :: thistles; carline (Cardopatium corymbosum)/pine-thistle (Atractylis gummifera); + chamaeleon_1_N = mkN "chamaeleon" "chamaeleontis" masculine ; -- [XAXES] :: chameleon; (M/F OLD); lizard (Ecc); + chamaeleon_2_F_N = mkN "chamaeleon" "chamaeleontis" feminine ; -- [XAXNS] :: thistles; carline (Cardopatium corymbosum)/pine-thistle (Atractylis gummifera); + chamaeleon_2_M_N = mkN "chamaeleon" "chamaeleontos" masculine ; -- [XAXNS] :: thistles; carline (Cardopatium corymbosum)/pine-thistle (Atractylis gummifera); + chamaeleon_2_N = mkN "chamaeleon" "chamaeleontos" masculine ; -- [XAXES] :: chameleon; (M/F OLD); lizard (Ecc); chamaeleon_F_N = mkN "chamaeleon" "chamaeleonis " feminine ; -- [XAXNS] :: thistles; carline (Cardopatium corymbosum)/pine-thistle (Atractylis gummifera); chamaeleon_M_N = mkN "chamaeleon" "chamaeleonis " masculine ; -- [XAXES] :: chameleon; (M/F OLD); lizard (Ecc); --- TODO chamaeleon_N : N1 chamaeleon, chamaeleontos/is -- M -- [XAXES] :: chameleon; (M/F OLD); lizard (Ecc); chamaeleuce_F_N = mkN "chamaeleuce" "chamaeleuces " feminine ; -- [XAXNO] :: coltsfoot; (Tussilago farfara); chamaemelinus_A = mkA "chamaemelinus" "chamaemelina" "chamaemelinum" ; -- [DAXES] :: of/pertaining to chamomile; chamaemelon_N_N = mkN "chamaemelon" "chamaemeli " neuter ; -- [XAXNO] :: plant (chamomile?); @@ -9486,7 +10002,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg chartula_F_N = mkN "chartula" ; -- [XXXFO] :: scrap/piece of papyrus; small note, bill (L+S); small piece of paper (Ecc); chartularius_M_N = mkN "chartularius" ; -- [DLXFS] :: court archivist, keeper of archives (of court); chartus_M_N = mkN "chartus" ; -- [XXXFO] :: paper/papyrus (sheet); record/letter, book/writing(s); thin metal sheet/leaf; --- SLASHSTUFF charus_A : A2 charus, chara -um, charior -or -us, charissimus -a -um -- [FXXCE] :: dear, beloved; costly, precious, valued; high-priced, expensive; + charus_A = mkA "charus" ; -- [FXXCE] :: dear, beloved; costly, precious, valued; high-priced, expensive; charybdis_F_N = mkN "charybdis" "charybdis " feminine ; -- [FXXEM] :: whirlpool; (see also Charybdis); chasma_N_N = mkN "chasma" "chasmatis " neuter ; -- [XXXDO] :: chasm/fissure/opening in earth, abyss; supposed meteoric phenomenon; chasmatias_M_N = mkN "chasmatias" "chasmatiae " masculine ; -- [DSXES] :: earthquake that leaves chasms/fissures/openings in earth; @@ -9559,8 +10075,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg chirographus_M_N = mkN "chirographus" ; -- [XLXCS] :: own handwriting; handwritten document, manuscript; written bond/charter/promise; chiromantis_M_N = mkN "chiromantis" "chiromantis " masculine ; -- [GXXEK] :: palmist; chironomia_F_N = mkN "chironomia" ; -- [XDXFO] :: rules of gesticulation; art of gesturing (L+S); gesticulation; pantomine; + chironomon_1_N = mkN "chironomon" "chironomuntis" masculine ; -- [XDXFO] :: pantomime; one who gestures according to the rules of art; + chironomon_2_N = mkN "chironomon" "chironomuntos" masculine ; -- [XDXFO] :: pantomime; one who gestures according to the rules of art; chironomon_A = mkA "chironomon" "chironomuntis"; -- [XDXFO] :: gesticulating; pantomime (L+S); --- TODO chironomon_N : N1 chironomon, chironomuntos/is -- M -- [XDXFO] :: pantomime; one who gestures according to the rules of art; chironomos_A = mkA "chironomos" "chironomos" "chironomon" ; -- [XDXFO] :: pantomimic, of/like a pantomime, with gestures; chironomos_F_N = mkN "chironomos" "chironomi " feminine ; -- [XDXFS] :: pantomime; one who gestures according to the rules of art; chironomos_M_N = mkN "chironomos" "chironomi " masculine ; -- [XDXFS] :: pantomime; one who gestures according to the rules of art; @@ -9574,8 +10091,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg chlamis_F_N = mkN "chlamis" "chlamidis " feminine ; -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; chlamyda_F_N = mkN "chlamyda" ; -- [EWXEE] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; chlamydatus_A = mkA "chlamydatus" "chlamydata" "chlamydatum" ; -- [XWXEO] :: dressed in a (military) cloak/cape; + chlamys_1_N = mkN "chlamys" "chlamydis" feminine ; -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; + chlamys_2_N = mkN "chlamys" "chlamydos" feminine ; -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; chlamys_F_N = mkN "chlamys" "chlamydis " feminine ; -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; --- TODO chlamys_N : N1 chlamys, chlamydos/is -- F -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; chlora_F_N = mkN "chlora" ; -- [XXXNO] :: variety of emerald; chloreus_M_N = mkN "chloreus" ; -- [XAXNO] :: unidentified bird; (greenish bird L+S); chlorion_M_N = mkN "chlorion" "chlorionis " masculine ; -- [XAXNO] :: golden oriole (Oriolus galbula); yellow bird, yellow thrush (L+S); @@ -9652,7 +10170,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg chrismarium_N_N = mkN "chrismarium" ; -- [EEXEE] :: vessel for chrisma/sacred oils; chrismatio_F_N = mkN "chrismatio" "chrismationis " feminine ; -- [EEXDE] :: anointing with chrisma/sacred oils; chrismatorium_N_N = mkN "chrismatorium" ; -- [EEXFE] :: linen cloth; winding-sheet/cerecloth; corporal (over mass remnants), pyx; pall; --- TODO chroma_N : N1 chroma, chromatos/is -- N -- [XDXFO] :: chromatic scale (divided tetrachord into 2 intervals of 1 semitone and 1 of 3); + chroma_1_N = mkN "chroma" "chromatis" neuter ; -- [XDXFO] :: chromatic scale (divided tetrachord into 2 intervals of 1 semitone and 1 of 3); + chroma_2_N = mkN "chroma" "chromatos" neuter ; -- [XDXFO] :: chromatic scale (divided tetrachord into 2 intervals of 1 semitone and 1 of 3); chromatice_F_N = mkN "chromatice" "chromatices " feminine ; -- [XDXFO] :: note in chromatic scale; science of chromatic harmony (L+S); chromaticos_A = mkA "chromaticos" "chromatice" "chromaticon" ; -- [XDXFO] :: chromatic; (divided tetrachord into 2 intervals of 1 semitone and 1 of 3); chromaticus_A = mkA "chromaticus" "chromatica" "chromaticum" ; -- [DDXFS] :: chromatic; (divided tetrachord into 2 intervals of 1 semitone and 1 of 3); @@ -9721,7 +10240,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg chrysos_M_N = mkN "chrysos" "chrysi " masculine ; -- [BXXFS] :: gold; [chrysos melas => black ivy]; chrysothales_F_N = mkN "chrysothales" "chrysothalis " feminine ; -- [XAXNS] :: kind of aizoon/houseleek, wall-pepper; chrysus_M_N = mkN "chrysus" ; -- [XXXFO] :: gold; --- TODO chus_N : N1 chus, choos/is -- M -- [DSXFS] :: liquid measure; (equal to congius/3 quarts); + chus_1_N = mkN "chus" "chois" masculine ; -- [DSXFS] :: liquid measure; (equal to congius/3 quarts); + chus_2_N = mkN "chus" "choos" masculine ; -- [DSXFS] :: liquid measure; (equal to congius/3 quarts); chydaeus_A = mkA "chydaeus" "chydaea" "chydaeum" ; -- [XXXNO] :: common, ordinary; kind of palms (L+S); chylisma_N_N = mkN "chylisma" "chylismatis " neuter ; -- [XAXFO] :: extracted/expressed juice (of plants); chylus_M_N = mkN "chylus" ; -- [DAXFS] :: extracted/expressed juice (of plants); @@ -9756,7 +10276,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cichoreum_N_N = mkN "cichoreum" ; -- [XAXEO] :: chicory (Cichorium intybus), succory, endive; cichorion_N_N = mkN "cichorion" "cichorii " neuter ; -- [XAXEO] :: chicory (Cichorium intybus), succory, endive; cichorium_N_N = mkN "cichorium" ; -- [XAXEO] :: chicory (Cichorium intybus), succory, endive; --- IGNORED cici_N : N1 cici, undeclined -- N -- [XAXNO] :: castor (oil) tree (Ricinus communis); (Egyptian tree also called croton L+S); + cici_N = constN "cici" neuter ; -- [XAXNO] :: castor (oil) tree (Ricinus communis); (Egyptian tree also called croton L+S); cicilendrum_N_N = mkN "cicilendrum" ; -- [BXXFS] :: comic name for an imaginary condiment; cicilinus_A = mkA "cicilinus" "cicilina" "cicilinum" ; -- [DEXES] :: made of hair-cloth, hair-; cicimalindrum_N_N = mkN "cicimalindrum" ; -- [BXXFO] :: comic name for an imaginary condiment; @@ -9784,6 +10304,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cilium_N_N = mkN "cilium" ; -- [XBXEO] :: upper eyelid; edge of upper eyelid; eyelid, lower eyelid (L+S); cilliba_F_N = mkN "cilliba" ; -- [XXXES] :: round dining-table; cillo_M_N = mkN "cillo" "cillonis " masculine ; -- [DXXFS] :: one who practices unnatural lust, sodomite; catamite, pathic; + cillo_V2 = mkV2 (mkV "cillere" "cillo" nonExist nonExist) ; -- [DXXFS] :: move, put in motion; cilo_M_N = mkN "cilo" "cilonis " masculine ; -- [XXXFO] :: Cilo; Big Lips (Roman cognomen); fellator; prominent forehead (L+S); cilotrum_N_N = mkN "cilotrum" ; -- [XAXFO] :: nose-bag; cimeliarcha_M_N = mkN "cimeliarcha" ; -- [DLXFS] :: treasurer, keeper of treasure/deposits; @@ -9791,6 +10312,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cimelium_N_N = mkN "cimelium" ; -- [ELXEE] :: treasure; cimenterium_N_N = mkN "cimenterium" ; -- [FXXEM] :: cemetery; cimex_M_N = mkN "cimex" "cimicis " masculine ; -- [XAXCO] :: bed-bug (Cimex lectularius); bug (L+S); + cimico_V = mkV "cimicere" "cimico" nonExist nonExist; -- [DXXFS] :: purify from bugs; exterminate; debug; ciminterium_N_N = mkN "ciminterium" ; -- [FXXEM] :: cemetery; cimintorium_N_N = mkN "cimintorium" ; -- [FXXEM] :: cemetery; cimiterium_N_N = mkN "cimiterium" ; -- [FXXEE] :: cemetery; @@ -9802,7 +10324,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cinaedius_C_N = mkN "cinaedius" ; -- [XXXFD] :: lewd/wanton/immodest/unchaste/shameless person; catamite; cinaedologos_M_N = mkN "cinaedologos" "cinaedologi " masculine ; -- [XXXFO] :: teller of lewd stories; cinaedulus_M_N = mkN "cinaedulus" ; -- [XXXEO] :: catamite, pathic; a male wanton; --- SLASHSTUFF cinaedus_A : A2 cinaedus, cinaeda -um, cinaedior -or -us, cinaedissimus -a -um -- [XXXFO] :: resembling/like/typical of a cinaedus/sodomite; unchaste; impudent, shameless; + cinaedus_A = mkA "cinaedus" ; -- [XXXFO] :: resembling/like/typical of a cinaedus/sodomite; unchaste; impudent, shameless; cinaedus_M_N = mkN "cinaedus" ; -- [XXXEO] :: sodomite; catamite; effeminate man; man who performs a lewd dance; pervert; cinara_F_N = mkN "cinara" ; -- [XAXFO] :: artichoke; similar plant; cinaris_F_N = mkN "cinaris" "cinaris " feminine ; -- [XAXNO] :: unidentified plant; @@ -9833,11 +10355,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cinerarium_N_N = mkN "cinerarium" ; -- [XEXIO] :: receptacle/niche for ashes of the dead; cinerarius_A = mkA "cinerarius" "cineraria" "cinerarium" ; -- [XXXFS] :: of/pertaining to ashes; boundaries of land bordering on graves; cinerarius_M_N = mkN "cinerarius" ; -- [XXXDO] :: hair-curler, hair-dresser; + cineresco_V = mkV "cinerescere" "cineresco" nonExist nonExist; -- [XXXIO] :: turn into ash/ashes; cinereum_N_N = mkN "cinereum" ; -- [XBXFO] :: ash-colored ointment/salve; cinereus_A = mkA "cinereus" "cinerea" "cinereum" ; -- [XXXDO] :: resembling ashes, similar to ashes, ash-colored; (kinds of plants/animals); cinericius_A = mkA "cinericius" "cinericia" "cinericium" ; -- [XXXFS] :: resembling ashes, similar to ashes, ash-colored; (kinds of plants/animals); cinerosus_A = mkA "cinerosus" "cinerosa" "cinerosum" ; -- [XXXFO] :: covered with ashes; consisting largely of ashes; full of ashes (L+S); cingillum_N_N = mkN "cingillum" ; -- [XXXDO] :: woman's girdle; (esp. that worn by a bride); + cingo_V2 = mkV2 (mkV "cingere" "cingo" "cinxi" "cinctus ") ; -- [XXXAO] :: surround/encircle/ring; enclose; beleaguer; accompany; gird, equip; ring (tree); cingula_F_N = mkN "cingula" ; -- [XXXFO] :: belt; sword belt; sash, girdle; band; saddle-girth; collar (dog); cingulum_N_N = mkN "cingulum" ; -- [XXXCO] :: belt; sword belt; sash, girdle; band; saddle-girth; collar (dog); cingulus_M_N = mkN "cingulus" ; -- [XXXCO] :: belt; band; geographical zone; @@ -9867,7 +10391,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cippus_M_N = mkN "cippus" ; -- [FXXBL] :: |stocks/fetter/prison; tree stump; bulwark of sharpened stakes (pl.) (L+S); ciprus_A = mkA "ciprus" "cipra" "ciprum" ; -- [AXIFO] :: good; (Sabine for bonus); cipus_M_N = mkN "cipus" ; -- [XXXCO] :: boundary stone/post/pillar; tombstone (usu. indicating extent of cemetery); - circa_Acc_Prep = mkPrep "circa" Acc ; -- [XXXAO] :: around, on bounds of; about/near (space/time/numeral); concerning; with; + circa_Acc_Prep = mkPrep "circa" acc ; -- [XXXAO] :: around, on bounds of; about/near (space/time/numeral); concerning; with; circa_Adv = mkAdv "circa" ; -- [XXXBO] :: around, all around; round about; near, in vicinity/company; on either side; circaea_F_N = mkN "circaea" ; -- [XAXNO] :: plant; (Vincetoxicum nigrum?); (used as a charm L+S); circaeon_N_N = mkN "circaeon" "circaei " neuter ; -- [XAXNO] :: plant, mandrake; (alternative name for mandragoras); @@ -9885,7 +10409,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg circinatus_A = mkA "circinatus" "circinata" "circinatum" ; -- [XXXNO] :: rounded, circular; circino_V2 = mkV2 (mkV "circinare") ; -- [XXXEO] :: bend/make circular/round; traverse circular course, wheel through; take round; circinus_M_N = mkN "circinus" ; -- [XSXCO] :: pair of compasses; circular line/arc; [ad ~um => in a circle/arc, circularly]; - circiter_Acc_Prep = mkPrep "circiter" Acc ; -- [XXXDO] :: about, around, near (space/time/numeral); towards; + circiter_Acc_Prep = mkPrep "circiter" acc ; -- [XXXDO] :: about, around, near (space/time/numeral); towards; circiter_Adv = mkAdv "circiter" ; -- [XXXCO] :: nearly, not far from, almost, approximately, around, about; circito_V2 = mkV2 (mkV "circitare") ; -- [XXXFO] :: go round as a hawker/peddler/solicitor; frequent, be busy (L+S); circitor_M_N = mkN "circitor" "circitoris " masculine ; -- [XXXDO] :: person who goes round; patrol/watchman, overseer/inspector; hawker, peddler; @@ -9895,7 +10419,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg circlus_M_N = mkN "circlus" ; -- [XXXAO] :: circle; orbit, zone; ring, hoop; belt, collar; company; cycle; circumference; circo_V2 = mkV2 (mkV "circare") ; -- [XXXIO] :: traverse; go about (L+S); wander through; circos_M_N = mkN "circos" "circi " masculine ; -- [XXXNO] :: precious stone; --- TODO circueo_V : V1 circueo, circuire, circuivi(ii), circuitus -- [XXXAO] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; + circuago_V2 = mkV2 (mkV "circuagere" "circuago" "circuegi" "circuactus ") ; -- [XXXAO] :: drive/lead around; turn (around); wheel, revolve; upset; change opinions, sway; + circueo_1_V2 = mkV2 (mkV "circuire" "circueo" "circuivi" "circuitus") ; -- [XXXAO] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; + circueo_2_V2 = mkV2 (mkV "circuire" "circueo" "circuii" "circuitus") ; -- [XXXAO] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; circuitio_F_N = mkN "circuitio" "circuitionis " feminine ; -- [XWXBO] :: |going round; patrol/rounds/visiting posts; passage/structure round (building); circuitor_M_N = mkN "circuitor" "circuitoris " masculine ; -- [XXXFO] :: person who goes round; patrol/watchman, overseer/inspector; hawker, peddler; circuitus_M_N = mkN "circuitus" "circuitus " masculine ; -- [XXXAO] :: |revolution, spinning, rotation; (recurring) cycle; period; circumlocution; @@ -9908,20 +10434,24 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg circulo_V2 = mkV2 (mkV "circulare") ; -- [XXXEO] :: make circular/round/curved; encircle, encompass (L+S); circulor_V = mkV "circulari" ; -- [XXXDO] :: form groups/circles round oneself; (for impromptu speech/giving performance); circulus_M_N = mkN "circulus" ; -- [XXXAO] :: circle; orbit, zone; ring, hoop; belt, collar; company; cycle; circumference; - circum_Acc_Prep = mkPrep "circum" Acc ; -- [XXXBO] :: around, about, among, near (space/time), in neighborhood of; in circle around; + circum_Acc_Prep = mkPrep "circum" acc ; -- [XXXBO] :: around, about, among, near (space/time), in neighborhood of; in circle around; circum_Adv = mkAdv "circum" ; -- [XXXCO] :: about, around; round about, near; in a circle; in attendance; on both sides; circumactio_F_N = mkN "circumactio" "circumactionis " feminine ; -- [XXXEO] :: driving round in a circle, rotation; rounding off, act of making symmetrical; circumactus_A = mkA "circumactus" "circumacta" "circumactum" ; -- [XXXNS] :: bent around/in a curve; curved; circumactus_M_N = mkN "circumactus" "circumactus " masculine ; -- [XXXCO] :: rotation, revolution; encircling, encirclement; turning around/in circle/back; circumaedifico_V2 = mkV2 (mkV "circumaedificare") ; -- [EXXFW] :: build round about; (Vulgate Lamentations 3:7); circumaggero_V2 = mkV2 (mkV "circumaggerare") ; -- [XXXEO] :: pile (earth) round about; surround (with heaped earth); + circumago_V2 = mkV2 (mkV "circumagere" "circumago" "circumegi" "circumactus ") ; -- [XXXAO] :: drive/lead around; turn (around); wheel, revolve; upset; change opinions, sway; circumambulo_V2 = mkV2 (mkV "circumambulare") ; -- [XXXFO] :: walk around/over; circumamictus_A = mkA "circumamictus" "circumamicta" "circumamictum" ; -- [DWXFS] :: enveloped, invested, surrounded, besieged; circumaro_V2 = mkV2 (mkV "circumarare") ; -- [XAXEO] :: plow around, surround with a furrow; --- TODO circumaspicio_V : V2 circumaspicio, circumaspicere, -, - -- Declension: 3rd -- Comment: [XXXEO] :: look around; consider; + circumaspicio_V = mkV "circumaspicere" "circumaspicio" nonExist nonExist ; -- [XXXEO] :: look around; consider; + circumcaedo_V2 = mkV2 (mkV "circumcaedere" "circumcaedo" "circumcaedi" "circumcaesus ") ; -- [XXXEO] :: cut/make incision around, ring; clip; circumcise; cut out; remove; diminish; circumcaesura_F_N = mkN "circumcaesura" ; -- [XXXFO] :: surface outline, external contour; circumcalco_V2 = mkV2 (mkV "circumcalcare") ; -- [XAXFO] :: tread/trample earth (down around); circumcidaneus_A = mkA "circumcidaneus" "circumcidanea" "circumcidaneum" ; -- [XAXFO] :: must from second pressing of grapes after projecting mass is cut and put back; + circumcido_V2 = mkV2 (mkV "circumcidere" "circumcido" "circumcidi" "circumcisus ") ; -- [XXXBO] :: cut/make incision around, ring; clip; circumcise; cut out; remove; diminish; + circumcingo_V2 = mkV2 (mkV "circumcingere" "circumcingo" "circumcinxi" "circumcinctus ") ; -- [XXXDO] :: surround, enclose; lie around, be round; surround/encircle (with); gird about; circumcirca_Adv = mkAdv "circumcirca" ; -- [XXXDO] :: round about, on all sides; round about the body; (strengthened circum); circumcirco_V = mkV "circumcircare" ; -- [DXXFS] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; circumcise_Adv = mkAdv "circumcise" ; -- [XXXEO] :: concisely; briefly; @@ -9932,12 +10462,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg circumcisura_F_N = mkN "circumcisura" ; -- [XAXNO] :: cutting round/ringing (bark of trees); circumcisus_A = mkA "circumcisus" "circumcisa" "circumcisum" ; -- [XXXCO] :: sheer on all sides, cut off; limited; short, brief, pruned of excess, abridged; circumclamo_V2 = mkV2 (mkV "circumclamare") ; -- [DXXFS] :: roar around (waves/surf); + circumclaudo_V2 = mkV2 (mkV "circumclaudere" "circumclaudo" "circumclausi" "circumclausus ") ; -- [DXXFS] :: surround; encircle/enclose/build round (w/structure); hedge/shut in, circumvent; + circumcludo_V2 = mkV2 (mkV "circumcludere" "circumcludo" "circumclusi" "circumclusus ") ; -- [XXXCO] :: surround; encircle/enclose/build round (w/structure); hedge/shut in, circumvent; circumcola_C_N = mkN "circumcola" ; -- [DXXFS] :: people/tribe dwelling around/nearby/in vicinity; locals; + circumcolo_V2 = mkV2 (mkV "circumcolere" "circumcolo" nonExist nonExist) ; -- [XXXEO] :: dwell round about/around/nearby/in vicinity of; circumcordialis_A = mkA "circumcordialis" "circumcordialis" "circumcordiale" ; -- [DBXFS] :: around the heart, heart-; (e.g.blood); circumctipo_V2 = mkV2 (mkV "circumctipare") ; -- [XXXFS] :: surround, accompany, attend; circumculco_V2 = mkV2 (mkV "circumculcare") ; -- [XAXFS] :: tread/trample earth (down around); circumcumulo_V2 = mkV2 (mkV "circumcumulare") ; -- [XXXFS] :: heap/pile up around; circumcurrens_A = mkA "circumcurrens" "circumcurrentis"; -- [XSXFO] :: that encircles/bounds (figure), surrounding/bounding/bordering, running around; + circumcurro_V2 = mkV2 (mkV "circumcurrere" "circumcurro" "circumcurri" "circumcursus ") ; -- [XXXFO] :: run/extend round/about the periphery (of structures); circumcursatio_F_N = mkN "circumcursatio" "circumcursationis " feminine ; -- [FXXFE] :: attention; circumcursio_F_N = mkN "circumcursio" "circumcursionis " feminine ; -- [XXXFO] :: running about/round; circumcurso_V = mkV "circumcursare" ; -- [XXXDO] :: run about; run round (of person); run about (of things), revolve; @@ -9946,25 +10480,34 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg circumdo_V2 = mkV2 (mkV "circumdare") ; -- [XXXAO] :: surround; envelop, post/put/place/build around; enclose; beset; pass around; circumdoleo_V = mkV "circumdolere" ; -- [DXXES] :: suffer on every side; circumdolo_V2 = mkV2 (mkV "circumdolare") ; -- [XXXNO] :: chop around with an ax; hew off around (L+S); + circumduco_V2 = mkV2 (mkV "circumducere" "circumduco" "circumduxi" "circumductus ") ; -- [XXXBO] :: |lead/wheel/draw a line/ring around/in a circle; prolong (sound); build around; circumductio_F_N = mkN "circumductio" "circumductionis " feminine ; -- [XXXCO] :: circuit, perimeter; indirect course; cheating/trick; complete sentence, period; circumductor_M_N = mkN "circumductor" "circumductoris " masculine ; -- [DXXFS] :: one who leads about/converts (another); circumductum_N_N = mkN "circumductum" ; -- [XGXFO] :: period (rhetoric), complete sentence/thought, expansion of a thought; circumductus_A = mkA "circumductus" "circumducta" "circumductum" ; -- [XXXFO] :: long-drawn-out, extended; circumductus_M_N = mkN "circumductus" "circumductus " masculine ; -- [XSXFO] :: perimeter, circumference, measurement around; motion in a circle, revolution; --- TODO circumeo_V : V1 circumeo, circumire, circumivi(ii), circumitus -- [XXXAO] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; + circumeo_1_V2 = mkV2 (mkV "circumire" "circumeo" "circumivi" "circumitus") ; -- [XXXAO] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; + circumeo_2_V2 = mkV2 (mkV "circumire" "circumeo" "circumii" "circumitus") ; -- [XXXAO] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; circumequito_V2 = mkV2 (mkV "circumequitare") ; -- [XXXFO] :: ride around; circumerro_V = mkV "circumerrare" ; -- [XXXDO] :: wander/prowl/meander/stroll/hover around; orbit, go around in orbit (planet); + circumfarcio_V2 = mkV2 (mkV "circumfarcire" "circumfarcio" "circumfarsi" "circumfartus ") ; -- [XXXNO] :: pack/stuff/cram round (with); circumferentia_F_N = mkN "circumferentia" ; -- [XSXEO] :: circumference; circumfero_V = mkV "circumferre" "circumfero" "circumtuli" "circumlatus " ; -- Comment: [XXXAO] :: carry/hand/pass/spread/move/take/cast around (in circle); publicize; divulge; + circumfigo_V2 = mkV2 (mkV "circumfigere" "circumfigo" "circumfixi" "circumfixus ") ; -- [XXXEO] :: fix/fasten/secure all around; + circumfingo_V2 = mkV2 (mkV "circumfingere" "circumfingo" "circumfinxi" "circumfictus ") ; -- [DXXFS] :: form around; + circumfinio_V2 = mkV2 (mkV "circumfinire" "circumfinio" "circumfinivi" "circumfinitus ") ; -- [DXXFS] :: complete a circle; bring to an end; circumfirmo_V2 = mkV2 (mkV "circumfirmare") ; -- [XXXFS] :: fasten round; circumflagro_V2 = mkV2 (mkV "circumflagrare") ; -- [DXXFS] :: blaze/scorch all around; + circumflecto_V2 = mkV2 (mkV "circumflectere" "circumflecto" "circumflexi" "circumflexus ") ; -- [XXXEO] :: bend/turn (course) around (pivot/turning point); prolong/circumflex (vowel); circumflexe_Adv = mkAdv "circumflexe" ; -- [XGXFO] :: with circumflex/prolonged sound; circumflexibilis_A = mkA "circumflexibilis" "circumflexibilis" "circumflexibile" ; -- [DGXFS] :: provided with a circumflex/prolonged accent; circumflexio_F_N = mkN "circumflexio" "circumflexionis " feminine ; -- [DXXFS] :: bending/winding/coiling around; circumflexus_M_N = mkN "circumflexus" "circumflexus " masculine ; -- [XXXNO] :: action of bending around; rounded form, vault; winding (L+S) circuit; circumflo_V = mkV "circumflare" ; -- [XXXEO] :: blow around; blow on/assail from all sides; veer around (wind); circumfluentia_F_N = mkN "circumfluentia" ; -- [FXXFF] :: superabundance; + circumfluo_V2 = mkV2 (mkV "circumfluere" "circumfluo" "circulfluxi" "circulfluxus ") ; -- [XXXCO] :: flow/crowd/flock around; overflow; have/be in abundance, be rich/well supplied; circumfluus_A = mkA "circumfluus" "circumflua" "circumfluum" ; -- [XXXCO] :: flowing/flowed around; encircled/surrounded/skirted by (water); immersed; + circumfodio_V2 = mkV2 (mkV "circumfodere" "circumfodio" "circumfodi" "circumfossus ") ; -- [XAXCO] :: dig around, ease earth around (plants); surround (trees) with a trench; circumforaneus_A = mkA "circumforaneus" "circumforanea" "circumforaneum" ; -- [XXXCO] :: itinerant, that travels to market; of/connected with business of/around forum; circumforanus_A = mkA "circumforanus" "circumforana" "circumforanum" ; -- [XXXFO] :: itinerant, that travels to market; connected with business of forum; circumforatus_A = mkA "circumforatus" "circumforata" "circumforatum" ; -- [XXXNS] :: bored/pierced round; @@ -9972,22 +10515,32 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg circumfossor_M_N = mkN "circumfossor" "circumfossoris " masculine ; -- [XAXNO] :: one who digs around (plants/something); circumfossura_F_N = mkN "circumfossura" ; -- [XAXNO] :: digging around; (plants/trees); circumfractus_A = mkA "circumfractus" "circumfracta" "circumfractum" ; -- [DXXES] :: broken (off) around; precipitous; + circumfremo_V2 = mkV2 (mkV "circumfremere" "circumfremo" "circumfremui" "circumfremitus ") ; -- [XXXEO] :: roar/growl/utter cries of anger/protest/make a noise round; circumfrico_V2 = mkV2 (mkV "circumfricare") ; -- [XXXFO] :: rub/brush round about; scour; + circumfulcio_V2 = mkV2 (mkV "circumfulcire" "circumfulcio" "circumfulsi" "circumfultus ") ; -- [DXXFS] :: support/hold up around; circumfulgeo_V2 = mkV2 (mkV "circumfulgere") ; -- [XXXNO] :: shine/glow round about; + circumfundo_V2 = mkV2 (mkV "circumfundere" "circumfundo" "circumfundi" "circumfusus ") ; -- [XXXAO] :: pour/drape/crowd around; cause (water) to go round/part; surround; distribute; circumfusio_F_N = mkN "circumfusio" "circumfusionis " feminine ; -- [DXXES] :: pouring around; circumfusus_A = mkA "circumfusus" "circumfusa" "circumfusum" ; -- [XXXFO] :: surrounded; draped around; distributed; extra, superfluous; circumgarriens_A = mkA "circumgarriens" "circumgarrientis"; -- [DXXFS] :: babbling, babbling about; circumgelo_V2 = mkV2 (mkV "circumgelare") ; -- [XXXNO] :: freeze/harden round/all around; + circumgemo_V2 = mkV2 (mkV "circumgemere" "circumgemo" "circumgemui" "circumgemitus ") ; -- [XXXFO] :: roar/moan/groan around; circumgestator_M_N = mkN "circumgestator" "circumgestatoris " masculine ; -- [XXXIO] :: one who bears/carries round; circumgesto_V2 = mkV2 (mkV "circumgestare") ; -- [XXXEO] :: carry/bear about/around; circumglobatus_A = mkA "circumglobatus" "circumglobata" "circumglobatum" ; -- [XXXNS] :: rolled together; formed in a ball; clustered; circumglobo_V2 = mkV2 (mkV "circumglobare") ; -- [XXXNO] :: form a ball/cluster/sphere (around something); + circumgredior_V = mkV "circumgredi" "circumgredior" "circumgressus sum " ; -- [XWXEO] :: go round behind by a flanking movement; walk/travel about (in hostile manner); circumgressus_M_N = mkN "circumgressus" "circumgressus " masculine ; -- [DXXFS] :: going about; compass/circuit/scope (of a thing); + circumhisco_V = mkV "circumhiscere" "circumhisco" nonExist nonExist; -- [DXXFS] :: stare at with open/gaping mouth; circumhumatus_A = mkA "circumhumatus" "circumhumata" "circumhumatum" ; -- [DXXFS] :: buried around; + circumicio_V2 = mkV2 (mkV "circumicere" "circumicio" "circumjeci" "circumjectus ") ; -- [XXXCO] :: cast/throw or place/put/build around; put on flank of; encompass/envelop; circumiectalis_A = mkA "circumiectalis" "circumiectalis" "circumiectale" ; -- [GXXEK] :: environmental; circumiectum_N_N = mkN "circumiectum" ; -- [GXXEK] :: environment; + circuminicio_V2 = mkV2 (mkV "circuminicere" "circuminicio" "circuminjeci" "circuminjectus ") ; -- [XXXFS] :: throw up all around; + circuminjicio_V2 = mkV2 (mkV "circuminjicere" "circuminjicio" "circuminjeci" "circuminjectus ") ; -- [XXXFS] :: throw up all around; circuminsessio_F_N = mkN "circuminsessio" "circuminsessionis " feminine ; -- [FEXFE] :: coexistence; (shared existence of 3 Divine Persons in same Being); --- TODO circumio_V : V2 circumio, circumere, -, - -- Declension: 3rd -- Comment: [EXXFW] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; + circuminvolvo_V2 = mkV2 (mkV "circuminvolvere" "circuminvolvo" "circuminvolvi" "circuminvolutus ") ; -- [DXXFS] :: involve/cover all around, enclose, envelop; + circumio_V = mkV "circumere" "circumio" nonExist nonExist ; -- [EXXFW] :: encircle, surround; border; skirt; circulate/wander through; go/measure round; circumitio_F_N = mkN "circumitio" "circumitionis " feminine ; -- [XXXBO] :: |rotation, revolution; rate of revolution; orbit; circumference; circumlocution; circumitor_M_N = mkN "circumitor" "circumitoris " masculine ; -- [XXXFO] :: watchman, patrol; one making rounds/circuit; circumitus_M_N = mkN "circumitus" "circumitus " masculine ; -- [XXXAO] :: |revolution, spinning, rotation; (recurring) cycle; period; circumlocution; @@ -10000,106 +10553,152 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg circumjectum_N_N = mkN "circumjectum" ; -- [XXXES] :: neighborhood (pl.), surroundings; circumjectus_A = mkA "circumjectus" "circumjecta" "circumjectum" ; -- [XXXCO] :: surrounding, lying/situated around; enveloping, surrounding; circumjectus_M_N = mkN "circumjectus" "circumjectus " masculine ; -- [XXXEO] :: encircling/surrounding/encompassing/embrace; lying/casting around; wrap, cloak; + circumjicio_V2 = mkV2 (mkV "circumjicere" "circumjicio" "circumjeci" "circumjectus ") ; -- [XXXCS] :: cast/throw or place/put/build around; put on flank of; encompass/envelop; circumlabens_A = mkA "circumlabens" "circumlabentis"; -- [XXXFS] :: gliding/sliding around; + circumlambo_V2 = mkV2 (mkV "circumlambere" "circumlambo" "circumlambi" nonExist) ; -- [XXXNO] :: lick around; circumlaqueo_V2 = mkV2 (mkV "circumlaqueare") ; -- [XXXFS] :: wind around; (like a noose); circumlaticius_A = mkA "circumlaticius" "circumlaticia" "circumlaticium" ; -- [DXXFS] :: portable, that may be carried around; circumlatio_F_N = mkN "circumlatio" "circumlationis " feminine ; -- [XXXFO] :: revolution, circuit; a carrying around (L+S); circumlatitius_A = mkA "circumlatitius" "circumlatitia" "circumlatitium" ; -- [DXXFS] :: portable, that may be carried around; circumlator_M_N = mkN "circumlator" "circumlatoris " masculine ; -- [DXXFS] :: one who carries around/about; circumlatro_V2 = mkV2 (mkV "circumlatrare") ; -- [XXXFO] :: bark round about; roar around (L+S); - circumlavo_V2 = mkV2 (mkV "circumlavare") ; -- [XXXEO] :: wash round about/around, wash side of; flow all around (waters) (L+S); + circumlavo_V2 = mkV2 (mkV "circumlavere" "circumlavo" nonExist "circumlotus ") ; -- [XXXEO] :: wash round about/around, wash side of; flow all around (waters) (L+S); + circumlego_V2 = mkV2 (mkV "circumlegere" "circumlego" "circumlegi" "circumlectus ") ; -- [EXXFP] :: sail round; compassing by the shore (Vulgate Acts 28:13); circumlevo_V2 = mkV2 (mkV "circumlevare") ; -- [DXXFS] :: raise up all around; circumligo_V2 = mkV2 (mkV "circumligare") ; -- [XXXCO] :: bind around/to; encircle, surround; attach, fasten; pass/wrap around, bandage; + circumlinio_V2 = mkV2 (mkV "circumlinire" "circumlinio" nonExist nonExist) ; -- [XXXCO] :: smear/anoint all over (with); decorate, daub/paint around, paint background; + circumlino_V2 = mkV2 (mkV "circumlinere" "circumlino" "circumlevi" "circumlitus ") ; -- [XXXCO] :: smear/anoint all over (with); decorate, daub/paint around, paint background; circumlitio_F_N = mkN "circumlitio" "circumlitionis " feminine ; -- [XDXES] :: |overlaying of color (painting); tint/hue given to marble by rubbing w/oil/wax; circumlocutio_F_N = mkN "circumlocutio" "circumlocutionis " feminine ; -- [XGXEO] :: circumlocution, periphrasis; + circumloquor_V = mkV "circumloqui" "circumloquor" "circumlocutus sum " ; -- [DGXFS] :: make use of circumlocution/periphrasis; circumlucens_A = mkA "circumlucens" "circumlucentis"; -- [XXXFS] :: shining/glittering around; circumluceo_V2 = mkV2 (mkV "circumlucere") ; -- [XXXFO] :: shine round, illuminate; + circumluo_V2 = mkV2 (mkV "circumluere" "circumluo" "circumlui" "circumlutus ") ; -- [XXXEO] :: wash or flow around; skirt; surround; wash upon (L+S); circumlustro_V2 = mkV2 (mkV "circumlustrare") ; -- [XXXEO] :: traverse (in circular course), pace around; go around (in purifying ceremony); circumluvio_F_N = mkN "circumluvio" "circumluvionis " feminine ; -- [XAXFO] :: formation of alluvial land (in middle of river); land so formed; right to it; circumluvium_N_N = mkN "circumluvium" ; -- [XAXFO] :: formation of alluvial land (in middle of river); land so formed; right to it; circummeo_V = mkV "circummeare" ; -- [DXXES] :: go/travel/pass around; + circummetio_V2 = mkV2 (mkV "circummetire" "circummetio" nonExist "circummensus ") ; -- [XXXFO] :: measure round about; + circummingo_V2 = mkV2 (mkV "circummingere" "circummingo" "circummixi" "circummixtus ") ; -- [XXXFO] :: urinate/make water round/over (something); + circummitto_V2 = mkV2 (mkV "circummittere" "circummitto" "circummisi" "circummissus ") ; -- [XXXCO] :: send around/to different parts (embassies/missions); send round, flank; + circummoenio_V2 = mkV2 (mkV "circummoenire" "circummoenio" "circummoenivi" "circummoenitus ") ; -- [XWXDO] :: invest with walls/siege works; wall/hem in, secure; fence around; fortify; + circummugio_V2 = mkV2 (mkV "circummugire" "circummugio" "circummugivi" "circummugitus ") ; -- [XAXEO] :: moo/low/bellow round; circummulcens_A = mkA "circummulcens" "circummulcentis"; -- [XXXNS] :: licking gently around; circummulceo_V2 = mkV2 (mkV "circummulcere") ; -- [XXXEO] :: lick round, caress (with tongue); + circummunio_V2 = mkV2 (mkV "circummunire" "circummunio" "circummunivi" "circummunitus ") ; -- [XWXDO] :: invest with walls/siege works; wall/hem in, secure; fence around; fortify; circummunitio_F_N = mkN "circummunitio" "circummunitionis " feminine ; -- [XWXEO] :: surrounding with walls or siege works; investing a town; circummuranus_A = mkA "circummuranus" "circummurana" "circummuranum" ; -- [DXXFS] :: around the walls; with neighboring nations; circumnascens_A = mkA "circumnascens" "circumnascentis"; -- [XXXNS] :: growing up/being raised/springing forth around; circumnavigo_V2 = mkV2 (mkV "circumnavigare") ; -- [XWXFO] :: sail around; circumnavigate; + circumnecto_V2 = mkV2 (mkV "circumnectere" "circumnecto" "circumnexui" "circumnexus ") ; -- [DXXES] :: wrap/bind around; surround, envelop; circumno_V2 = mkV2 (mkV "circumnare") ; -- [XXXFO] :: swim around; circumnoto_V2 = mkV2 (mkV "circumnotare") ; -- [XDXFO] :: draw/paint around; + circumobruo_V2 = mkV2 (mkV "circumobruere" "circumobruo" "circumobrui" "circumobrutus ") ; -- [XAXNO] :: heap up earth around; cover/wrap around (L+S); circumornatus_A = mkA "circumornatus" "circumornata" "circumornatum" ; -- [DXXFS] :: ornamented/decorated/adorned round about/all around; circumpadanus_A = mkA "circumpadanus" "circumpadana" "circumpadanum" ; -- [XXIEO] :: lying/found/situated beside Po river; + circumpavio_V2 = mkV2 (mkV "circumpavire" "circumpavio" "circumpavivi" "circumpavitus ") ; -- [XXXNO] :: beat down hard all around; circumpavitus_A = mkA "circumpavitus" "circumpavita" "circumpavitum" ; -- [XXXNS] :: beaten/trodden close around; circumpendeo_V = mkV "circumpendere" ; -- [XXXEO] :: hang around, be suspended all around; circumpes_F_N = mkN "circumpes" "circumpedis " feminine ; -- [DXXES] :: footgear; sandal; that is around foot; parasite (of foot); covering for foot; circumpes_M_N = mkN "circumpes" "circumpedis " masculine ; -- [DXXES] :: footgear; sandal; that is around foot; parasite (of foot); covering for foot; + circumplaudo_V2 = mkV2 (mkV "circumplaudere" "circumplaudo" "circumplausi" "circumplausus ") ; -- [XXXFO] :: surround with applause, applaud/greet/clap all around; + circumplecto_V2 = mkV2 (mkV "circumplectere" "circumplecto" "circumplexi" "circumplexus ") ; -- [XXXCO] :: encompass; embrace/clasp; surround/encircle; enclose (w/wall); cover roundabout; + circumplector_V = mkV "circumplecti" "circumplector" "circumplexus sum " ; -- [XXXCO] :: encompass; embrace; surround, encircle; enclose (w/wall); cover round about; circumplexus_M_N = mkN "circumplexus" "circumplexus " masculine ; -- [XXXNO] :: coiling around, encircling, embracing; latitudinal zone/band (of sky); circumplico_V2 = mkV2 (mkV "circumplicare") ; -- [XXXEO] :: coil round (like a snake); wind (strip) around; twine/bend around; circumplumbo_V2 = mkV2 (mkV "circumplumbare") ; -- [XTXFO] :: coat (all over) with lead; pour lead all around (L+S); + circumpono_V2 = mkV2 (mkV "circumponere" "circumpono" "circumposui" "circumpositus ") ; -- [XXXCO] :: put/set/place (all) around/on either side of; confer (Souter); circumpositio_F_N = mkN "circumpositio" "circumpositionis " feminine ; -- [DEXES] :: setting/placing around; circumpositus_A = mkA "circumpositus" "circumposita" "circumpositum" ; -- [XXXDO] :: situated around, surrounding; circumpotatio_F_N = mkN "circumpotatio" "circumpotationis " feminine ; -- [XXXFO] :: passing round, practice of drinking around by passing a cup round company; circumpulso_V2 = mkV2 (mkV "circumpulsare") ; -- [XXXFO] :: assail/beat/pulsate from every side; (with noise, etc); + circumpungo_V2 = mkV2 (mkV "circumpungere" "circumpungo" "circumpungi" "circumpunctus ") ; -- [XXXES] :: prick/puncture all round; circumpurgo_V2 = mkV2 (mkV "circumpurgare") ; -- [XXXFO] :: clear/clean/purify/free from adhesions all around/round about; circumputo_V2 = mkV2 (mkV "circumputare") ; -- [XSXFS] :: measure around; circumquaque_Adv = mkAdv "circumquaque" ; -- [XXXFS] :: on every side; all around; + circumrado_V2 = mkV2 (mkV "circumradere" "circumrado" "circumrasi" "circumrasus ") ; -- [XXXEO] :: scrape/shave/pare around; circumrasio_F_N = mkN "circumrasio" "circumrasionis " feminine ; -- [XXXNO] :: action of scraping round surface (of); scraping/paring around; circumrefero_V2 = mkV2 (mkV "circumreferre") ; -- [XXXFO] :: bring/tell round again; + circumretio_V2 = mkV2 (mkV "circumretire" "circumretio" "circumretivi" "circumretitus ") ; -- [XXXEO] :: encircle with a net; ensnare; + circumrodo_V2 = mkV2 (mkV "circumrodere" "circumrodo" "circumrosi" "circumrosus ") ; -- [XXXDO] :: nibble/gnaw/talk all round, eat off outer part of; speak about; slander; circumroro_V2 = mkV2 (mkV "circumrorare") ; -- [XXXFO] :: sprinkle (water) over/round; circumroto_V2 = mkV2 (mkV "circumrotare") ; -- [XXXEO] :: cause to revolve/rotate; turn/whirl around; turn around in a circle; + circumsaepio_V2 = mkV2 (mkV "circumsaepere" "circumsaepio" "circumsaepsi" "circumsaeptus ") ; -- [XXXFO] :: fence/hedge round/in, enclose, surround; circumsaeptus_A = mkA "circumsaeptus" "circumsaepta" "circumsaeptum" ; -- [XXXCO] :: fenced/hedged in, enclosed, walled in; surrounded, encircled; circumsalto_V2 = mkV2 (mkV "circumsaltare") ; -- [XDXFS] :: dance around (chorus); jump around; + circumscalpo_V2 = mkV2 (mkV "circumscalpere" "circumscalpo" "circumscalpsi" "circumscalptus ") ; -- [XXXNO] :: scrape/scratch around/about; circumscariphico_V2 = mkV2 (mkV "circumscariphicare") ; -- [XXXNS] :: scrape/scratch around/about; scarify around (L+S); circumscaripho_V2 = mkV2 (mkV "circumscariphare") ; -- [XXXNO] :: scrape/scratch around/about; scarify around (L+S); + circumscindo_V2 = mkV2 (mkV "circumscindere" "circumscindo" "circumscindi" "circumscissus ") ; -- [XXXFO] :: tear/rip/strip (all around) (the clothes of); + circumscribo_V2 = mkV2 (mkV "circumscribere" "circumscribo" "circumscripsi" "circumscriptus ") ; -- [XXXAO] :: |draw a line/circle around; circumscribe; hem in, confine, restrict; rule out; circumscripte_Adv = mkAdv "circumscripte" ; -- [XGXEO] :: concisely, succinctly; summarily; in periods/periodic style; circumscriptio_F_N = mkN "circumscriptio" "circumscriptionis " feminine ; -- [XXXCO] :: circle, circumference; boundary; outline; cheating, fraud; periodic sentence; circumscriptor_M_N = mkN "circumscriptor" "circumscriptoris " masculine ; -- [XXXDO] :: cheat; defrauder, deceiver; he who makes void/annuls; circumscriptorie_Adv = mkAdv "circumscriptorie" ; -- [XXXFS] :: by fraud/deceit; --- SLASHSTUFF circumscriptus_A : A2 circumscriptus, circumscripta -um, circumscriptior -or -us, circumscriptissimus -a - -- [XGXEO] :: concisely expressed, succinct; compressed; rounded-off into periods, periodic; + circumscriptus_A = mkA "circumscriptus" ; -- [XGXEO] :: concisely expressed, succinct; compressed; rounded-off into periods, periodic; circumseco_V2 = mkV2 (mkV "circumsecare") ; -- [XXXDO] :: cut/clip/pare round; circumcise; circumsecus_Adv = mkAdv "circumsecus" ; -- [XXXFO] :: round about, around, round; in parts/region around; on every side; circumsedeo_V2 = mkV2 (mkV "circumsedere") ; -- [XXXCO] :: besiege/invest/blockade; surround, mob (person), beset; sit/live/settle round; circumseparo_V2 = mkV2 (mkV "circumseparare") ; -- [DBXFS] :: separate around; + circumsepio_V2 = mkV2 (mkV "circumsepere" "circumsepio" "circumsepsi" "circumseptus ") ; -- [XXXFO] :: fence/hedge round/in, enclose, surround; circumseptus_A = mkA "circumseptus" "circumsepta" "circumseptum" ; -- [XXXCO] :: fenced/hedged in, enclosed, walled in; surrounded, encircled; + circumsero_V2 = mkV2 (mkV "circumserere" "circumsero" "circumsevi" "circumsatus ") ; -- [XAXNO] :: plant/sow/set round (something); circumsessio_F_N = mkN "circumsessio" "circumsessionis " feminine ; -- [XXXFO] :: surrounding, mobbing; besieging; hostile encompassing (L+S); circumsideo_V2 = mkV2 (mkV "circumsidere") ; -- [XXXCO] :: besiege/invest/blockade; surround, mob (person), beset; sit/live/settle round; + circumsido_V2 = mkV2 (mkV "circumsidere" "circumsido" "circumsidi" "circumsissus ") ; -- [XXXEO] :: besiege/invest/blockade; surround, mob (person), beset; sit/live/settle round; circumsigno_V2 = mkV2 (mkV "circumsignare") ; -- [XXXEO] :: mark/sign/seal round about; --- TODO circumsilio_V : V2 circumsilio, circumsilire, -, - -- Declension: 4th -- Comment: [XXXEO] :: leap/spring/hop round; + circumsilio_V = mkV "circumsilire" "circumsilio" nonExist nonExist ; -- [XXXEO] :: leap/spring/hop round; + circumsisto_V2 = mkV2 (mkV "circumsistere" "circumsisto" "circumstiti" "circumstatus ") ; -- [XXXBO] :: stand/gather/crowd/take a stand around; surround, beset; be on either side; circumsitus_A = mkA "circumsitus" "circumsita" "circumsitum" ; -- [DXXFS] :: lying/situated around; neighboring; circumsocius_A = mkA "circumsocius" "circumsocia" "circumsocium" ; -- [DXXFS] :: neighborly, in friendly neighborhood; circumsono_V = mkV "circumsonare" ; -- [XXXCO] :: resound on every side; echo round; surround/be filled (with noise/sound); circumsonus_A = mkA "circumsonus" "circumsona" "circumsonum" ; -- [XXXEO] :: sounding/making a loud noise round about; filling/filled with sounds/noise; + circumspargo_V2 = mkV2 (mkV "circumspargere" "circumspargo" "circumsparsi" "circumsparsus ") ; -- [XXXEO] :: sprinkle/spray round about/around; circumspectatrix_F_N = mkN "circumspectatrix" "circumspectatricis " feminine ; -- [XXXEO] :: female spy, she who goes around/spies; she who goes round making eyes (at); circumspecte_Adv =mkAdv "circumspecte" "circumspectius" "circumspectissime" ; -- [XXXDO] :: warily/cautiously/circumspectly; carefully/meticulously; w/mature deliberation; circumspectio_F_N = mkN "circumspectio" "circumspectionis " feminine ; -- [XXXFO] :: careful consideration; looking on all sides (L+S); foresight, caution; circumspecto_V = mkV "circumspectare" ; -- [XXXBO] :: look about (searchingly), search about; examine, watch (suspiciously), be alert; circumspector_M_N = mkN "circumspector" "circumspectoris " masculine ; -- [DXXES] :: watcher; watchman; spy; all seeing; --- SLASHSTUFF circumspectus_A : A2 circumspectus, circumspecta -um, circumspectior -or -us, circumspectissimus -a -u -- [DXXES] :: |worthy of consideration, respected; distinguished; + circumspectus_A = mkA "circumspectus" ; -- [DXXES] :: |worthy of consideration, respected; distinguished; circumspectus_M_N = mkN "circumspectus" "circumspectus " masculine ; -- [XXXCO] :: survey/looking round/spying; visual examination; commanding view; contemplation; + circumspergo_V2 = mkV2 (mkV "circumspergere" "circumspergo" "circumspersi" "circumspersus ") ; -- [XXXEO] :: sprinkle/spray round about/around; strew/scatter round about/around (L+S); circumspicientia_F_N = mkN "circumspicientia" ; -- [XXXFO] :: caution, watchfulness; consideration, deliberation (L+S); + circumspicio_V2 = mkV2 (mkV "circumspicere" "circumspicio" "circumspexi" "circumspectus ") ; -- [XXXAO] :: look around/over/for, survey; inspect; search for/seek; examine/review; ponder; circumstagno_V = mkV "circumstagnare" ; -- [DXXFS] :: be poured forth all around; circumstans_M_N = mkN "circumstans" "circumstantis " masculine ; -- [XXXES] :: by-stander (usu. pl.); circumstantia_F_N = mkN "circumstantia" ; -- [XXXDO] :: encircling position/troop; closing of fluid round passing object; circumstance; circumstatio_F_N = mkN "circumstatio" "circumstationis " feminine ; -- [XXXFO] :: circle/circular group (of people); a standing around (L+S); circumsto_V = mkV "circumstare" ; -- [XXXBO] :: stand/gather/crowd around, surround, beset; be on either side; + circumstrepo_V2 = mkV2 (mkV "circumstrepere" "circumstrepo" "circumstrepui" "circumstrepitus ") ; -- [XXXCO] :: make a noise around; surround with noise; shout/cry clamorously around (person); circumstridens_A = mkA "circumstridens" "circumstridentis"; -- [DXXFS] :: shrieking/yelling//jabbering around; + circumstringo_V2 = mkV2 (mkV "circumstringere" "circumstringo" "circumstrinxi" "circumstrictus ") ; -- [DXXES] :: bind about, put on; tie around, surround, clothe with; + circumstruo_V2 = mkV2 (mkV "circumstruere" "circumstruo" "circumstruxi" "circumstructus ") ; -- [XXXDO] :: build round, surround with a structure (externally/internally); circumstupeo_V = mkV "circumstupere" ; -- [XXXFO] :: hang sluggishly round; look around with amazement, stand around amazed (L+S); circumsudo_V = mkV "circumsudare" ; -- [XXXNO] :: sweat/be moist all around/on all sides; + circumsurgo_V = mkV "circumsurgere" "circumsurgo" "circumsurrexi" "circumsurrectus "; -- [XXXFO] :: rise/project all around; circumsutus_A = mkA "circumsutus" "circumsuta" "circumsutum" ; -- [XXXEO] :: surrounded/enclosed in by means of sewing/stitching; sewed together all round; circumtectus_A = mkA "circumtectus" "circumtecta" "circumtectum" ; -- [XXXFO] :: covered, clothed; + circumtego_V2 = mkV2 (mkV "circumtegere" "circumtego" "circumtexi" "circumtectus ") ; -- [DXXCS] :: cover round about; + circumtendo_V2 = mkV2 (mkV "circumtendere" "circumtendo" "circumtetendi" "circumtentus ") ; -- [XXXFO] :: cover/surround by stretching; circumteneo_V2 = mkV2 (mkV "circumtenere") ; -- [DXXFS] :: posses; keep/hold around; circumtentus_A = mkA "circumtentus" "circumtenta" "circumtentum" ; -- [XXXES] :: covered/bound with (something); that is stretched/drawn around; begirt; circumtergeo_V2 = mkV2 (mkV "circumtergere") ; -- [XXXFO] :: wipe/rub round about/all around; circumtermino_V2 = mkV2 (mkV "circumterminare") ; -- [DXXFS] :: bound/limit round about/all around; + circumtero_V2 = mkV2 (mkV "circumterere" "circumtero" "circumtrivi" "circumtritus ") ; -- [XXXFO] :: rub/press/stand close/crowd on all sides; wear/rub away all around; circumtextum_N_N = mkN "circumtextum" ; -- [XXXES] :: garment inwoven with purple; circumtextus_A = mkA "circumtextus" "circumtexta" "circumtextum" ; -- [XXXEO] :: embroidered all around/round about; woven all around (L+S); + circumtinnio_V2 = mkV2 (mkV "circumtinnire" "circumtinnio" "circumtinnivi" "circumtinnitus ") ; -- [XXXFO] :: clash/ring/tinkle round about/all around; + circumtollo_V2 = mkV2 (mkV "circumtollere" "circumtollo" nonExist nonExist) ; -- [DXXFS] :: remove from every side; take/lift away all around; circumtondeo_V2 = mkV2 (mkV "circumtondere") ; -- [XXXFS] :: cut/shear/clip all around (hair); circumtono_V2 = mkV2 (mkV "circumtonare") ; -- [XXXEO] :: make a loud noise/clamor round; thunder round; circumtonsus_A = mkA "circumtonsus" "circumtonsa" "circumtonsum" ; -- [XXXDO] :: having hair cut/trimmed/shorn all around; elaborate, artificial (L+S); circumtorqueo_V2 = mkV2 (mkV "circumtorquere") ; -- [XXXFO] :: pull/twist/turn/wind/bend/spin round; + circumtremo_V2 = mkV2 (mkV "circumtremere" "circumtremo" "circumtremui" nonExist) ; -- [XXXFS] :: shake/tremble all around; circumtueor_V = mkV "circumtueri" ; -- [XXXFO] :: look around; circumtumulatus_A = mkA "circumtumulatus" "circumtumulata" "circumtumulatum" ; -- [XXXFS] :: piled up around; circumundique_Adv = mkAdv "circumundique" ; -- [DXXCS] :: round about on all sides; from everywhere around; circumustus_A = mkA "circumustus" "circumusta" "circumustum" ; -- [XXXFO] :: burnt round/around/on all sides; + circumvado_V2 = mkV2 (mkV "circumvadere" "circumvado" "circumvasi" nonExist) ; -- [XXXEO] :: form a ring round, surround, encompass, beset, attack/assail on every side; circumvagor_V = mkV "circumvagari" ; -- [XXXFO] :: travel/wander/roam around/about; (person, sound, etc); encircle; circumvagus_A = mkA "circumvagus" "circumvaga" "circumvagum" ; -- [XXXEO] :: moving/wandering round; encircling, flowing around; circumvallo_V2 = mkV2 (mkV "circumvallare") ; -- [XWXCO] :: surround with wall/siegeworks; blockade; beset, surround with troops/barriers; @@ -10107,18 +10706,27 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg circumvectitor_V = mkV "circumvectitari" ; -- [BXXFS] :: travel about; visit in succession; circumvecto_V2 = mkV2 (mkV "circumvectare") ; -- [XXXCS] :: carry/transport round/from place to place; describe; sail/travel round; circumvector_V = mkV "circumvectari" ; -- [XXXDO] :: sail round; travel round; + circumvehor_V = mkV "circumvehi" "circumvehor" "circumvectus sum " ; -- [XXXCO] :: make rounds of; travel/ride round/in succession/past; flow round (sea); circumvelo_V2 = mkV2 (mkV "circumvelare") ; -- [XXXFS] :: cover around, envelop; + circumvenio_V2 = mkV2 (mkV "circumvenire" "circumvenio" "circumveni" "circumventus ") ; -- [XXXBO] :: encircle, surround; assail, beset; enclose; circumvent; defraud/trick; surpass; circumventio_F_N = mkN "circumventio" "circumventionis " feminine ; -- [XXXFO] :: trickery, fraud, circumvention; circumventor_M_N = mkN "circumventor" "circumventoris " masculine ; -- [DXXFS] :: defrauder, deceiver, cheat; circumventorius_A = mkA "circumventorius" "circumventoria" "circumventorium" ; -- [DXXFS] :: fraudulent, deceitful; + circumverro_V2 = mkV2 (mkV "circumverrere" "circumverro" "circumverri" "circumversus ") ; -- [XXXFO] :: sweep/clean/skim around/over; circumversio_F_N = mkN "circumversio" "circumversionis " feminine ; -- [XXXEO] :: action of turning around/revolving, revolution; circumversor_V = mkV "circumversari" ; -- [XXXFO] :: turn about repeatedly; spin/whirl about/around; circumversus_A = mkA "circumversus" "circumversa" "circumversum" ; -- [XXXFS] :: rushed/swept around; + circumverto_V2 = mkV2 (mkV "circumvertere" "circumverto" "circumverti" "circumversus ") ; -- [XXXCO] :: free (slave) by manumission; (PASS) turn (oneself) round, revolve (round); + circumvestio_V2 = mkV2 (mkV "circumvestire" "circumvestio" "circumvestivi" "circumvestitus ") ; -- [XXXEO] :: clothe, cover over, surround with a covering; wrap up (in words); cloak; + circumvincio_V2 = mkV2 (mkV "circumvincire" "circumvincio" "circumvinxi" "circumvinctus ") ; -- [XXXEO] :: bind/fasten round; + circumviso_V2 = mkV2 (mkV "circumvisere" "circumviso" "circumvisi" "circumvisus ") ; -- [XXXFO] :: look round at; glare round upon; circumvolitabilis_A = mkA "circumvolitabilis" "circumvolitabilis" "circumvolitabile" ; -- [DXXFS] :: flying around; circumvolito_V2 = mkV2 (mkV "circumvolitare") ; -- [XXXCO] :: fly around/round about/over; (of horsemen/horses' hooves); frequent; flit; circumvolo_V = mkV "circumvolare" ; -- [XXXCO] :: fly/hover/flutter around; run/hasten/rush around; circumvolutor_V = mkV "circumvolutari" ; -- [XXXNO] :: roll over; + circumvolvo_V2 = mkV2 (mkV "circumvolvere" "circumvolvo" "circumvolvi" "circumvolutus ") ; -- [XXXCO] :: roll/revolve round, twine/coil around; wind around (w/something); circumvorsor_V = mkV "circumvorsari" ; -- [XXXFS] :: turn about repeatedly; spin/whirl about/around; + circumvorto_V2 = mkV2 (mkV "circumvortere" "circumvorto" "circumvorti" "circumvorsus ") ; -- [BXXCS] :: free (slave) by manumission; (PASS) turn (oneself) round, revolve (round); circundo_V2 = mkV2 (mkV "circundare") ; -- [XXXEO] :: surround; envelop, post/put/place/build around; enclose; beset; pass around; circus_M_N = mkN "circus" ; -- [XXXBO] :: race course; circus in Rome, celebration of games; circle; orbit; ciris_F_N = mkN "ciris" "ciris " feminine ; -- [XYXEO] :: mythical bird into which Scylla daughter of Nisus was changed; bird; fish; @@ -10129,7 +10737,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cirrus_M_N = mkN "cirrus" ; -- [XXXCO] :: curl/ringlet, curly lock; tuft (on bird head), oyster's beard/tentacles; fringe; cirsion_N_N = mkN "cirsion" "cirsii " neuter ; -- [XAXNO] :: kind of thistle; cirsocele_F_N = mkN "cirsocele" "cirsoceles " feminine ; -- [XBXFO] :: vericocele, varicose condition/dilatation of veins of spermatic chord; - cis_Acc_Prep = mkPrep "cis" Acc ; -- [XXXCO] :: on/to this/near side of, short of; before, within (time); + cis_Acc_Prep = mkPrep "cis" acc ; -- [XXXCO] :: on/to this/near side of, short of; before, within (time); cisanus_M_N = mkN "cisanus" ; -- [XXXIO] :: driver of a cissium (light two-wheeled carriage); cisarius_M_N = mkN "cisarius" ; -- [XXXIO] :: driver of a cissium (light two-wheeled carriage); cisium_N_N = mkN "cisium" ; -- [XXXCO] :: light two-wheeled carriage; light wheeled vehicle; cabriolet; @@ -10154,17 +10762,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cistifer_M_N = mkN "cistifer" ; -- [XEXIO] :: bearer of a casket in religious ceremonies; casket-bearer; cistophorus_M_N = mkN "cistophorus" ; -- [XEXCO] :: ceremonial casket-bearer; an Asiatic coin w/Dionysus as a ~ (worth 4 drachma); cistula_F_N = mkN "cistula" ; -- [XXXDO] :: little/small box/chest; small basket (L+S); --- IGNORED cit_A : A2 cit., abb. -- [GXXEE] :: cited, named (reference); abb. for citus (VPAR ceio); + cit_A = constA "cit" ; -- [GXXEE] :: cited, named (reference); abb. for citus (VPAR ceio); citara_F_N = mkN "citara" ; -- [FDXEM] :: harp; citate_Adv =mkAdv "citate" "citatius" "citatissime" ; -- [XXXEO] :: hurriedly; speedily, quickly, rapidly; nimbly (L+S); citatim_Adv = mkAdv "citatim" ; -- [XXXFO] :: hurriedly, quickly; speedily, hastily; citatio_F_N = mkN "citatio" "citationis " feminine ; -- [DXXES] :: calling, proclaiming (legal); command (military); citation, legal summons (Ecc); citatorium_N_N = mkN "citatorium" ; -- [DLXFS] :: summoning before a tribunal; citatorius_A = mkA "citatorius" "citatoria" "citatorium" ; -- [FXXFE] :: relating to a citation/summons; --- SLASHSTUFF citatus_A : A2 citatus, citata -um, citatior -or -us, citatissimus -a -um -- [XXXBO] :: quick, swift; early; loose (bowels); speeded up, hurried, urged on; full gallop; + citatus_A = mkA "citatus" ; -- [XXXBO] :: quick, swift; early; loose (bowels); speeded up, hurried, urged on; full gallop; citatus_M_N = mkN "citatus" "citatus " masculine ; -- [XXXFO] :: impulse; cite_Adv = mkAdv "cite" ; -- [DXXFS] :: quickly; rapidly; --- SLASHSTUFF citer_A : A2 citer, citera -um, citerior -or -us, citimus -a -um -- [XXXBO] :: near/on this side; (COMP) nearer; sooner/earlier, urgent; (SUPER) next; least; + citer_A = mkA "citer" ; -- [XXXBO] :: near/on this side; (COMP) nearer; sooner/earlier, urgent; (SUPER) next; least; citeria_F_N = mkN "citeria" ; -- [XDXEO] :: clown; effigy/caricature carried in procession at the games (L+S); citerius_Adv = mkAdv "citerius" ; -- [XXXFO] :: short of; to a lesser degree than; cithara_F_N = mkN "cithara" ; -- [XDXBO] :: cithara, lyre; lute, guitar (L+S); @@ -10183,7 +10791,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cito_Adv =mkAdv "cito" "citius" "citissime" ; -- [XXXBO] :: quickly/fast/speedily, with speed; soon, before long; readily; easily; cito_V2 = mkV2 (mkV "citare") ; -- [XXXAO] :: urge on, encourage; promote, excite; summon; set in motion; move (bowels); cite; citocacium_N_N = mkN "citocacium" ; -- [DAXFS] :: plant; (also called chamelaea); - citra_Acc_Prep = mkPrep "citra" Acc ; -- [XXXAO] :: on this/near side of, short of; before; below, less than; without regard to; + citra_Acc_Prep = mkPrep "citra" acc ; -- [XXXAO] :: on this/near side of, short of; before; below, less than; without regard to; citra_Adv = mkAdv "citra" ; -- [XXXCO] :: on this/near side of, towards; nearer; short of the mark/amount/degree; citrago_F_N = mkN "citrago" "citraginis " feminine ; -- [DAXFS] :: citrus plant; lemon balm; citrarius_M_N = mkN "citrarius" ; -- [XXXIO] :: dealer/maker of articles of citron-wood; dealer in lemons (L+S); @@ -10203,7 +10811,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg citrum_N_N = mkN "citrum" ; -- [GXXEK] :: |lemon; citrus_F_N = mkN "citrus" ; -- [GAXEK] :: lemon tree; citrus_M_N = mkN "citrus" ; -- [XAXDO] :: African citrus tree; (Callitris quadrivalvis?); citron (Citrus medica) (L+S); --- SLASHSTUFF citus_A : A2 citus, cita -um, citior -or -us, citissimus -a -um -- [XXXAO] :: quick, swift, rapid; moving/acting/passing/occurring quickly, speedy; early; + citus_A = mkA "citus" ; -- [XXXAO] :: quick, swift, rapid; moving/acting/passing/occurring quickly, speedy; early; cituvolus_A = mkA "cituvolus" "cituvola" "cituvolum" ; -- [FXBFM] :: swiftly flying, swift-flying; civica_F_N = mkN "civica" ; -- [XLXCO] :: civic crown/garland of oak-leaves; (Roman cognomen); civicus_A = mkA "civicus" "civica" "civicum" ; -- [XXXCO] :: of one's town/city/fellow-citizens; civil, civic; legal, civil (not military); @@ -10224,8 +10832,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg clacendix_F_N = mkN "clacendix" "clacendicis " feminine ; -- [XAXFO] :: murex, purple-fish; a shellfish from which (royal) purple dye was obtained); clades_F_N = mkN "clades" "cladis " feminine ; -- [XXXAO] :: |disaster, ruin, calamity; plague; pest, bane, scourge (cause of disaster); clagalopes_F_N = mkN "clagalopes" "clagalopis " feminine ; -- [XAXFS] :: species of eagle; - clam_Abl_Prep = mkPrep "clam" Abl ; -- [XXXEO] :: without knowledge of, unknown to; concealed/secret from; (rarely w/ABL); - clam_Acc_Prep = mkPrep "clam" Acc ; -- [XXXCO] :: without knowledge of, unknown to; concealed/secret from; (rarely w/ABL); + clam_Abl_Prep = mkPrep "clam" abl ; -- [XXXEO] :: without knowledge of, unknown to; concealed/secret from; (rarely w/ABL); + clam_Acc_Prep = mkPrep "clam" acc ; -- [XXXCO] :: without knowledge of, unknown to; concealed/secret from; (rarely w/ABL); clam_Adv = mkAdv "clam" ; -- [XXXBO] :: secretly, in secret, unknown to; privately; covertly; by fraud; clamator_M_N = mkN "clamator" "clamatoris " masculine ; -- [XXXEO] :: shouter, bawler, noisy disclaimer; clamatorius_A = mkA "clamatorius" "clamatoria" "clamatorium" ; -- [XAXNS] :: screeching, clamorous; shouting; (epithet of an unknown bird - of bad omen); @@ -10240,18 +10848,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg clamos_M_N = mkN "clamos" "clamosis " masculine ; -- [BXXAO] :: |war-cry, battle-cry; roar (thunder/surf); cry of fear/pain/mourning; wailing; clamose_Adv = mkAdv "clamose" ; -- [XXXFO] :: in a loud voice with shouting; clamorously; clamosus_A = mkA "clamosus" "clamosa" "clamosum" ; -- [XXXCO] :: given to/marked by/filled with shouting/bawling/yelling; barking (dog), noisy; + clamys_1_N = mkN "clamys" "clamydis" feminine ; -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; + clamys_2_N = mkN "clamys" "clamydos" feminine ; -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; clamys_F_N = mkN "clamys" "clamydis " feminine ; -- [BWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; --- TODO clamys_N : N1 clamys, clamydos/is -- F -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; clancularius_A = mkA "clancularius" "clancularia" "clancularium" ; -- [XXXFO] :: anonymous; writing in secret; secret, concealed, unknown (L+S); clanculo_Adv = mkAdv "clanculo" ; -- [XXXFO] :: secretly; privately (L+S); - clanculum_Acc_Prep = mkPrep "clanculum" Acc ; -- [XXXFO] :: without knowledge of, secret from; + clanculum_Acc_Prep = mkPrep "clanculum" acc ; -- [XXXFO] :: without knowledge of, secret from; clanculum_Adv = mkAdv "clanculum" ; -- [XXXCO] :: secretly, by stealth; sub rosa; privately (L+S); clandestinitas_F_N = mkN "clandestinitas" "clandestinitatis " feminine ; -- [EXXEE] :: secrecy; clandestino_Adv = mkAdv "clandestino" ; -- [XXXEO] :: secretly, clandestinely; clandestinus_A = mkA "clandestinus" "clandestina" "clandestinum" ; -- [XXXCO] :: secret, hidden, concealed, clandestine; acting/done/made secretly/silently; + clango_V = mkV "clangere" "clango" "clangui" nonExist; -- [XXXCO] :: clang, make ringing noise; sound (horn); scream (eagle); speak w/ringing tone; clangor_M_N = mkN "clangor" "clangoris " masculine ; -- [XXXCO] :: clang, noise; blare/blast (trumpet); crying/clamor (bird); barking/baying (dog); clare_Adv =mkAdv "clare" "clarius" "clarissime" ; -- [XXXBO] :: aloud; brightly, clearly; lucidly; with distinction/honor, illustriously; clareo_V = mkV "clarere" ; -- [XXXDO] :: shine bright/clearly; be clear/plain/understandable/obvious; be famous/renowned; + claresco_V = mkV "clarescere" "claresco" "clarui" nonExist; -- [XXXCO] :: be illuminated; become bright/evident/clear; become loud or famous/notorious; claretus_A = mkA "claretus" "clareta" "claretum" ; -- [GXXEK] :: claret (wine); claricito_V = mkV "claricitare" ; -- [DXXES] :: recall, recollect, remember; clarico_V = mkV "claricare" ; -- [XXXFO] :: shine, gleam, glow; @@ -10269,7 +10880,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg claro_V = mkV "clarare" ; -- [XXXCO] :: make visible; brighten, light up; make clear, explain; make illustrious/famous; claror_M_N = mkN "claror" "claroris " masculine ; -- [BXXFS] :: clarity, brightness; claros_M_N = mkN "claros" "clari " masculine ; -- [XAXNO] :: beetle infesting beehives; (regarded by Pliny as a disease); --- SLASHSTUFF clarus_A : A2 clarus, clara -um, clarior -or -us, clarissimus -a -um -- [XXXAO] :: clear, bright, gleaming; loud, distinct; evident, plain; illustrious, famous; + clarus_A = mkA "clarus" ; -- [XXXAO] :: clear, bright, gleaming; loud, distinct; evident, plain; illustrious, famous; clasis_F_N = mkN "clasis" "clasis " feminine ; -- [BXXCS] :: division/class of Romans; levy/draft, land army; fleet; group/band; classiarius_A = mkA "classiarius" "classiaria" "classiarium" ; -- [XWXDO] :: of navy/fleet/marines; classiarius_M_N = mkN "classiarius" ; -- [XWXDO] :: mariner; sailor, seaman; naval forces/personnel (pl.), marines; @@ -10291,6 +10902,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg claudico_V = mkV "claudicare" ; -- [XXXBO] :: limp, be lame; waver, incline to one side; be defective/deficient/fall short; claudigo_F_N = mkN "claudigo" "claudiginis " feminine ; -- [XBXFO] :: lameness; limping, limp; clauditas_F_N = mkN "clauditas" "clauditatis " feminine ; -- [XBXEO] :: lameness; + claudo_V = mkV "claudere" "claudo" "clausi" "clausus "; -- [XXXCO] :: limp, stumble/falter/hesitate; be weak/imperfect, fall short; be lame, hobble; + claudo_V2 = mkV2 (mkV "claudere" "claudo" "clausi" "clausus ") ; -- [XXXAO] :: close, shut, block up; conclude, finish; blockade, besiege; enclose; confine; claudus_A = mkA "claudus" "clauda" "claudum" ; -- [XXXBO] :: limping, lame; defective/crippled/imperfect; uneven/halting/wavering/uncertain; clausa_F_N = mkN "clausa" ; -- [FEXDE] :: cell; claustellum_N_N = mkN "claustellum" ; -- [XXXFO] :: keyhole; @@ -10329,8 +10942,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg clavus_M_N = mkN "clavus" ; -- [XXXAO] :: nail, spike, rivet; purple stripe on tunic; tiller/helm, helm of ship of state; claxendix_F_N = mkN "claxendix" "claxendicis " feminine ; -- [XAXFS] :: murex, purple-fish; a shellfish from which (royal) purple dye was obtained); clema_N_N = mkN "clema" "clematis " neuter ; -- [XAXNO] :: knot-grass (Polygonum aviculare); + clematis_1_N = mkN "clematis" "clematidis" feminine ; -- [XAXNO] :: plant; (various kinds of clematis/convolvulus/etc); + clematis_2_N = mkN "clematis" "clematidos" feminine ; -- [XAXNO] :: plant; (various kinds of clematis/convolvulus/etc); clematis_F_N = mkN "clematis" "clematidis " feminine ; -- [XAXNO] :: plant; (various kinds of clematis/convolvulus/etc); (climbing plants L+S); --- TODO clematis_N : N1 clematis, clematidos/is -- F -- [XAXNO] :: plant; (various kinds of clematis/convolvulus/etc); clematitis_F_N = mkN "clematitis" "clematitidis " feminine ; -- [XAXEO] :: plant; species of aristolochia; clemens_A = mkA "clemens" "clementis"; -- [XXXBO] :: merciful/loving; lenient/mild/gentle; quiet/peaceful, easy, moderate; compliant; clementer_Adv =mkAdv "clementer" "clementius" "clementissime" ; -- [XXXCO] :: leniently, mercifully; mildly/softly; slowly/at an easy rate/gradually, gently; @@ -10339,6 +10953,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cleonia_F_N = mkN "cleonia" ; -- [DAXFS] :: plant; (also called helenium); cleonicion_N_N = mkN "cleonicion" "cleonicii " neuter ; -- [XAXNS] :: plant; (also called clinopodion); cleopiceton_N_N = mkN "cleopiceton" "cleopiceti " neuter ; -- [XAXNO] :: wild basil (Calamintha clinopodium); + clepo_V2 = mkV2 (mkV "clepere" "clepo" "clepsi" "cleptus ") ; -- [XXXCO] :: steal; take away secretly; overhear, listen secretly; steal/hide oneself away; clepsydra_F_N = mkN "clepsydra" ; -- [XSXCO] :: water-clock; (used for timing speakers); time of one clock (20 minutes); clepsydrarius_M_N = mkN "clepsydrarius" ; -- [XSXFS] :: maker of water-clocks; clepta_M_N = mkN "clepta" ; -- [XXXFS] :: thief; @@ -10359,7 +10974,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg clientela_F_N = mkN "clientela" ; -- [XXXBO] :: clientship; vassalage; patronage; protection; clients; vassals; allies (pl.); clientulus_M_N = mkN "clientulus" ; -- [XXXEO] :: mere/small/insignificant client; petty vassal; (term of contempt); clima_N_N = mkN "clima" "climatis " neuter ; -- [XSXEO] :: measure of land; (60 feet square); inclination from latitude; clime; direction; --- TODO climacis_N : N1 climacis, climacidos/is -- F -- [XWXEO] :: inclined channel/barrel of a ballista; small staircase/ladder (L+S); + climacis_1_N = mkN "climacis" "climacidis" feminine ; -- [XWXEO] :: inclined channel/barrel of a ballista; small staircase/ladder (L+S); + climacis_2_N = mkN "climacis" "climacidos" feminine ; -- [XWXEO] :: inclined channel/barrel of a ballista; small staircase/ladder (L+S); climacter_M_N = mkN "climacter" "climactris " masculine ; -- [XSXEO] :: rung (astrological), critical point in life (every 7 years); climactericus_A = mkA "climactericus" "climacterica" "climactericum" ; -- [XSXFO] :: critical, climacteric (astrology); of critical point in life (every 7 years); climacus_M_N = mkN "climacus" ; -- [FDXFE] :: three musical notes in defending scale; @@ -10369,6 +10985,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg climax_F_N = mkN "climax" "climacis " feminine ; -- [DGXFS] :: rhetorical figure (gradual increase in force of expression); (also gradatio); clinamen_N_N = mkN "clinamen" "clinaminis " neuter ; -- [XXXFO] :: swerving, turning aside; clinatus_A = mkA "clinatus" "clinata" "clinatum" ; -- [XXXEO] :: inclining, slanting; inclined, bent, sunk (L+S); + clingo_V2 = mkV2 (mkV "clingere" "clingo" "clinxi" "clinctus ") ; -- [XXXFO] :: surround/encircle/ring; enclose; beleaguer; accompany; gird, equip; ring (tree); clinice_F_N = mkN "clinice" "clinices " feminine ; -- [XBXFO] :: clinical medicine; practice at sick-bed (L+S); clinicos_A = mkA "clinicos" "clinice" "clinicon" ; -- [XBXNO] :: clinical, sick-bed; clinicum_N_N = mkN "clinicum" ; -- [GXXEK] :: clinic; @@ -10377,7 +10994,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg clinodium_N_N = mkN "clinodium" ; -- [FXXFM] :: jewel; clinopale_F_N = mkN "clinopale" "clinopales " feminine ; -- [XXXFO] :: intercourse, wrestling in bed, active sexual exercise; clinopodium_N_N = mkN "clinopodium" ; -- [XAXNO] :: wild basil (Calamintha clinopodium); --- TODO clinopus_N : N1 clinopus, clinopodos/is -- M -- [XXXFO] :: foot of a bed; + clinopus_1_N = mkN "clinopus" "clinopodis" masculine ; -- [XXXFO] :: foot of a bed; + clinopus_2_N = mkN "clinopus" "clinopodos" masculine ; -- [XXXFO] :: foot of a bed; clinsa_F_N = mkN "clinsa" ; -- [FEXFE] :: small handbell; clipeatus_A = mkA "clipeatus" "clipeata" "clipeatum" ; -- [XWXCO] :: armed/furnished with a shield (clipeus); shield-bearing; clipeatus_M_N = mkN "clipeatus" ; -- [XWXCO] :: soldier armed/furnished with a shield (clipeus) (usu. pl.); @@ -10411,6 +11029,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cloccarium_N_N = mkN "cloccarium" ; -- [FXXEE] :: belfry; bell/clock tower; clodico_V = mkV "clodicare" ; -- [XXXFO] :: limp, be lame; be defective; (facetious plebeian of claudico); clodigo_F_N = mkN "clodigo" "clodiginis " feminine ; -- [XBXFO] :: lameness; limping, limp; + clodo_V2 = mkV2 (mkV "clodere" "clodo" "closi" "closus ") ; -- [XXXNS] :: close, shut, block up; conclude, finish; blockade, besiege; enclose; confine; clodus_A = mkA "clodus" "cloda" "clodum" ; -- [XXXCO] :: limping, lame; defective/crippled/imperfect; uneven/halting/wavering/uncertain; clon_M_N = mkN "clon" "clonis " masculine ; -- [HSXEK] :: clone; clonizatio_F_N = mkN "clonizatio" "clonizationis " feminine ; -- [HSXEK] :: cloning; @@ -10422,6 +11041,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg clouaca_F_N = mkN "clouaca" ; -- [XXXCO] :: sewer, underground drain; maw of voracious person; privy (medieval); cluaca_F_N = mkN "cluaca" ; -- [XXXCO] :: sewer, underground drain; maw of voracious person; privy (medieval); cludo_M_N = mkN "cludo" "cludinis " masculine ; -- [XXXFO] :: dagger; + cludo_V = mkV "cludere" "cludo" "clusi" "clusus "; -- [XBXCO] :: limp, halt; be weak, be imperfect; + cludo_V2 = mkV2 (mkV "cludere" "cludo" "clusi" "clusus ") ; -- [XXXAO] :: close, shut, block up; conclude, finish; blockade, besiege; enclose; confine; cludus_A = mkA "cludus" "cluda" "cludum" ; -- [XXXCO] :: limping, lame; defective/crippled/imperfect; uneven/halting/wavering/uncertain; cluens_F_N = mkN "cluens" "cluentis " feminine ; -- [XXXBO] :: client, dependent (of a patron), vassal; client state/its citizens, allies; cluens_M_N = mkN "cluens" "cluentis " masculine ; -- [XXXBO] :: client, dependent (of a patron), vassal; client state/its citizens, allies; @@ -10437,6 +11058,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cluniculus_M_N = mkN "cluniculus" ; -- [XBXFO] :: upper leg or thigh; small hind parts (L+S); clunis_F_N = mkN "clunis" "clunis " feminine ; -- [XBXCO] :: buttock, haunch, hindquarters (vertebrate animals); (also insects/arachnids); clunis_M_N = mkN "clunis" "clunis " masculine ; -- [XBXCO] :: buttock, haunch, hindquarters (vertebrate animals); (also insects/arachnids); + cluo_V = mkV "cluere" "cluo" nonExist nonExist; -- [XXXCO] :: be called, be named, be reputed/spoken of/said to be; be reckoned as existing; + cluo_V2 = mkV2 (mkV "cluere" "cluo" nonExist nonExist) ; -- [XEXEO] :: purify; cleanse, make clean; clupea_F_N = mkN "clupea" ; -- [XAXNO] :: small river fish; clupeatus_A = mkA "clupeatus" "clupeata" "clupeatum" ; -- [XWXCO] :: armed/furnished with a shield (clipeus); shield-bearing; clupeatus_M_N = mkN "clupeatus" ; -- [XWXCO] :: soldier armed/furnished with a shield (clipeus) (usu. pl.); @@ -10483,12 +11106,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cnidinus_A = mkA "cnidinus" "cnidina" "cnidinum" ; -- [XAXNO] :: of/pertaining to nettles, nettle-; cnisa_F_N = mkN "cnisa" ; -- [DEXFS] :: steam/odor from a sacrifice; cnissa_F_N = mkN "cnissa" ; -- [DEXFS] :: steam/odor from a sacrifice; + cnodax_1_N = mkN "cnodax" "cnodacis" masculine ; -- [XTXFO] :: pin, pivot; gudgeon, pivot on end of beam/axle for wheel/bell/etc; + cnodax_2_N = mkN "cnodax" "cnodacos" masculine ; -- [XTXFO] :: pin, pivot; gudgeon, pivot on end of beam/axle for wheel/bell/etc; cnodax_M_N = mkN "cnodax" "cnodacis " masculine ; -- [XTXFO] :: pin, pivot; gudgeon, pivot on end of beam/axle for wheel/bell/etc; --- TODO cnodax_N : N1 cnodax, cnodacos/is -- M -- [XTXFO] :: pin, pivot; gudgeon, pivot on end of beam/axle for wheel/bell/etc; coa_F_N = mkN "coa" ; -- [XXXFO] :: lustful woman; (wearing fine Coan silk?); fictitious nickname of Clodia (L+S); + coaccedo_V = mkV "coaccedere" "coaccedo" "coaccessi" "coaccessus "; -- [BXXFS] :: come to or be added besides; coacervatim_Adv = mkAdv "coacervatim" ; -- [XXXFO] :: in/by heaps; coacervatio_F_N = mkN "coacervatio" "coacervationis " feminine ; -- [XXXCO] :: heaping/piling together/up; adding together, aggregate; (of arguments); coacervo_V2 = mkV2 (mkV "coacervare") ; -- [XXXBO] :: heap/pile up, gather/crowd together; amass, collect; make by heaping; add/total; + coacesco_V = mkV "coacescere" "coacesco" "coacui" nonExist; -- [XXXCO] :: become sour/acid; deteriorate; become corrupt; coactarius_M_N = mkN "coactarius" ; -- [XXXIO] :: maker of felt; coacte_Adv =mkAdv "coacte" "coactius" "coactissime" ; -- [XXXEO] :: briefly/concisely/shortly; exactly/accurately; in forced manner; by compulsion; coactile_N_N = mkN "coactile" "coactilis " neuter ; -- [DXXFS] :: thick fulled cloth, felt; @@ -10504,15 +11130,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg coactura_F_N = mkN "coactura" ; -- [XAXFO] :: amount (of oil) extracted/pressed (in a given period); collection (L+S); coactus_A = mkA "coactus" "coacta" "coactum" ; -- [FXXEE] :: coercive; coactus_M_N = mkN "coactus" "coactus " masculine ; -- [XXXCO] :: compulsion, constraint, force, coercion; + coaddo_V2 = mkV2 (mkV "coaddere" "coaddo" nonExist nonExist) ; -- [XXXFO] :: add; (ingredient); add with, add also (L+S); coadjuto_V2 = mkV2 (mkV "coadjutare") ; -- [FXXEE] :: urge; help, assist; coadjutor_M_N = mkN "coadjutor" "coadjutoris " masculine ; -- [DXXIS] :: helper, assistant; coadjutoria_F_N = mkN "coadjutoria" ; -- [FXXFE] :: assistantship; office of assistant; coadjutus_A = mkA "coadjutus" "coadjuta" "coadjutum" ; -- [FXXFE] :: assisted, helped;, aided; coadjutus_M_N = mkN "coadjutus" ; -- [FXXFE] :: assistant, helper; coadoro_V2 = mkV2 (mkV "coadorare") ; -- [DEXES] :: worship/adore together/along with; + coadulesco_V = mkV "coadulescere" "coadulesco" "coadulevi" "coadultus "; -- [DEXFS] :: grow up along with; coadunatio_F_N = mkN "coadunatio" "coadunationis " feminine ; -- [DLXFS] :: uniting into one; summing up; coaduno_V2 = mkV2 (mkV "coadunare") ; -- [XXXEO] :: unite; add/join together; collect into one; coaedifico_V2 = mkV2 (mkV "coaedificare") ; -- [XXXEO] :: build (town/etc); occupy (site) with buildings; build up/upon; + coaegresco_V = mkV "coaegrescere" "coaegresco" nonExist nonExist; -- [DBXFS] :: become sick at same time as; get sick together with; coaegroto_V = mkV "coaegrotare" ; -- [DBXFS] :: be sick at same time as; coaequalis_A = mkA "coaequalis" "coaequalis" "coaequale" ; -- [XXXEO] :: having same age as; be of equal/same age; coaequalis_M_N = mkN "coaequalis" "coaequalis " masculine ; -- [XXXEO] :: one of same age, contemporary; comrade/companion of same age (L+S); @@ -10533,8 +11162,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg coagulatus_A = mkA "coagulatus" "coagulata" "coagulatum" ; -- [XXXFE] :: curdled; coagulo_V2 = mkV2 (mkV "coagulare") ; -- [XAXDO] :: curdle (milk); make (liquids) thick/solid, congeal, coagulate; collect together; coagulum_N_N = mkN "coagulum" ; -- [XAXCO] :: tie/bond, binding agent; rennet; curds; thickening/congealing; plant (~ terrae); + coalesco_V = mkV "coalescere" "coalesco" "coalui" "coalitus "; -- [XXXBO] :: join/grow together; coalesce; close (wound); become unified/strong/established; coalitio_F_N = mkN "coalitio" "coalitionis " feminine ; -- [GXXEK] :: coalition; coalitus_M_N = mkN "coalitus" "coalitus " masculine ; -- [DEXFS] :: communion; fellowship; + coalo_V2 = mkV2 (mkV "coalere" "coalo" "coalui" "coaltus ") ; -- [DEXFS] :: sustain/nourish together; coambulo_V = mkV "coambulare" ; -- [DXXFS] :: walk/go/travel with/together; coangusto_V2 = mkV2 (mkV "coangustare") ; -- [XXXCO] :: confine to narrow space, cramp; make narrower; narrow/limit scope/application; coapostolus_M_N = mkN "coapostolus" ; -- [DEXFS] :: fellow apostle; @@ -10542,6 +11173,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg coapto_V2 = mkV2 (mkV "coaptare") ; -- [XXXFO] :: fit/join/adjust together; make by joining; coarctatio_F_N = mkN "coarctatio" "coarctationis " feminine ; -- [XXXES] :: tightening; fitting closely together; crowding/drawing together; coarcto_V2 = mkV2 (mkV "coarctare") ; -- [XXXBO] :: narrow; hem in, pack/crowd/bring/fit close together, restrict; shorten/abridge; + coaresco_V = mkV "coarescere" "coaresco" "coarui" nonExist; -- [DXXFS] :: dry up/wither together; become/run dry together; + coarguo_V2 = mkV2 (mkV "coarguere" "coarguo" "coargui" nonExist) ; -- [XLXBO] :: refute; show, demonstrate; overwhelm w/proof; silence; convict; prove guilty; coargutio_F_N = mkN "coargutio" "coargutionis " feminine ; -- [DLXFS] :: conviction; refutation; coarmius_M_N = mkN "coarmius" ; -- [XWXIO] :: comrade-in-arms; coarmo_V2 = mkV2 (mkV "coarmare") ; -- [DWXFS] :: arm/equip together; @@ -10552,7 +11185,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg coassatio_F_N = mkN "coassatio" "coassationis " feminine ; -- [XTXES] :: floor-boards, floor-planking; floor of planks/boards (L+S); joining of boards; coassistens_M_N = mkN "coassistens" "coassistentis " masculine ; -- [FXXFE] :: coassistant, fellow assistant; coasso_V2 = mkV2 (mkV "coassare") ; -- [XXXFS] :: fit with floor planking; join boards/planks together (L+S); + coassumo_V2 = mkV2 (mkV "coassumere" "coassumo" "coassumpsi" "coassumptus ") ; -- [DEXFS] :: assume together; coauctio_F_N = mkN "coauctio" "coauctionis " feminine ; -- [XXXFS] :: joint increase; + coaudio_V2 = mkV2 (mkV "coaudire" "coaudio" "coaudivi" "coauditus ") ; -- [XXXEO] :: confine to narrow space, cramp; make narrower; narrow/limit scope/application; coaudito_V2 = mkV2 (mkV "coauditare") ; -- [DXXES] :: confine to narrow space, cramp; make narrower; narrow scope/application; coaxatio_F_N = mkN "coaxatio" "coaxationis " feminine ; -- [XTXEO] :: floor-boards, floor-planking; floor of planks/boards (L+S); joining of boards; coaxo_V = mkV "coaxare" ; -- [XAXFO] :: croak; (of frogs); @@ -10611,6 +11246,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cocleola_F_N = mkN "cocleola" ; -- [DAXFS] :: small snail; coclia_F_N = mkN "coclia" ; -- [XXXBO] :: snail; (form of) a snail shell; spiral; screw (press/water); winding entrance; coco_Interj = ss "coco" ; -- [XXXFO] :: crow of cock; cock-a-doodle-doo; hen-clucking (L+S); + coco_V2 = mkV2 (mkV "cocere" "coco" "coxi" "coctus ") ; -- [XXXAO] :: cook; boil, fry, bake; burn, parch (sun); stir up; ripen, mature (plot); digest; cocoa_F_N = mkN "cocoa" ; -- [GXXEK] :: cocoa (drink); cocodrillus_M_N = mkN "cocodrillus" ; -- [XAEDO] :: crocodile; land reptile, Nile monitor; cocodrilus_M_N = mkN "cocodrilus" ; -- [XAEDO] :: crocodile; land reptile, Nile monitor; @@ -10633,7 +11269,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg coctum_N_N = mkN "coctum" ; -- [XXXDO] :: cooked food; smelted ore; coctura_F_N = mkN "coctura" ; -- [XXXCO] :: cooking (method) (food); heating/roasting/smelting (ore); thing heated/boiled; cocturarius_M_N = mkN "cocturarius" ; -- [XXXFS] :: cook; --- SLASHSTUFF coctus_A : A2 coctus, cocta -um, coctior -or -us, coctissimus -a -um -- [XXXBO] :: cooked; roasted, burnt; smelted; baked (bricks); ripened, ripe; softened, mild; + coctus_A = mkA "coctus" ; -- [XXXBO] :: cooked; roasted, burnt; smelted; baked (bricks); ripened, ripe; softened, mild; cocula_F_N = mkN "cocula" ; -- [XXXES] :: cook (female); coculeatus_A = mkA "coculeatus" "coculeata" "coculeatum" ; -- [XXXFO] :: spiral; coculum_N_N = mkN "coculum" ; -- [XXXDO] :: cooking vessel/pot/pan; (bronze); @@ -10648,9 +11284,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg codicillus_M_N = mkN "codicillus" ; -- [XXXBO] :: notepad, small log; writing tablets; patent; petition to Emperor; will/codicil; codicula_F_N = mkN "codicula" ; -- [XXXFS] :: little tail; codificatus_A = mkA "codificatus" "codificata" "codificatum" ; -- [FXXFE] :: codified; arranged; --- TODO coec_N : N1 coec, coecos/is -- N -- [XAXNO] :: kind of date; (doum palm, Hyphaene thebaica Liddle and Scott); --- TODO coecas_N : N1 coecas, coecos/is -- N -- [XAXNO] :: kind of date; (doum palm, Hyphaene thebaica Liddle and Scott); --- IGNORED coel_N : N1 coel, undeclined -- N -- [BSXES] :: sky, heaven; universe, world; space; air, weather; Jehovah; (shortened form); + coec_1_N = mkN "coec" "coecis" neuter ; -- [XAXNO] :: kind of date; (doum palm, Hyphaene thebaica Liddle and Scott); + coec_2_N = mkN "coec" "coecos" neuter ; -- [XAXNO] :: kind of date; (doum palm, Hyphaene thebaica Liddle and Scott); + coecas_1_N = mkN "coecas" "coecis" neuter ; -- [XAXNO] :: kind of date; (doum palm, Hyphaene thebaica Liddle and Scott); + coecas_2_N = mkN "coecas" "coecos" neuter ; -- [XAXNO] :: kind of date; (doum palm, Hyphaene thebaica Liddle and Scott); + coel_N = constN "coel" neuter ; -- [BSXES] :: sky, heaven; universe, world; space; air, weather; Jehovah; (shortened form); coelectus_A = mkA "coelectus" "coelecta" "coelectum" ; -- [DXXES] :: elected together; coelementatus_A = mkA "coelementatus" "coelementata" "coelementatum" ; -- [DSXFS] :: composed of the elements; coeles_A = mkA "coeles" "coelitis"; -- [DXXFS] :: heavenly; celestial; (not found classical in NOM S); @@ -10677,6 +11315,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg coemendatus_A = mkA "coemendatus" "coemendata" "coemendatum" ; -- [DLXFS] :: amended at same time; coemesis_F_N = mkN "coemesis" "coemesisis " feminine ; -- [DDXFS] :: somniferous song; coemeterium_N_N = mkN "coemeterium" ; -- [FDXFE] :: cemetery; + coemo_V2 = mkV2 (mkV "coemere" "coemo" "coemi" "coemptus ") ; -- [XXXCO] :: buy; buy up; coemptio_F_N = mkN "coemptio" "coemptionis " feminine ; -- [XLXDO] :: fictitious marriage to free heiress; mock sale of estate to free it of burdens; coemptionalis_A = mkA "coemptionalis" "coemptionalis" "coemptionale" ; -- [XLXDS] :: of a mock/sham sale/marriage; poor, worthless; [~ senex => one used in sham]; coemptionator_M_N = mkN "coemptionator" "coemptionatoris " masculine ; -- [XLXFO] :: man acting as fictitious purchaser in coemptio (sham marriage/sale); @@ -10689,6 +11328,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg coenatiuncula_F_N = mkN "coenatiuncula" ; -- [XXXFS] :: small dining-room; coenator_M_N = mkN "coenator" "coenatoris " masculine ; -- [DXXFS] :: diner; dinner guest; coenatorius_A = mkA "coenatorius" "coenatoria" "coenatorium" ; -- [XXXES] :: of/used for dining; pertaining to dinner or table; + coenaturio_V = mkV "coenaturire" "coenaturio" nonExist nonExist; -- [XXXFS] :: desire to dine; have an appetite for dinner; coenautocinetum_N_N = mkN "coenautocinetum" ; -- [GXXEK] :: bus; coencenatio_F_N = mkN "coencenatio" "coencenationis " feminine ; -- [XXXES] :: dinner party; (Cicero from Greek); supping together, table companionship (L+S); coenito_V = mkV "coenitare" ; -- [XXXCS] :: dine/eat habitually (in a particular place/manner); have dinner, dine (often); @@ -10700,12 +11340,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg coenomyia_F_N = mkN "coenomyia" ; -- [DAXES] :: common fly; coenon_N_N = mkN "coenon" "coeni " neuter ; -- [XBXIO] :: kind of eye-salve; coenositas_F_N = mkN "coenositas" "coenositatis " feminine ; -- [XXXES] :: dirty/foul/muddy place; --- SLASHSTUFF coenosus_A : A2 coenosus, coenosa -um, coenosior -or -us, coenosissimus -a -um -- [XXXES] :: muddy; filthy, foul; slimy, marshy; impure; + coenosus_A = mkA "coenosus" ; -- [XXXES] :: muddy; filthy, foul; slimy, marshy; impure; coenula_F_N = mkN "coenula" ; -- [XXXCS] :: little dinner/supper; --- SLASHSTUFF coenulentus_A : A2 coenulentus, coenulenta -um, coenulentior -or -us, coenulentissimus -a -um -- [XXXES] :: covered in mud/filth; muddy, filthy, slimy; + coenulentus_A = mkA "coenulentus" ; -- [XXXES] :: covered in mud/filth; muddy, filthy, slimy; coenum_N_N = mkN "coenum" ; -- [XXXES] :: mud, mire, filth, slime, dirt, uncleanness; (of persons) scum/filth; --- TODO coeo_V : V1 coeo, coire, coivi(ii), coitus -- [XXXAO] :: |enter agreement; unite/assemble/conspire; come/go together; mend/knit (wound); --- TODO coepio_V : V2 coepio, coepere, -, - -- Declension: 3rd -- Comment: [AXXEO] :: begin, commence, initiate; (rare early form, usu. shows only PERFDEF); + coeo_1_V2 = mkV2 (mkV "coire" "coeo" "coivi" "coitus") ; -- [XXXAO] :: |enter agreement; unite/assemble/conspire; come/go together; mend/knit (wound); + coeo_2_V2 = mkV2 (mkV "coire" "coeo" "coii" "coitus") ; -- [XXXAO] :: |enter agreement; unite/assemble/conspire; come/go together; mend/knit (wound); + coepio_V = mkV "coepere" "coepio" nonExist nonExist ; -- [AXXEO] :: begin, commence, initiate; (rare early form, usu. shows only PERFDEF); + coepio_V2 = mkV2 (mkV "coepere" "coepio" "coepi" "coeptus ") ; -- [XXXAO] :: begin, commence, initiate; set foot on; (usu. PERF PASS w/PASS INF; PRES early); coepiscopatus_M_N = mkN "coepiscopatus" "coepiscopatus " masculine ; -- [DEXFS] :: co-episcopate/bishopric/see; coepiscopus_M_N = mkN "coepiscopus" ; -- [DEXES] :: associate bishop; fellow bishop (Ecc); coepto_V = mkV "coeptare" ; -- [XXXCO] :: begin/commence (w/INF); set to work, undertake/attempt/try; venture/begin (ACC); @@ -10724,7 +11366,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg coertio_F_N = mkN "coertio" "coertionis " feminine ; -- [XLXFS] :: coercion, restraint, repression; (affliction of summary/right to) punishment; coetus_M_N = mkN "coetus" "coetus " masculine ; -- [XXXBO] :: |social intercourse (w/hominium), society, company; sexual intercourse; coexercitatus_A = mkA "coexercitatus" "coexercitata" "coexercitatum" ; -- [XXXFO] :: that is practiced together/at same time; --- IGNORED cof_N : N1 cof, undeclined -- N -- [DEQEW] :: qof; (19th letter of Hebrew alphabet); (transliterate as K); + coextendo_V = mkV "coextendere" "coextendo" "coextendi" "coextensus "; -- [FXXFE] :: have same extension/expansion; + cof_N = constN "cof" neuter ; -- [DEQEW] :: qof; (19th letter of Hebrew alphabet); (transliterate as K); cofanus_M_N = mkN "cofanus" ; -- [DAXFS] :: pelican; coffeinum_N_N = mkN "coffeinum" ; -- [GXXEK] :: caffeine; cofinus_M_N = mkN "cofinus" ; -- [XXXDO] :: basket, hamper; @@ -10754,7 +11397,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cognitura_F_N = mkN "cognitura" ; -- [XLXEO] :: duty of an attorney; office of state attorney/fiscal agent (debts) (L+S); cognitus_A = mkA "cognitus" "cognita" "cognitum" ; -- [XXXBO] :: known (from experience/carnally)), tried/proved; noted, acknowledged/recognized; cognitus_M_N = mkN "cognitus" "cognitus " masculine ; -- [XXXCO] :: act of getting to know/becoming acquainted with; --- SLASHSTUFF cognobilis_A : A2 cognobilis, cognobile, cognobilior -or -us, cognobilissimus -a -um -- [XXXEO] :: understandable, intelligible; + cognobilis_A = mkA "cognobilis" ; -- [XXXEO] :: understandable, intelligible; cognomen_N_N = mkN "cognomen" "cognominis " neuter ; -- [XXXBO] :: surname, family/3rd name; name (additional/derived from a characteristic); cognomentum_N_N = mkN "cognomentum" ; -- [XXXCO] :: surname, family/3rd/allusive name; sobriquet; name; cult name of a god; cognominatio_F_N = mkN "cognominatio" "cognominationis " feminine ; -- [XXXFS] :: surname, family/3rd name; name (additional/derived from a characteristic); @@ -10768,6 +11411,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cognoscibilitas_F_N = mkN "cognoscibilitas" "cognoscibilitatis " feminine ; -- [FXXEE] :: ability to be know/understood/recognized; cognoscibiliter_Adv = mkAdv "cognoscibiliter" ; -- [DXXES] :: recognizably; discernibly; cognoscitivus_A = mkA "cognoscitivus" "cognoscitiva" "cognoscitivum" ; -- [FEXDF] :: knowing, having power of knowing, intellectually aware + cognosco_V2 = mkV2 (mkV "cognoscere" "cognosco" "cognovi" "cognitus ") ; -- [XXXAO] :: become acquainted with/aware of; recognize; learn, find to be; inquire/examine; + cogo_V2 = mkV2 (mkV "cogere" "cogo" "coegi" "coactus ") ; -- [XXXAO] :: collect/gather, round up, restrict/confine; force/compel; convene; congeal; cogulo_V2 = mkV2 (mkV "cogulare") ; -- [XXXFO] :: curdle (milk); make (liquids) thick/solid, congeal, coagulate; collect together; cohabitatio_F_N = mkN "cohabitatio" "cohabitationis " feminine ; -- [DXXFS] :: cohabitation, living/dwelling together; cohabitator_M_N = mkN "cohabitator" "cohabitatoris " masculine ; -- [DXXES] :: he who lives/dwells with another; @@ -10779,6 +11424,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cohaereo_V = mkV "cohaerere" ; -- [XXXAO] :: |be consistent/coherent; be connected/bound/joined/tied together; be in harmony; cohaeres_F_N = mkN "cohaeres" "cohaeredis " feminine ; -- [XLXCS] :: co-heir; joint heir; cohaeres_M_N = mkN "cohaeres" "cohaeredis " masculine ; -- [XLXCS] :: co-heir; joint heir; + cohaeresco_V = mkV "cohaerescere" "cohaeresco" nonExist nonExist; -- [XXXCO] :: cohere; stick, adhere; grow together, unite; cohaesio_F_N = mkN "cohaesio" "cohaesionis " feminine ; -- [FXXCE] :: cohesion, sticking/combining together; organic structure; being time contiguous; cohaesus_A = mkA "cohaesus" "cohaesa" "cohaesum" ; -- [DXXFS] :: pressed together; coherceo_V2 = mkV2 (mkV "cohercere") ; -- [XXXAO] :: enclose, confine; restrain, check, curb, repress; limit; preserve; punish; @@ -10786,12 +11432,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cohereo_V = mkV "coherere" ; -- [DXXAW] :: |be consistent/coherent; be connected/bound/joined/tied together; be in harmony; coheres_F_N = mkN "coheres" "coheredis " feminine ; -- [XLXCO] :: co-heir; joint heir; coheres_M_N = mkN "coheres" "coheredis " masculine ; -- [XLXCO] :: co-heir; joint heir; + coheresco_V = mkV "coherescere" "coheresco" nonExist nonExist; -- [XXXCS] :: cohere; stick, adhere; grow together, unite; cohibeo_V2 = mkV2 (mkV "cohibere") ; -- [XXXAO] :: hold together, contain; hold back, restrain, curb, hinder; confine; repress; cohibilis_A = mkA "cohibilis" "cohibilis" "cohibile" ; -- [XXXFO] :: concise; terse; abridged, short (L+S); cohibiliter_Adv =mkAdv "cohibiliter" "cohibilius" "cohibilissime" ; -- [XXXEO] :: concisely; tersely; cohibitio_F_N = mkN "cohibitio" "cohibitionis " feminine ; -- [XXXFO] :: restriction; compression; restriction, restraining, governing (L+S); cohibitus_A = mkA "cohibitus" "cohibita" "cohibitum" ; -- [XXXFO] :: restrained; confined, limited (L+S); moderate; cohonesto_V2 = mkV2 (mkV "cohonestare") ; -- [XXXCO] :: honor, grace; do honor/pay respect to; make respectable; prevent baldness (L+S); + cohorresco_V = mkV "cohorrescere" "cohorresco" "cohorrui" nonExist; -- [XXXDO] :: shudder; shiver/shake (from emotion/fear/cold/illness); cohors_F_N = mkN "cohors" "cohortis " feminine ; -- [XWXAO] :: |cohort, tenth part of legion (360 men); armed force; band; ship crew; bodyguard cohortalinus_A = mkA "cohortalinus" "cohortalina" "cohortalinum" ; -- [DWXES] :: of/pertaining to an imperial/praetorian bodyguard (cohort); cohortalis_A = mkA "cohortalis" "cohortalis" "cohortale" ; -- [XWXIO] :: |of/connected with a military/praetorian cohort/company/guard; @@ -10805,12 +11453,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cohum_N_N = mkN "cohum" ; -- [BSXEO] :: |vault/shapelessness/emptiness (of sky/heavens); cohumido_V2 = mkV2 (mkV "cohumidare") ; -- [XXXFO] :: wet all over; moisten; cohurnus_M_N = mkN "cohurnus" ; -- [XDXCO] :: |elevated/tragic/solemn style; tragic poetry; tragic stage; + coicio_V2 = mkV2 (mkV "coicere" "coicio" "cojeci" "cojectus ") ; -- [XXXAO] :: |throw/cast/fling (into area); devote/pour (money); thrust, involve; insert; coillum_N_N = mkN "coillum" ; -- [DEXFS] :: innermost part of house where the_Lares were worshiped; + coimbibo_V2 = mkV2 (mkV "coimbibere" "coimbibo" "coimbibi" nonExist) ; -- [DXXFS] :: drink/imbibe together/along with/at same time; coincidentia_F_N = mkN "coincidentia" ; -- [GXXEK] :: coincidence; coincideo_V = mkV "coincidere" ; -- [GXXEK] :: coincide; + coincido_V = mkV "coincidere" "coincido" "coincidi" "coincisus "; -- [FXXEE] :: coincide; coinquinatio_F_N = mkN "coinquinatio" "coinquinationis " feminine ; -- [DEXES] :: polluting, defiling; pollution; coinquinatus_A = mkA "coinquinatus" "coinquinata" "coinquinatum" ; -- [DXXFS] :: polluted, contaminated, tainted; coinquino_V2 = mkV2 (mkV "coinquinare") ; -- [XXXCO] :: befoul/pollute/defile wholly (immorality); contaminate/taint/infect (w/disease); + coinquio_V2 = mkV2 (mkV "coinquire" "coinquio" nonExist nonExist) ; -- [XXXIO] :: cut back, prune; cut off, cut down (L+S); + coinquo_V2 = mkV2 (mkV "coinquere" "coinquo" nonExist nonExist) ; -- [XXXIO] :: cut back, prune; cut off, cut down (L+S); + cointelligo_V2 = mkV2 (mkV "cointelligere" "cointelligo" nonExist nonExist) ; -- [FXXEE] :: understand; presume; coitio_F_N = mkN "coitio" "coitionis " feminine ; -- [XSXCO] :: |combination; physical/chemical union of elements; (late) sexual intercourse; coitus_M_N = mkN "coitus" "coitus " masculine ; -- [XXXBO] :: |union, sexual intercourse; fertilization; gathering/collection (fluid/pus); coix_F_N = mkN "coix" "coicis " feminine ; -- [XAANS] :: kind of Ethiopian palm; @@ -10833,6 +11487,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg colephium_N_N = mkN "colephium" ; -- [XXXEO] :: unidentified preparation of meat; choice/nourishing meat for athletes (L+S); colepium_N_N = mkN "colepium" ; -- [DXXES] :: |knuckle of beef/pork; coles_M_N = mkN "coles" "colis " masculine ; -- [XXXDO] :: stalk/stem; stem of a cabbage/lettuce/etc; cabbage/lettuce; quill; penis; + colesco_V = mkV "colescere" "colesco" "colui" "colitus "; -- [XXXCO] :: join/grow together; coalesce; close (wound); become unified/strong/established; coleus_M_N = mkN "coleus" ; -- [XBXCO] :: |testicles (usu.pl.) or scrotum; (rude); colias_M_N = mkN "colias" "coliae " masculine ; -- [XAXNO] :: coly-mackerel (Scomber colias); kind of tunny (L+S); colices_F_N = mkN "colices" "colicae " feminine ; -- [XBXEO] :: remedy for colic; @@ -10845,9 +11500,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg coliphium_N_N = mkN "coliphium" ; -- [XXXES] :: unidentified preparation of meat; choice/nourishing meat for athletes (L+S); colis_M_N = mkN "colis" "colis " masculine ; -- [XAXCO] :: stalk/stem; stem of a cabbage/lettuce/etc; cabbage/lettuce; quill; penis; colisatum_N_N = mkN "colisatum" ; -- [XXXNO] :: kind of vehicle; + collabasco_V = mkV "collabascere" "collabasco" nonExist nonExist; -- [XXXFO] :: waver/totter/become unsteady at same time; waver/totter with; collabefacto_V = mkV "collabefactare" ; -- [XXXFO] :: cause to topple over; make to reel/totter (L+S); overpower/subdue; melt (metal); collabefio_V = mkV "collabeferi" ; -- [XXXDO] :: collapse/break up; sink together; be overthrown politically/brought to ruin; collabello_V2 = mkV2 (mkV "collabellare") ; -- [XXXFO] :: make/form by putting lips together; + collabor_V = mkV "collabi" "collabor" "collapsus sum " ; -- [XXXBO] :: collapse, fall down/in ruin; fall in swoon/exhaustion/death; slip/slink (meet); collaboratio_F_N = mkN "collaboratio" "collaborationis " feminine ; -- [FXXEE] :: collaboration, working together; collaboro_V = mkV "collaborare" ; -- [DXXFS] :: labor/work with/together; collaceratus_A = mkA "collaceratus" "collacerata" "collaceratum" ; -- [XXXFS] :: torn to pieces; lacerated; @@ -10864,6 +11521,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg collacticius_M_N = mkN "collacticius" ; -- [XXXIS] :: foster-brother; one nourished at same breast; collactius_M_N = mkN "collactius" ; -- [XXXEO] :: foster-brother; one nourished at same breast; collaetor_V = mkV "collaetari" ; -- [DXXFS] :: rejoice together; + collambo_V2 = mkV2 (mkV "collambere" "collambo" "collambi" nonExist) ; -- [XXXEV] :: lick thoroughly; lap/lick up; suck (up), absorb; collapsio_F_N = mkN "collapsio" "collapsionis " feminine ; -- [DXXFS] :: precipitation, falling together; collare_N_N = mkN "collare" "collaris " neuter ; -- [XXXDO] :: collar, neckband; chain for neck (L+S); collaris_A = mkA "collaris" "collaris" "collare" ; -- [XBXFO] :: of/pertaining to/belonging to neck; @@ -10902,7 +11560,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg collector_M_N = mkN "collector" "collectoris " masculine ; -- [XXXIO] :: collector, one who collects; fellow student (L+S); collectorium_N_N = mkN "collectorium" ; -- [GXXEK] :: folder; collectum_N_N = mkN "collectum" ; -- [XXXNO] :: that which is collected; (food); collected sayings/writings (pl.); --- SLASHSTUFF collectus_A : A2 collectus, collecta -um, collectior -or -us, collectissimus -a -um -- [XXXEO] :: compact (of style), concise; restricted; contracted, narrow; shut (Ecc); + collectus_A = mkA "collectus" ; -- [XXXEO] :: compact (of style), concise; restricted; contracted, narrow; shut (Ecc); collectus_M_N = mkN "collectus" "collectus " masculine ; -- [XXXEO] :: heap/pile; accumulation (of liquid); collection; collega_C_N = mkN "collega" ; -- [XXXBO] :: colleague (in official/priestly office); associate, fellow (not official); collegatarius_M_N = mkN "collegatarius" ; -- [XLXEO] :: joint legatee; person bequeathed a legacy in common with others; @@ -10916,6 +11574,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg collegium_N_N = mkN "collegium" ; -- [GXXEK] :: college, school; collema_N_N = mkN "collema" "collematis " neuter ; -- [DXXFS] :: that which is glued/cemented together; colleprosus_M_N = mkN "colleprosus" ; -- [DXXFS] :: fellow-leper; + collesco_V = mkV "collescere" "collesco" "colluxi" nonExist; -- [DXXES] :: lighten up, become illuminated; become clear/intelligible; colleticus_A = mkA "colleticus" "colletica" "colleticum" ; -- [DXXFS] :: suitable for gluing/sticking together; colletis_F_N = mkN "colletis" "colletis " feminine ; -- [DAXFS] :: plant; collevo_V2 = mkV2 (mkV "collevare") ; -- [XXXDO] :: make (entirely) smooth; smooth; @@ -10927,10 +11586,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg collicia_F_N = mkN "collicia" ; -- [XAXDO] :: gutter/drain(pl.) between two inwardly-sloping roofs; gully; field-drain/runnel colliciaris_A = mkA "colliciaris" "colliciaris" "colliciare" ; -- [XAXFO] :: designed for making gullies; pertaining to water-channels (L+S); colliculus_M_N = mkN "colliculus" ; -- [XTXFO] :: hillock, small hill; + collido_V2 = mkV2 (mkV "collidere" "collido" "collisi" "collisus ") ; -- [XXXBO] :: strike/dash together; crush, batter, deform; set into conflict with each other; colliga_F_N = mkN "colliga" ; -- [XXXNS] :: place/cave for gathering natron (native sesquicarbonate of soda from dripping); colligate_Adv = mkAdv "colligate" ; -- [DXXES] :: connectedly, jointly; colligatio_F_N = mkN "colligatio" "colligationis " feminine ; -- [XGXCO] :: binding together; bond/connection; thing that binds/connects, band; conjunction; - colligo_V2 = mkV2 (mkV "colligare") ; -- [XXXBO] :: bind/tie/pack together/up, connect, unite/unify; fetter/bind; immobilize, stop; + colligo_V2 = mkV2 (mkV "colligere" "colligo" "collexi" "collectus ") ; -- [XXXFO] :: |obtain/acquire, amass; rally; recover; sum up; deduce, infer; compute, add up; collimitaneus_A = mkA "collimitaneus" "collimitanea" "collimitaneum" ; -- [DXXFS] :: bordering upon; (w/DAT); collimito_V = mkV "collimitare" ; -- [DXXES] :: border upon; (w/DAT); collimitor_V = mkV "collimitari" ; -- [DXXES] :: border upon; (w/DAT); @@ -10940,10 +11600,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg collineate_Adv = mkAdv "collineate" ; -- [DXXES] :: skillfully, artistically; in a straight/direct line; collineo_V2 = mkV2 (mkV "collineare") ; -- [XXXDO] :: align, direct, aim; direct in a straight line (L+S); collinio_V2 = mkV2 (mkV "colliniare") ; -- [XXXDO] :: align, direct, aim; direct in a straight line (L+S); + collino_V2 = mkV2 (mkV "collinere" "collino" "collevi" "collitus ") ; -- [XXXDO] :: besmear, smear over; soil, pollute, defile; collinus_A = mkA "collinus" "collina" "collinum" ; -- [XXXDO] :: of/belonging to/pertaining to hills; found/growing on hill (L+S); hilly, hill-; colliphium_N_N = mkN "colliphium" ; -- [XXXES] :: unidentified preparation of meat; choice/nourishing meat for athletes (L+S); + colliquefacio_V2 = mkV2 (mkV "colliquefacere" "colliquefacio" "colliquefeci" "colliquefactus ") ; -- [XSXEO] :: melt, liquefy; dissolve; colliquefactus_A = mkA "colliquefactus" "colliquefacta" "colliquefactum" ; -- [XSXES] :: made fluid, liquefied, melted; dissolved; colliquefio_V = mkV "colliqueferi" ; -- [XSXEO] :: be/become melted/liquefied/dissolved; (colliquefacio PASS); + colliquesco_V2 = mkV2 (mkV "colliquescere" "colliquesco" "colliqui" nonExist) ; -- [XXXDO] :: melt, liquefy (w/in+ACC); turn into by liquefying; melt along with; dissolve; colliquia_F_N = mkN "colliquia" ; -- [XAXDO] :: gutter/drain (pl.) between two inwardly-sloping roofs; gully; field-drain/runnel colliquiarium_N_N = mkN "colliquiarium" ; -- [XTXFO] :: contrivance (pl.) for reliving air-pressure in water pipes; collis_M_N = mkN "collis" "collis " masculine ; -- [XXXBO] :: hill, hillock, eminence, hill-top; mound; high ground; mountains (pl.) (poetic); @@ -10958,6 +11621,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg collocutorium_N_N = mkN "collocutorium" ; -- [FXXEE] :: parlor, visiting room; collocutorius_A = mkA "collocutorius" "collocutoria" "collocutorium" ; -- [GXXEK] :: of conversation; colloquium_N_N = mkN "colloquium" ; -- [XXXBO] :: talk, conversation; colloquy/discussion; interview; meeting/conference; parley; + colloquor_V = mkV "colloqui" "colloquor" "collocutus sum " ; -- [XXXBO] :: talk/speak to/with; talk together/over; converse; discuss; confer, parley; collubuit_V0 = mkV0 "collubuit" ; -- [XXXCO] :: it pleases/is very agreeable; (IMPERS PERFDEF perfect form has present sense); collubus_M_N = mkN "collubus" ; -- [XXXEO] :: cost of exchange, agio; discount/fee to change money/make change; coin; colluceo_V = mkV "collucere" ; -- [XXXCO] :: shine brightly, light up (with fire); reflect light, shine, be lit up; glitter; @@ -10966,10 +11630,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg colluctor_M_N = mkN "colluctor" "colluctoris " masculine ; -- [DXXFS] :: wrestler; antagonist, adversary; colluctor_V = mkV "colluctari" ; -- [XXXCO] :: struggle physically; wrestle/contend (with); struggle/fight against (adversity); colludium_N_N = mkN "colludium" ; -- [DXXDS] :: sporting, playing together; secret, deceptive understanding, collusion; + colludo_V = mkV "colludere" "colludo" "collusi" "collusus "; -- [XXXCO] :: play/sport together/with; (also) make sport; act in collusion (with); collugeo_V = mkV "collugere" ; -- [DXXFS] :: lament; grieve together; collum_N_N = mkN "collum" ; -- [XBXAO] :: neck; throat; head and neck; severed head; upper stem (flower); mountain ridge; collumino_V2 = mkV2 (mkV "colluminare") ; -- [XXXFO] :: illuminate; collumnela_F_N = mkN "collumnela" ; -- [FXXCE] :: small column/pillar; pivot of oil-mill; stanchion of catapult; column tombstone; + colluo_V2 = mkV2 (mkV "colluere" "colluo" "collui" "collutus ") ; -- [XXXCO] :: wash/rinse out; wash/rinse away (impurities); wash together; use as a wash(?); collurchinatio_F_N = mkN "collurchinatio" "collurchinationis " feminine ; -- [XXXFO] :: gormandizing, gross gluttony; guzzling; collus_M_N = mkN "collus" ; -- [XBXAO] :: neck; throat; head and neck; severed head; upper stem (flower); mountain ridge; collusim_Adv = mkAdv "collusim" ; -- [XXXFO] :: in collusion; @@ -10993,7 +11659,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg collyriolum_N_N = mkN "collyriolum" ; -- [DBXFS] :: small suppository; packing; pessary/tent; collyris_F_N = mkN "collyris" "collyridis " feminine ; -- [DXXDS] :: roll/cake; head-dress of women; plant (also called malva erratica); collyrium_N_N = mkN "collyrium" ; -- [XBXCO] :: eye-salve; suppository; packing; pessary/tent (contraceptive); shaft/pillar; - colo_V2 = mkV2 (mkV "colare") ; -- [XTXCO] :: strain/filter (liquid), clarify; purify; remove solids by filter; wash (gold); + colo_V2 = mkV2 (mkV "colere" "colo" "colui" "cultus ") ; -- [XXXAO] :: |honor, cherish, worship; tend, take care of; adorn, dress, decorate, embellish; colobathrarius_M_N = mkN "colobathrarius" ; -- [DXXFS] :: stilt-walker, one who walks on stilts; colobicus_A = mkA "colobicus" "colobica" "colobicum" ; -- [DXXFS] :: mutilated; colobium_N_N = mkN "colobium" ; -- [DXXES] :: undershirt, undergarment with short sleeves; vest (British); @@ -11002,9 +11668,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg colocasia_F_N = mkN "colocasia" ; -- [XAEDO] :: Egyptian bean (lily); (plant/fruit); colocasium_N_N = mkN "colocasium" ; -- [XAEDO] :: Egyptian bean (lily) (pl.); (plant/fruit); colocyntha_F_N = mkN "colocyntha" ; -- [XAXFO] :: kind of gourd; (rude of os cunnilingi); (purgative); + colocynthis_1_N = mkN "colocynthis" "colocynthidis" feminine ; -- [XAXNO] :: gourd plant/fruit, bitter apple, colocynth (Citrullus colocynthis); (purgative); + colocynthis_2_N = mkN "colocynthis" "colocynthidos" feminine ; -- [XAXNO] :: gourd plant/fruit, bitter apple, colocynth (Citrullus colocynthis); (purgative); colocynthis_F_N = mkN "colocynthis" "colocynthidis " feminine ; -- [XAXNO] :: gourd plant/fruit, bitter apple, colocynth (Citrullus colocynthis); (purgative); --- TODO colocynthis_N : N1 colocynthis, colocynthidos/is -- F -- [XAXNO] :: gourd plant/fruit, bitter apple, colocynth (Citrullus colocynthis); (purgative); --- TODO colocyntis_N : N1 colocyntis, colocyntidos/is -- F -- [EAXFW] :: gourd plant/fruit, bitter apple, colocynth (Citrullus colocynthis); (purgative); + colocyntis_1_N = mkN "colocyntis" "colocyntidis" feminine ; -- [EAXFW] :: gourd plant/fruit, bitter apple, colocynth (Citrullus colocynthis); (purgative); + colocyntis_2_N = mkN "colocyntis" "colocyntidos" feminine ; -- [EAXFW] :: gourd plant/fruit, bitter apple, colocynth (Citrullus colocynthis); (purgative); coloephium_N_N = mkN "coloephium" ; -- [XXXEO] :: unidentified preparation of meat; choice/nourishing meat for athletes (L+S); colon_N_N = mkN "colon" "coli " neuter ; -- [XPXDO] :: part of a line of verse, metrical entity; clause of a period; line, fragment; colona_F_N = mkN "colona" ; -- [XAXDO] :: female farmer/tenant/cultivator of land; farmer's wife; countrywoman (L+S); @@ -11019,14 +11687,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg coloniarius_M_N = mkN "coloniarius" ; -- [DXXES] :: native of a colony; colonial; colonicus_A = mkA "colonicus" "colonica" "colonicum" ; -- [XXXCO] :: of/belonging to/prescribed for colony, colonial; (troops); common/farm (sheep); colonus_M_N = mkN "colonus" ; -- [XAXBO] :: farmer, cultivator, tiller; tenant-farmer; settler, colonist; inhabitant; + colophon_1_N = mkN "colophon" "colophonis" masculine ; -- [XXXES] :: summit; finishing/crowning touch/stroke; + colophon_2_N = mkN "colophon" "colophonos" masculine ; -- [XXXES] :: summit; finishing/crowning touch/stroke; colophon_M_N = mkN "colophon" "colophonis " masculine ; -- [XXXEO] :: summit; finishing/crowning touch/stroke; --- TODO colophon_N : N1 colophon, colophonos/is -- M -- [XXXES] :: summit; finishing/crowning touch/stroke; color_M_N = mkN "color" "coloris " masculine ; -- [XXXAO] :: color; pigment; shade/tinge; complexion; outward appearance/show; excuse/pretext colorabilis_A = mkA "colorabilis" "colorabilis" "colorabile" ; -- [DDXFS] :: chromatic; (?) (divided tetrachord into 2 intervals of 1 semitone and 1 of 3); colorate_Adv = mkAdv "colorate" ; -- [XGXFS] :: in a specious or plausible manner; coloratilis_A = mkA "coloratilis" "coloratilis" "coloratile" ; -- [XXXFO] :: sunburnt, brown, tanned; colorator_M_N = mkN "colorator" "coloratoris " masculine ; -- [XXXEO] :: colorer; house-painter(?); polisher (L+S); --- SLASHSTUFF coloratus_A : A2 coloratus, colorata -um, coloratior -or -us, coloratissimus -a -um -- [XXXCO] :: colored; sunburnt/tanned/not pallid; dark complected/swarthy, colored; specious; + coloratus_A = mkA "coloratus" ; -- [XXXCO] :: colored; sunburnt/tanned/not pallid; dark complected/swarthy, colored; specious; coloreus_A = mkA "coloreus" "colorea" "coloreum" ; -- [DXXES] :: multi-colored, variegated; colorius_A = mkA "colorius" "coloria" "colorium" ; -- [XXXEO] :: multi-colored, variegated; coloro_V2 = mkV2 (mkV "colorare") ; -- [XXXBO] :: color; paint; dye; tan; make darker; give deceptive color/gloss/appearance to; @@ -11089,11 +11758,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg colustrum_N_N = mkN "colustrum" ; -- [XAXCO] :: colustrum/beestings (first milk from a cow after calving); (term of endearment); coluteum_N_N = mkN "coluteum" ; -- [XAXFO] :: pods (pl.) of an unidentified tree (?); pod-like fruit (L+S); coluthium_N_N = mkN "coluthium" ; -- [XAXNO] :: kind of gastropod mollusk; kind of snail of dark color (L+S); --- TODO colymbas_N : N1 colymbas, colymbados/is -- F -- [XXXEO] :: pickled olive; (swimming in brine L+S); + colymbas_1_N = mkN "colymbas" "colymbadis" feminine ; -- [XXXEO] :: pickled olive; (swimming in brine L+S); + colymbas_2_N = mkN "colymbas" "colymbados" feminine ; -- [XXXEO] :: pickled olive; (swimming in brine L+S); colymbus_M_N = mkN "colymbus" ; -- [DXXES] :: swimming pool/bath; colyphium_N_N = mkN "colyphium" ; -- [XXXEO] :: unidentified preparation of meat; choice/nourishing meat for athletes (L+S); --- TODO colyx_N : N1 colyx, colycos/is -- F -- [XXXNS] :: cavern where natron (native sesquicarbonate of soda/alkali) is distilling/drips; - com_Abl_Prep = mkPrep "com" Abl ; -- [AXXAC] :: |under command/at the head of; having/containing/including; using/by means of; + colyx_1_N = mkN "colyx" "colycis" feminine ; -- [XXXNS] :: cavern where natron (native sesquicarbonate of soda/alkali) is distilling/drips; + colyx_2_N = mkN "colyx" "colycos" feminine ; -- [XXXNS] :: cavern where natron (native sesquicarbonate of soda/alkali) is distilling/drips; + com_Abl_Prep = mkPrep "com" abl ; -- [AXXAC] :: |under command/at the head of; having/containing/including; using/by means of; com_Adv = mkAdv "com" ; -- [XXXFO] :: together; coma_F_N = mkN "coma" ; -- [XXXBO] :: hair, hair of head, mane of animal; wool, fleece; foliage, leaves; rays; coma_N_N = mkN "coma" "comatis " neuter ; -- [GBXEK] :: coma; @@ -11104,13 +11775,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg comatorius_A = mkA "comatorius" "comatoria" "comatorium" ; -- [XXXFO] :: for hair; [~ acus => hair-pin]; comatus_A = mkA "comatus" "comata" "comatum" ; -- [XXXCO] :: long-haired, having (long) hair; leafy; [Gallia Comata => Transalpine Gaul]; comatus_M_N = mkN "comatus" ; -- [DXXES] :: one having long hair; (esp. as applied to Frankish royals); + comaudio_V2 = mkV2 (mkV "comaudire" "comaudio" "comaudivi" "comauditus ") ; -- [XXXEO] :: confine to narrow space, cramp; make narrower; narrow/limit scope/application; combardus_A = mkA "combardus" "combarda" "combardum" ; -- [XXXFO] :: thoroughly stupid; combenno_M_N = mkN "combenno" "combennonis " masculine ; -- [XXFFO] :: those riding together in a benna (kind of (wickerwork?) carriage) (Gallic); combibo_M_N = mkN "combibo" "combibonis " masculine ; -- [XXXFO] :: drinking companion/buddy; --- TODO combibo_V : V2 combibo, combibere, combibi, - -- Declension: 3rd -- Comment: [XXXBO] :: drink completely/together/up; hold back (tears); absorb, soak in; swallow up; + combibo_V2 = mkV2 (mkV "combibere" "combibo" "combibi" nonExist ) ; -- [XXXBO] :: drink completely/together/up; hold back (tears); absorb, soak in; swallow up; combinatio_F_N = mkN "combinatio" "combinationis " feminine ; -- [DXXFS] :: joining two by two; combino_V2 = mkV2 (mkV "combinare") ; -- [DXXES] :: unite, combine; combretum_N_N = mkN "combretum" ; -- [XAXNO] :: plant (unidentified); kind of rush (L+S); + combullio_V2 = mkV2 (mkV "combullire" "combullio" "combullivi" "combullitus ") ; -- [XXXFO] :: boil fully/thoroughly; + comburo_V2 = mkV2 (mkV "comburere" "comburo" "combussi" "combustus ") ; -- [XXXBO] :: burn up/away; (w/love); consume/destroy w/fire; reduce to ash, cremate; scald; combustibilis_A = mkA "combustibilis" "combustibilis" "combustibile" ; -- [GXXEK] :: combustible; combustibilitas_F_N = mkN "combustibilitas" "combustibilitatis " feminine ; -- [GXXEK] :: combustibility; combustio_F_N = mkN "combustio" "combustionis " feminine ; -- [DSXFS] :: burning, consuming; @@ -11148,7 +11822,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg comicus_M_N = mkN "comicus" ; -- [XDXCO] :: comic actor, comedian; writer of comedy; comic poet; comincommodus_A = mkA "comincommodus" "comincommoda" "comincommodum" ; -- [XXXFO] :: agreeable/disagreeable; (facetious combination of commodus and incommodus); cominus_Adv = mkAdv "cominus" ; -- [XWXDO] :: hand to hand (fight), in close combat/quarters; close at hand; in presence of; --- SLASHSTUFF comis_A : A2 comis, come, comior -or -us, comissimus -a -um -- [XXXBO] :: courteous/kind/obliging/affable/gracious; elegant, cultured, having good taste; + comis_A = mkA "comis" ; -- [XXXBO] :: courteous/kind/obliging/affable/gracious; elegant, cultured, having good taste; comisabundus_A = mkA "comisabundus" "comisabunda" "comisabundum" ; -- [XXXEO] :: carousing, revelling, banqueting; holding a riotous procession (L+S); comisatio_F_N = mkN "comisatio" "comisationis " feminine ; -- [XXXCO] :: carousing, merry-making, feasting, revelry; Bacchanal procession/rioting (L+S); comisator_M_N = mkN "comisator" "comisatoris " masculine ; -- [XXXCO] :: reveller, carouser; one who joins a festive procession (L+S); @@ -11161,7 +11835,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg comitabilis_A = mkA "comitabilis" "comitabilis" "comitabile" ; -- [DXXFS] :: attending, accompanying; comitas_F_N = mkN "comitas" "comitatis " feminine ; -- [XXXCO] :: politeness, courtesy; kindness, generosity, friendliness; good taste, elegance; comitatensis_A = mkA "comitatensis" "comitatensis" "comitatense" ; -- [DLXES] :: of/pertaining to dignity/office of courtiers; court-; --- SLASHSTUFF comitatus_A : A2 comitatus, comitata -um, comitatior -or -us, comitatissimus -a -um -- [XXXCO] :: accompanied (by/in time); (COMP) better attended, having a larger retinue; + comitatus_A = mkA "comitatus" ; -- [XXXCO] :: accompanied (by/in time); (COMP) better attended, having a larger retinue; comitatus_M_N = mkN "comitatus" "comitatus " masculine ; -- [GXXEK] :: ||county (Cal); comiter_Adv =mkAdv "comiter" "comius" "comissime" ; -- [XXXCO] :: courteously/kindly/civilly, readily; in friendly/sociable manner; w/good will; comitessa_F_N = mkN "comitessa" ; -- [ELXCM] :: Countess, Lady; wife of a Count/Comes; (or widow or daughter); @@ -11183,6 +11857,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg comma_F_N = mkN "comma" ; -- [XGXEO] :: phrase, part of a line; division of a period (L+S); comma, punctuation mark; commaceratio_F_N = mkN "commaceratio" "commacerationis " feminine ; -- [DXXFS] :: dissolution, maceration, steeping to soften; commacero_V2 = mkV2 (mkV "commacerare") ; -- [DXXES] :: macerate, soften by steeping in liquid; + commacesco_V = mkV "commacescere" "commacesco" nonExist nonExist; -- [DXXFS] :: grow lean; commaculo_V2 = mkV2 (mkV "commaculare") ; -- [XXXCO] :: stain deeply, pollute, defile; contaminate, defile morally; sully (reputation); commadeo_V = mkV "commadere" ; -- [XXXFO] :: become tender or sodden; become very soft (L+S); commagister_M_N = mkN "commagister" ; -- [XXXIO] :: joint-master (of a collegium); @@ -11190,6 +11865,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg commalleo_V2 = mkV2 (mkV "commalleare") ; -- [XXXFO] :: weld on, attach; commalliolo_V2 = mkV2 (mkV "commalliolare") ; -- [XXXFO] :: weld on, attach; commandaticius_A = mkA "commandaticius" "commandaticia" "commandaticium" ; -- [XXXDO] :: containing a recommendation/introduction (letters); commendatory (L+S); + commando_V2 = mkV2 (mkV "commandere" "commando" "commandi" "commansus ") ; -- [DXXES] :: chew; (chew thoroughly/completely); commanducatio_F_N = mkN "commanducatio" "commanducationis " feminine ; -- [XXXFO] :: chewing, mastication; commanduco_V2 = mkV2 (mkV "commanducare") ; -- [XXXEO] :: chew up, chew/masticate thoroughly; chew to pieces (L+S); commanducor_V = mkV "commanducari" ; -- [XXXEO] :: chew up, chew/masticate thoroughly; chew to pieces (L+S); @@ -11209,12 +11885,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg commastico_V2 = mkV2 (mkV "commasticare") ; -- [DXXFS] :: chew; commaterr_F_N = mkN "commaterr" "commatris " feminine ; -- [EEXFE] :: godmother; female sponsor; commaticus_A = mkA "commaticus" "commatica" "commaticum" ; -- [DEXES] :: cut up, divided. short; + commaturesco_V = mkV "commaturescere" "commaturesco" "commaturui" nonExist; -- [XXXFO] :: mature; ripen thoroughly/completely; commatus_A = mkA "commatus" "commata" "commatum" ; -- [FXXEZ] :: divided(?); commeabilis_A = mkA "commeabilis" "commeabilis" "commeabile" ; -- [DXXES] :: permeable, that is easily passed through; that easily passes through; commeatalis_A = mkA "commeatalis" "commeatalis" "commeatale" ; -- [DXXES] :: of/pertaining to provisions/supplies; with/accompanying provisions; commeator_M_N = mkN "commeator" "commeatoris " masculine ; -- [XXXFO] :: go-between, messenger; one who goes to and fro (L+S); epithet of Mercury; commeatus_M_N = mkN "commeatus" "commeatus " masculine ; -- [XWXBO] :: supplies/provisions; goods; voyage; passage; convoy/caravan; furlough/leave; commeditor_V = mkV "commeditari" ; -- [XXXEO] :: study, practice; imitate (poetic); impress carefully on one's mind (L+S); + commeio_V2 = mkV2 (mkV "commeiere" "commeio" "commixi" "commictus ") ; -- [XXXEO] :: defile with urine, wet; soil, defile; have sexual intercourse (Adams); commeleto_V = mkV "commeletare" ; -- [XXXFO] :: exercise, practice assiduously; commembratus_A = mkA "commembratus" "commembrata" "commembratum" ; -- [DXXFS] :: grown up together; united; commemorabilis_A = mkA "commemorabilis" "commemorabilis" "commemorabile" ; -- [XXXEO] :: memorable, remarkable, worth mentioning; @@ -11224,7 +11902,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg commemoratorium_N_N = mkN "commemoratorium" ; -- [DXXFS] :: means of remembrance; commemoro_V2 = mkV2 (mkV "commemorare") ; -- [XXXBO] :: recall (to self/other); keep in mind, remember; mention/relate; place on record; commenda_F_N = mkN "commenda" ; -- [FEXFE] :: commendam, temporal income without spiritual obligation, layman's benefice; --- SLASHSTUFF commendabilis_A : A2 commendabilis, commendabile, commendabilior -or -us, commendabilissimus -a -u -- [XXXDO] :: praiseworthy, notable; be commended, commendable; + commendabilis_A = mkA "commendabilis" ; -- [XXXDO] :: praiseworthy, notable; be commended, commendable; commendatarius_A = mkA "commendatarius" "commendataria" "commendatarium" ; -- [FEXFE] :: holding benefice in commendam; (by clerk/layman til proper priest provided); commendaticius_A = mkA "commendaticius" "commendaticia" "commendaticium" ; -- [XXXDO] :: containing a recommendation/introduction (letters); commendatory (L+S); commendatio_F_N = mkN "commendatio" "commendationis " feminine ; -- [XXXBO] :: entrusting, committal; recommendation, praise; excellence; approval, esteem; @@ -11233,7 +11911,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg commendator_M_N = mkN "commendator" "commendatoris " masculine ; -- [XXXFO] :: reference, one who recommends; recommended, commender; commendatorius_A = mkA "commendatorius" "commendatoria" "commendatorium" ; -- [DXXES] :: commendatory; serving for/as commendation/recommendation; commendatrix_F_N = mkN "commendatrix" "commendatricis " feminine ; -- [XXXEO] :: reference, one who recommends (female); --- SLASHSTUFF commendatus_A : A2 commendatus, commendata -um, commendatior -or -us, commendatissimus -a -um -- [XXXCO] :: recommended (for attention/favor); entrusted; acceptable, agreeable, suitable; + commendatus_A = mkA "commendatus" ; -- [XXXCO] :: recommended (for attention/favor); entrusted; acceptable, agreeable, suitable; commendo_V2 = mkV2 (mkV "commendare") ; -- [XXXAO] :: entrust, give in trust; commit; recommend, commend to; point out, designate; commensalis_M_N = mkN "commensalis" "commensalis " masculine ; -- [FXXFE] :: table companion; commensurabilis_A = mkA "commensurabilis" "commensurabilis" "commensurabile" ; -- [DSXFS] :: commensurable, having a common measure; @@ -11250,6 +11928,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg commentatio_F_N = mkN "commentatio" "commentationis " feminine ; -- [XXXCO] :: thinking out, mental preparation; study; piece of reasoning/argument; textbook; commentator_M_N = mkN "commentator" "commentatoris " masculine ; -- [XXXDO] :: inventor, deviser; contriver (L+S); author; interpreter (of law); commenticius_A = mkA "commenticius" "commenticia" "commenticium" ; -- [XXXCO] :: invented, devised, improvised; imaginary; fabricated/fictitious; forged, false; + commentior_V = mkV "commentiri" "commentior" "commentitus sum " ; -- [XXXDO] :: state falsely; invent/devise a falsehood/lie (L+S); commentitius_A = mkA "commentitius" "commentitia" "commentitium" ; -- [XXXCS] :: invented, devised, improvised; imaginary; fabricated/fictitious; forged, false; commento_V2 = mkV2 (mkV "commentare") ; -- [XXXES] :: delineate, sketch; (humorously) demonstrate on face (cudgel/beat); commentor_M_N = mkN "commentor" "commentoris " masculine ; -- [XTXEO] :: inventor, deviser; machinist (L+S); @@ -11266,8 +11945,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg commereor_V = mkV "commereri" ; -- [XXXCO] :: merit fully, deserve, incur, earn (punishment/reward); be guilty of, perpetuate; commers_F_N = mkN "commers" "commercis " feminine ; -- [XXXFO] :: friendly intercourse; commetaculum_N_N = mkN "commetaculum" ; -- [DEXES] :: rods (pl.) carried by flamens/priests; + commetior_V = mkV "commetiri" "commetior" "commensus sum " ; -- [XSXDO] :: measure; pace out/off; compare (in measurement); commeto_V = mkV "commetare" ; -- [XXXDO] :: go constantly/frequently; come and go; survey thoroughly (facetious); --- IGNORED commi_N : N1 commi, undeclined -- N -- [XAXCO] :: gum, vicid secretion from trees; + commi_N = constN "commi" neuter ; -- [XAXCO] :: gum, vicid secretion from trees; commictilis_A = mkA "commictilis" "commictilis" "commictile" ; -- [XXXFO] :: filthy, foul; (term of abuse); despicable, vile, deserves to be defiled (L+S); commictus_A = mkA "commictus" "commicta" "commictum" ; -- [XXXES] :: filthy, foul; (term of abuse); commigratio_F_N = mkN "commigratio" "commigrationis " feminine ; -- [XXXFO] :: removal (to a new place); wandering (L+S); migration; @@ -11281,9 +11961,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg comminativus_A = mkA "comminativus" "comminativa" "comminativum" ; -- [DXXFS] :: threatening, menacing; comminator_M_N = mkN "comminator" "comminatoris " masculine ; -- [DXXFS] :: menace, intimidator, threatener; comminatus_A = mkA "comminatus" "comminata" "comminatum" ; -- [DXXES] :: threatened, menaced; + commingo_V2 = mkV2 (mkV "commingere" "commingo" "comminxi" "comminctus ") ; -- [XXXDS] :: pollute, defile; + comminisco_V2 = mkV2 (mkV "comminiscere" "comminisco" "comminisci" "commentus ") ; -- [XXXBO] :: devise, think up, invent; fabricate; state/contrive falsely, allege, pretend; + comminiscor_V = mkV "comminisci" "comminiscor" "commentus sum " ; -- [XXXBO] :: devise, think up, invent; fabricate; state/contrive falsely, allege, pretend; comminister_M_N = mkN "comminister" ; -- [FEXFE] :: fellow minister; commino_V2 = mkV2 (mkV "comminare") ; -- [XXXFO] :: drive (cattle) together, round up; comminor_V = mkV "comminari" ; -- [XXXCO] :: threaten, make a threat; + comminuo_V2 = mkV2 (mkV "comminuere" "comminuo" "comminui" "comminutus ") ; -- [XXXBO] :: break/crumble into pieces, shatter; break up; crush, smash, pulverize; lessen; comminus_Adv = mkAdv "comminus" ; -- [XWXBO] :: hand to hand (fight), in close combat/quarters; close at hand; in presence of; comminutus_A = mkA "comminutus" "comminuta" "comminutum" ; -- [XXXCO] :: broken, shattered; smashed; commis_F_N = mkN "commis" "commis " feminine ; -- [XAXCO] :: gum, vicid secretion from trees; @@ -11295,6 +11979,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg commiscuus_A = mkA "commiscuus" "commiscua" "commiscuum" ; -- [DXXFS] :: common; commiseratio_F_N = mkN "commiseratio" "commiserationis " feminine ; -- [XGXEO] :: pathos, rousing of pity (esp. in a speech); part of oration exciting compassion; commisereor_V = mkV "commisereri" ; -- [XXXEO] :: pity; excite compassion; show pity at; + commiseresco_V = mkV "commiserescere" "commiseresco" nonExist nonExist; -- [XXXCO] :: have/show pity/sympathy, commiserate; + commiseresct_V0 = mkV0 "commiseresct"; -- [XXXDO] :: one pities/sympathizes/feels sorry for (w/ACC or GEN); thou have pity upon; commiseret_V0 = mkV0 "commiseret" ; -- [XXXEO] :: one pities/feels sorry for (w/ACC or GEN); commisero_M_N = mkN "commisero" "commiseronis " masculine ; -- [DXXES] :: companion in misfortune; commiseror_V = mkV "commiserari" ; -- [XXXCO] :: feel pity/compassion for; sympathize with; seek/arouse pity/sympathy for; bewail @@ -11314,6 +12000,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg commistio_F_N = mkN "commistio" "commistionis " feminine ; -- [DXXES] :: mixture; mixing, mingling; sexual intercourse; commistura_F_N = mkN "commistura" ; -- [XXXFO] :: mixture; mixing, mingling (L+S); commitigo_V2 = mkV2 (mkV "commitigare") ; -- [XXXFO] :: soften; make soft (L+S); mellow; + committo_V2 = mkV2 (mkV "committere" "committo" "commisi" "commissus ") ; -- [XXXAO] :: |engage (battle), set against; begin/start; bring about; commit; incur; forfeit; commixtim_Adv = mkAdv "commixtim" ; -- [DXXFS] :: jointly, in a mixed manner; commixtio_F_N = mkN "commixtio" "commixtionis " feminine ; -- [XXXEO] :: mixture; mixing, mingling; sexual intercourse; commixtura_F_N = mkN "commixtura" ; -- [XXXFO] :: mixture; mixing, mingling (L+S); @@ -11333,8 +12020,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg commodulum_N_N = mkN "commodulum" ; -- [DXXFS] :: small advantage/profit; commodum_Adv = mkAdv "commodum" ; -- [XXXCO] :: just, a very short time before; that/this very minute; even now, at this moment; commodum_N_N = mkN "commodum" ; -- [XXXBO] :: convenience, advantage, benefit; interest, profit, yield; wages, reward; gift; --- SLASHSTUFF commodus_A : A2 commodus, commoda -um, commodior -or -us, commodissimus -a -um -- [XXXAO] :: |standard, full weight/size/measure; desirable, agreeable; good (health/news); + commodus_A = mkA "commodus" ; -- [XXXAO] :: |standard, full weight/size/measure; desirable, agreeable; good (health/news); + commoenio_V2 = mkV2 (mkV "commoenire" "commoenio" "commoenivi" "commoenitus ") ; -- [XWXCO] :: strongly fortify, entrench; strengthen, secure, reinforce; commoetaculum_N_N = mkN "commoetaculum" ; -- [XEXEO] :: small rod carried by flamines/priests and used in sacrifices; + commolior_V = mkV "commoliri" "commolior" "commolitus sum " ; -- [XXXDO] :: set in motion; move with an effort; put together, construct; + commollio_V2 = mkV2 (mkV "commollire" "commollio" nonExist nonExist) ; -- [DXXFS] :: soften; + commolo_V2 = mkV2 (mkV "commolere" "commolo" "commolui" "commolitus ") ; -- [XXXEO] :: pound, grind down/thoroughly; + commonefacio_V2 = mkV2 (mkV "commonefacere" "commonefacio" "commonefeci" "commonefactus ") ; -- [XXXCO] :: recall, remember; call to mind; remind (forcibly), warn, admonish; impress upon; commonefio_V = mkV "commoneferi" ; -- [XXXCO] :: be recalled/remembered/reminded; be warned/admonished; (commonefacio PASS); commoneo_V = mkV "commonere" ; -- [XXXCO] :: remind (forcibly), warn; bring to recollection (L+S); impress upon one; commonitio_F_N = mkN "commonitio" "commonitionis " feminine ; -- [XXXEO] :: reminder; earnest reminding (L+S); admonition; @@ -11344,6 +12036,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg commonstro_V2 = mkV2 (mkV "commonstrare") ; -- [XXXCO] :: point out (fully/distinctly), show where; make known, declare, reveal; commoratio_F_N = mkN "commoratio" "commorationis " feminine ; -- [XXXCO] :: stay (at a place), tarrying, abiding; delay; dwelling on a point; residence; commordeo_V2 = mkV2 (mkV "commordere") ; -- [XXXEO] :: bite/snap at; (literally/figuratively); (sharply/eagerly L+S); + commorior_V = mkV "commori" "commorior" "commortuus sum " ; -- [XXXCO] :: die together/with; work oneself to death (with); perish/be destroyed together; commoro_V = mkV "commorare" ; -- [DXXCS] :: stop/stay/remain, abide; linger, delay; detain, be delayed (menses); dwell on; commoror_V = mkV "commorari" ; -- [XXXBO] :: stop/stay/remain, abide; linger, delay; detain, be delayed (menses); dwell on; commorsico_V2 = mkV2 (mkV "commorsicare") ; -- [XXXEO] :: bite all over; devour (with eyes); bite to pieces (L+S); @@ -11355,7 +12048,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg commotiuncula_F_N = mkN "commotiuncula" ; -- [XXXFO] :: mild agitation/upset/commotion; slight case of disease, indisposition (L+S); commoto_V2 = mkV2 (mkV "commotare") ; -- [DXXDS] :: move very violently; agitate; commotor_M_N = mkN "commotor" "commotoris " masculine ; -- [DXXFS] :: mover, one who sets in motion; --- SLASHSTUFF commotus_A : A2 commotus, commota -um, commotior -or -us, commotissimus -a -um -- [XXXCO] :: excited, nervous; frenzied/deranged; angry/annoyed; temperamental; tempestuous; + commotus_A = mkA "commotus" ; -- [XXXCO] :: excited, nervous; frenzied/deranged; angry/annoyed; temperamental; tempestuous; commotus_M_N = mkN "commotus" "commotus " masculine ; -- [XXXFO] :: movement; moving, agitation (L+S); commovens_A = mkA "commovens" "commoventis"; -- [XXXFO] :: striking; rousing; that causes an impression; commoveo_V2 = mkV2 (mkV "commovere") ; -- [XXXAO] :: |waken; provoke; move (money/camp); produce; cause, start (war); raise (point); @@ -11377,6 +12070,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg communico_V2 = mkV2 (mkV "communicare") ; -- [XXXAO] :: |communicate, discuss, impart; make common cause; take common counsel, consult; communicor_V = mkV "communicari" ; -- [XXXDS] :: share; share/divide with/out; receive/take a share of; receive; join with; communio_F_N = mkN "communio" "communionis " feminine ; -- [XXXCO] :: community, mutual participation; association; sharing; fellowship; communion; + communio_V2 = mkV2 (mkV "communire" "communio" "communivi" "communitus ") ; -- [XWXCO] :: fortify strongly, entrench, barricade; strengthen, secure, reinforce; communis_A = mkA "communis" "communis" "commune" ; -- [XXXAO] :: |||shared/possessed/used by two/all parties; affecting whole state/community; communismus_M_N = mkN "communismus" ; -- [GXXEK] :: Communism; communista_M_N = mkN "communista" ; -- [GXXEK] :: Communist; @@ -11389,11 +12083,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg commurmuratio_F_N = mkN "commurmuratio" "commurmurationis " feminine ; -- [XXXEO] :: buzz, hum, murmur, confused noise of talking; general murmuring (L+S); commurmuro_V = mkV "commurmurare" ; -- [XXXDO] :: mutter, murmur; rumble; chatter/twitter (birds); commurmuror_V = mkV "commurmurari" ; -- [XXXDO] :: mutter, murmur; rumble; chatter/twitter (birds); + commuro_V2 = mkV2 (mkV "commurere" "commuro" "commussi" "commustus ") ; -- [XXXBO] :: burn up/away; (w/love); consume/destroy w/fire; reduce to ash, cremate; scald; commutabilis_A = mkA "commutabilis" "commutabilis" "commutabile" ; -- [XXXCO] :: changeable/variable; liable to reversal; plastic; adaptable (to adversary); commutatio_F_N = mkN "commutatio" "commutationis " feminine ; -- [XXXBO] :: change, reversal; upheaval; alteration; exchange, substitution; interchange; commutatus_M_N = mkN "commutatus" "commutatus " masculine ; -- [XXXFO] :: change; alteration; commuto_V2 = mkV2 (mkV "commutare") ; -- [XXXAO] :: change; alter wholly, rearrange, replace; transform; exchange, barter, sell; como_V = mkV "comare" ; -- [DXXES] :: be furnished/covered with hair; clothe/deck with hair/something hair-like; + como_V2 = mkV2 (mkV "comere" "como" "comsi" "comtus ") ; -- [XXXCS] :: arrange/do (hair); adorn, make beautiful; embellish; arrange in order, set out; comoedia_F_N = mkN "comoedia" ; -- [XDXCO] :: comedy (as form of drama/literature; comedy (work/play); comoedice_Adv = mkAdv "comoedice" ; -- [XDXEO] :: in a manner appropriate to comedy; as in comedy (L+S); comoedicus_A = mkA "comoedicus" "comoedica" "comoedicum" ; -- [XDXFO] :: comic, of comedy, pertaining to a comedy; @@ -11401,6 +12097,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg comoedus_M_N = mkN "comoedus" ; -- [XDXCO] :: comedian; comic actor; comoinis_A = mkA "comoinis" "comoinis" "comoine" ; -- [XXXES] :: |neutral, impartial (Mars); applicable on either side; same form for two cases; comosus_A = mkA "comosus" "comosa" "comosum" ; -- [XXXEO] :: having long or abundant hair; having many leaves (plant), leafy; + compaciscor_V = mkV "compacisci" "compaciscor" "compactus sum " ; -- [XXXFO] :: make an agreement/arrangement/compact; compaco_V2 = mkV2 (mkV "compacare") ; -- [DEXES] :: bring to peace; compacticius_A = mkA "compacticius" "compacticia" "compacticium" ; -- [DXXFS] :: agreed upon; compactilis_A = mkA "compactilis" "compactilis" "compactile" ; -- [XXXDO] :: joined, fastened/fitted/pressed/joined together; thick-set, compact; @@ -11431,6 +12128,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg comparativus_A = mkA "comparativus" "comparativa" "comparativum" ; -- [XGXCO] :: based on/involving consideration of relative merits; comparative; comparator_M_N = mkN "comparator" "comparatoris " masculine ; -- [XXXIO] :: buyer/purchaser, dealer; comparer (L+S); comparatus_M_N = mkN "comparatus" "comparatus " masculine ; -- [XSXIO] :: proportion; relation (L+S); + comparco_V2 = mkV2 (mkV "comparcere" "comparco" "compeperci" "comparsus ") ; -- [DXXCO] :: save, husband well, lay up; forbear/abstain/refrain from (w/INF), spare (w/DAT); compareo_V = mkV "comparere" ; -- [XXXBO] :: appear/come in sight; be visible/present/in evidence/clearly stated/forthcoming; comparilis_A = mkA "comparilis" "comparilis" "comparile" ; -- [DXXES] :: equal, like; comparo_V2 = mkV2 (mkV "comparare") ; -- [XXXAO] :: ||set up/establish/institute; arrange, dispose, settle; buy, acquire, secure; @@ -11438,6 +12136,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg compars_M_N = mkN "compars" "compartis " masculine ; -- [FXXEE] :: partner; comparticeps_A = mkA "comparticeps" "comparticipis"; -- [DXXES] :: partaking/participating together; sharing jointly (Ecc); compartimentum_N_N = mkN "compartimentum" ; -- [GXXEK] :: compartment (in a train); + compartior_V = mkV "comparti" "compartior" nonExist ; -- [XXXIO] :: share; divide something with one (L+S); (PASS) be made partaker of; + comparturio_V = mkV "comparturire" "comparturio" "comparturivi" "comparturitus "; -- [DXXES] :: be associated in childbirth with any one; + compasco_V2 = mkV2 (mkV "compascere" "compasco" "compavi" "compastus ") ; -- [XAXCO] :: pasture (cattle) on common land; feed up/together; use as cattle food; eat; compascua_F_N = mkN "compascua" ; -- [XAXEO] :: common pasture/land; pasture possessed/used in common; compascuum_N_N = mkN "compascuum" ; -- [XAXEO] :: common pasture/land (pl.); pasture possessed/used in common; compascuus_A = mkA "compascuus" "compascua" "compascuum" ; -- [XAXCO] :: common pasture (land); right of common pasturage; grazed on/sharing a pasture; @@ -11447,20 +12148,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg compater_M_N = mkN "compater" "compatris " masculine ; -- [FXXEM] :: fellow priest; child's godfather (Nelson); sponsor (Ecc); compaternitas_F_N = mkN "compaternitas" "compaternitatis " feminine ; -- [XLXEZ] :: co-paternity; compatiens_A = mkA "compatiens" "compatientis"; -- [EXXEE] :: compassionate, having compassion; + compatior_V = mkV "compati" "compatior" "compassus sum " ; -- [DXXDS] :: suffer with one; pity, have compassion, feel pity; compatriota_F_N = mkN "compatriota" ; -- [XXXIO] :: compatriot, fellow countryman; compatronus_M_N = mkN "compatronus" ; -- [XXXEO] :: co-patron (one who has joined in manumitting a slave); compauper_M_N = mkN "compauper" "compauperis " masculine ; -- [DXXFS] :: fellow-pauper; + compavesco_V = mkV "compavescere" "compavesco" nonExist nonExist; -- [XXXFO] :: become very afraid/full of fear/thoroughly terrified; + compavio_V2 = mkV2 (mkV "compavire" "compavio" nonExist "compavitus ") ; -- [XXXFO] :: trample on; beat (L+S); compavitus_A = mkA "compavitus" "compavita" "compavitum" ; -- [XXXFO] :: trampled upon; beaten (L+S); compeccator_M_N = mkN "compeccator" "compeccatoris " masculine ; -- [DEXES] :: fellow-sinner; compecco_V = mkV "compeccare" ; -- [DXXES] :: err/sin/commit a fault together; + compeciscor_V = mkV "compecisci" "compeciscor" "compectus sum " ; -- [XXXFO] :: make an agreement/arrangement/compact; compectum_N_N = mkN "compectum" ; -- [XLXDS] :: agreement/compact; [ABL compacto => according to/in accordance with agreement]; compedagogita_F_N = mkN "compedagogita" ; -- [XXXIO] :: fellow member of a paedagogium (training establishment for slave boys); (M L+S); compedagogius_M_N = mkN "compedagogius" ; -- [XXXIS] :: fellow member of a paedagogium (training establishment for slave boys); + compedio_V2 = mkV2 (mkV "compedire" "compedio" "compedivi" "compeditus ") ; -- [XXXEO] :: shackle, fetter; put fetters on; compeditus_A = mkA "compeditus" "compedita" "compeditum" ; -- [XXXDO] :: that wears fetters/shackles; compeditus_M_N = mkN "compeditus" ; -- [XXXDO] :: fettered slave; compedus_A = mkA "compedus" "compeda" "compedum" ; -- [XXXFO] :: that fetters or restrains; fettering, shackling (L+S); compellatio_F_N = mkN "compellatio" "compellationis " feminine ; -- [XGXDO] :: action of addressing/apostrophizing (aside to person)/reproaching, reproof; - compello_V2 = mkV2 (mkV "compellare") ; -- [XXXBO] :: address/accost, speak to, call upon; appeal to; challenge; chide/rebuke; accuse; + compello_V2 = mkV2 (mkV "compellere" "compello" "compuli" "compulsus ") ; -- [XXXAO] :: drive together (cattle), round up; force, compel, impel, drive; squeeze; gnash; compendiaria_F_N = mkN "compendiaria" ; -- [XXXCO] :: short/quick route, short cut; quick/easy method, short cut; compendiarium_N_N = mkN "compendiarium" ; -- [XXXEO] :: short/quick route, short cut; fitment in a granary; compendiarius_A = mkA "compendiarius" "compendiaria" "compendiarium" ; -- [XXXEO] :: short/quick (of routes); @@ -11468,17 +12174,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg compendiose_Adv =mkAdv "compendiose" "compendiosius" "compendiosissime" ; -- [DXXES] :: briefly, shortly, compendiously; compendiosus_A = mkA "compendiosus" "compendiosa" "compendiosum" ; -- [XXXDO] :: profitable, advantageous; short/quick (route); compendious, succinct, short; compendium_N_N = mkN "compendium" ; -- [GXXEK] :: summarized, abstract; + compendo_V2 = mkV2 (mkV "compendere" "compendo" "compependi" "compensus ") ; -- [XXXFO] :: weigh/balance together; compenetratio_F_N = mkN "compenetratio" "compenetrationis " feminine ; -- [FXXFE] :: merging, compenetration, mutual penetration, co-mixing; uniting equally; compensatio_F_N = mkN "compensatio" "compensationis " feminine ; -- [XXXCO] :: balancing of items in account, offsetting; weighing/balancing (of factors); compensativus_A = mkA "compensativus" "compensativa" "compensativum" ; -- [DXXFS] :: serving for compensation; compensato_Adv = mkAdv "compensato" ; -- [DXXFS] :: with compensation/reward; compenso_V2 = mkV2 (mkV "compensare") ; -- [XXXBO] :: balance/weigh/offset; get rid of; make good, compensate; save/secure; short cut; + comperco_V2 = mkV2 (mkV "compercere" "comperco" "compersi" "compersus ") ; -- [DXXCO] :: save, husband well, lay up; forbear/abstain/refrain from (w/INF), spare (w/DAT); comperegrinus_M_N = mkN "comperegrinus" ; -- [DXXFS] :: fellow-stranger; comperendinatio_F_N = mkN "comperendinatio" "comperendinationis " feminine ; -- [XLXDO] :: adjournment of a trial for two days; (to third day following or later L+S); comperendinatus_M_N = mkN "comperendinatus" "comperendinatus " masculine ; -- [XLXEO] :: adjournment of a trial for two days; (to third day following or later L+S); comperendino_V2 = mkV2 (mkV "comperendinare") ; -- [XLXCO] :: adjourn trial of a person; adjourn trial; (for two days or later); comperendinus_A = mkA "comperendinus" "comperendina" "comperendinum" ; -- [XLXFO] :: on which an adjourned trial is resumed (of a day); compereo_V = mkV "comperire" ; -- [DXXFS] :: perish together; + comperio_V2 = mkV2 (mkV "comperire" "comperio" "comperi" "compertus ") ; -- [XXXAO] :: learn/discover/find (by investigation); verify/know for certain; find guilty; + comperior_V = mkV "comperiri" "comperior" "compertus sum " ; -- [XXXDS] :: learn/discover/find (by investigation); verify/know for certain; find guilty; compernis_A = mkA "compernis" "compernis" "comperne" ; -- [XBXEO] :: having thighs close together; knock-kneed (L+S); comperpetuus_A = mkA "comperpetuus" "comperpetua" "comperpetuum" ; -- [DEXFS] :: co-eternal; comperte_Adv =mkAdv "comperte" "compertius" "compertissime" ; -- [XXXCO] :: on good authority, on reliable information/intelligence; informedly; @@ -11487,6 +12197,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg compertus_M_N = mkN "compertus" "compertus " masculine ; -- [DXXFS] :: experience, personal knowledge; compertusio_F_N = mkN "compertusio" "compertusionis " feminine ; -- [XTXIO] :: joint tunneling operation; compes_F_N = mkN "compes" "compedis " feminine ; -- [XXXCO] :: shackles (for feet) (usu. pl.), fetters; things impeding movement; chains; + compesco_V2 = mkV2 (mkV "compescere" "compesco" "compescui" nonExist) ; -- [XXXAO] :: restrain, check; quench; curb, confine, imprison; hold in check; block, close; compestror_V = mkV "compestrari" ; -- [FXXEE] :: clothe in apron; competalis_A = mkA "competalis" "competalis" "competale" ; -- [XEXEO] :: associated with/worshiped at cross-roads; competens_A = mkA "competens" "competentis"; -- [XLXCO] :: agreeing with, corresponding to, proper/appropriate/suitable; competent (legal); @@ -11496,10 +12207,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg competitivitas_F_N = mkN "competitivitas" "competitivitatis " feminine ; -- [GXXEK] :: competitiveness; competitor_M_N = mkN "competitor" "competitoris " masculine ; -- [XXXCO] :: rival, competitor; other candidate for office; rival claimant (to throne); competitrix_F_N = mkN "competitrix" "competitricis " feminine ; -- [XXXEO] :: rival, competitor (female); other candidate for office; rival claimant; + competo_V2 = mkV2 (mkV "competere" "competo" "competivi" "competitus ") ; -- [XXXBO] :: |be sound/capable/applicable/relevant/sufficient/adequate/competent/admissible; competum_N_N = mkN "competum" ; -- [XXXCO] :: cross-roads (usu. pl.), junction; people/shrine at crossroads; point of choice; compilatio_F_N = mkN "compilatio" "compilationis " feminine ; -- [XXXFO] :: burglary; raking together, pillaging/plundering (L+S); compilation (document); compilator_M_N = mkN "compilator" "compilatoris " masculine ; -- [DGXES] :: plunderer; imitator (literary); plagiarizer; (compiler/anthologist?); compilo_V2 = mkV2 (mkV "compilare") ; -- [XXXCO] :: rob/pillage, snatch; steal from (another author)/plagiarize; beat up thoroughly; + compingo_V2 = mkV2 (mkV "compingere" "compingo" "compinxi" "compictus ") ; -- [XXXFS] :: disguise, cover, paint over; + compinguesco_V = mkV "compinguescere" "compinguesco" nonExist nonExist; -- [DXXFS] :: thicken to a solid substance; compitalicius_A = mkA "compitalicius" "compitalicia" "compitalicium" ; -- [XXXDO] :: associated with cross-roads; of Compitalia festival of the_Lares; compitalis_A = mkA "compitalis" "compitalis" "compitale" ; -- [XEXEO] :: associated with/worshiped at cross-roads; compitalitius_A = mkA "compitalitius" "compitalitia" "compitalitium" ; -- [XXXDS] :: associated with cross-roads; of Compitalia festival of the_Lares; @@ -11507,13 +12221,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg compitum_N_N = mkN "compitum" ; -- [XXXCO] :: cross-roads (usu. pl.), junction; people/shrine at crossroads; point of choice; compitus_M_N = mkN "compitus" ; -- [XXXEO] :: cross-roads (usu. pl.), junction; people/shrine at crossroads; point of choice; complaceo_V = mkV "complacere" ; -- [XXXCO] :: please, take fancy of, capture affections of, be acceptable/agreed to; --- SLASHSTUFF complacitus_A : A2 complacitus, complacita -um, complacitior -or -us, complacitissimus -a -um -- [DXXES] :: pleased; favorable; + complacitus_A = mkA "complacitus" ; -- [DXXES] :: pleased; favorable; complaco_V2 = mkV2 (mkV "complacare") ; -- [XXXFO] :: conciliate (greatly), placate; win sympathy of; complanator_M_N = mkN "complanator" "complanatoris " masculine ; -- [XXXFO] :: thing/one that makes smooth/level; (toothpaste); complano_V2 = mkV2 (mkV "complanare") ; -- [XXXCO] :: make (ground) level/flat; smooth out (trouble); pull down, raze to ground; complantatio_F_N = mkN "complantatio" "complantationis " feminine ; -- [DAXFS] :: planting; complanto_V2 = mkV2 (mkV "complantare") ; -- [DAXES] :: plant together; complatonicus_M_N = mkN "complatonicus" ; -- [DSXFS] :: fellow-Platonist; + complaudo_V = mkV "complaudere" "complaudo" "complausi" "complausus "; -- [DXXFS] :: applaud together/enthusiastically; + complecto_V2 = mkV2 (mkV "complectere" "complecto" "complecti" "complexus ") ; -- [XXXCO] :: |lay hold of, grip; seize; grasp, take in/up; sum up; include in scope, cover; + complector_V = mkV "complecti" "complector" "complexus sum " ; -- [XXXAO] :: |lay hold of, grip; seize; grasp, take in/up; sum up; include in scope, cover; complectus_M_N = mkN "complectus" ; -- [FXXEN] :: embrace, grasp. complementarius_A = mkA "complementarius" "complementaria" "complementarium" ; -- [GXXEK] :: complementary; complementum_N_N = mkN "complementum" ; -- [XXXEO] :: complement, something that fills out/up or completes; @@ -11523,7 +12240,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg completivus_A = mkA "completivus" "completiva" "completivum" ; -- [DXXFS] :: serving for filling up, completive; completor_M_N = mkN "completor" "completoris " masculine ; -- [DEXFS] :: one who fills up; fulfiller; (Jesus); completorium_N_N = mkN "completorium" ; -- [DEXFS] :: Compline, service of prayers at close of day; --- SLASHSTUFF completus_A : A2 completus, completa -um, completior -or -us, completissimus -a -um -- [XXXEO] :: complete, round off; filled full, full (L+S); perfect; + completus_A = mkA "completus" ; -- [XXXEO] :: complete, round off; filled full, full (L+S); perfect; complex_A = mkA "complex" "complicis"; -- [DXXDS] :: closely connected with one, confederate, participant; complex_F_N = mkN "complex" "complicis " feminine ; -- [DXXEE] :: accomplice; confederate, participant; complex_M_N = mkN "complex" "complicis " masculine ; -- [DXXEE] :: accomplice; confederate, participant; @@ -11538,9 +12255,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg complicatio_F_N = mkN "complicatio" "complicationis " feminine ; -- [DXXES] :: folding together, enveloping; multiplication; complicitas_F_N = mkN "complicitas" "complicitatis " feminine ; -- [EXXDE] :: complicity; complico_V2 = mkV2 (mkV "complicare") ; -- [XXXCO] :: fold/tie up/together; roll/curl/double up, wind (round); involve; bend at joint; + complodo_V2 = mkV2 (mkV "complodere" "complodo" "complosi" "complosus ") ; -- [XXXCO] :: clap/strike (hands) together, applaud (enthusiastically/with emotion); comploratio_F_N = mkN "comploratio" "complorationis " feminine ; -- [XXXCO] :: lamentation, (vocal) mourning; loud/violent complaint/bemoaning/bewailing (L+S); comploratus_M_N = mkN "comploratus" "comploratus " masculine ; -- [XXXEO] :: lamentation, (vocal) mourning; loud/violent complaint/bemoaning/bewailing (L+S); comploro_V = mkV "complorare" ; -- [XXXCO] :: bewail, bemoan; lament loudly/together/violently; despair of; morn for; + compluor_V = mkV "complui" "compluor" "complutus sum " ; -- [DXXES] :: be rained upon; compluriens_Adv = mkAdv "compluriens" ; -- [XXXEO] :: several/many times, a good number of times; more than once; complurimus_A = mkA "complurimus" "complurima" "complurimum" ; -- [XXXEO] :: great many (pl.), very many; complus_A = mkA "complus" "compluris"; -- [XXXBO] :: many (pl.), several, a fair/good number; more than one (L+S); @@ -11548,10 +12267,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg complus_N_N = mkN "complus" "compluris " neuter ; -- [XXXCO] :: many/several things/items(pl.), a fair/good number of things; complusculus_A = mkA "complusculus" "compluscula" "complusculum" ; -- [XXXCO] :: several (pl.), more than one; a good many (L+S); complusicule_Adv = mkAdv "complusicule" ; -- [XXXFO] :: fairly/pretty often, not infrequently; + complut_V0 = mkV0 "complut"; -- [XXXFO] :: rain-water runs/flows together/collects; it rains upon (L+S); complutor_M_N = mkN "complutor" "complutoris " masculine ; -- [DEXFS] :: he who gives rain/who waters; compluviatus_A = mkA "compluviatus" "compluviata" "compluviatum" ; -- [XAXEO] :: shaped/square like a compluvium/inward-sloping roof; of vines on such frame; compluvium_N_N = mkN "compluvium" ; -- [XXXDO] :: inward-sloping central roof (guides rainwater to cistern); like frame for vines; componderans_A = mkA "componderans" "componderantis"; -- [DSXFS] :: weighing; + compono_V2 = mkV2 (mkV "componere" "compono" "composui" "compositus ") ; -- [XXXAO] :: |construct, build; arrange, compile, compose, make up; organize, order; settle; comportatio_F_N = mkN "comportatio" "comportationis " feminine ; -- [XXXEO] :: transportation; bringing/carrying together (L+S); comportionalis_A = mkA "comportionalis" "comportionalis" "comportionale" ; -- [DAXES] :: between boundaries of possessions/property (w/termmi/limits); comporto_V2 = mkV2 (mkV "comportare") ; -- [XXXCO] :: carry, transport, bring in, convey (to market); bring together; amass, collect; @@ -11566,42 +12287,48 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg compositor_M_N = mkN "compositor" "compositoris " masculine ; -- [XDXEO] :: writer, composer; orderer, arranger, disposer, maker (L+S); compositum_N_N = mkN "compositum" ; -- [XXXEO] :: settled/peaceful situation (pl.), security, law and order; compositura_F_N = mkN "compositura" ; -- [XXXEO] :: assembling/fitting together; structure/assemblage; combination (words), syntax; --- SLASHSTUFF compositus_A : A2 compositus, composita -um, compositior -or -us, compositissimus -a -um -- [XXXBO] :: |prepared/ready/fit, suitable/trained/qualified; calm, peaceful; mature, sedate; + compositus_A = mkA "compositus" ; -- [XXXBO] :: |prepared/ready/fit, suitable/trained/qualified; calm, peaceful; mature, sedate; compossessor_M_N = mkN "compossessor" "compossessoris " masculine ; -- [DLXFS] :: joint-possessor; compostio_F_N = mkN "compostio" "compostionis " feminine ; -- [EXXEE] :: arrangement, composition; compostura_F_N = mkN "compostura" ; -- [XXXEO] :: assembling/fitting together; structure/assemblage; combination (words), syntax; --- SLASHSTUFF compostus_A : A2 compostus, composta -um, compostior -or -us, compostissimus -a -um -- [XXXBO] :: |prepared/ready/fit, suitable/trained/qualified; calm, peaceful; mature, sedate; + compostus_A = mkA "compostus" ; -- [XXXBO] :: |prepared/ready/fit, suitable/trained/qualified; calm, peaceful; mature, sedate; compotatio_F_N = mkN "compotatio" "compotationis " feminine ; -- [XXXES] :: drinking party; (translation of Greek); a drink/drinking together (L+S); compotator_M_N = mkN "compotator" "compotatoris " masculine ; -- [EXXFE] :: drinking companion; compotens_A = mkA "compotens" "compotentis"; -- [XEXIO] :: that is able (to grant a prayer); having power with one (epithet of Diana L+S); + compotio_V2 = mkV2 (mkV "compotire" "compotio" "compotivi" "compotitus ") ; -- [XXXDO] :: put in possession of, make partaker of; (PASS) attain; obtain, come into (L+S); compoto_V = mkV "compotare" ; -- [XXXFO] :: drink together; compotor_M_N = mkN "compotor" "compotoris " masculine ; -- [XXXEO] :: drinking-companion/buddy; compotrix_F_N = mkN "compotrix" "compotricis " feminine ; -- [XXXEO] :: drinking-companion (female); (bar girl?); + compraecido_V2 = mkV2 (mkV "compraecidere" "compraecido" "compraecidi" "compraecisus ") ; -- [XXXFO] :: cut each other off; cut off at same time (?) (L+S); compraes_M_N = mkN "compraes" "compraedis " masculine ; -- [DLXEO] :: joint-surety; compransor_M_N = mkN "compransor" "compransoris " masculine ; -- [XXXFO] :: table-companion; companion at a banquet; boon companion (L+S); comprecatio_F_N = mkN "comprecatio" "comprecationis " feminine ; -- [XEXEO] :: public supplication or prayers; common imploring of a deity (L+S); comprecor_V = mkV "comprecari" ; -- [XEXCO] :: implore, invoke (gods); supplicate, pray that; pray for; pray to; comprehendibilis_A = mkA "comprehendibilis" "comprehendibilis" "comprehendibile" ; -- [XXXEO] :: comprehensible, able to be grasped by senses/intellect; that can be seized; + comprehendo_V2 = mkV2 (mkV "comprehendere" "comprehendo" "comprehendi" "comprehensus ") ; -- [XXXAO] :: |embrace; include/cover/deal with (in speech/law); express (by term/symbol); comprehensibilis_A = mkA "comprehensibilis" "comprehensibilis" "comprehensibile" ; -- [XXXEO] :: comprehensible, able to be grasped by senses/intellect; that can be seized; comprehensibilitas_F_N = mkN "comprehensibilitas" "comprehensibilitatis " feminine ; -- [GXXEK] :: comprehensibility; comprehensio_F_N = mkN "comprehensio" "comprehensionis " feminine ; -- [XXXBO] :: |comprehensive argument; dilemma; region, zone; scope, range; grouping (words); comprehensivus_A = mkA "comprehensivus" "comprehensiva" "comprehensivum" ; -- [DXXFS] :: comprehensive, conceivable; comprehenso_V2 = mkV2 (mkV "comprehensare") ; -- [XXXFO] :: seize in an embrace; embrace, hug; + comprendo_V2 = mkV2 (mkV "comprendere" "comprendo" "comprendi" "comprensus ") ; -- [XXXAO] :: |embrace; include/cover/deal with (in speech/law); express (by term/symbol); comprensio_F_N = mkN "comprensio" "comprensionis " feminine ; -- [XXXBO] :: |comprehensive argument; dilemma; region, zone; scope, range; grouping (words); compresbyter_M_N = mkN "compresbyter" ; -- [DEXFS] :: fellow-presbyter; compresse_Adv =mkAdv "compresse" "compressius" "compressissime" ; -- [XXXEO] :: briefly, succinctly, in a compressed manner; urgently, pressingly, insistently; compressio_F_N = mkN "compressio" "compressionis " feminine ; -- [XXXCO] :: squeezing, compression; sexual embrace, copulation; abridging, compression; compresso_V2 = mkV2 (mkV "compressare") ; -- [DXXES] :: press; oppress; compressor_M_N = mkN "compressor" "compressoris " masculine ; -- [XXXEO] :: ravisher, rapist; one who presses/compresses (L+S); --- SLASHSTUFF compressus_A : A2 compressus, compressa -um, compressior -or -us, compressissimus -a -um -- [XBXCO] :: constricted/narrow/pressed together; bound/tight (bowels), constipated, binding; + compressus_A = mkA "compressus" ; -- [XBXCO] :: constricted/narrow/pressed together; bound/tight (bowels), constipated, binding; compressus_M_N = mkN "compressus" "compressus " masculine ; -- [XXXCO] :: compression, pressure; closing, pressing together; embracing/copulation; comprimens_A = mkA "comprimens" "comprimentis"; -- [XXXEO] :: astringent; + comprimo_V2 = mkV2 (mkV "comprimere" "comprimo" "compressi" "compressus ") ; -- [XXXAO] :: |suppress/control/stifle/frustrate/subdue/cow, put down; hold breath; silence; comprobatio_F_N = mkN "comprobatio" "comprobationis " feminine ; -- [XXXEO] :: approval; comprobator_M_N = mkN "comprobator" "comprobatoris " masculine ; -- [XXXFO] :: approver; comprobo_V2 = mkV2 (mkV "comprobare") ; -- [XXXBO] :: approve, accept, sanction, ratify; prove, justify, confirm, attest, bear out; compromissarius_A = mkA "compromissarius" "compromissaria" "compromissarium" ; -- [XLXEO] :: accepted as arbitrator by both parties (judge w/iudex); of arbitration; compromissio_F_N = mkN "compromissio" "compromissionis " feminine ; -- [FLXFM] :: compromise; submission to arbitration; compromissum_N_N = mkN "compromissum" ; -- [XLXCO] :: joint undertaking guaranteed by deposit of money to abide by arbitration; + compromitto_V2 = mkV2 (mkV "compromittere" "compromitto" "compromisi" "compromissus ") ; -- [XXXCO] :: enter into agreement to submit to arbitration/arbiter; agree to pay award; comprovincialis_A = mkA "comprovincialis" "comprovincialis" "comprovinciale" ; -- [DXXFS] :: born in same province; compte_Adv =mkAdv "compte" "comptius" "comptissime" ; -- [XXXDO] :: neatly, elegantly, in a well arrange manner; with ornament (L+S); comptionalis_A = mkA "comptionalis" "comptionalis" "comptionale" ; -- [XLXES] :: of a mock/sham sale/marriage; poor, worthless; [~ senex => one used in sham]; @@ -11620,16 +12347,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg compunctio_F_N = mkN "compunctio" "compunctionis " feminine ; -- [DEXES] :: puncture, prick; remorse, sting/prick of conscience; compunctorius_A = mkA "compunctorius" "compunctoria" "compunctorium" ; -- [DEXFS] :: admonitory; hortatory; compunctus_A = mkA "compunctus" "compuncta" "compunctum" ; -- [EXXEB] :: aroused, pricked; inspired; feeling remorse, remorseful; + compungo_V2 = mkV2 (mkV "compungere" "compungo" "compunxi" "compunctus ") ; -- [XXXCO] :: prick, puncture (thoroughly); goad, stimulate; mark with points, tattoo; compurgatio_F_N = mkN "compurgatio" "compurgationis " feminine ; -- [DXXFS] :: complete purification; compurgo_V2 = mkV2 (mkV "compurgare") ; -- [XEXNS] :: purify completely/thoroughly; computabilis_A = mkA "computabilis" "computabilis" "computabile" ; -- [XXXNO] :: calculable, computable; computatio_F_N = mkN "computatio" "computationis " feminine ; -- [XSXCO] :: calculation, reckoning, computation; form/result of a particular calculation; computator_M_N = mkN "computator" "computatoris " masculine ; -- [XXXFO] :: calculator, reckoner, accountant; computatrum_N_N = mkN "computatrum" ; -- [HTXEK] :: calculator; + computesco_V = mkV "computescere" "computesco" "computui" nonExist; -- [XXXCO] :: decay, rot, putrefy; (completely); computo_V2 = mkV2 (mkV "computare") ; -- [XSXBO] :: reckon/compute/calculate, sum/count (up); take/include in reckoning; work out; + computresco_V = mkV "computrescere" "computresco" "computrui" nonExist; -- [XXXCO] :: decay, rot, putrefy; (completely); computus_M_N = mkN "computus" ; -- [DSXES] :: computation, calculation; bank account (Cal); comte_Adv =mkAdv "comte" "comtius" "comtissime" ; -- [XXXES] :: neatly, elegantly, in a well arrange manner; with ornament (L+S); --- SLASHSTUFF comtus_A : A2 comtus, comta -um, comtior -or -us, comtissimus -a -um -- [XXXBS] :: |elegant (writing), embellished/elegant/neat/pointed; in order/polished/smooth; + comtus_A = mkA "comtus" ; -- [XXXBS] :: |elegant (writing), embellished/elegant/neat/pointed; in order/polished/smooth; comtus_M_N = mkN "comtus" "comtus " masculine ; -- [XXXDS] :: union, conjunction; head-dress, hairband; adornment; well dressed hair (pl.); comula_F_N = mkN "comula" ; -- [XXXFO] :: dainty/pretty hair; comunis_A = mkA "comunis" "comunis" "comune" ; -- [XXXEO] :: |neutral, impartial (Mars); applicable on either side; same form for two cases; @@ -11644,18 +12374,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conaudito_V2 = mkV2 (mkV "conauditare") ; -- [DXXES] :: confine to narrow space, cramp; make narrower; narrow scope/application; conbenno_M_N = mkN "conbenno" "conbennonis " masculine ; -- [XXFFO] :: those riding together in a benna (kind of (wickerwork?) carriage) (Gallic); conbibo_M_N = mkN "conbibo" "conbibonis " masculine ; -- [XXXFO] :: drinking companion/buddy; --- TODO conbibo_V : V2 conbibo, conbibere, conbibi, - -- Declension: 3rd -- Comment: [XXXBO] :: drink completely/together/up; hold back (tears); absorb, soak in; swallow up; + conbibo_V2 = mkV2 (mkV "conbibere" "conbibo" "conbibi" nonExist ) ; -- [XXXBO] :: drink completely/together/up; hold back (tears); absorb, soak in; swallow up; + conbullio_V2 = mkV2 (mkV "conbullire" "conbullio" "conbullivi" "conbullitus ") ; -- [XXXFO] :: boil fully/thoroughly; + conburo_V2 = mkV2 (mkV "conburere" "conburo" "conbussi" "conbustus ") ; -- [XXXBO] :: burn up/away; (w/love); consume/destroy w/fire; reduce to ash, cremate; scald; conbustio_F_N = mkN "conbustio" "conbustionis " feminine ; -- [DSXFS] :: burning, consuming; conbustum_N_N = mkN "conbustum" ; -- [XBXEO] :: burn, injury from burning/scalding; conbustura_F_N = mkN "conbustura" ; -- [DXXES] :: burning; conca_F_N = mkN "conca" ; -- [XXXBO] :: mollusk/murex/oyster/scallop; pearl/mollusk-shell; Triton horn; female genitalia concaco_V2 = mkV2 (mkV "concacare") ; -- [XXXEO] :: soil, pollute, defile, make foul (with excrement/ordure/dung); + concado_V = mkV "concadere" "concado" nonExist nonExist; -- [XXXFO] :: fall together/at same time; concaedes_F_N = mkN "concaedes" "concaedis " feminine ; -- [XXXFO] :: barricade (of felled trees), abatis; (also pl.); + concalefacio_V2 = mkV2 (mkV "concalefacere" "concalefacio" "concalefeci" "concalefactus ") ; -- [XXXDO] :: heat; make warm, warm thoroughly (L+S); concalefactio_F_N = mkN "concalefactio" "concalefactionis " feminine ; -- [FXXEE] :: warning; concalefio_V = mkV "concaleferi" ; -- [XXXDO] :: be/become heated/made warm/warmed thoroughly (L+S); (concalefacio PASS); concaleo_V = mkV "concalere" ; -- [XXXFO] :: be/become warm; (thoroughly); + concalesco_V = mkV "concalescere" "concalesco" "concalui" nonExist; -- [XXXCO] :: become/grow warm; warm up (with enthusiasm); glow with love (L+S); + concalfacio_V2 = mkV2 (mkV "concalfacere" "concalfacio" "concalfeci" "concalfactus ") ; -- [XXXEO] :: heat; make warm, warm thoroughly (L+S); concalfactorius_A = mkA "concalfactorius" "concalfactoria" "concalfactorium" ; -- [XBXNO] :: causing warmth, thermogenic; (medical); warming, suitable for warming (L+S); concalfio_V = mkV "concalferi" ; -- [XXXEO] :: be/become heated/made warm/warmed thoroughly (L+S); (concalfacio PASS); + concallesco_V = mkV "concallescere" "concallesco" "concallui" nonExist; -- [XXXEO] :: grow/become hard/hardened/callous/insensitive/shrewd/insensible/dull/obtuse; concalo_V2 = mkV2 (mkV "concalare") ; -- [XXXFO] :: summon; concamaratio_F_N = mkN "concamaratio" "concamarationis " feminine ; -- [XTXDO] :: vaulting; vaulted roof; vault; concamaratus_A = mkA "concamaratus" "concamarata" "concamaratum" ; -- [XXXDQ] :: vaulted, arched; @@ -11663,7 +12400,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg concameratio_F_N = mkN "concameratio" "concamerationis " feminine ; -- [XTXDO] :: vaulting; vaulted roof; concameratus_A = mkA "concameratus" "concamerata" "concameratum" ; -- [XXXDQ] :: vaulted, arched; concamero_V2 = mkV2 (mkV "concamerare") ; -- [XTXCO] :: cover with an arch/vault, vault over; + concandefacio_V2 = mkV2 (mkV "concandefacere" "concandefacio" "concandefeci" "concandefactus ") ; -- [XXXFO] :: heat thoroughly; concandefio_V = mkV "concandeferi" ; -- [XXXFO] :: be/become heated thoroughly; (concandefacio PASS); + concandesco_V = mkV "concandescere" "concandesco" "concandui" nonExist; -- [XXXFO] :: glow, become inflamed; concaptivus_M_N = mkN "concaptivus" ; -- [DXXES] :: fellow-captive/prisoner; concarnatio_F_N = mkN "concarnatio" "concarnationis " feminine ; -- [DEXFO] :: incarnation, uniting with flesh; concarno_V2 = mkV2 (mkV "concarnare") ; -- [DEXES] :: incarnate, unite/clothe with flesh; @@ -11677,6 +12416,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg concavo_V2 = mkV2 (mkV "concavare") ; -- [XXXFO] :: hollow out; round, curve; give hollow/curved form; hollows (pl.), a glen (Ecc); concavum_N_N = mkN "concavum" ; -- [XXXEO] :: void, gap, hollow space; concavus_A = mkA "concavus" "concava" "concavum" ; -- [XXXCO] :: hollow/hollowed out; concave/curving inward; arched; bent/curved; sunken (eyes); + concedo_V2 = mkV2 (mkV "concedere" "concedo" "concessi" "concessus ") ; -- [XXXAO] :: relinquish/give up/concede; depart; pardon; submit, allow/grant/permit/condone; concelebratio_F_N = mkN "concelebratio" "concelebrationis " feminine ; -- [EXXDE] :: celebration; concelebration; concelebro_V2 = mkV2 (mkV "concelebrare") ; -- [XXXBO] :: celebrate, make known; go often/in large numbers/together, frequent, haunt; concellita_M_N = mkN "concellita" ; -- [DXXFO] :: cell-mate, one who dwells with one in a cell; @@ -11693,9 +12433,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conceptivus_A = mkA "conceptivus" "conceptiva" "conceptivum" ; -- [XXXEO] :: proclaimed/directed/movable (of holidays not held on same day every year); concepto_V2 = mkV2 (mkV "conceptare") ; -- [DBXES] :: conceive, become pregnant; conceive in mind; conceptum_N_N = mkN "conceptum" ; -- [XXXCO] :: fetus, that which is conceived; concept/ideas; measurement of volume/capacity; --- SLASHSTUFF conceptus_A : A2 conceptus, concepta -um, conceptior -or -us, conceptissimus -a -um -- [XXXCO] :: conceived, imagined; understood, adopted; [verba ~ => solemn/formal utterance]; + conceptus_A = mkA "conceptus" ; -- [XXXCO] :: conceived, imagined; understood, adopted; [verba ~ => solemn/formal utterance]; conceptus_M_N = mkN "conceptus" "conceptus " masculine ; -- [XXXCO] :: conception; embryo/fetus; catching fire; storing water; cistern/basin/reservoir; + concerno_V2 = mkV2 (mkV "concernere" "concerno" "concrevi" "concretus ") ; -- [DXXFS] :: mix/mingle together (as in sieve in order to separate by sifting); sift/examine; concero_V = mkV "concerare" ; -- [FXXEN] :: connect, join, twine; join in conflict; + concerpo_V2 = mkV2 (mkV "concerpere" "concerpo" "concerpsi" "concerptus ") ; -- [XXXCO] :: tear/pull in/to pieces; pluck off; tear up, rend; censure, abuse, revile; concerra_M_N = mkN "concerra" ; -- [XXXFS] :: playfellow; crony; concerro_M_N = mkN "concerro" "concerronis " masculine ; -- [BXXES] :: fellow idler; boon/jolly companion; (one who contributes to a common feast); concertatio_F_N = mkN "concertatio" "concertationis " feminine ; -- [XXXCO] :: strife, conflict (esp. of words); wrangling, dispute, controversy; @@ -11726,6 +12468,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conchylilegulus_M_N = mkN "conchylilegulus" ; -- [DAXFS] :: collector of mussels; he who goes in quest for murex/purple-fish (Leverett); conchylium_N_N = mkN "conchylium" ; -- [XXXFS] :: |shellfish; oyster; purple color; conchyta_M_N = mkN "conchyta" ; -- [XAXFI] :: one who harvests/gathers mollusks/murex/oysters; + concido_V = mkV "concidere" "concido" "concidi" nonExist; -- [XXXAO] :: |perish, be slain/sacrificed; lose one's case, fail, give out/lose heart, decay; + concido_V2 = mkV2 (mkV "concidere" "concido" "concidi" "concisus ") ; -- [XXXBO] :: cut/chop up/down/to pieces; crop; ruin, kill, destroy; divide minutely; beat; conciens_A = mkA "conciens" "concientis"; -- [XXXFO] :: pregnant, teeming, full; concieo_V2 = mkV2 (mkV "concire") ; -- [XXXBO] :: move, set in violent motion, stir up; muster; rouse, excite, incite, provoke; conciliabulum_N_N = mkN "conciliabulum" ; -- [XXXCO] :: meeting/assembly/public place; district administrative center; meeting/assembly; @@ -11736,7 +12480,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conciliatricula_F_N = mkN "conciliatricula" ; -- [XXXFO] :: one that commends; recommender; that which conciliates/unites (L+S); conciliatrix_F_N = mkN "conciliatrix" "conciliatricis " feminine ; -- [XXXCO] :: go-between (marriage/liaison), match-maker; who commends/endears/procures; bawd; conciliatura_F_N = mkN "conciliatura" ; -- [XXXFO] :: practice of arranging liaisons; trade of procurer, pimping, pandering (L+S); --- SLASHSTUFF conciliatus_A : A2 conciliatus, conciliata -um, conciliatior -or -us, conciliatissimus -a -um -- [XXXCS] :: favorably inclined/disposed; devoted; favorable to, amenable; friendly; beloved; + conciliatus_A = mkA "conciliatus" ; -- [XXXCS] :: favorably inclined/disposed; devoted; favorable to, amenable; friendly; beloved; conciliatus_M_N = mkN "conciliatus" "conciliatus " masculine ; -- [XXXEO] :: conjunction, joining, union (of atoms), connection (of bodies); conciliciatus_A = mkA "conciliciatus" "conciliciata" "conciliciatum" ; -- [DEXFS] :: clothed in a garment of hair/hair-shirt; (of a penitent); concilio_V2 = mkV2 (mkV "conciliare") ; -- [XXXAO] :: ||bring a woman to man as wife, match; procure as a mistress; obtain improperly; @@ -11744,6 +12488,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg concinens_A = mkA "concinens" "concinentis"; -- [XXXEO] :: harmonious, fitting; harmonious (L+S); concinentia_F_N = mkN "concinentia" ; -- [DDXDS] :: musical harmony; concord; symmetry; concineratus_A = mkA "concineratus" "concinerata" "concineratum" ; -- [DXXFS] :: sprinkled with ashes; + concingo_V2 = mkV2 (mkV "concingere" "concingo" "concinxi" "concinctus ") ; -- [DXXFS] :: gird; surround completely; concinnaticius_A = mkA "concinnaticius" "concinnaticia" "concinnaticium" ; -- [XXXFO] :: exquisite, elegant; skillfully prepared (L+S); concinnatio_F_N = mkN "concinnatio" "concinnationis " feminine ; -- [DXXDS] :: adjusting, preparing (economics); making, composing (letters/verses); concinnator_M_N = mkN "concinnator" "concinnatoris " masculine ; -- [XXXEO] :: one who dresses up something; arranger (L+S); (hair) dresser; maker/inventor; @@ -11754,9 +12499,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg concinniter_Adv = mkAdv "concinniter" ; -- [XXXFO] :: cleverly, ingeniously; concinnitudo_F_N = mkN "concinnitudo" "concinnitudinis " feminine ; -- [XXXFO] :: neatness/elegance/beauty (of style); concinno_V2 = mkV2 (mkV "concinnare") ; -- [XXXBO] :: |make up, construct, concoct, put together; bring about, cause; render, make; --- SLASHSTUFF concinnus_A : A2 concinnus, concinna -um, concinnior -or -us, concinnissimus -a -um -- [XXXCO] :: set in order, neatly arranged/made; neat/elegant/clever (style); pretty/pleasing --- TODO concino_V : V2 concino, concinere, concinui, - -- Declension: 3rd -- Comment: [XXXBO] :: sing/chant/shout/sound together; celebrate in song; say same thing, agree; + concinnus_A = mkA "concinnus" ; -- [XXXCO] :: set in order, neatly arranged/made; neat/elegant/clever (style); pretty/pleasing + concino_V2 = mkV2 (mkV "concinere" "concino" "concinui" nonExist ) ; -- [XXXBO] :: sing/chant/shout/sound together; celebrate in song; say same thing, agree; concio_F_N = mkN "concio" "concionis " feminine ; -- [EEXEE] :: |sermon; + concio_V2 = mkV2 (mkV "concire" "concio" "concivi" "concitus ") ; -- [XXXCO] :: move, set in violent motion, stir up; muster; rouse, excite, incite, provoke; concionabundus_A = mkA "concionabundus" "concionabunda" "concionabundum" ; -- [ELXEO] :: delivering public speech/harangue; proposing something at public assembly (L+S); concionalis_A = mkA "concionalis" "concionalis" "concionale" ; -- [EXXDO] :: of/proper to public assembly/meeting; (disparaging) devoted to meetings; concionarius_A = mkA "concionarius" "concionaria" "concionarium" ; -- [EXXEO] :: of/proper to public assembly/meeting; (disparaging) devoted to meetings; @@ -11764,19 +12510,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg concionatorius_A = mkA "concionatorius" "concionatoria" "concionatorium" ; -- [EEXEE] :: of sermon; of/proper to public assembly/meeting/gathering of people; concionor_V = mkV "concionari" ; -- [ELXCO] :: address assembly, deliver public speech; preach/harangue; attend public meeting; concipilo_V2 = mkV2 (mkV "concipilare") ; -- [XXXEO] :: seize, take, catch; lay violent hands on; + concipio_V2 = mkV2 (mkV "concipere" "concipio" "concepi" "conceptus ") ; -- [XXXAO] :: |form, devise; understand, imagine; conceive, be mother of; utter (oath/prayer); concise_Adv = mkAdv "concise" ; -- [XXXEO] :: in detail; concisely, briefly (L+S); concisio_F_N = mkN "concisio" "concisionis " feminine ; -- [XGXFO] :: dividing up (into clauses); cutting to pieces/destruction/mutilation (L+S); concisor_M_N = mkN "concisor" "concisoris " masculine ; -- [DAXFS] :: one who cuts down/fells; concisorius_A = mkA "concisorius" "concisoria" "concisorium" ; -- [DAXES] :: suitable for cutting/felling; concisura_F_N = mkN "concisura" ; -- [XBXEO] :: cut, incision; distribution, dividing up, split; hollow/chink/cleft (L+S); --- SLASHSTUFF concisus_A : A2 concisus, concisa -um, concisior -or -us, concisissimus -a -um -- [XXXCO] :: cut up/off; broken, abrupt; short, brief, concise; minute/detailed, very small; + concisus_A = mkA "concisus" ; -- [XXXCO] :: cut up/off; broken, abrupt; short, brief, concise; minute/detailed, very small; concitamentum_N_N = mkN "concitamentum" ; -- [XXXFO] :: incentive, thing which rouses/agitates the mind; concitate_Adv =mkAdv "concitate" "concitatius" "concitatissime" ; -- [XXXCO] :: rapidly/quickly/hurriedly; vehemently/animatedly/heatedly (speaking); ardently; concitatio_F_N = mkN "concitatio" "concitationis " feminine ; -- [XXXCO] :: |rapid/quick/violent motion; impetuosity/animatedness (speaking); disturbance; concitator_M_N = mkN "concitator" "concitatoris " masculine ; -- [XXXCO] :: instigator, provoker, inciter, agitator, mover; concitatrix_A = mkA "concitatrix" "concitatricis"; -- [XXXEO] :: which excites/stimulates; (sexually); exciting, stimulating; concitatrix_F_N = mkN "concitatrix" "concitatricis " feminine ; -- [XXXEO] :: that which excites/stimulates/stirs; (sexually); --- SLASHSTUFF concitatus_A : A2 concitatus, concitata -um, concitatior -or -us, concitatissimus -a -um -- [XXXCO] :: fast/rapid; roused/vehement/violent (emotions); passionate, energetic; excited; + concitatus_A = mkA "concitatus" ; -- [XXXCO] :: fast/rapid; roused/vehement/violent (emotions); passionate, energetic; excited; concitatus_M_N = mkN "concitatus" "concitatus " masculine ; -- [DXXFS] :: impulse; concito_Adv = mkAdv "concito" ; -- [XXXFO] :: rapidly; concito_V2 = mkV2 (mkV "concitare") ; -- [XXXAO] :: |rush; urge/rouse/agitate; enrage/inflame; spur/impel; summon/assemble; cause; @@ -11787,7 +12534,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg concivis_M_N = mkN "concivis" "concivis " masculine ; -- [DXXES] :: fellow-citizen; conclamans_A = mkA "conclamans" "conclamantis"; -- [DXXFS] :: noisy; conclamatio_F_N = mkN "conclamatio" "conclamationis " feminine ; -- [XXXDO] :: shouting/crying together (usu. grief); acclamation; loud shouting, shout (L+S); --- SLASHSTUFF conclamatus_A : A2 conclamatus, conclamata -um, conclamatior -or -us, conclamatissimus -a -um -- [DXXCS] :: published abroad by crying out; known, celebrated; lamentable, unfortunate; + conclamatus_A = mkA "conclamatus" ; -- [DXXCS] :: published abroad by crying out; known, celebrated; lamentable, unfortunate; conclamito_V = mkV "conclamitare" ; -- [XXXFO] :: keep shouting loudly; cry; call/cry out loudly (L+S); conclamo_V = mkV "conclamare" ; -- [XXXBO] :: cry/shout aloud/out; make resound w/shouts; give a signal; summon; bewail/mourn; conclave_N_N = mkN "conclave" "conclavis " neuter ; -- [XXXCO] :: room, chamber; lockable enclosed space; coop/cage; public lavatory; dining hall; @@ -11795,13 +12542,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conclavo_V2 = mkV2 (mkV "conclavare") ; -- [DXXFS] :: nail together; conclericus_M_N = mkN "conclericus" ; -- [DEXFS] :: fellow-clergyman/cleric; concludenter_Adv = mkAdv "concludenter" ; -- [DGXES] :: consequently, by/in consequence; + concludo_V2 = mkV2 (mkV "concludere" "concludo" "conclusi" "conclusus ") ; -- [XGXAO] :: |conclude/finish; define; construct/compose (sentence); infer, deduce, imply; concluse_Adv = mkAdv "concluse" ; -- [XGXFO] :: in a rounded manner; in form of a period/complete sentence; harmonious (L+S) conclusio_F_N = mkN "conclusio" "conclusionis " feminine ; -- [XWXBO] :: |state of siege; enclosing (area); fastening in position; conclusion, finish; conclusiuncula_F_N = mkN "conclusiuncula" ; -- [XGXFO] :: quibbling syllogism/argument; trifling/captious conclusion (L+S); sophism; conclusive_Adv = mkAdv "conclusive" ; -- [DGXFS] :: conclusively; in form of a conclusion; conclusum_N_N = mkN "conclusum" ; -- [XGXEO] :: confined space; conclusion in a syllogism (L+S); conclusura_F_N = mkN "conclusura" ; -- [XTXFO] :: joint/fastening/joining (of an arch); --- SLASHSTUFF conclusus_A : A2 conclusus, conclusa -um, conclusior -or -us, conclusissimus -a -um -- [XXXCO] :: restricted, closed, confined; + conclusus_A = mkA "conclusus" ; -- [XXXCO] :: restricted, closed, confined; conclusus_M_N = mkN "conclusus" "conclusus " masculine ; -- [DXXFS] :: shutting up; confining; concoctio_F_N = mkN "concoctio" "concoctionis " feminine ; -- [XBXEO] :: digestion, process of digestion; concohortalis_A = mkA "concohortalis" "concohortalis" "concohortale" ; -- [XWXIO] :: of/belonging to same cohort (battalion); @@ -11813,6 +12561,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg concomitatus_A = mkA "concomitatus" "concomitata" "concomitatum" ; -- [XXXFO] :: accompanied, escorted; concomitor_V = mkV "concomitari" ; -- [DXXES] :: attend, accompany, escort; concopulo_V2 = mkV2 (mkV "concopulare") ; -- [XXXFS] :: join, unite; + concoquo_V2 = mkV2 (mkV "concoquere" "concoquo" "concoxi" "concoctus ") ; -- [XXXBO] :: |digest/promote digestion; put up with/tolerate/stomach; ponder; devise/concoct; concordabilis_A = mkA "concordabilis" "concordabilis" "concordabile" ; -- [DXXFS] :: harmonizing, easily according; concordantia_F_N = mkN "concordantia" ; -- [EXXEE] :: agreement; concordatio_F_N = mkN "concordatio" "concordationis " feminine ; -- [DXXES] :: concord, unanimity; reconciliation (Ecc); agreement; @@ -11820,7 +12569,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg concorde_Adv = mkAdv "concorde" ; -- [XXXIO] :: harmoniously; in harmony; concordia_F_N = mkN "concordia" ; -- [XXXBO] :: concurrence/mutual agreement/harmony/peace; rapport/amity/concord/union; friend; concordialis_A = mkA "concordialis" "concordialis" "concordiale" ; -- [DXXFS] :: of/pertaining to concord/union; --- SLASHSTUFF concordis_A : A2 concordis, concorde, concordior -or -us, concordissimus -a -um -- [DXXCO] :: agreeing, concurring; like-minded; united, joint, shared; peaceful, harmonious; + concordis_A = mkA "concordis" ; -- [DXXCO] :: agreeing, concurring; like-minded; united, joint, shared; peaceful, harmonious; concorditas_F_N = mkN "concorditas" "concorditatis " feminine ; -- [DXXFS] :: concurrence, mutual agreement, harmony; rapport, amity, concord; union; concorditer_Adv =mkAdv "concorditer" "concordius" "concordissime" ; -- [XXXCO] :: harmoniously, amicably, in a concordant manner; concordo_V = mkV "concordare" ; -- [XXXCO] :: harmonize; be in harmony/agreement/on good terms/friendly; agree; go by pattern; @@ -11834,6 +12583,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg concors_A = mkA "concors" "concordis"; -- [XXXBO] :: agreeing, concurring; like-minded; united, joint, shared; peaceful, harmonious; concrasso_V2 = mkV2 (mkV "concrassare") ; -- [DSXFS] :: thicken, make thick; concreatus_A = mkA "concreatus" "concreata" "concreatum" ; -- [DEXES] :: created together; + concrebresco_V = mkV "concrebrescere" "concrebresco" "concrebrui" nonExist; -- [XXXFO] :: become frequent; (thoroughly, very); increase, gather strength (L+S); + concredo_V2 = mkV2 (mkV "concredere" "concredo" "concredidi" "concreditus ") ; -- [XXXCO] :: entrust for safe keeping; confide (secret or similar); consign/commit (L+S); + concreduo_V2 = mkV2 (mkV "concreduere" "concreduo" "concredui" "concreditus ") ; -- [BXXDS] :: entrust for safe keeping; confide (secret or similar); consign/commit (L+S); concrematio_F_N = mkN "concrematio" "concremationis " feminine ; -- [DXXFS] :: burning up; conflagration, great fire; concrementum_N_N = mkN "concrementum" ; -- [XXXFO] :: concretion; mixture (L+S); concremo_V2 = mkV2 (mkV "concremare") ; -- [XXXDO] :: consume by fire; burn up/down entirely/completely/thoroughly; burn together; @@ -11842,14 +12594,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg concrepatio_V = mkV "concrepatiare" ; -- [DXXFS] :: rattle/sound much/thoroughly/loudly; concrepo_V = mkV "concrepare" ; -- [XXXCO] :: make noise (door), grate/creak; sound, crash/clash, rattle; snap (fingers); concrescentia_F_N = mkN "concrescentia" ; -- [XSXFO] :: coagulation, solidification; condensing (L+S); + concresco_V = mkV "concrescere" "concresco" "concrevi" "concretus "; -- [XSXBO] :: thicken; condense/collect; set/curdle/congeal; clot/coagulate; solidify/freeze; concretio_F_N = mkN "concretio" "concretionis " feminine ; -- [XSXEO] :: formation into solid matter, compacting/condensing; materiality; matter/solid; concretum_N_N = mkN "concretum" ; -- [XSXFS] :: concrete; firm/solid matter; --- SLASHSTUFF concretus_A : A2 concretus, concreta -um, concretior -or -us, concretissimus -a -um -- [XSXBO] :: |condensed; curdled/clotted; cohering/closed up; constipated; ingrained (sin); + concretus_A = mkA "concretus" ; -- [XSXBO] :: |condensed; curdled/clotted; cohering/closed up; constipated; ingrained (sin); concretus_M_N = mkN "concretus" "concretus " masculine ; -- [XSXNO] :: coagulation; solidifying; condensation (L+S); concriminor_V = mkV "concriminari" ; -- [XLXFO] :: bring a charge; make an accusation; make bitter accusations, complain (L+S); concrispo_V = mkV "concrispare" ; -- [XXXEO] :: curl (hair); move in curls, curl/swirl (vapors/fog); brandish (weapon) (L+S); concrispus_A = mkA "concrispus" "concrispa" "concrispum" ; -- [DXXFS] :: curled; - concrucifigo_V2 = mkV2 (mkV "concrucifigare") ; -- [DEXES] :: crucify together; + concrucifigo_V2 = mkV2 (mkV "concrucifigere" "concrucifigo" "concrucifixi" "concrucifixus ") ; -- [EEXEW] :: crucify together; concrusio_V2 = mkV2 (mkV "concrusiare") ; -- [XXXFO] :: cause violent pain; torment, rack, torture severely; concrustatus_A = mkA "concrustatus" "concrustata" "concrustatum" ; -- [DXXES] :: incrusted, entirely covered with a crust; conctabundus_A = mkA "conctabundus" "conctabunda" "conctabundum" ; -- [XXXDS] :: lingering, loitering; slow to action, delaying, hesitating, hesitant; tardy; @@ -11873,19 +12626,23 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conculcatio_F_N = mkN "conculcatio" "conculcationis " feminine ; -- [DXXES] :: treading under foot, stamping on; conculco_V2 = mkV2 (mkV "conculcare") ; -- [XXXCO] :: tread/trample upon/underfoot/down; crush, oppress; despise, disregard; conculium_N_N = mkN "conculium" ; -- [XXXCO] :: mollusk, murex/purple-fish; purple, purple dye/garments (pl.); plant iasine; + concumbo_V = mkV "concumbere" "concumbo" "concumbui" "concumbitus "; -- [XXXCO] :: lie with/together (w/DAT); (for sexual intercourse); cohabit; concumulatus_A = mkA "concumulatus" "concumulata" "concumulatum" ; -- [DXXFS] :: heaped up; accumulated; concupiens_A = mkA "concupiens" "concupientis"; -- [DXXES] :: very desirous, warmly desiring; + concupio_V2 = mkV2 (mkV "concupere" "concupio" "concupivi" "concupitus ") ; -- [XXXFO] :: desire/wish greatly/eagerly/ardently; covet, long for, be desirous of; concupiscentia_F_N = mkN "concupiscentia" ; -- [DXXDS] :: longing, eager desire for; concupiscence; desire for carnal/worldly things; concupiscentialis_A = mkA "concupiscentialis" "concupiscentialis" "concupiscentiale" ; -- [DXXFS] :: full of desire; (lustful); concupiscentivus_A = mkA "concupiscentivus" "concupiscentiva" "concupiscentivum" ; -- [DXXFS] :: passionately desiring; concupiscibilis_A = mkA "concupiscibilis" "concupiscibilis" "concupiscibile" ; -- [DEXFS] :: worthy to be longed for, very desirable; valuable (Ecc); concupiscitivus_A = mkA "concupiscitivus" "concupiscitiva" "concupiscitivum" ; -- [DXXFS] :: passionately desiring; + concupisco_V2 = mkV2 (mkV "concupiscere" "concupisco" "concupivi" "concupitus ") ; -- [XXXCO] :: desire eagerly/ardently; covet, long for; aim at; conceive a strong desire for; concupitor_M_N = mkN "concupitor" "concupitoris " masculine ; -- [DXXFS] :: coveter, one who longs eagerly for/covets something; concurator_M_N = mkN "concurator" "concuratoris " masculine ; -- [XLXFO] :: joint guardian; co-trustee; concurialis_A = mkA "concurialis" "concurialis" "concuriale" ; -- [XLXIO] :: of/belonging to same curia/division of the Roman people; concurialis_M_N = mkN "concurialis" "concurialis " masculine ; -- [XLXIO] :: one belonging to the same curia/division of the Roman people; concuro_V2 = mkV2 (mkV "concurare") ; -- [XXXFO] :: attend to thoroughly/completely; care for suitably (L+S); concurrentia_F_N = mkN "concurrentia" ; -- [EXXEE] :: concurrence; mutual participation; competition (Cal); + concurro_V = mkV "concurrere" "concurro" "concurri" "concursus "; -- [XWXAO] :: |charge, fight/engage in battle; come running up/in large numbers; rally; concursatio_F_N = mkN "concursatio" "concursationis " feminine ; -- [XWXCO] :: running/pushing together; journeying to and fro; skirmish; disorderly meeting; concursator_A = mkA "concursator" "concursatoris"; -- [XWXFO] :: skirmishing; that runs hither and thither/to and fro/about; concursator_M_N = mkN "concursator" "concursatoris " masculine ; -- [XWXCS] :: skirmisher; one who runs hither and thither/to and fro/about; @@ -11900,16 +12657,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg concussura_F_N = mkN "concussura" ; -- [DLXFS] :: extortion, extorting money by threats; concussus_A = mkA "concussus" "concussa" "concussum" ; -- [DXXFS] :: stirred/shaken up; restless; concussus_M_N = mkN "concussus" "concussus " masculine ; -- [XXXEO] :: action of striking together; shock; shaking (L+S); concussion; + concustodio_V2 = mkV2 (mkV "concustodire" "concustodio" "concustodivi" "concustoditus ") ; -- [XXXDO] :: watch over/carefully, guard, protect; + concutio_V2 = mkV2 (mkV "concutere" "concutio" "concussi" "concussus ") ; -- [XXXBO] :: |strike together/to damage; weaken/shake/shatter; harass/intimidate; rouse; condalium_N_N = mkN "condalium" ; -- [XXXDO] :: ring (worn on the finger); condama_F_N = mkN "condama" ; -- [FLXFY] :: farmer's land; land held by colonus; condator_M_N = mkN "condator" "condatoris " masculine ; -- [DXXFS] :: joint contributor/giver/donor; condecens_A = mkA "condecens" "condecentis"; -- [DXXFS] :: becoming, seemly; condeceo_V = mkV "condecere" ; -- [XXXEO] :: be fitting/proper for, suit; + condecerno_V2 = mkV2 (mkV "condecernere" "condecerno" "condecrevi" "condecretus ") ; -- [DXXFS] :: decide, judge, determine together; jointly settle/resolve; condecet_V0 = mkV0 "condecet" ; -- [XXXCO] :: it is fitting/becoming/seemly/meet; (w/ACC + INF); condecoro_V2 = mkV2 (mkV "condecorare") ; -- [XXXCO] :: adorn, embellish with ornament/excessively/carefully; decorate, grace; condecuralis_M_N = mkN "condecuralis" "condecuralis " masculine ; -- [DWXFS] :: he who has been a decurion with one; fellow decurion; condecurio_M_N = mkN "condecurio" "condecurionis " masculine ; -- [XWXIO] :: fellow decurion; he who is/has been a decurion with one; condelecto_V = mkV "condelectare" ; -- [DEXFS] :: delight in; (PASSIVE) be delighted with something; + condeliquesco_V = mkV "condeliquescere" "condeliquesco" "condelicui" nonExist; -- [XXXFO] :: melt wholly/completely (away); dissolve (completely), dissipate; condemnabilis_A = mkA "condemnabilis" "condemnabilis" "condemnabile" ; -- [DXXFS] :: worthy of condemnation; condemnatio_F_N = mkN "condemnatio" "condemnationis " feminine ; -- [XLXDO] :: condemnation; verdict; damages awarded in a civil case; sentence (Ecc); condemnator_M_N = mkN "condemnator" "condemnatoris " masculine ; -- [XLXFO] :: accuser, one who procures a condemnation; condemner, one who passes sentence; @@ -11922,12 +12683,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg condenso_V2 = mkV2 (mkV "condensare") ; -- [XXXCO] :: compress; pack/press closely together; condense/make firm; (PASS) grow thickly; condensum_N_N = mkN "condensum" ; -- [EXXEE] :: thicket; woods (pl.); leafy boughs; condensus_A = mkA "condensus" "condensa" "condensum" ; -- [XXXCO] :: dense, thick; wedged together, closely/tightly packed; close; coherent; + condepso_V2 = mkV2 (mkV "condepsere" "condepso" "condepsui" "condepstus ") ; -- [XXXFO] :: knead together; + condescendo_V = mkV "condescendere" "condescendo" "condescendi" "condescensus "; -- [DXXES] :: condescend, stoop; let oneself down; condescensio_F_N = mkN "condescensio" "condescensionis " feminine ; -- [DXXFS] :: condescension; condesertor_M_N = mkN "condesertor" "condesertoris " masculine ; -- [DWXFS] :: fellow-deserter; condicio_F_N = mkN "condicio" "condicionis " feminine ; -- [XXXCO] :: |marriage (contract); spouse, bride; relation of lover/mistress; paramour; condicionabilis_A = mkA "condicionabilis" "condicionabilis" "condicionabile" ; -- [DXXFS] :: conditional; condicionalis_A = mkA "condicionalis" "condicionalis" "condicionale" ; -- [XXXEO] :: conditional, contingent upon certain conditions, with a condition attached; condicionaliter_Adv = mkAdv "condicionaliter" ; -- [XXXEO] :: conditionally, in a conditional manner; + condico_V2 = mkV2 (mkV "condicere" "condico" "condixi" "condictus ") ; -- [XLXCO] :: |claim redress/restitution; make actions for damages; fix/appoint (date/price); condicticius_A = mkA "condicticius" "condicticia" "condicticium" ; -- [XLXEO] :: relating to reclaiming property/restitution/repossession; condictio_F_N = mkN "condictio" "condictionis " feminine ; -- [DEXES] :: |proclamation of a religious festival; condictitius_A = mkA "condictitius" "condictitia" "condictitium" ; -- [XLXES] :: (legal action) for the purpose of reclaiming property/restitution/repossession; @@ -11938,9 +12702,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg condimentarius_A = mkA "condimentarius" "condimentaria" "condimentarium" ; -- [XXXNO] :: used for seasoning; of/pertaining to spices/seasoning; condimentarius_M_N = mkN "condimentarius" ; -- [DXXFS] :: one who prepares/sells spices/seasoning; condimentum_N_N = mkN "condimentum" ; -- [XXXCO] :: spice, seasoning; that which renders acceptable; condiment; tempering quality; + condio_V2 = mkV2 (mkV "condire" "condio" "condivi" "conditus ") ; -- [XXXCO] :: preserve/pickle; embalm/mummify; spice; season/flavor/render pleasant/give zest; condiscipula_F_N = mkN "condiscipula" ; -- [XGXEO] :: fellow pupil (female); schoolmate; condiscipulatus_M_N = mkN "condiscipulatus" "condiscipulatus " masculine ; -- [XGXEO] :: time/fact of being a fellow pupil; companionship in school (L+S); condiscipulus_M_N = mkN "condiscipulus" ; -- [XGXCO] :: fellow pupil/student (male); schoolfellow, schoolmate; fellow disciple (Ecc); + condisco_V2 = mkV2 (mkV "condiscere" "condisco" "condidici" nonExist) ; -- [XXXCO] :: learn thoroughly/well; learn about; learn in company with (another) (w/DAT); conditaneus_A = mkA "conditaneus" "conditanea" "conditaneum" ; -- [XXXFO] :: suitable for pickling/preserving; pickled/preserved (L+S); conditarius_M_N = mkN "conditarius" ; -- [XXXIO] :: dealer in preserved foods; conditicius_A = mkA "conditicius" "conditicia" "conditicium" ; -- [DXXFS] :: preserved; laid up; @@ -11962,11 +12728,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conditura_F_N = mkN "conditura" ; -- [XXXCS] :: |preparing; preserving (fruits); preserving material; condiment, spice; jam; conditus_A = mkA "conditus" "condita" "conditum" ; -- [XXXCO] :: preserved, kept in store; hidden, concealed, secret; sunken (eyes); conditus_M_N = mkN "conditus" "conditus " masculine ; -- [XLXFO] :: founding (of a city); establishment; preparing (L+S); preserving fruit; hiding; + condo_V2 = mkV2 (mkV "condere" "condo" "condidi" "conditus ") ; -- [XXXAO] :: ||restore; sheathe (sword); plunge/bury (weapon in enemy); put out of sight; + condocefacio_V2 = mkV2 (mkV "condocefacere" "condocefacio" "condocefeci" "condocefactus ") ; -- [XXXEO] :: train; discipline; teach, instruct (L+S); condocefio_V = mkV "condoceferi" ; -- [XXXEO] :: be/become trained/disciplined/taught/instructed (L+S); (condocefacio PASS); condoceo_V2 = mkV2 (mkV "condocere") ; -- [XGXFO] :: teach, instruct; train, exercise (L+S); condoctor_M_N = mkN "condoctor" "condoctoris " masculine ; -- [DGXFS] :: fellow-teacher; condoctus_A = mkA "condoctus" "condocta" "condoctum" ; -- [XGXEO] :: taught; well learnt, well instructed; condoleo_V = mkV "condolere" ; -- [DEXCS] :: feel severe pain; suffer greatly/with another; feel another's pain; empathize; + condolesco_V = mkV "condolescere" "condolesco" "condolui" nonExist; -- [XXXCO] :: be painful, ache; feel grief/sorrow; grieve; condoma_F_N = mkN "condoma" ; -- [FLXFY] :: farmer's land; land held by colonus; condominus_M_N = mkN "condominus" ; -- [FXXFE] :: co-owner, one who shares domain; condomo_V2 = mkV2 (mkV "condomare") ; -- [DXXFS] :: check, curb; tame completely; @@ -11974,12 +12743,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg condonatio_F_N = mkN "condonatio" "condonationis " feminine ; -- [XXXEO] :: giving away; donation, gift (Ecc); condonatus_M_N = mkN "condonatus" ; -- [EEXEE] :: lay brother; oblate; condono_V2 = mkV2 (mkV "condonare") ; -- [XXXBO] :: give (away/up); present; make present of; forgive/pardon/absolve; sacrifice to; + condormio_V = mkV "condormire" "condormio" "condormivi" "condormitus "; -- [XXXEO] :: sleep soundly; be fast asleep; + condormisco_V = mkV "condormiscere" "condormisco" "condomivi" nonExist; -- [XXXDO] :: fall asleep, go to sleep; condrilla_F_N = mkN "condrilla" ; -- [XAXNS] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); condrille_F_N = mkN "condrille" "condrilles " feminine ; -- [XAXNO] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); condrion_N_N = mkN "condrion" "condrii " neuter ; -- [XAXNO] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); condrylla_F_N = mkN "condrylla" ; -- [XAXNS] :: plant, gum succory? (Chondrilla funcea); Spanish savory, endive/chicory (L+S); conducenter_Adv = mkAdv "conducenter" ; -- [XXXFO] :: profitably, wisely; becomingly; properly, suitably, appropriately (L+S); --- SLASHSTUFF conducibilis_A : A2 conducibilis, conducibile, conducibilior -or -us, conducibilissimus -a -um -- [XXXDO] :: expedient, advantageous; wise, advisable; profitable (L+S); + conducibilis_A = mkA "conducibilis" ; -- [XXXDO] :: expedient, advantageous; wise, advisable; profitable (L+S); + conduco_V = mkV "conducere" "conduco" "conduxi" "conductus "; -- [XXXBO] :: be of advantage/profitable/expedient; be proper/fitting/concerned with; tend to + conduco_V2 = mkV2 (mkV "conducere" "conduco" "conduxi" "conductus ") ; -- [XXXAO] :: |employ, hire; rent; borrow; contract for, undertake; farm the taxes; conducticius_A = mkA "conducticius" "conducticia" "conducticium" ; -- [XXXDO] :: hired, mercenary; rented (house); of/pertaining to hire (L+S); conductio_F_N = mkN "conductio" "conductionis " feminine ; -- [DBXES] :: spasm; convulsion; conductitius_A = mkA "conductitius" "conductitia" "conductitium" ; -- [XXXDS] :: hired, mercenary; rented (house); of/pertaining to hire (L+S); @@ -12001,6 +12774,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg condylus_M_N = mkN "condylus" ; -- [DBXDS] :: knob/knuckle of a joint; joint of a reed, reed; fist (pl.); ring (OLD); conea_F_N = mkN "conea" ; -- [AAIFO] :: stork; (Praenestine form of circonia); conective_Adv = mkAdv "conective" ; -- [DXXFS] :: connectively, conjunctively; + conecto_V2 = mkV2 (mkV "conectere" "conecto" "conexi" "conexus ") ; -- [XXXBO] :: join/fasten/link together, connect/associate; lead to; tie; implicate/involve; conesto_V2 = mkV2 (mkV "conestare") ; -- [XXXCO] :: honor, grace; do honor/pay respect to; make respectable; prevent baldness (L+S); conexe_Adv = mkAdv "conexe" ; -- [DXXFS] :: in connection; connectively; conexio_F_N = mkN "conexio" "conexionis " feminine ; -- [DXXDS] :: |binding together; close union; organic union; syllable; @@ -12014,6 +12788,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg confabulatus_M_N = mkN "confabulatus" "confabulatus " masculine ; -- [DXXFS] :: conversation; confabulo_M_N = mkN "confabulo" "confabulonis " masculine ; -- [GXXET] :: companion; (Erasmus); confabulor_V = mkV "confabulari" ; -- [XXXDO] :: converse, talk together; talk about; discuss something (L+S); + confacio_V2 = mkV2 (mkV "confacere" "confacio" "confeci" "confactus ") ; -- [XXXFS] :: make together; confamulans_A = mkA "confamulans" "confamulantis"; -- [DXXFS] :: serving together; (in the same household); confamulus_M_N = mkN "confamulus" ; -- [DXXFS] :: fellow-servant; confarreatio_F_N = mkN "confarreatio" "confarreationis " feminine ; -- [XXXEO] :: marriage ceremony, in which meal/grain (far) was given as an offering; @@ -12029,17 +12804,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg confederatio_F_N = mkN "confederatio" "confederationis " feminine ; -- [FXXFM] :: confederation; league; confederatorus_M_N = mkN "confederatorus" ; -- [FXXFM] :: conspirator; confedero_V = mkV "confederare" ; -- [FXXFM] :: confederate; join in league; + confercio_V2 = mkV2 (mkV "confercire" "confercio" "confersi" "confertus ") ; -- [XXXCO] :: stuff/cram/pack/press (close) together; fill densely; raise a shout in unison; conferentia_F_N = mkN "conferentia" ; -- [EXXEE] :: conference, meeting, gathering; confermento_V2 = mkV2 (mkV "confermentare") ; -- [DXXFS] :: leaven, ferment through and through; confero_V2 = mkV2 (mkV "conferre") ; -- [XXXAO] :: |discuss/debate/confer; oppose; pit/match against another; blame; bestow/assign; conferrumino_V2 = mkV2 (mkV "conferruminare") ; -- [XXXNO] :: cause to join; knit together (fractures); cement (L+S); solder together; --- SLASHSTUFF confersus_A : A2 confersus, confersa -um, confersior -or -us, confersissimus -a -um -- [XXXFO] :: |full (of), crammed (with), abounding (in) (w/ABL); as a whole, summarized; + confersus_A = mkA "confersus" ; -- [XXXFO] :: |full (of), crammed (with), abounding (in) (w/ABL); as a whole, summarized; conferte_Adv =mkAdv "conferte" "confertius" "confertissime" ; -- [DXXFS] :: in a compact body/bunch/formation; closely; confertim_Adv = mkAdv "confertim" ; -- [XXXEO] :: in a compact body/bunch/formation; closely; --- SLASHSTUFF confertus_A : A2 confertus, conferta -um, confertior -or -us, confertissimus -a -um -- [XXXBO] :: |full (of), crammed (with), abounding (in) (w/ABL); as a whole, summarized; + confertus_A = mkA "confertus" ; -- [XXXBO] :: |full (of), crammed (with), abounding (in) (w/ABL); as a whole, summarized; conferumino_V2 = mkV2 (mkV "conferuminare") ; -- [XXXNO] :: cause to join; knit together (fractures); cement (L+S); solder together; conferva_F_N = mkN "conferva" ; -- [XAXNO] :: aquatic plant; (kind of conferva/fresh water Green Algae?); (w/medicinal power); + confervefacio_V2 = mkV2 (mkV "confervefacere" "confervefacio" "confervefeci" "confervefactus ") ; -- [XXXEO] :: boil, make thoroughly hot; make glowing/melting hot (L+S); confervefio_V = mkV "conferveferi" ; -- [XXXEO] :: be boiled/made very hot/glowing/melting hot (L+S); (confervefacio PASS); + confervesco_V = mkV "confervescere" "confervesco" "confervui" nonExist; -- [XXXEO] :: become heated; grow hot; begin to boil (L+S); heal, grow together (bones); + confervo_V = mkV "confervere" "confervo" "confervui" nonExist; -- [XBXEO] :: knit (broken bones), grow together, heal; seethe/boil together (L+S); confessarius_M_N = mkN "confessarius" ; -- [EEXDE] :: confessor; confessio_F_N = mkN "confessio" "confessionis " feminine ; -- [EEXER] :: ||praise, thanksgiving; (Vulgate); confessionale_N_N = mkN "confessionale" "confessionalis " neuter ; -- [EEXDE] :: confessional; @@ -12053,7 +12832,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg confestim_Adv = mkAdv "confestim" ; -- [XXXBO] :: immediately, suddenly; at once, without delay, forthwith; rapidly, speedily; confibula_F_N = mkN "confibula" ; -- [XXXFS] :: wooden double clamp/cramp, clincher; conficiens_A = mkA "conficiens" "conficientis"; -- [XXXEO] :: productive of; [~ litterarum => diligent in keeping accounts]; - conficio_V2 = mkV2 (mkV "conficere") ; -- [BXXES] :: ||finish off; kill, dispatch; defeat finally, subdue/reduce/pacify; chop/cut up; + conficio_V2 = mkV2 (mkV "conficere" "conficio" "confeci" "confectus ") ; -- [XXXAO] :: ||finish off; kill, dispatch; defeat finally, subdue/reduce/pacify; chop/cut up; confictio_F_N = mkN "confictio" "confictionis " feminine ; -- [XXXFO] :: fabrication; invention (of an accusation/falsehood); conficto_V2 = mkV2 (mkV "confictare") ; -- [XXXEO] :: fabricate/invent/concoct an accusation/falsehood together; counterfeit/feign; confictor_M_N = mkN "confictor" "confictoris " masculine ; -- [DXXFS] :: fabricator, he who fabricates/concocts a thing; @@ -12063,12 +12842,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg confidens_A = mkA "confidens" "confidentis"; -- [XXXCO] :: assured/confident; bold/daring/undaunted; overconfident, presumptuous; trusting; confidenter_Adv =mkAdv "confidenter" "confidentius" "confidentissime" ; -- [XXXCO] :: boldly, daringly, with assurance; audaciously, impudently, with effrontery; confidentia_F_N = mkN "confidentia" ; -- [XXXCO] :: assurance/confidence; boldness, impudence, audacity; firm belief/expectation; --- SLASHSTUFF confidentiloquus_A : A2 confidentiloquus, confidentiloqua -um, confidentiloquior -or -u, confidentiloquissimus -a -- [AXXFO] :: speaking audaciously; speaking confidently (L+S); + confidentiloquus_A = mkA "confidentiloquus" ; -- [AXXFO] :: speaking audaciously; speaking confidently (L+S); confideo_V = mkV "confidere" ; -- [EXXFW] :: rely on, trust (to); believe, be confident/assured/sure; (Vulgate 4 Ezra 7:98); + configo_V2 = mkV2 (mkV "configere" "configo" "confixi" "confixus ") ; -- [XXXBO] :: |pierce through, transfix; strike down, pierce with a weapon; configuratio_F_N = mkN "configuratio" "configurationis " feminine ; -- [DXXFS] :: configuration; similar formation; configuratus_A = mkA "configuratus" "configurata" "configuratum" ; -- [EXXFE] :: made like; fashioned; conformable; configuro_V2 = mkV2 (mkV "configurare") ; -- [XXXEO] :: mold, shape; form from/after something, fashion accordingly (L+S); + confindo_V2 = mkV2 (mkV "confindere" "confindo" "confidi" "confissus ") ; -- [XXXFO] :: split, cleave; divide, cleave asunder (L+S); confine_N_N = mkN "confine" "confinis " neuter ; -- [XXXEO] :: boundary, border, border-line; confine, neighborhood (L+S); + confingo_V2 = mkV2 (mkV "confingere" "confingo" "confinxi" "confictus ") ; -- [XXXCO] :: fashion/fabricate, construct by shaping/molding; invent/feign/devise; pretend; confinis_A = mkA "confinis" "confinis" "confine" ; -- [DXXES] :: |pertaining to boundaries; boundary-, border-; confinium_N_N = mkN "confinium" ; -- [XXXBO] :: common boundary (area); border, limit; proximity/nearness/neighborhood; confinius_A = mkA "confinius" "confinia" "confinium" ; -- [DXXES] :: adjoining, contiguous/having a common boundary; closely connected, allied, akin; @@ -12083,7 +12865,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg confirmativus_A = mkA "confirmativus" "confirmativa" "confirmativum" ; -- [DXXDS] :: serving for confirmation, confirmative, corroborative; confirmator_M_N = mkN "confirmator" "confirmatoris " masculine ; -- [XLXFO] :: guarantor; that/who confirms/establishes a thing (L+S); surety, security; confirmatrix_F_N = mkN "confirmatrix" "confirmatricis " feminine ; -- [DLXFS] :: she who confirms/establishes a thing; --- SLASHSTUFF confirmatus_A : A2 confirmatus, confirmata -um, confirmatior -or -us, confirmatissimus -a -um -- [XXXCS] :: |encouraged; courageous, resolute; asserted/affirmed; certain, credible; proved; + confirmatus_A = mkA "confirmatus" ; -- [XXXCS] :: |encouraged; courageous, resolute; asserted/affirmed; certain, credible; proved; confirmitas_F_N = mkN "confirmitas" "confirmitatis " feminine ; -- [BXXFO] :: self-assurance; firmness of will (L+S); obstinacy; confirmo_V2 = mkV2 (mkV "confirmare") ; -- [XXXAO] :: |assert positively; declare, prove, confirm, support; sanction; encourage; confiscatio_F_N = mkN "confiscatio" "confiscationis " feminine ; -- [XLXFO] :: confiscation/seizure of a person's property; forfeiting; @@ -12094,6 +12876,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg confixilis_A = mkA "confixilis" "confixilis" "confixile" ; -- [XXXFO] :: fixed together, constructed; that can be joined together (L+S); confixio_F_N = mkN "confixio" "confixionis " feminine ; -- [DXXFS] :: firm joining together; conflabello_V2 = mkV2 (mkV "conflabellare") ; -- [DXXFS] :: fan violently; kindle; + conflaccesco_V = mkV "conflaccescere" "conflaccesco" nonExist nonExist; -- [XXXFO] :: grow weak; grow quite languid (L+S); conflagratio_F_N = mkN "conflagratio" "conflagrationis " feminine ; -- [XXXFO] :: conflagration, burning; (applied to the eruption of a volcano); conflagratus_A = mkA "conflagratus" "conflagrata" "conflagratum" ; -- [DXXES] :: burnt up; completely consumed by fire; conflagro_V = mkV "conflagrare" ; -- [XXXCO] :: be on fire/burn; be burnt down/consumed/utterly destroyed; be/become inflamed; @@ -12117,6 +12900,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conflictus_M_N = mkN "conflictus" "conflictus " masculine ; -- [XXXDO] :: clash, collision; impact; fight, contest (L+S); impulse; impression; necessity; confligatus_A = mkA "confligatus" "confligata" "confligatum" ; -- [DXXFS] :: struck together; collided; contended, battled; argued, disagreed; confligium_N_N = mkN "confligium" ; -- [DXXES] :: striking/dashing together; (waves); + confligo_V2 = mkV2 (mkV "confligere" "confligo" "conflixi" "conflictus ") ; -- [XXXBO] :: clash, collide; contend/fight/combat; be in conflict/at war; argue/disagree; conflo_V2 = mkV2 (mkV "conflare") ; -- [FXXBE] :: ||forge; refine, purify; inflame; conflorens_A = mkA "conflorens" "conflorentis"; -- [DXXFS] :: blooming/blossoming/flourishing together/strongly; confloreo_V = mkV "conflorere" ; -- [FXXEE] :: bloom/flourish together; @@ -12125,16 +12909,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg confluctuo_V = mkV "confluctuare" ; -- [XXXFO] :: wave, swell, undulate, fluctuate; surge/rise in waves on all sides (L+S); confluens_M_N = mkN "confluens" "confluentis " masculine ; -- [XXXCO] :: confluence, meeting place/junction of rivers; name of town (pl.) (now Coblenz); confluentia_F_N = mkN "confluentia" ; -- [DXXFS] :: conflux, flowing together; confluence; [Confluentia => Coblenz]; + confluo_V = mkV "confluere" "confluo" "confluxi" "confluxus "; -- [XXXBO] :: flow/flock/come together/abundantly, meet/assemble; gather/collect; be brought; confluus_A = mkA "confluus" "conflua" "confluum" ; -- [DXXES] :: flowing together; confluvium_N_N = mkN "confluvium" ; -- [XXXEO] :: confluence, place where streams of water/air meet; sink, drain; conflux_F_N = mkN "conflux" "conflugis " feminine ; -- [XXXFO] :: places (pl.) with rivers on all sides; junction/meeting of several rivers; conflux_M_N = mkN "conflux" "conflugis " masculine ; -- [XXXFO] :: places (pl.) with rivers on all sides; junction/meeting of several rivers; + confodio_V2 = mkV2 (mkV "confodere" "confodio" "confodi" "confossus ") ; -- [XXXCO] :: stab/run through, wound fatally; pierce, harm; dig up/turn over (land); trench; confoederatio_F_N = mkN "confoederatio" "confoederationis " feminine ; -- [DLXFS] :: agreement, covenant; league, union, confederation (Ecc); confoedero_V2 = mkV2 (mkV "confoederare") ; -- [DLXES] :: unite, join in a league; confoedo_V2 = mkV2 (mkV "confoedare") ; -- [XXXFO] :: befoul, make filthy; confoedustus_A = mkA "confoedustus" "confoedusta" "confoedustum" ; -- [XLXFS] :: allied, joined in alliance; confoedustus_M_N = mkN "confoedustus" ; -- [XWXFO] :: allies (pl.); conforane_A = mkA "conforane" "conforaneis"; -- [XXXFS] :: working/selling at the same market place; + conforio_V2 = mkV2 (mkV "conforire" "conforio" "conforivi" nonExist) ; -- [XXXFO] :: defile/pollute with ordure/diarrhea; (rude); conformalis_A = mkA "conformalis" "conformalis" "conformale" ; -- [DEXES] :: similar, like, conformable; conformatio_F_N = mkN "conformatio" "conformationis " feminine ; -- [XXXCO] :: shape, form; character/constitution; idea, notion; figure of speech; inflection; conformator_M_N = mkN "conformator" "conformatoris " masculine ; -- [DXXFS] :: framer, former; @@ -12146,15 +12933,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg confortatio_F_N = mkN "confortatio" "confortationis " feminine ; -- [EEXFE] :: comfort, consolation, solace; conforto_V2 = mkV2 (mkV "confortare") ; -- [DXXES] :: strengthen very much; (reinforce, fortify); console, comfort (Bee); encourage; confortor_V = mkV "confortari" ; -- [FXXEE] :: wax strong; take courage; --- SLASHSTUFF confossus_A : A2 confossus, confossa -um, confossior -or -us, confossissimus -a -um -- [BXXFS] :: punctured, pierced; pierced through; full of holes; + confossus_A = mkA "confossus" ; -- [BXXFS] :: punctured, pierced; pierced through; full of holes; confoveo_V2 = mkV2 (mkV "confovere") ; -- [XXXEO] :: care for, tend; warm (L+S); foster; cherish assiduously; + confracesco_V = mkV "confracescere" "confracesco" "confracui" nonExist; -- [XXXFO] :: putrefy, rot; confractio_F_N = mkN "confractio" "confractionis " feminine ; -- [DXXES] :: breach; rupture; fracture; confractorium_N_N = mkN "confractorium" ; -- [EEXFE] :: prayer at end of Cannon in Ambrosian rite; confractura_F_N = mkN "confractura" ; -- [DXXFS] :: breach; rupture; fracture; confractus_A = mkA "confractus" "confracta" "confractum" ; -- [XXXEO] :: broken; irregular; uneven; confragose_Adv = mkAdv "confragose" ; -- [XXXFS] :: roughly, unevenly; confragosum_N_N = mkN "confragosum" ; -- [XXXDO] :: rough/uneven/broken ground; rough place; thicket; difficulty; --- SLASHSTUFF confragosus_A : A2 confragosus, confragosa -um, confragosior -or -us, confragosissimus -a -um -- [XXXCS] :: rough, uneven, broken; difficult, hard, difficult to accomplish; + confragosus_A = mkA "confragosus" ; -- [XXXCS] :: rough, uneven, broken; difficult, hard, difficult to accomplish; confragum_N_N = mkN "confragum" ; -- [XXXFO] :: rough place; thicket (L+S); confragus_A = mkA "confragus" "confraga" "confragum" ; -- [XXXEO] :: rough, uneven, broken; difficult, hard, difficult to accomplish; confraria_F_N = mkN "confraria" ; -- [FXXEM] :: brotherhood, association, fraternity; @@ -12163,18 +12951,24 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg confratria_F_N = mkN "confratria" ; -- [EEXEE] :: sodality, society; confrax_F_N = mkN "confrax" "confragis " feminine ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); confrax_M_N = mkN "confrax" "confragis " masculine ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); + confremo_V = mkV "confremere" "confremo" "confremui" nonExist; -- [XXXDO] :: resound, ring, echo; make a noise; murmur loudly; confrequento_V2 = mkV2 (mkV "confrequentare") ; -- [XXXCO] :: |celebrate/keep (festival); keep in mind; maintain (memory of the dead); confricamentum_N_N = mkN "confricamentum" ; -- [DXXFS] :: something/compound for rubbing; dentifrice; confricatio_F_N = mkN "confricatio" "confricationis " feminine ; -- [DXXFS] :: vigorous rubbing; friction; confrico_V2 = mkV2 (mkV "confricare") ; -- [XXXCO] :: rub vigorously; rub (with unguents, massage, rub down (body); rub/make smooth; + confrigo_V2 = mkV2 (mkV "confrigere" "confrigo" "confrixi" "confrictus ") ; -- [EXXEE] :: burn up; + confringo_V2 = mkV2 (mkV "confringere" "confringo" "confregi" "confractus ") ; -- [XXXCO] :: break up/down/in pieces/in two; shatter/destroy/crush/ruin/wreck; subvert/undo; confrio_V2 = mkV2 (mkV "confriare") ; -- [XXXFO] :: cover with power (or the like); rub in (L+S); confrixo_V2 = mkV2 (mkV "confrixare") ; -- [DXXFS] :: roast/fry (with something); confronto_V2 = mkV2 (mkV "confrontare") ; -- [EXXEE] :: confront; confuga_C_N = mkN "confuga" ; -- [DLXFS] :: refugee, one who takes refuge; confugela_F_N = mkN "confugela" ; -- [XXXFO] :: place of refuge; + confugio_V = mkV "confugere" "confugio" "confugi" "confugitus "; -- [XXXBO] :: flee (for refuge/safety/protection); take refuge; have recourse/appeal to; confugium_N_N = mkN "confugium" ; -- [XXXEO] :: sanctuary, refuge, place of refuge; shelter (L+S); + confulcio_V2 = mkV2 (mkV "confulcire" "confulcio" "confulsi" "confultus ") ; -- [XXXFO] :: press together; confulgeo_V = mkV "confulgere" ; -- [BXXFO] :: shine, gleam; be resplendent; shine brightly, glitter, glisten (L+S); confultus_A = mkA "confultus" "confulta" "confultum" ; -- [XXXFS] :: pressed together; + confundo_V2 = mkV2 (mkV "confundere" "confundo" "confudi" "confusus ") ; -- [XXXAO] :: |upset/confuse; blur/jumble; bring disorder/ruin; disfigure; bewilder, dismay; confunero_V2 = mkV2 (mkV "confunerare") ; -- [DXXFS] :: bury, inter; ruin, destroy; confusaneus_A = mkA "confusaneus" "confusanea" "confusaneum" ; -- [XXXFO] :: composite, derived from several sources; mingled (L+S); miscellaneous; confuse_Adv =mkAdv "confuse" "confusius" "confusissime" ; -- [XXXCO] :: in a confused/disorderly/perplexed way, fumblingly; indiscriminately; vaguely; @@ -12182,18 +12976,22 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg confusim_Adv = mkAdv "confusim" ; -- [XXXFO] :: confusedly, in a disorderly manner/fashion; confusio_F_N = mkN "confusio" "confusionis " feminine ; -- [XXXBO] :: mingling/mixture/union; confusion/confounding/disorder; trouble; blushing/shame; confusionismus_M_N = mkN "confusionismus" ; -- [FXXEE] :: confusion; shame; --- SLASHSTUFF confusus_A : A2 confusus, confusa -um, confusior -or -us, confusissimus -a -um -- [XXXBO] :: |confused/perplexed, troubled; vague/indefinite, obscure; embarrassed/blushing; + confusus_A = mkA "confusus" ; -- [XXXBO] :: |confused/perplexed, troubled; vague/indefinite, obscure; embarrassed/blushing; confutatio_F_N = mkN "confutatio" "confutationis " feminine ; -- [XGXEO] :: refutation; action of proving false; confutation (L+S); confuto_V2 = mkV2 (mkV "confutare") ; -- [XXXCO] :: |abash, silence (accuser); shock; disprove, refute; convict of error; put down; confutor_M_N = mkN "confutor" "confutoris " masculine ; -- [DXXFS] :: refuter; opponent; confutuo_V2 = mkV2 (mkV "confutuare") ; -- [XXXFO] :: have sexual intercourse with (woman); (rude); lie with conjugally (L+S); --- IGNORED cong_N : N1 cong., abb. -- M -- [XXXEW] :: liquid measure (about 3 quarts); (6 sextarri, 1/4 urna); abb. cong.; + cong_N = constN "cong." masculine ; -- [XXXEW] :: liquid measure (about 3 quarts); (6 sextarri, 1/4 urna); abb. cong.; + congarrio_V2 = mkV2 (mkV "congarrire" "congarrio" "congarrivi" "congarritus ") ; -- [XXXFO] :: prattle; congaudeo_V = mkV "congaudere" ; -- [DEXES] :: rejoice with one/together; + congelasco_V = mkV "congelascere" "congelasco" nonExist nonExist; -- [XXXEO] :: freeze; congeal owing to cold; congelatio_F_N = mkN "congelatio" "congelationis " feminine ; -- [XXXNO] :: frost; action of freezing; freezing, congealing (L+S); congelatus_A = mkA "congelatus" "congelata" "congelatum" ; -- [XXXEE] :: frozen; congelo_V = mkV "congelare" ; -- [XXXCO] :: |harden; make/become hard; strike fear into, chill; render/become inactive; congeminatio_F_N = mkN "congeminatio" "congeminationis " feminine ; -- [BXXFO] :: doubling; (of an embrace, embracing); congemino_V2 = mkV2 (mkV "congeminare") ; -- [XXXCO] :: double; increase; combine to double size; redouble; employ in repeated action; + congemisco_V = mkV "congemiscere" "congemisco" nonExist nonExist; -- [DEXFS] :: sigh deeply; + congemo_V2 = mkV2 (mkV "congemere" "congemo" "congemui" "congemitus ") ; -- [XXXCO] :: groan/moan (loudly), utter a cry of grief/pain; bewail, lament; sigh deeply; congenatus_A = mkA "congenatus" "congenata" "congenatum" ; -- [XGXEO] :: akin; linguistically related (languages); innate; congener_A = mkA "congener" "congera" "congerum" ; -- [XAXNO] :: of/belonging to same family (plant); of the same race/kind (L+S); congener_M_N = mkN "congener" ; -- [DXXFS] :: joint son-in-law?; @@ -12208,10 +13006,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg congeria_F_N = mkN "congeria" ; -- [DXXES] :: heap, pile, mass; collection/accumulation (events/words); the ruins; chaos; congeries_F_N = mkN "congeries" "congeriei " feminine ; -- [XXXCO] :: heap, pile, mass; collection/accumulation (events/words); the ruins; chaos; congermanatus_A = mkA "congermanatus" "congermanata" "congermanatum" ; -- [XXXFO] :: related, associated; + congermanesco_V = mkV "congermanescere" "congermanesco" nonExist nonExist; -- [XXXEO] :: become allied/united (to); grow up/together with one (L+S); congermanus_A = mkA "congermanus" "congermana" "congermanum" ; -- [DXXFS] :: grown together/up with; united with; congerminalis_A = mkA "congerminalis" "congerminalis" "congerminale" ; -- [DAXFS] :: from the same stalk/stock; congermino_V = mkV "congerminare" ; -- [XAXFO] :: sprout, put forth shoots; shoot forth at the same time (L+S); congero_M_N = mkN "congero" "congeronis " masculine ; -- [BXXES] :: thief; + congero_V2 = mkV2 (mkV "congerere" "congero" "congessi" "congestus ") ; -- [XXXAO] :: |consign (to one's stomach); assemble/crowd together; give repeatedly, shower; congerra_M_N = mkN "congerra" ; -- [XXXFS] :: playfellow; crony; congerro_M_N = mkN "congerro" "congerronis " masculine ; -- [XXXEO] :: fellow idler; boon/jolly companion; (one who contributes to a common feast); congeste_Adv = mkAdv "congeste" ; -- [DXXFS] :: briefly; summarily; @@ -12228,6 +13028,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg congius_M_N = mkN "congius" ; -- [XSXDO] :: liquid measure (about 3 quarts); (6 sextarri, 1/4 urna); abb. cong.; conglacio_V = mkV "conglaciare" ; -- [XXXDS] :: freeze, turn (entirely) to ice; cause to freeze up; be inactive; conglacior_V = mkV "conglaciari" ; -- [XXXDO] :: freeze, turn to ice; + conglisco_V = mkV "congliscere" "conglisco" nonExist nonExist; -- [BXXFO] :: grow, increase; blaze up, be kindled; become illustrious; conglobatim_Adv = mkAdv "conglobatim" ; -- [DXXFS] :: in heaps, in a mass; conglobatio_F_N = mkN "conglobatio" "conglobationis " feminine ; -- [XXXEO] :: accumulation; massing together (things); crowding/gathering together (people); conglobo_V = mkV "conglobare" ; -- [XXXBO] :: form/make into a ball; roll up; accumulate; crowd/press/mass together; clot; @@ -12244,6 +13045,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg congraeco_V2 = mkV2 (mkV "congraecare") ; -- [XXXFO] :: squander like a Greek; lavish on banquets, squander on luxury (L+S); congratulatio_F_N = mkN "congratulatio" "congratulationis " feminine ; -- [DXXES] :: congratulations; wishing of joy, congratulating; congratulor_V = mkV "congratulari" ; -- [XXXEO] :: congratulate; wish joy; rejoice with (ECC); + congredior_V = mkV "congrediri" "congredior" "congressus sum " ; -- [BXXEO] :: meet, approach, near; join in battle, come to grips; contend/engage (at law); congregabilis_A = mkA "congregabilis" "congregabilis" "congregabile" ; -- [XXXFO] :: that group(s) together; social, easily brought together (L+S); congregalis_A = mkA "congregalis" "congregalis" "congregale" ; -- [DXXFS] :: uniting together; joining; congregatim_Adv = mkAdv "congregatim" ; -- [DXXFS] :: together; in crowds; @@ -12262,21 +13064,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg congruens_A = mkA "congruens" "congruentis"; -- [XXXBO] :: |congruent, corresponding to, similar, matching; appropriate, fitting; proper; congruenter_Adv =mkAdv "congruenter" "congruentius" "congruentissime" ; -- [XXXEO] :: agreeably; in a corresponding manner; appropriately, aptly; suitably; congruentia_F_N = mkN "congruentia" ; -- [XXXDO] :: consistency/accordance; proper way; similarity/likeness; symmetry/proportion; + congruo_V = mkV "congruere" "congruo" "congrui" nonExist; -- [XXXBO] :: |unite, combine, come together; blend, harmonize, act together; be congenial; congrus_M_N = mkN "congrus" ; -- [XAXFS] :: conger eel; sea eel (L+S); congruus_A = mkA "congruus" "congrua" "congruum" ; -- [XXXDO] :: agreeing, according; fit, suitable (L+S); harmonious; congyro_V = mkV "congyrare" ; -- [DXXFS] :: circle, make a circle around a person; conia_F_N = mkN "conia" ; -- [BAXFS] :: stork; coniacum_N_N = mkN "coniacum" ; -- [GXXEK] :: cognac; conibentia_F_N = mkN "conibentia" ; -- [FLXFM] :: connivance, tacit permission/sanction; (coniventia); + conicio_V2 = mkV2 (mkV "conicere" "conicio" "conjeci" "conjectus ") ; -- [XXXAO] :: |throw/cast/fling (into area); devote/pour (money); thrust, involve; insert; conicus_A = mkA "conicus" "conica" "conicum" ; -- [XSXFO] :: conical; conifer_A = mkA "conifer" "conifera" "coniferum" ; -- [XAXFO] :: coniferous, cone-bearing (tree); bearing fruit of a conical form (L+S); coniger_A = mkA "coniger" "conigera" "conigerum" ; -- [XAXFO] :: coniferous, cone-bearing (tree); bearing fruit of a conical form (L+S); conila_F_N = mkN "conila" ; -- [DAXFS] :: plant (genus Satureia, savory); (also called cunila and origanum L+S); coniludium_N_N = mkN "coniludium" ; -- [GXXEK] :: game of ninepins; coninquino_V2 = mkV2 (mkV "coninquinare") ; -- [XXXDO] :: befoul/pollute/defile wholly (immorality); contaminate/taint/infect (w/disease); + coninquo_V2 = mkV2 (mkV "coninquere" "coninquo" nonExist nonExist) ; -- [DXXFO] :: cut back, prune; cut off, cut down (L+S); coniptum_N_N = mkN "coniptum" ; -- [XEXFS] :: oblation/offering/rite made by sprinkling flour; conisco_V = mkV "coniscare" ; -- [XXXCS] :: brandish/shake/quiver; flash/glitter, emit/reflect intermittent/quivering light; conisterium_N_N = mkN "conisterium" ; -- [XXXFO] :: room in a palaestra for wrestlers to sprinkle themselves with dust; + conitor_V = mkV "coniti" "conitor" "conixus sum " ; -- [XXXBO] :: strain, strive (physically); put forth; endeavor eagerly; struggle (to reach); conitum_N_N = mkN "conitum" ; -- [XEXFS] :: oblation/offering/rite made by sprinkling flour; conium_N_N = mkN "conium" ; -- [DAXFS] :: hemlock; (pure Latin cicuta); coniunctivus_M_N = mkN "coniunctivus" ; -- [GGXEK] :: subjunctive; @@ -12298,6 +13104,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conjecturalis_A = mkA "conjecturalis" "conjecturalis" "conjecturale" ; -- [XGXBO] :: conjectural, of/based on conjecture/guess/inference; conjecturaliter_Adv = mkAdv "conjecturaliter" ; -- [XXXFO] :: by way of conjecture, conjecturally; conjectus_M_N = mkN "conjectus" "conjectus " masculine ; -- [XXXBO] :: |throw/shot (distance); act of throwing (missile); glance/directing one's gaze; + conjicio_V2 = mkV2 (mkV "conjicere" "conjicio" "conjeci" "conjectus ") ; -- [XXXES] :: |throw/cast/fling (into area); devote/pour (money); thrust, involve; insert; conjubeo_V2 = mkV2 (mkV "conjubere") ; -- [DLXFS] :: command together; conjucundor_V = mkV "conjucundari" ; -- [DEXFS] :: rejoice together/with one; conjuga_F_N = mkN "conjuga" ; -- [XXXEO] :: wife; spouse; consort (L+S); @@ -12322,6 +13129,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conjunctum_N_N = mkN "conjunctum" ; -- [XGXDO] :: connected word/proposition; compound proposition; connection (L+S); conjunctus_A = mkA "conjunctus" "conjuncta" "conjunctum" ; -- [XXXBO] :: |closely connected/related/attached/associated (friendship/kinship/wed); conjunctus_M_N = mkN "conjunctus" "conjunctus " masculine ; -- [XXXEO] :: process/state of being joined together; connection, conjunction (L+S); (ABL S); + conjungo_V2 = mkV2 (mkV "conjungere" "conjungo" "conjunxi" "conjunctus ") ; -- [XXXAO] :: |unite (sexually); place/bring side-by-side; juxtapose; share; add; associate; conjunx_A = mkA "conjunx" "conjugis"; -- [XAXFO] :: yoked together; paired; linked as a pair; conjunx_F_N = mkN "conjunx" "conjugis " feminine ; -- [XXXBO] :: spouse/mate/consort; husband/wife/bride/fiancee/intended; concubine; yokemate; conjunx_M_N = mkN "conjunx" "conjugis " masculine ; -- [XXXBO] :: spouse/mate/consort; husband/wife/bride/fiancee/intended; concubine; yokemate; @@ -12331,10 +13139,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conjuro_V = mkV "conjurare" ; -- [XXXBO] :: swear/act together, join in an oath/plot; conspire, plot; form alliance/league; conjux_F_N = mkN "conjux" "conjugis " feminine ; -- [XXXBO] :: spouse/mate/consort; husband/wife/bride/fiancee/intended; concubine; yokemate; conjux_M_N = mkN "conjux" "conjugis " masculine ; -- [XXXBO] :: spouse/mate/consort; husband/wife/bride/fiancee/intended; concubine; yokemate; + conlabasco_V = mkV "conlabascere" "conlabasco" nonExist nonExist; -- [XXXFO] :: waver/totter/become unsteady at the same time; waver/totter with; conlabefacto_V = mkV "conlabefactare" ; -- [XXXFO] :: cause to topple over; make to reel/totter (L+S); overpower/subdue; melt (metal); conlabefio_V = mkV "conlabeferi" ; -- [XXXCO] :: collapse/break up; sink together; be overthrown politically/brought to ruin; conlabello_V2 = mkV2 (mkV "conlabellare") ; -- [XXXFO] :: make/form by putting the lips together; conlabo_V = mkV "conlabare" ; -- [DXXFS] :: labor/work with/together; + conlabor_V = mkV "conlabi" "conlabor" "conlapsus sum " ; -- [XXXBO] :: collapse, fall down/in ruin; fall in swoon/exhaustion/death; slip/slink (meet); conlaceratus_A = mkA "conlaceratus" "conlacerata" "conlaceratum" ; -- [XXXFS] :: torn to pieces; lacerated; conlacero_V2 = mkV2 (mkV "conlacerare") ; -- [XXXFO] :: lacerate severely; tear to pieces (L+S); conlacrimatio_F_N = mkN "conlacrimatio" "conlacrimationis " feminine ; -- [XXXFO] :: accompanying tears; weeping/lamenting (together/greatly); @@ -12376,7 +13186,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conlectivus_A = mkA "conlectivus" "conlectiva" "conlectivum" ; -- [XGXEO] :: proceeding by inference; deductive; gathered together (L+S); collective (noun); conlector_M_N = mkN "conlector" "conlectoris " masculine ; -- [XXXIO] :: collector, one who collects; fellow student (L+S); conlectum_N_N = mkN "conlectum" ; -- [XXXEO] :: that which is collected; (food); collected sayings/writings (pl.); --- SLASHSTUFF conlectus_A : A2 conlectus, conlecta -um, conlectior -or -us, conlectissimus -a -um -- [XXXEO] :: compact (of style), concise; restricted; contracted, narrow; + conlectus_A = mkA "conlectus" ; -- [XXXEO] :: compact (of style), concise; restricted; contracted, narrow; conlectus_M_N = mkN "conlectus" "conlectus " masculine ; -- [XXXDO] :: heap/pile; accumulation (of liquid); collection; conlega_C_N = mkN "conlega" ; -- [XXXCO] :: colleague (in official/priestly office); associate, fellow (not official); conlegatarius_M_N = mkN "conlegatarius" ; -- [XLXEO] :: joint legatee; person bequeathed a legacy in common with others; @@ -12386,6 +13196,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conlegiatus_M_N = mkN "conlegiatus" ; -- [DXXES] :: member of a collegium (guild/fraternity/society/corporation/board); conlegium_N_N = mkN "conlegium" ; -- [XXXBO] :: college/board (priests); corporation; brotherhood/fraternity/guild/colleagueship conleprosus_M_N = mkN "conleprosus" ; -- [DXXFS] :: fellow-leper; + conlesco_V = mkV "conlescere" "conlesco" "conluxi" nonExist; -- [DXXES] :: lighten up, become illuminated; become clear/intelligible; conlevo_V2 = mkV2 (mkV "conlevare") ; -- [XXXDO] :: make (entirely) smooth; smooth; conliberta_F_N = mkN "conliberta" ; -- [XXXIO] :: fellow freedwoman; (having the same patronus); conlibertus_M_N = mkN "conlibertus" ; -- [XXXCO] :: fellow freedman; (having the same patronus); @@ -12394,9 +13205,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conlicia_F_N = mkN "conlicia" ; -- [XAXDO] :: gutter/drain (pl.) between inwardly-sloping roofs; gully; field-drain/runnel; conliciaris_A = mkA "conliciaris" "conliciaris" "conliciare" ; -- [XAXFO] :: designed for making gullies; pertaining to water-channels (L+S); conliculus_M_N = mkN "conliculus" ; -- [XTXFO] :: hillock, small hill; + conlido_V2 = mkV2 (mkV "conlidere" "conlido" "conlisi" "conlisus ") ; -- [XXXBO] :: strike/dash together; crush, batter, deform; set into conflict with each other; conligate_Adv = mkAdv "conligate" ; -- [DXXES] :: connectedly, jointly; conligatio_F_N = mkN "conligatio" "conligationis " feminine ; -- [XGXCO] :: binding together; bond/connection; thing that binds/connects band; conjunction; - conligo_V2 = mkV2 (mkV "conligare") ; -- [XXXBO] :: bind/tie/pack together/up, connect, unite/unify; fetter/bind; immobilize, stop; + conligo_V2 = mkV2 (mkV "conligere" "conligo" "conlexi" "conlectus ") ; -- [XXXFO] :: |obtain/acquire, amass; rally; recover; sum up; deduce, infer; compute, add up; conlimitaneus_A = mkA "conlimitaneus" "conlimitanea" "conlimitaneum" ; -- [DXXFS] :: bordering upon; (w/DAT); conlimito_V = mkV "conlimitare" ; -- [DXXES] :: border upon; (w/DAT); conlimitor_V = mkV "conlimitari" ; -- [DXXES] :: border upon; (w/DAT); @@ -12405,8 +13217,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conlineate_Adv = mkAdv "conlineate" ; -- [DXXES] :: in a straight/direct line; skillfully, artistically; conlineo_V2 = mkV2 (mkV "conlineare") ; -- [XXXEO] :: align, direct, aim; conlinio_V2 = mkV2 (mkV "conliniare") ; -- [XXXDO] :: align, direct, aim; + conlino_V2 = mkV2 (mkV "conlinere" "conlino" "conlevi" "conlitus ") ; -- [XXXCO] :: besmear, smear over; soil, pollute, defile; + conliquefacio_V2 = mkV2 (mkV "conliquefacere" "conliquefacio" "conliquefeci" "conliquefactus ") ; -- [XSXEO] :: melt, liquefy; dissolve; conliquefactus_A = mkA "conliquefactus" "conliquefacta" "conliquefactum" ; -- [XSXES] :: made fluid, liquefied, melted; dissolved; conliquefio_V = mkV "conliqueferi" ; -- [XSXEO] :: be/become melted/liquefied/dissolved; (conliquefacio PASS); + conliquesco_V2 = mkV2 (mkV "conliquescere" "conliquesco" "conliqui" nonExist) ; -- [XXXDO] :: melt, liquefy (w/in+ACC); turn into by liquefying; melt along with; dissolve; conliquia_F_N = mkN "conliquia" ; -- [XAXDO] :: gutter/drain (pl.) between inwardly-sloping roofs; gully; field-drain/runnel; conliquiarium_N_N = mkN "conliquiarium" ; -- [XTXFO] :: contrivance (pl.) for reliving air-pressure in water pipes; conlisio_F_N = mkN "conlisio" "conlisionis " feminine ; -- [XXXFO] :: clash, collision; dashing/striking together (L+S); @@ -12418,6 +13233,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conlocutio_F_N = mkN "conlocutio" "conlocutionis " feminine ; -- [XXXCO] :: conversation (private), discussion, debate; conference, parley; talking together conlocutor_M_N = mkN "conlocutor" "conlocutoris " masculine ; -- [DEXEO] :: he who talks with another; conloquium_N_N = mkN "conloquium" ; -- [XXXBO] :: talk, conversation; colloquy/discussion; interview; meeting/conference; parley; + conloquor_V = mkV "conloqui" "conloquor" "conlocutus sum " ; -- [XXXBO] :: talk/speak to/with; talk together/over; converse; discuss; confer, parley; conlubuit_V0 = mkV0 "conlubuit" ; -- [XXXCO] :: it pleases/is very agreeable; (IMPERS PERFDEF perfect form has present sense); conluceo_V = mkV "conlucere" ; -- [XXXBO] :: shine brightly, light up (with fire); reflect light, shine, be lit up; glitter; conluco_V2 = mkV2 (mkV "conlucare") ; -- [XAXEO] :: prune; thin out (trees); clear/thin (forest) (L+S); @@ -12425,8 +13241,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conluctor_M_N = mkN "conluctor" "conluctoris " masculine ; -- [DXXFS] :: wrestler; antagonist, adversary; conluctor_V = mkV "conluctari" ; -- [XXXCO] :: struggle physically; wrestle/contend (with); struggle/fight against (adversity); conludium_N_N = mkN "conludium" ; -- [DXXDS] :: sporting, playing together; secret, deceptive understanding, collusion; + conludo_V = mkV "conludere" "conludo" "conlusi" "conlusus "; -- [XXXCO] :: play/sport together/with; (also) make sport; act in collusion (with); conlugeo_V = mkV "conlugere" ; -- [DXXFS] :: lament; grieve together; conlumino_V2 = mkV2 (mkV "conluminare") ; -- [XXXEO] :: illuminate (on all sides/fully); + conluo_V2 = mkV2 (mkV "conluere" "conluo" "conlui" "conlutus ") ; -- [XXXCO] :: wash/rinse out; wash/rinse away (impurities); wash together; use as a wash(?); conlurchinatio_F_N = mkN "conlurchinatio" "conlurchinationis " feminine ; -- [XXXEO] :: gormandizing, gross gluttony; guzzling; conlusim_Adv = mkAdv "conlusim" ; -- [XXXFO] :: in collusion(?); conlusio_F_N = mkN "conlusio" "conlusionis " feminine ; -- [XXXDO] :: secret/deceptive understanding, collusion; @@ -12453,14 +13271,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conmereo_V2 = mkV2 (mkV "conmerere") ; -- [XXXCO] :: merit fully, deserve, incur, earn (punishment/reward); be guilty of, perpetuate; conmereor_V = mkV "conmereri" ; -- [XXXCO] :: merit fully, deserve, incur, earn (punishment/reward); be guilty of, perpetuate; conmers_F_N = mkN "conmers" "conmercis " feminine ; -- [XXXFO] :: friendly intercourse; + conmetior_V = mkV "conmetiri" "conmetior" "conmensus sum " ; -- [XSXDO] :: measure; pace out/off; compare (in measurement); conmitigo_V2 = mkV2 (mkV "conmitigare") ; -- [XXXFO] :: soften; make soft (L+S); mellow; + conmitto_V2 = mkV2 (mkV "conmittere" "conmitto" "conmisi" "conmissus ") ; -- [XXXAO] :: |engage (battle), set against; begin/start; bring about; commit; incur; forfeit; + conmolior_V = mkV "conmoliri" "conmolior" "conmolitus sum " ; -- [XXXDS] :: set in motion; move with an effort; put together, construct; + conmonefacio_V2 = mkV2 (mkV "conmonefacere" "conmonefacio" "conmonefeci" "conmonefactus ") ; -- [XXXCO] :: recall, remember; call to mind; remind (forcibly), warn, admonish; impress upon; conmonefio_V = mkV "conmoneferi" ; -- [XXXCO] :: be recalled/remembered/reminded; be warned/admonished; (conmonefacio PASS); conmoneo_V = mkV "conmonere" ; -- [XXXCS] :: remind (forcibly), warn; bring to recollection (L+S); impress upon one; conmonstro_V2 = mkV2 (mkV "conmonstrare") ; -- [XXXCS] :: point out (fully/distinctly), show where; make known, declare, reveal; + conmorior_V = mkV "conmori" "conmorior" "conmortuus sum " ; -- [XXXCS] :: die together/with; work oneself to death (with); perish/be destroyed together; conmoro_V = mkV "conmorare" ; -- [DXXCS] :: stop/stay/remain, abide; linger, delay; detain, be delayed (menses); dwell on; conmoror_V = mkV "conmorari" ; -- [XXXBS] :: stop/stay/remain, abide; linger, delay; detain, be delayed (menses); dwell on; conmostro_V2 = mkV2 (mkV "conmostrare") ; -- [XXXCS] :: point out (fully/distinctly), show where; make known, declare, reveal; --- SLASHSTUFF conmotus_A : A2 conmotus, conmota -um, conmotior -or -us, conmotissimus -a -um -- [XXXCS] :: excited, nervous; frenzied/deranged; angry/annoyed; temperamental; tempestuous; + conmotus_A = mkA "conmotus" ; -- [XXXCS] :: excited, nervous; frenzied/deranged; angry/annoyed; temperamental; tempestuous; conmoveo_V2 = mkV2 (mkV "conmovere") ; -- [XXXAS] :: |waken; provoke; move (money/camp); produce; cause, start (war); raise (point); conmunicabilis_A = mkA "conmunicabilis" "conmunicabilis" "conmunicabile" ; -- [EXXFP] :: communicable, capable of being communicated; conmunicabilitas_F_N = mkN "conmunicabilitas" "conmunicabilitatis " feminine ; -- [FXXEF] :: communicability; @@ -12469,15 +13292,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conmunicor_V = mkV "conmunicari" ; -- [XXXDS] :: share; share/divide with/out; receive/take a share of; receive; join with; conmunis_A = mkA "conmunis" "conmunis" "conmune" ; -- [XXXAO] :: |neutral, impartial (Mars); applicable on either side; same form for two cases; conmunitus_Adv = mkAdv "conmunitus" ; -- [XXXFO] :: jointly, as a group; + conmuro_V2 = mkV2 (mkV "conmurere" "conmuro" "conmussi" "conmustus ") ; -- [XXXBO] :: burn up/away; (w/love); consume/destroy w/fire; reduce to ash, cremate; scald; + connascor_V = mkV "connasci" "connascor" "connatus sum " ; -- [DXXCS] :: born with/at same time; arise together with; connaturaliter_Adv = mkAdv "connaturaliter" ; -- [FXXFE] :: in a natural way; connatus_A = mkA "connatus" "connata" "connatum" ; -- [DXXES] :: innate; connatus_M_N = mkN "connatus" ; -- [DXXES] :: twin; double; one similar/alike; + connecto_V2 = mkV2 (mkV "connectere" "connecto" "connexi" "connexus ") ; -- [XXXBO] :: join/fasten/link together, connect/associate; lead to; tie; implicate/involve; connexe_Adv = mkAdv "connexe" ; -- [DXXFS] :: in connection; connectively; connexio_F_N = mkN "connexio" "connexionis " feminine ; -- [DXXDS] :: |binding together; close union; organic union; syllable; connexivus_A = mkA "connexivus" "connexiva" "connexivum" ; -- [XGXFO] :: serving to unite/join (words/clauses), copulative, conjunctive, connective; connexo_Adv = mkAdv "connexo" ; -- [DXXFS] :: in connection; connectively; connexum_N_N = mkN "connexum" ; -- [XGXEO] :: hypothetical proposition; necessary consequence, inevitable inference (L+S); connexus_M_N = mkN "connexus" "connexus " masculine ; -- [XXXEO] :: connection; joining together; combination (L+S); + connitor_V = mkV "conniti" "connitor" "connixus sum " ; -- [XXXDS] :: strain, strive (physically); put forth; endeavor eagerly; struggle (to reach); conniveo_V = mkV "connivere" ; -- [XXXDS] :: |be tightly closed (eyes); (other things); be inactive/eclipsed; lie dormant; connotatio_F_N = mkN "connotatio" "connotationis " feminine ; -- [FXXEM] :: connotation; connubialis_A = mkA "connubialis" "connubialis" "connubiale" ; -- [XXXES] :: of/belonging to marriage/wedlock (or a specific marriage), conjugal/connubial; @@ -12490,6 +13317,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conopeum_N_N = mkN "conopeum" ; -- [XXXDO] :: canopy; mosquito-net, gauze net; bed provided with a mosquito-net; conopium_N_N = mkN "conopium" ; -- [XXXDO] :: canopy; mosquito-net, gauze net; bed provided with a mosquito-net; conor_V = mkV "conari" ; -- [XXXBO] :: attempt/try/endeavor, make an effort; exert oneself; try to go/rise/speak; + conpaciscor_V = mkV "conpacisci" "conpaciscor" "conpactus sum " ; -- [XXXFS] :: make an agreement/arrangement/compact; conpactum_N_N = mkN "conpactum" ; -- [XLXDS] :: agreement/compact; [ABL compacto => according to/in accordance with agreement]; conpactus_A = mkA "conpactus" "conpacta" "conpactum" ; -- [XXXCO] :: joined/fastened together, united; close-packed, firm, thick; well-set, compact; conpaedagogita_F_N = mkN "conpaedagogita" ; -- [XXXIO] :: fellow member of a paedagogium (training establishment for slave boys); (M L+S); @@ -12509,37 +13337,49 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conparativus_A = mkA "conparativus" "conparativa" "conparativum" ; -- [XGXCO] :: based on/involving consideration of relative merits; comparative; conparator_M_N = mkN "conparator" "conparatoris " masculine ; -- [XXXIO] :: buyer/purchaser, dealer; comparer (L+S); conparatus_M_N = mkN "conparatus" "conparatus " masculine ; -- [XSXIO] :: proportion; relation (L+S); + conparco_V2 = mkV2 (mkV "conparcere" "conparco" "conpeperci" "conparsus ") ; -- [DXXCO] :: save, husband well, lay up; forbear/abstain/refrain from (w/INF), spare (w/DAT); conpareo_V = mkV "conparere" ; -- [XXXBO] :: appear/come in sight; be visible/present/in evidence/clearly stated/forthcoming; conparo_V2 = mkV2 (mkV "conparare") ; -- [XXXAO] :: ||set up/establish/institute; arrange, dispose, settle; buy, acquire, secure; + conpartior_V = mkV "conparti" "conpartior" nonExist ; -- [XXXIO] :: share; divide something with one (L+S); (PASS) be made partaker of; + conpasco_V2 = mkV2 (mkV "conpascere" "conpasco" "conpavi" "conpastus ") ; -- [XAXCO] :: pasture (cattle) on common land; feed up/together; use as cattle food; eat; conpascua_F_N = mkN "conpascua" ; -- [XAXEO] :: common pasture/land; pasture possessed/used in common; conpascuum_N_N = mkN "conpascuum" ; -- [XAXEO] :: common pasture/land (pl.); pasture possessed/used in common; conpascuus_A = mkA "conpascuus" "conpascua" "conpascuum" ; -- [XAXCO] :: common pasture (land); right of common pasturage; grazed on/sharing a pasture; conpastor_M_N = mkN "conpastor" "conpastoris " masculine ; -- [XAXFO] :: fellow herdsman; conpatriota_F_N = mkN "conpatriota" ; -- [XXXIO] :: compatriot, fellow countryman; conpatronus_M_N = mkN "conpatronus" ; -- [XXXEO] :: co-patron (one who has joined in manumitting a slave); + conpavesco_V = mkV "conpavescere" "conpavesco" nonExist nonExist; -- [XXXFO] :: become very afraid/full of fear/thoroughly terrified; + conpavio_V2 = mkV2 (mkV "conpavire" "conpavio" nonExist "conpavitus ") ; -- [XXXFO] :: trample on; beat (L+S); conpavitus_A = mkA "conpavitus" "conpavita" "conpavitum" ; -- [XXXFO] :: trampled upon; beaten (L+S); + conpeciscor_V = mkV "conpecisci" "conpeciscor" "conpectus sum " ; -- [XXXFS] :: make an agreement/arrangement/compact; conpectum_N_N = mkN "conpectum" ; -- [XLXDS] :: agreement/compact; [ABL compacto => according to/in accordance with agreement]; conpedagogita_F_N = mkN "conpedagogita" ; -- [XXXIO] :: fellow member of a paedagogium (training establishment for slave boys); (M L+S); conpedagogius_M_N = mkN "conpedagogius" ; -- [XXXIS] :: fellow member of a paedagogium (training establishment for slave boys); + conpedio_V2 = mkV2 (mkV "conpedire" "conpedio" "conpedivi" "conpeditus ") ; -- [XXXEO] :: shackle, fetter; put fetters on; conpeditus_A = mkA "conpeditus" "conpedita" "conpeditum" ; -- [XXXDO] :: that wears fetters/shackles; conpeditus_M_N = mkN "conpeditus" ; -- [XXXDO] :: fettered slave; conpedus_A = mkA "conpedus" "conpeda" "conpedum" ; -- [XXXFO] :: that fetters or restrains; fettering, shackling (L+S); conpellatio_F_N = mkN "conpellatio" "conpellationis " feminine ; -- [XGXDO] :: action of addressing/apostrophizing (aside to person)/reproaching, reproof; - conpello_V2 = mkV2 (mkV "conpellare") ; -- [XXXBO] :: address, accost, speak to, call upon; appeal to; challenge; chide/rebuke; accuse + conpello_V2 = mkV2 (mkV "conpellere" "conpello" "conpuli" "conpulsus ") ; -- [XXXAO] :: drive together (cattle), round up; force, compel, impel, drive; squeeze; gnash; conpendiaria_F_N = mkN "conpendiaria" ; -- [XXXCO] :: short/quick route, short cut; quick/easy method, short cut; conpendiarium_N_N = mkN "conpendiarium" ; -- [XXXEO] :: short/quick route, short cut; fitment in a granary; conpendiarius_A = mkA "conpendiarius" "conpendiaria" "conpendiarium" ; -- [XXXEO] :: short/quick (of routes); conpendiose_Adv =mkAdv "conpendiose" "conpendiosius" "conpendiosissime" ; -- [DXXES] :: briefly, shortly, compendiously; conpendiosus_A = mkA "conpendiosus" "conpendiosa" "conpendiosum" ; -- [XXXDO] :: profitable, advantageous; short/quick (route); compendious, succinct, short; conpendium_N_N = mkN "conpendium" ; -- [XXXAO] :: gain, profit; sparing/saving; abridgement, compendium; shorthand; a short cut; + conpendo_V2 = mkV2 (mkV "conpendere" "conpendo" "conpependi" "conpensus ") ; -- [XXXFO] :: weigh/balance together; conpensatio_F_N = mkN "conpensatio" "conpensationis " feminine ; -- [XXXCO] :: balancing of items in account, offsetting; weighing/balancing (of factors); conpenso_V2 = mkV2 (mkV "conpensare") ; -- [XXXBO] :: balance/weigh, offset; get rid of; make good, compensate; save/secure; short cut + conperco_V2 = mkV2 (mkV "conpercere" "conperco" "conpersi" "conpersus ") ; -- [DXXCO] :: save, husband well, lay up; forbear/abstain/refrain from (w/INF), spare (w/DAT); conperendinatio_F_N = mkN "conperendinatio" "conperendinationis " feminine ; -- [XLXDO] :: adjournment of a trial for two days; (to third day following or later L+S); conperendinatus_M_N = mkN "conperendinatus" "conperendinatus " masculine ; -- [XLXEO] :: adjournment of a trial for two days; (to third day following or later L+S); conperendino_V2 = mkV2 (mkV "conperendinare") ; -- [XLXCO] :: adjourn the trial of a person; adjourn a trial; (for two days or later); conperendinus_A = mkA "conperendinus" "conperendina" "conperendinum" ; -- [XLXFO] :: on which an adjourned trial is resumed (of a day); + conperio_V2 = mkV2 (mkV "conperire" "conperio" "conperi" "conpertus ") ; -- [XXXAO] :: learn/discover/find (by investigation); verify/know for certain; find guilty; + conperior_V = mkV "conperiri" "conperior" "conpertus sum " ; -- [XXXDS] :: learn/discover/find (by investigation); verify/know for certain; find guilty; conpertusio_F_N = mkN "conpertusio" "conpertusionis " feminine ; -- [XTXIO] :: joint tunneling operation; conpes_F_N = mkN "conpes" "conpedis " feminine ; -- [XXXCO] :: shackles (for feet) (usu. pl.), fetters; things impeding movement; chains; + conpesco_V2 = mkV2 (mkV "conpescere" "conpesco" "conpescui" nonExist) ; -- [XXXAO] :: restrain, check; quench; curb, confine, imprison; hold in check; block, close; conpetalis_A = mkA "conpetalis" "conpetalis" "conpetale" ; -- [XEXEO] :: associated with/worshiped at the cross-roads; conpetens_A = mkA "conpetens" "conpetentis"; -- [XLXCO] :: agreeing with, corresponding to, apposite, suitable; competent (legal); conpetenter_Adv =mkAdv "conpetenter" "conpetentius" "conpetentissime" ; -- [XXXEO] :: suitably, appositely; properly, becomingly; @@ -12547,11 +13387,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conpetitio_F_N = mkN "conpetitio" "conpetitionis " feminine ; -- [DLXDS] :: agreement; judicial demand; rivalry; conpetitor_M_N = mkN "conpetitor" "conpetitoris " masculine ; -- [XXXCO] :: rival, competitor; other candidate for office; rival claimant (to throne); conpetitrix_F_N = mkN "conpetitrix" "conpetitricis " feminine ; -- [XXXEO] :: rival, competitor (female); other candidate for office; rival claimant; + conpeto_V2 = mkV2 (mkV "conpetere" "conpeto" "conpetivi" "conpetitus ") ; -- [XXXBO] :: |be sound/capable/applicable/relevant/sufficient/adequate/competent/admissible; conpetum_N_N = mkN "conpetum" ; -- [XXXCO] :: cross-roads (usu. pl.), junction; people/shrine at crossroads; point of choice; conphretor_M_N = mkN "conphretor" "conphretoris " masculine ; -- [BXXFO] :: fellow member of a phretria (division in a Greek community); conpilatio_F_N = mkN "conpilatio" "conpilationis " feminine ; -- [XXXFO] :: burglary; raking together, pillaging/plundering (L+S); compilation (document); conpilator_M_N = mkN "conpilator" "conpilatoris " masculine ; -- [DGXES] :: plunderer; imitator (literary); plagiarizer; (compiler/anthologist?); conpilo_V2 = mkV2 (mkV "conpilare") ; -- [XXXCO] :: rob, pillage, steal from (another writer), plagiarize; beat up thoroughly; + conpingo_V2 = mkV2 (mkV "conpingere" "conpingo" "conpinxi" "conpictus ") ; -- [XXXFS] :: disguise, cover, paint over; conpitalicius_A = mkA "conpitalicius" "conpitalicia" "conpitalicium" ; -- [XXXDO] :: associated with the cross-roads; of the Compitalia festival of the Lares; conpitalis_A = mkA "conpitalis" "conpitalis" "conpitale" ; -- [XEXEO] :: associated with/worshiped at the cross-roads; conpitalitius_A = mkA "conpitalitius" "conpitalitia" "conpitalitium" ; -- [XXXDS] :: associated with the cross-roads; of the Compitalia festival of the Lares; @@ -12561,16 +13403,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conplaco_V2 = mkV2 (mkV "conplacare") ; -- [XXXFO] :: conciliate (greatly), placate; win the sympathy of; conplanator_M_N = mkN "conplanator" "conplanatoris " masculine ; -- [XXXFO] :: thing/one that makes smooth/level; (toothpaste); conplano_V2 = mkV2 (mkV "conplanare") ; -- [XXXCO] :: make (ground) level/flat; smooth out (trouble); pull down, raze to the ground; + conplecto_V2 = mkV2 (mkV "conplectere" "conplecto" "conplecti" "conplexus ") ; -- [XXXAO] :: |lay hold of, grip; seize; grasp, take in/up; sum up; include in scope, cover; + conplector_V = mkV "conplecti" "conplector" "conplexus sum " ; -- [XXXAO] :: |lay hold of, grip; seize; grasp, take in/up; sum up; include in scope, cover; conplementum_N_N = mkN "conplementum" ; -- [XXXEO] :: complement, something that fills out/up or completes; conpleo_V2 = mkV2 (mkV "conplere") ; -- [XXXAO] :: |finish, complete, perfect; make pregnant; fulfill, make up, complete, satisfy; --- SLASHSTUFF conpletus_A : A2 conpletus, conpleta -um, conpletior -or -us, conpletissimus -a -um -- [XXXEO] :: complete, round off; filled full, full (L+S); perfect; + conpletus_A = mkA "conpletus" ; -- [XXXEO] :: complete, round off; filled full, full (L+S); perfect; conplexio_F_N = mkN "conplexio" "conplexionis " feminine ; -- [XXXCO] :: encircling; combination, association, connection; summary, resume; dilemma; conplexivus_A = mkA "conplexivus" "conplexiva" "conplexivum" ; -- [XGXFO] :: connective, conjunctive; (grammar); serving for connecting (L+S); conplexus_M_N = mkN "conplexus" "conplexus " masculine ; -- [XXXAO] :: |sexual intercourse (w/Venerius/femineus); hand-to-hand fighting; stranglehold; conplico_V2 = mkV2 (mkV "conplicare") ; -- [XXXCO] :: fold/tie up/together; roll/curl/double up, wind (round); involve; bend at joint; + conplodo_V2 = mkV2 (mkV "conplodere" "conplodo" "conplosi" "conplosus ") ; -- [XXXCO] :: clap/strike (the hands) together, applaud (enthusiastically/with emotion); conploratio_F_N = mkN "conploratio" "conplorationis " feminine ; -- [XXXCO] :: lamentation, (vocal) mourning; loud/violent complaint/bemoaning/bewailing (L+S); conploratus_M_N = mkN "conploratus" "conploratus " masculine ; -- [XXXEO] :: lamentation, (vocal) mourning; loud/violent complaint/bemoaning/bewailing (L+S); conploro_V = mkV "conplorare" ; -- [XXXCO] :: bewail, bemoan; lament loudly/together/violently; despair of; morn for; + conpluor_V = mkV "conplui" "conpluor" "conplutus sum " ; -- [DXXES] :: be rained upon; conpluriens_Adv = mkAdv "conpluriens" ; -- [XXXEO] :: several/many times, a good number of times; more than once; conplurimus_A = mkA "conplurimus" "conplurima" "conplurimum" ; -- [XXXEO] :: great many (pl.), very many; conplus_A = mkA "conplus" "conpluris"; -- [XXXCO] :: many (pl.), several, a fair/good number; @@ -12578,8 +13424,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conplus_N_N = mkN "conplus" "conpluris " neuter ; -- [XXXCO] :: many/several things/items(pl.), a fair/good number of things; conplusculus_A = mkA "conplusculus" "conpluscula" "conplusculum" ; -- [XXXCO] :: several (pl.), more than one; a good many (L+S); conplusicule_Adv = mkAdv "conplusicule" ; -- [XXXFO] :: fairly/pretty often, not infrequently; + conplut_V0 = mkV0 "conplut"; -- [XXXFO] :: rain-water runs/flows together/collects; it rains upon (L+S); conpluviatus_A = mkA "conpluviatus" "conpluviata" "conpluviatum" ; -- [XAXEO] :: shaped/square like a compluvium/inward-sloping roof; of vines on such frame; conpluvium_N_N = mkN "conpluvium" ; -- [XXXDO] :: inward-sloping central roof (guides rainwater to cistern); like frame for vines; + conpono_V2 = mkV2 (mkV "conponere" "conpono" "conposui" "conpositus ") ; -- [XXXAO] :: |construct, build; arrange, compile, compose, make up; organize, order; settle; conportatio_F_N = mkN "conportatio" "conportationis " feminine ; -- [XXXEO] :: transportation; bringing/carrying together (L+S); conporto_V2 = mkV2 (mkV "conportare") ; -- [XXXCO] :: carry, transport, bring in, convey (to market); bring together; amass, collect; conpos_A = mkA "conpos" "conpotis"; -- [XXXBO] :: in possession/control/mastery of; sharing, guilty of, afflicted with; granted; @@ -12591,66 +13439,82 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conpositor_M_N = mkN "conpositor" "conpositoris " masculine ; -- [XDXEO] :: writer, composer; orderer, arranger, disposer, maker (L+S); conpositum_N_N = mkN "conpositum" ; -- [XXXEO] :: |settled/peaceful situation (pl.), security, law and order; conpositura_F_N = mkN "conpositura" ; -- [XXXEO] :: assembling/fitting together; structure/assemblage; combination (words), syntax; --- SLASHSTUFF conpositus_A : A2 conpositus, conposita -um, conpositior -or -us, conpositissimus -a -um -- [XXXBO] :: |prepared/ready/fit, suitable/trained/qualified; calm, peaceful; mature, sedate; + conpositus_A = mkA "conpositus" ; -- [XXXBO] :: |prepared/ready/fit, suitable/trained/qualified; calm, peaceful; mature, sedate; conpostura_F_N = mkN "conpostura" ; -- [XXXEO] :: assembling/fitting together; structure/assemblage; combination (words), syntax; --- SLASHSTUFF conpostus_A : A2 conpostus, conposta -um, conpostior -or -us, conpostissimus -a -um -- [XXXBO] :: |prepared/ready/fit, suitable/trained/qualified; calm, peaceful; mature, sedate; + conpostus_A = mkA "conpostus" ; -- [XXXBO] :: |prepared/ready/fit, suitable/trained/qualified; calm, peaceful; mature, sedate; conpotatio_F_N = mkN "conpotatio" "conpotationis " feminine ; -- [XXXES] :: drinking party; (translation of the Greek); a drink/drinking together (L+S); conpotens_A = mkA "conpotens" "conpotentis"; -- [XEXIO] :: that is able (to grant a prayer); having power with one (epithet of Diana L+S); + conpotio_V2 = mkV2 (mkV "conpotire" "conpotio" "conpotivi" "conpotitus ") ; -- [XXXDO] :: put in possession of, make partaker of; (PASS) attain; obtain, come into (L+S); conpoto_V = mkV "conpotare" ; -- [XXXFO] :: drink together; conpotor_M_N = mkN "conpotor" "conpotoris " masculine ; -- [XXXEO] :: drinking-companion/buddy; conpotrix_F_N = mkN "conpotrix" "conpotricis " feminine ; -- [XXXEO] :: drinking-companion (female); (bar girl?); + conpraecido_V2 = mkV2 (mkV "conpraecidere" "conpraecido" "conpraecidi" "conpraecisus ") ; -- [XXXFO] :: cut each other off; cut off at the same time (?) (L+S); conpraes_M_N = mkN "conpraes" "conpraedis " masculine ; -- [DLXEO] :: joint-surety; conpransor_M_N = mkN "conpransor" "conpransoris " masculine ; -- [XXXFO] :: table-companion; companion at a banquet; boon companion (L+S); conprecatio_F_N = mkN "conprecatio" "conprecationis " feminine ; -- [XEXEO] :: public supplication or prayers; common imploring of a deity (L+S); conprecor_V = mkV "conprecari" ; -- [XEXCO] :: implore, invoke (gods); supplicate, pray that; pray for; pray to; conprehendibilis_A = mkA "conprehendibilis" "conprehendibilis" "conprehendibile" ; -- [XXXEO] :: comprehensible, able to be grasped by the senses/intellect; that can be seized; + conprehendo_V2 = mkV2 (mkV "conprehendere" "conprehendo" "conprehendi" "conprehensus ") ; -- [XXXAO] :: |embrace; include/cover/deal with (in speech/law); express (by term/symbol); conprehensibilis_A = mkA "conprehensibilis" "conprehensibilis" "conprehensibile" ; -- [XXXEO] :: comprehensible, able to be grasped by the senses/intellect; that can be seized; conprehensio_F_N = mkN "conprehensio" "conprehensionis " feminine ; -- [XXXBO] :: |comprehensive argument; dilemma; region, zone; scope, range; grouping (words); conprehenso_V2 = mkV2 (mkV "conprehensare") ; -- [XXXFO] :: seize in an embrace; embrace, hug; + conprendo_V2 = mkV2 (mkV "conprendere" "conprendo" "conprendi" "conprensus ") ; -- [XXXAO] :: |embrace; include/cover/deal with (in speech/law); express (by term/symbol); conprensio_F_N = mkN "conprensio" "conprensionis " feminine ; -- [XXXBO] :: |comprehensive argument; dilemma; region, zone; scope, range; grouping (words); conpresse_Adv =mkAdv "conpresse" "conpressius" "conpressissime" ; -- [XXXEO] :: brief, succinctly; urgently, insistently; conpressio_F_N = mkN "conpressio" "conpressionis " feminine ; -- [XXXCO] :: squeezing, compression; sexual embrace, copulation; abridging, compression; conpressor_M_N = mkN "conpressor" "conpressoris " masculine ; -- [XXXEO] :: ravisher, rapist; one who presses/compresses (L+S); --- SLASHSTUFF conpressus_A : A2 conpressus, conpressa -um, conpressior -or -us, conpressissimus -a -um -- [XBXCO] :: constricted/narrow/pressed together; bound/tight (bowels), constipated, binding; + conpressus_A = mkA "conpressus" ; -- [XBXCO] :: constricted/narrow/pressed together; bound/tight (bowels), constipated, binding; conpressus_M_N = mkN "conpressus" "conpressus " masculine ; -- [XXXCO] :: compression, pressure; closing, pressing together; embracing/copulation; conprimens_A = mkA "conprimens" "conprimentis"; -- [XXXEO] :: astringent; + conprimo_V2 = mkV2 (mkV "conprimere" "conprimo" "conpressi" "conpressus ") ; -- [XXXAO] :: |suppress/control/stifle/frustrate/subdue/cow, put down; hold breath; silence; conprobatio_F_N = mkN "conprobatio" "conprobationis " feminine ; -- [XXXEO] :: approval; conprobator_M_N = mkN "conprobator" "conprobatoris " masculine ; -- [XXXFO] :: approver; conprobo_V2 = mkV2 (mkV "conprobare") ; -- [XXXBO] :: approve, accept, sanction, ratify; prove, justify, confirm, attest, bear out; conpromissarius_A = mkA "conpromissarius" "conpromissaria" "conpromissarium" ; -- [XLXEO] :: accepted as arbitrator by both parties (judge w/iudex); of arbitration; conpromissum_N_N = mkN "conpromissum" ; -- [XLXCO] :: joint undertaking guaranteed by deposit of money to abide by arbitration; + conpromitto_V2 = mkV2 (mkV "conpromittere" "conpromitto" "conpromisi" "conpromissus ") ; -- [XXXCO] :: enter a promissum, agree to submit to an arbiter; agree to pay the award; conpulsio_F_N = mkN "conpulsio" "conpulsionis " feminine ; -- [XLXFO] :: compulsion; (legal); urging (L+S); dunning; constraint; conpulso_V2 = mkV2 (mkV "conpulsare") ; -- [XXXFO] :: batter, pound; + conpungo_V2 = mkV2 (mkV "conpungere" "conpungo" "conpunxi" "conpunctus ") ; -- [XXXEP] :: |cause repentance; feel remorse/contrition; inspire w/devotion; (PASS) repent; conpurgo_V2 = mkV2 (mkV "conpurgare") ; -- [XEXNS] :: purify completely/thoroughly; conputabilis_A = mkA "conputabilis" "conputabilis" "conputabile" ; -- [XXXNO] :: calculable, computable; conputatio_F_N = mkN "conputatio" "conputationis " feminine ; -- [XSXCO] :: calculation, reckoning, computation; form/result of a particular calculation; conputator_M_N = mkN "conputator" "conputatoris " masculine ; -- [XXXFO] :: calculator, reckoner, accountant; + conputesco_V = mkV "conputescere" "conputesco" "conputui" nonExist; -- [XXXCO] :: decay, rot, putrefy; (completely); conputo_V2 = mkV2 (mkV "conputare") ; -- [XSXBO] :: reckon/compute/calculate, sum/count (up); take/include in reckoning; work out; + conputresco_V = mkV "conputrescere" "conputresco" "conputrui" nonExist; -- [XXXCO] :: decay, rot, putrefy; (completely); conquadro_V = mkV "conquadrare" ; -- [DXXES] :: agree with, be proportioned to; square to; conquadro_V2 = mkV2 (mkV "conquadrare") ; -- [XXXEO] :: make square, square; + conquaero_V2 = mkV2 (mkV "conquaerere" "conquaero" "conquaesivi" "conquaesitus ") ; -- [XXXBS] :: seek out; hunt/rake up; investigate; collect; search out/down/for diligently; conquaestor_M_N = mkN "conquaestor" "conquaestoris " masculine ; -- [XWXCO] :: inspector, one who searches; recruiting officer; conquassatio_F_N = mkN "conquassatio" "conquassationis " feminine ; -- [XXXFO] :: shaking up; severe shaking (L+S); shattering; conquasso_V2 = mkV2 (mkV "conquassare") ; -- [XXXCO] :: shake violently; break, shatter; unsettle, disturb, throw into confusion; conquaterno_Adv = mkAdv "conquaterno" ; -- [XAXFS] :: by fours (yoked oxen); in a team of four; + conqueror_V = mkV "conqueri" "conqueror" "conquestus sum " ; -- [XXXBO] :: bewail, lament, utter a complaint; complain of, deplore; conquestio_F_N = mkN "conquestio" "conquestionis " feminine ; -- [EXXER] :: questioning; conquestus_M_N = mkN "conquestus" "conquestus " masculine ; -- [XXXEO] :: complaint (violent), (strenuous) complaining; + conquiesco_V = mkV "conquiescere" "conquiesco" "conquievi" "conquietus "; -- [XXXBO] :: |be inactive; pause (speaking); relax; settle/quiet down; come to an end/cease; conquietus_A = mkA "conquietus" "conquieta" "conquietum" ; -- [XXXIO] :: dead; still in death; conquiliarius_M_N = mkN "conquiliarius" ; -- [XXXIO] :: dyer; purple-fisher; + conquinisco_V = mkV "conquiniscere" "conquinisco" "conquexi" nonExist; -- [XXXDO] :: cower down, crouch down; stoop; squat; conquino_V2 = mkV2 (mkV "conquinare") ; -- [EXXCE] :: befoul/pollute/defile wholly (immorality); contaminate/taint/infect (w/disease); + conquiro_V2 = mkV2 (mkV "conquirere" "conquiro" "conquisivi" "conquisitus ") ; -- [XXXBO] :: seek out; hunt/rake up; investigate; collect; search out/down/for diligently; conquisite_Adv = mkAdv "conquisite" ; -- [XXXEO] :: carefully, painstakingly; with great pains (L+S); conquisitio_F_N = mkN "conquisitio" "conquisitionis " feminine ; -- [EXXER] :: questioning; (Acts 15:7); conquisitor_M_N = mkN "conquisitor" "conquisitoris " masculine ; -- [XWXCO] :: inspector, one who searches; recruiting officer; --- SLASHSTUFF conquisitus_A : A2 conquisitus, conquisita -um, conquisitior -or -us, conquisitissimus -a -um -- [XXXEO] :: select, chosen; sought out with great pains; costly (L+S); + conquisitus_A = mkA "conquisitus" ; -- [XXXEO] :: select, chosen; sought out with great pains; costly (L+S); conquistor_M_N = mkN "conquistor" "conquistoris " masculine ; -- [BWXCO] :: inspector, one who searches; recruiting officer; claqueur (theater) (L+S); + conrado_V2 = mkV2 (mkV "conradere" "conrado" "conrasi" "conrasus ") ; -- [XXXCO] :: rake/sweep/draw together; amass with difficulty, scrape together; scrape off; conrationalitas_F_N = mkN "conrationalitas" "conrationalitatis " feminine ; -- [DSXFS] :: analogy; conrectio_F_N = mkN "conrectio" "conrectionis " feminine ; -- [XXXCO] :: amendment, rectification; improvement, correction; word substitution; reproof; conrector_M_N = mkN "conrector" "conrectoris " masculine ; -- [XXXDX] :: corrector/improver, reformer; one who sets things right; financial commissioner; conrectura_F_N = mkN "conrectura" ; -- [DLXES] :: office of a corrector (financial commissioner/land bailiff); --- SLASHSTUFF conrectus_A : A2 conrectus, conrecta -um, conrectior -or -us, conrectissimus -a -um -- [XXXEO] :: reformed (person); improved, amended, corrected (L+S); + conrectus_A = mkA "conrectus" ; -- [XXXEO] :: reformed (person); improved, amended, corrected (L+S); conrecumbens_A = mkA "conrecumbens" "conrecumbentis"; -- [DXXFS] :: lying down with (anyone); conregio_F_N = mkN "conregio" "conregionis " feminine ; -- [XEXEO] :: drawing of boundary lines (within which auspices may be taken); conregionalis_M_N = mkN "conregionalis" "conregionalis " masculine ; -- [DXXFS] :: adjoining/neighboring people; conregno_V = mkV "conregnare" ; -- [DLXES] :: reign together with one; + conrepo_V = mkV "conrepere" "conrepo" "conrepsi" "conreptus "; -- [XXXCO] :: creep, crawl; slink, move stealthily; take to the bush; creep (of the flesh); conrepte_Adv =mkAdv "conrepte" "conreptius" "conreptissime" ; -- [XGXEO] :: shortly; with a short vowel or syllable; conreptio_F_N = mkN "conreptio" "conreptionis " feminine ; -- [XXXCO] :: seizure/attack, onset (disease); rebuking/censure; shorting/decrease (in vowel); conrepto_V = mkV "conreptare" ; -- [DXXCS] :: creep; @@ -12661,12 +13525,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conreus_M_N = mkN "conreus" ; -- [XLXFO] :: joint defendant; co-respondent; conrideo_V = mkV "conridere" ; -- [XXXFO] :: laugh together; laugh out loud (L+S); conrigia_F_N = mkN "conrigia" ; -- [XXXEO] :: shoe-lace, thong for securing shoes to feet; thong of any kind; + conrigo_V2 = mkV2 (mkV "conrigere" "conrigo" "conrexi" "conrectus ") ; -- [XXXBO] :: correct, set right; straighten; improve, edit, reform; restore, cure; chastise; + conripio_V2 = mkV2 (mkV "conripere" "conripio" "conripui" "conreptus ") ; -- [XXXAO] :: |censure/reproach/rebuke/chastise; shorten/abridge; hasten (upon); catch (fire); conrivalis_M_N = mkN "conrivalis" "conrivalis " masculine ; -- [XXXFS] :: joint rival; conrivatio_F_N = mkN "conrivatio" "conrivationis " feminine ; -- [XXXNO] :: leading/channeling (water) into the same channel/basin, collection; conrivium_N_N = mkN "conrivium" ; -- [XXXNS] :: confluence of brooks/streams; conrivo_V2 = mkV2 (mkV "conrivare") ; -- [XXXEO] :: lead/channel (water) into the same channel/basin, collect; conroboramentum_N_N = mkN "conroboramentum" ; -- [DXXFS] :: means of strengthening; conroboro_V2 = mkV2 (mkV "conroborare") ; -- [XXXBO] :: strengthen, harden, reinforce; corroborate; mature; make powerful, fortify; + conrodo_V2 = mkV2 (mkV "conrodere" "conrodo" "conrosi" "conrosus ") ; -- [XXXDO] :: gnaw, gnaw away; chew up; gnaw to pieces (L+S); conrogatio_F_N = mkN "conrogatio" "conrogationis " feminine ; -- [DEXFS] :: bringing together; gathering, assembly (Ecc); collection; conrogo_V2 = mkV2 (mkV "conrogare") ; -- [XXXCO] :: collect money by begging/entreaty; summon/invite (persons) to a gathering; conrotundo_V2 = mkV2 (mkV "conrotundare") ; -- [XXXDO] :: make round; round off; amass/make up a round sum of money; @@ -12674,10 +13541,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conrugis_A = mkA "conrugis" "conrugis" "conruge" ; -- [XXXFS] :: wrinkled, having wrinkles/folds; corrugated; conrugo_V2 = mkV2 (mkV "conrugare") ; -- [XXXEO] :: make wrinkled; (make one turn up one's nose); corrugate; conrugus_M_N = mkN "conrugus" ; -- [XTXNO] :: channel/canal/conduit/sluice constructed to bring wash water for ore (mining); + conrumpo_V2 = mkV2 (mkV "conrumpere" "conrumpo" "conrupi" "conruptus ") ; -- [XXXAO] :: |pervert, corrupt, deprave; bribe, suborn; seduce, tempt, beguile; falsify; conrumptela_F_N = mkN "conrumptela" ; -- [XXXCS] :: |seduction/seducing; enticement to sexual misconduct; brothel/place of seduction + conruo_V2 = mkV2 (mkV "conruere" "conruo" "conrui" "conrutus ") ; -- [XXXBO] :: |topple (houses); subside (ground); rush/sweep together; overthrow; conrupte_Adv =mkAdv "conrupte" "conruptius" "conruptissime" ; -- [XXXCO] :: incorrectly; perversely; in bad style/depraved manner; licentiously, corruptly; conruptela_F_N = mkN "conruptela" ; -- [XXXCO] :: |seduction/seducing; enticement to sexual misconduct; brothel/place of seduction --- SLASHSTUFF conruptibilis_A : A2 conruptibilis, conruptibile, conruptibilior -or -us, conruptibilissimus -a -u -- [DXXES] :: corruptible, liable to decay, perishable; + conruptibilis_A = mkA "conruptibilis" ; -- [DXXES] :: corruptible, liable to decay, perishable; conruptibilitas_F_N = mkN "conruptibilitas" "conruptibilitatis " feminine ; -- [DEXFS] :: corruptibility, perishability; conruptio_F_N = mkN "conruptio" "conruptionis " feminine ; -- [XXXDO] :: corruption; bribery, seduction from loyalty; diseased/corrupt condition; conruptive_Adv = mkAdv "conruptive" ; -- [DEXFS] :: corruptibly; perishably; @@ -12687,10 +13556,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conruptrix_A = mkA "conruptrix" "conruptricis"; -- [XXXFO] :: tending to deprave/corrupt, corruptive; conruptrix_F_N = mkN "conruptrix" "conruptricis " feminine ; -- [DXXES] :: she who corrupts/seduces; conruptum_N_N = mkN "conruptum" ; -- [XBXFS] :: corrupted parts (pl.) (of the body); --- SLASHSTUFF conruptus_A : A2 conruptus, conrupta -um, conruptior -or -us, conruptissimus -a -um -- [XXXCO] :: |incorrect/improper/disorderly; impure/adulterated/changed for worse; seditious; + conruptus_A = mkA "conruptus" ; -- [XXXCO] :: |incorrect/improper/disorderly; impure/adulterated/changed for worse; seditious; conruspor_V = mkV "conruspari" ; -- [XXXEO] :: search for, seek out; search carefully after (L+S); conrutundo_V2 = mkV2 (mkV "conrutundare") ; -- [XXXDO] :: make round; round off; amass/make up a round sum of money; --- IGNORED cons_N : N1 cons., abb. -- M -- [CLICO] :: consul (the highest elected Roman official); abb. cons./cos.; + cons_N = constN "cons." masculine ; -- [CLICO] :: consul (the highest elected Roman official); abb. cons./cos.; consacerdos_F_N = mkN "consacerdos" "consacerdotis " feminine ; -- [DEXFO] :: fellow-priest/priestess; consacerdos_M_N = mkN "consacerdos" "consacerdotis " masculine ; -- [DEXFO] :: fellow-priest/priestess; consacraneus_A = mkA "consacraneus" "consacranea" "consacraneum" ; -- [XLXIS] :: bound by the same (military) oath; @@ -12698,48 +13567,57 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg consacratio_F_N = mkN "consacratio" "consacrationis " feminine ; -- [XEXCO] :: consecration, dedication; making sacred; deification; devoting person to a god; consacrator_M_N = mkN "consacrator" "consacratoris " masculine ; -- [DEXES] :: one who consecrates/dedicates/makes sacred; consacratrix_F_N = mkN "consacratrix" "consacratricis " feminine ; -- [DEXFS] :: she who consecrates/dedicates/makes sacred; --- SLASHSTUFF consacratus_A : A2 consacratus, consacrata -um, consacratior -or -us, consacratissimus -a -um -- [XEXFS] :: consecrated, holy, sacred; + consacratus_A = mkA "consacratus" ; -- [XEXFS] :: consecrated, holy, sacred; consacro_V2 = mkV2 (mkV "consacrare") ; -- [XEXBO] :: consecrate/dedicate, set apart; hallow, sanctify; deify; curse; vow to a god; + consaepio_V2 = mkV2 (mkV "consaepire" "consaepio" "consaepsi" "consaeptus ") ; -- [XXXCO] :: surround with a wall/fence/hedge; enclose, fence; fence/hedge in; consaepto_V2 = mkV2 (mkV "consaeptare") ; -- [DXXFS] :: surround with a wall/fence/hedge; enclose, fence; fence/hedge in; consaeptum_N_N = mkN "consaeptum" ; -- [XXXCO] :: enclosure; precinct; fenced/hedged off area; fence/hedge (L+S); consaeptus_M_N = mkN "consaeptus" "consaeptus " masculine ; -- [XXXES] :: hedging in; fencing around; constraining; consalutatio_F_N = mkN "consalutatio" "consalutationis " feminine ; -- [XXXDO] :: greeting; exchange of greetings; several mutual salutations (L+S); consaluto_V2 = mkV2 (mkV "consalutare") ; -- [XXXCO] :: hail/greet/salute (as); exchange greetings; greet/salute cordially (L+S); + consanesco_V = mkV "consanescere" "consanesco" "consanui" "consanitus "; -- [XBXEO] :: heal up (wounds/plants); be healed (persons); become whole/sound/well (L+S); consanguinea_F_N = mkN "consanguinea" ; -- [XXXCS] :: sister; kin, blood relation; kindred/relations (pl.); consanguineus_A = mkA "consanguineus" "consanguinea" "consanguineum" ; -- [XXXCO] :: of the same blood; related by blood; kindred; fraternal; brotherly/sisterly; consanguineus_C_N = mkN "consanguineus" ; -- [XXXCO] :: kinsman, blood relation; brother (M); a sister (F); kindred/relations (pl.); consanguinitas_F_N = mkN "consanguinitas" "consanguinitatis " feminine ; -- [XXXCO] :: blood-relationship/kinship/consanguinity; (esp. between brothers/sisters L+S); consano_V2 = mkV2 (mkV "consanare") ; -- [XBXEO] :: heal; make whole; make wholly sound (L+S); consarcino_V2 = mkV2 (mkV "consarcinare") ; -- [XXXEO] :: stitch/sew/patch together; + consario_V2 = mkV2 (mkV "consarire" "consario" "consarui" "consaritus ") ; -- [XAXEO] :: hoe thoroughly/to pieces; rake (L+S); + consarrio_V2 = mkV2 (mkV "consarrire" "consarrio" "consarrui" "consarritus ") ; -- [XAXEO] :: hoe thoroughly/to pieces; hoe; weed (crops); dig over (land); rake (L+S); consatio_F_N = mkN "consatio" "consationis " feminine ; -- [DXXFS] :: procreation; consaucio_V2 = mkV2 (mkV "consauciare") ; -- [XWXEO] :: injure, wound severely; consavio_V2 = mkV2 (mkV "consaviare") ; -- [XXXFO] :: cover with kisses; kiss affectionately (L+S); consavior_V = mkV "consaviari" ; -- [XXXFO] :: cover with kisses; kiss affectionately (L+S); --- SLASHSTUFF consceleratus_A : A2 consceleratus, conscelerata -um, consceleratior -or -us, consceleratissimus -a -u -- [XXXCS] :: wicked, depraved; criminal; (person/actions); + consceleratus_A = mkA "consceleratus" ; -- [XXXCS] :: wicked, depraved; criminal; (person/actions); consceleratus_M_N = mkN "consceleratus" ; -- [XXXEO] :: wicked/depraved person; criminal; villain (L+S); conscelero_V2 = mkV2 (mkV "conscelerare") ; -- [XXXEO] :: stain with crime, pollute with guilt, dishonor, disgrace by wicked conduct; + conscendo_V2 = mkV2 (mkV "conscendere" "conscendo" "conscendi" "conscensus ") ; -- [XXXBO] :: climb up, ascend, scale; rise to; mount (horse); board (ship)/embark/set out; conscensio_F_N = mkN "conscensio" "conscensionis " feminine ; -- [XXXFO] :: embarkation; setting out; ascending into (L+S); mounting up; conscensus_M_N = mkN "conscensus" "conscensus " masculine ; -- [DEXFS] :: ascending, mounting; conscia_C_N = mkN "conscia" ; -- [EXXFE] :: accomplice, accessory; partner; confidante; one privy to (crime/plot); witness; conscientia_F_N = mkN "conscientia" ; -- [XXXBO] :: (joint) knowledge, complicity (of crime); conscience; sense of guilt, remorse; --- TODO conscio_V : V2 conscio, conscire, conscivi, - -- Declension: 4th -- Comment: [XXXEO] :: feel guilty; be conscious of (wrong); have on conscience; know well (late); + conscindo_V2 = mkV2 (mkV "conscindere" "conscindo" "conscidi" "conscissus ") ; -- [XXXCO] :: rend/tear to pieces, destroy by tearing; slaughter, cut to pieces; + conscio_V2 = mkV2 (mkV "conscire" "conscio" "conscivi" nonExist ) ; -- [XXXEO] :: feel guilty; be conscious of (wrong); have on conscience; know well (late); + conscisco_V2 = mkV2 (mkV "consciscere" "conscisco" "conscivi" "conscitus ") ; -- [XXXCO] :: ordain/decree/determine/resolve; decide/inflict on; bring on oneself (w/sibi); conscissio_F_N = mkN "conscissio" "conscissionis " feminine ; -- [DEXFS] :: tearing to pieces, rending asunder; conscius_A = mkA "conscius" "conscia" "conscium" ; -- [XXXBO] :: conscious, aware of, knowing, privy (to); sharing (secret) knowledge; guilty; conscius_C_N = mkN "conscius" ; -- [XXXDO] :: accomplice, accessory; partner; confidante; one privy to (crime/plot); witness; conscreor_V = mkV "conscreari" ; -- [XXXFO] :: clear the throat/voice; hawk (much); conscribillo_V2 = mkV2 (mkV "conscribillare") ; -- [XXXEO] :: scrawl/scribble over/upon, cover with scribbling; mark by beating (L+S); + conscribo_V2 = mkV2 (mkV "conscribere" "conscribo" "conscripsi" "conscriptus ") ; -- [XXXBO] :: enroll/enlist/raise (army); write on/down, commit to/cover with writing; compose conscribtor_M_N = mkN "conscribtor" "conscribtoris " masculine ; -- [XGXFO] :: author; framer; conscriptio_F_N = mkN "conscriptio" "conscriptionis " feminine ; -- [XGXEO] :: account/written record/writing; treatise/composition; conscription/troop levy; conscriptor_M_N = mkN "conscriptor" "conscriptoris " masculine ; -- [XGXEO] :: author; framer; composer; writer; conscriptus_M_N = mkN "conscriptus" ; -- [XLXCO] :: senator/counselor; enrolling of the people for the purpose of bribery (L+S); conseco_V2 = mkV2 (mkV "consecare") ; -- [XXXCO] :: dismember, chop/cut up/short/off/in pieces/deep; prune/top; lacerate; intersect; + consecor_V = mkV "conseci" "consecor" nonExist ; -- [EXXEZ] :: follow, go after; attend on; pursue; catch up with, overtake; follow up; consecraneus_A = mkA "consecraneus" "consecranea" "consecraneum" ; -- [XLXIS] :: bound by the same (military) oath; consecraneus_M_N = mkN "consecraneus" ; -- [XLXIO] :: one united/bound by the same (military) oath; consecratio_F_N = mkN "consecratio" "consecrationis " feminine ; -- [XEXCO] :: consecration, dedication; making sacred; deification; devoting person to a god; consecrator_M_N = mkN "consecrator" "consecratoris " masculine ; -- [DEXES] :: one who consecrates/dedicates/makes sacred; consecratorius_A = mkA "consecratorius" "consecratoria" "consecratorium" ; -- [DEXFE] :: consecratory; has attribute of consecrating or making sacred/holy; consecratrix_F_N = mkN "consecratrix" "consecratricis " feminine ; -- [DEXFS] :: she who consecrates/dedicates/makes sacred; --- SLASHSTUFF consecratus_A : A2 consecratus, consecrata -um, consecratior -or -us, consecratissimus -a -um -- [XEXFS] :: consecrated, holy, sacred; + consecratus_A = mkA "consecratus" ; -- [XEXFS] :: consecrated, holy, sacred; consecro_V2 = mkV2 (mkV "consecrare") ; -- [XEXBO] :: consecrate/dedicate, set apart; hallow, sanctify; deify; curse; vow to a god; consectandus_A = mkA "consectandus" "consectanda" "consectandum" ; -- [XXXFO] :: cropped, cut short; consectaneus_A = mkA "consectaneus" "consectanea" "consectaneum" ; -- [DXXES] :: following eagerly after; hanging upon; @@ -12758,6 +13636,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conseminalis_A = mkA "conseminalis" "conseminalis" "conseminale" ; -- [XAXEO] :: planted/sown with several varieties (of vines/trees/seeds); consemineus_A = mkA "consemineus" "conseminea" "consemineum" ; -- [XAXEO] :: planted/sown with several varieties (of vines/trees/seeds); conseminia_F_N = mkN "conseminia" ; -- [XAXNO] :: kind of vine; + consenesco_V = mkV "consenescere" "consenesco" "consenui" nonExist; -- [XXXBO] :: ||lose force, become invalid, fall into disuse; become of no account; consenior_M_N = mkN "consenior" "consenioris " masculine ; -- [DEXFS] :: fellow-elder; fellow-presbyter; consensio_M_N = mkN "consensio" "consensionis " masculine ; -- [XXXCO] :: agreement (opinion), consent, accordance, harmony; unanimity; plot, conspiracy; consensualis_A = mkA "consensualis" "consensualis" "consensuale" ; -- [GXXEK] :: consensual; @@ -12766,7 +13645,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg consentaneum_N_N = mkN "consentaneum" ; -- [XXXCS] :: concurrent circumstances (pl.); [~ est => it is fitting/reasonable/consistent]; consentaneus_A = mkA "consentaneus" "consentanea" "consentaneum" ; -- [XXXCO] :: agreeable; consistent/appropriate/fitting; in harmony with (L+S); consentiens_A = mkA "consentiens" "consentientis"; -- [XXXCO] :: unanimous; harmonious, agreeing closely; consistent; favorable; + consentio_V2 = mkV2 (mkV "consentire" "consentio" "consensi" "consensus ") ; -- [XXXAO] :: ||agree, consent; fit/be consistent/in sympathy/unison with; favor; assent to; consentium_N_N = mkN "consentium" ; -- [XEXFS] :: (sacred) rites (pl.) established by common agreement (w/sacra); + consepelio_V2 = mkV2 (mkV "consepelire" "consepelio" "conseplivi" "consepultus ") ; -- [EXXFE] :: bury with; + consepio_V2 = mkV2 (mkV "consepire" "consepio" "consepsi" "conseptus ") ; -- [XXXCO] :: surround with a wall/fence/hedge; enclose, fence; fence/hedge in; consepto_V2 = mkV2 (mkV "conseptare") ; -- [DXXFS] :: surround with a wall/fence/hedge; enclose, fence; fence/hedge in; conseptum_N_N = mkN "conseptum" ; -- [XXXCO] :: enclosure; precinct; fenced/hedged off area; fence/hedge (L+S); conseptus_M_N = mkN "conseptus" "conseptus " masculine ; -- [XXXES] :: hedging in; fencing around; constraining; @@ -12778,10 +13660,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg consequia_F_N = mkN "consequia" ; -- [DXXES] :: consequence; retinue; rear guard; consequius_A = mkA "consequius" "consequia" "consequium" ; -- [XXXFO] :: which follows or is in attendance; consequius_M_N = mkN "consequius" ; -- [XXXFO] :: who(/that which) follows or is in attendance; + consequor_V = mkV "consequi" "consequor" "consecutus sum " ; -- [XXXAO] :: ||seek after, aim at; achieve, reach; obtain; acquire, gain; grasp/comprehend; consequtio_F_N = mkN "consequtio" "consequtionis " feminine ; -- [XXXCS] :: |investigation of consequences/effects; acquiring/obtaining (L+S); attainment; consequus_A = mkA "consequus" "consequa" "consequum" ; -- [XXXCS] :: following; conserba_F_N = mkN "conserba" ; -- [BXXIO] :: fellow-slave (female); (sometimes informal wife); consermonor_V = mkV "consermonari" ; -- [XXXFO] :: talk, converse; + consero_V2 = mkV2 (mkV "conserere" "consero" "consevi" "consitus ") ; -- [XXXCO] :: sow, plant (field/crops/seeds/tree), set; breed; sow/strew plentifully/thickly; conserte_Adv = mkAdv "conserte" ; -- [XXXFO] :: in a connected manner; as if bound/fastened together (L+S); consertio_F_N = mkN "consertio" "consertionis " feminine ; -- [DXXFS] :: joining together; conserva_F_N = mkN "conserva" ; -- [BXXCO] :: fellow-slave (female); (sometimes informal wife); @@ -12804,15 +13688,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg considerate_Adv =mkAdv "considerate" "consideratius" "consideratissime" ; -- [XXXDO] :: carefully, cautiously, considerately; upon consideration; consideratio_F_N = mkN "consideratio" "considerationis " feminine ; -- [XXXDO] :: gaze/inspection/act of looking; mental examination/contemplation/consideration; considerator_M_N = mkN "considerator" "consideratoris " masculine ; -- [XXXFO] :: one who examines/considers/reflects on a problem; --- SLASHSTUFF consideratus_A : A2 consideratus, considerata -um, consideratior -or -us, consideratissimus -a -um -- [XXXCO] :: thought out, careful, considered (thing); cautious/deliberate/careful (person); + consideratus_A = mkA "consideratus" ; -- [XXXCO] :: thought out, careful, considered (thing); cautious/deliberate/careful (person); considero_V2 = mkV2 (mkV "considerare") ; -- [XXXBO] :: examine/look at/inspect; consider closely, reflect on/contemplate; investigate; considium_N_N = mkN "considium" ; -- [XLXFO] :: court of justice; + consido_V = mkV "considere" "consido" "considi" "consessus "; -- [XXXDO] :: |encamp/bivouac; take up a position; stop/stay, make one's home, settle; lodge; consignate_Adv =mkAdv "consignate" "consignatius" "consignatissime" ; -- [XXXEO] :: aptly; expressively; in a distinct manner, plainly, distinctly (L+S); consignatio_F_N = mkN "consignatio" "consignationis " feminine ; -- [XLXDO] :: affixing a seal/sealing/authentication; sealed/attested document; written proof; consignatorium_N_N = mkN "consignatorium" ; -- [EEXFE] :: room in which confirmation was administered; consignifico_V = mkV "consignificare" ; -- [FGXFM] :: be significant; convey extra meaning; consigno_V2 = mkV2 (mkV "consignare") ; -- [XXXCO] :: (fix a) seal; put on record; indicate precisely/establish; attest/authenticate; consilatio_F_N = mkN "consilatio" "consilationis " feminine ; -- [DXXFS] :: consulting, consult; counseling, advice; + consilesco_V = mkV "consilescere" "consilesco" "consilui" nonExist; -- [BXXEO] :: fall silent; become still; be hushed (L+S); keep silent; grow dumb; consiliaris_M_N = mkN "consiliaris" "consiliaris " masculine ; -- [DXXFO] :: counsel, advice; counseling; consiliarius_A = mkA "consiliarius" "consiliaria" "consiliarium" ; -- [XXXDO] :: counseling, advising; suitable for counsel (L+S); consiliarius_M_N = mkN "consiliarius" ; -- [XXXCO] :: counselor/adviser; sharer of counsels; assessor; consilium princips member; @@ -12820,15 +13706,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg consiliatrix_F_N = mkN "consiliatrix" "consiliatricis " feminine ; -- [XXXFO] :: adviser (female); she who counsels (L+S); consiligo_F_N = mkN "consiligo" "consiliginis " feminine ; -- [XBXEO] :: medicinal herb (Pulmonaria officinalis), lugwort (or green hellebore); consilior_V = mkV "consiliari" ; -- [XXXCO] :: take counsel, consult; deliberate; advise, give advice; --- SLASHSTUFF consiliosus_A : A2 consiliosus, consiliosa -um, consiliosior -or -us, consiliosissimus -a -um -- [XXXDS] :: instructive; giving good advice; full of prudence/wisdom, considerate (L+S); + consiliosus_A = mkA "consiliosus" ; -- [XXXDS] :: instructive; giving good advice; full of prudence/wisdom, considerate (L+S); consilium_N_N = mkN "consilium" ; -- [XXXAO] :: |||intelligence, sense, capacity for judgment/invention; mental ability; choice; consimile_N_N = mkN "consimile" "consimilis " neuter ; -- [XXXEO] :: similar things (pl.); and the like (L+S); consimilis_A = mkA "consimilis" "consimilis" "consimile" ; -- [XXXCO] :: like, very similar; similar in all respects (L+S); consimiliter_Adv = mkAdv "consimiliter" ; -- [XXXFO] :: (very) similarly; in a like manner (L+S); consimilo_V2 = mkV2 (mkV "consimilare") ; -- [DXXES] :: compare; + consipio_V = mkV "consipere" "consipio" nonExist nonExist; -- [XXXEO] :: be sane, be in one's right mind; be of sound mind (L+S); + consipio_V2 = mkV2 (mkV "consipire" "consipio" "consipsi" "consiptus ") ; -- [BXXCO] :: surround with a wall/fence/hedge; enclose, fence; fence/hedge in; consiptum_N_N = mkN "consiptum" ; -- [BXXCO] :: enclosure; precinct; fenced/hedged off area; consistentia_F_N = mkN "consistentia" ; -- [GXXEK] :: consistence; consistio_F_N = mkN "consistio" "consistionis " feminine ; -- [XXXFO] :: action of standing in place; a standing still (L+S); [~ loci => in a place]; + consisto_V2 = mkV2 (mkV "consistere" "consisto" "constiti" "constitus ") ; -- [XXXAO] :: |||come about, exist; fall due (tax); be established; remain valid/applicable; consistorialis_A = mkA "consistorialis" "consistorialis" "consistoriale" ; -- [EEXFE] :: consistorial, by/pertaining to a consistory/(ecclesiastical) assembly/court; consistorianus_A = mkA "consistorianus" "consistoriana" "consistorianum" ; -- [DLXFS] :: of/pertaining to the emperor's cabinet; of (ecclesiastical) assembly/court; consistorianus_M_N = mkN "consistorianus" ; -- [DLXES] :: assessor, aid in council; (in emperor's council); @@ -12843,7 +13732,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg consociabilis_A = mkA "consociabilis" "consociabilis" "consociabile" ; -- [DXXFS] :: compatible, suitable; consociatim_Adv = mkAdv "consociatim" ; -- [DXXFS] :: together, unitedly, jointly; consociatio_F_N = mkN "consociatio" "consociationis " feminine ; -- [XXXEO] :: association, union; associating, uniting; --- SLASHSTUFF consociatus_A : A2 consociatus, consociata -um, consociatior -or -us, consociatissimus -a -um -- [XXXEO] :: closely linked/associated; united (L+S); agreeing, harmonious; + consociatus_A = mkA "consociatus" ; -- [XXXEO] :: closely linked/associated; united (L+S); agreeing, harmonious; consocio_V = mkV "consociare" ; -- [XXXCO] :: associate/join/unite (in), share; bring in close relation/alliance/partnership; consocius_A = mkA "consocius" "consocia" "consocium" ; -- [DXXFS] :: united; connected; consocius_M_N = mkN "consocius" ; -- [DXXES] :: partaker; aid; companion; associate, ally (Bee); @@ -12874,18 +13763,22 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg consone_Adv = mkAdv "consone" ; -- [XXXFO] :: in unison, (sounding) together; harmoniously (L+S); consono_V = mkV "consonare" ; -- [XXXCO] :: sound/utter/make noise together, harmonize; resound/re-echo; agree; consonus_A = mkA "consonus" "consona" "consonum" ; -- [XXXCO] :: sounding together; harmonious; having common sound; agreeing; unanimous; fit; + consopio_V2 = mkV2 (mkV "consopire" "consopio" "consopivi" "consopitus ") ; -- [XXXCO] :: lull/put to sleep, make unconscious; stupefy, benumb; make obsolete; consors_A = mkA "consors" "consortis"; -- [XXXDO] :: sharing inheritance/property; shared, in common; kindred, brotherly, sisterly; consors_F_N = mkN "consors" "consortis " feminine ; -- [XXXCO] :: sharer; partner/associate/collogue/fellow; consort/wife; brother/sister; co-heir consors_M_N = mkN "consors" "consortis " masculine ; -- [XXXCO] :: sharer; partner/associate/collogue/fellow; consort/wife; brother/sister; co-heir consortalis_A = mkA "consortalis" "consortalis" "consortale" ; -- [XXXFO] :: joint, held in association/common/partnership; pertaining to common property; consortio_F_N = mkN "consortio" "consortionis " feminine ; -- [XXXCO] :: partnership/association; fellowship, community; conjunction (things); sympathy; consortium_N_N = mkN "consortium" ; -- [XXXCO] :: |possession in common, sharing property; community life; conjunction (stars); + conspargo_V2 = mkV2 (mkV "conspargere" "conspargo" "consparsi" "consparsus ") ; -- [XXXBO] :: sprinkle/strew/spatter, cover with small drops/particles; diversify/intersperse; consparsio_F_N = mkN "consparsio" "consparsionis " feminine ; -- [DXXES] :: scattering, strewing, sprinkling, sprinkle; paste, dough; conspatians_A = mkA "conspatians" "conspatiantis"; -- [XXXFS] :: walking together; conspectio_F_N = mkN "conspectio" "conspectionis " feminine ; -- [DXXES] :: look, sight, view; conspector_M_N = mkN "conspector" "conspectoris " masculine ; -- [XXXIO] :: inspector; overseer; he who sees/beholds (L+S); --- SLASHSTUFF conspectus_A : A2 conspectus, conspecta -um, conspectior -or -us, conspectissimus -a -um -- [XXXCO] :: visible, open to view; remarkable/striking/eminent/distinguished; conspicuous; + conspectus_A = mkA "conspectus" ; -- [XXXCO] :: visible, open to view; remarkable/striking/eminent/distinguished; conspicuous; conspectus_M_N = mkN "conspectus" "conspectus " masculine ; -- [XXXBO] :: view, (range of) sight; aspect/appearance/look; perception/contemplation/survey; + conspelio_V2 = mkV2 (mkV "conspelire" "conspelio" nonExist "conspultus ") ; -- [DEXFS] :: bury with; + conspergo_V2 = mkV2 (mkV "conspergere" "conspergo" "conspersi" "conspersus ") ; -- [XXXBO] :: sprinkle/strew/spatter, cover with small drops/particles; diversify/intersperse; conspersio_F_N = mkN "conspersio" "conspersionis " feminine ; -- [DXXES] :: scattering, strewing, sprinkling, sprinkle; paste, dough; conspicabilis_A = mkA "conspicabilis" "conspicabilis" "conspicabile" ; -- [DXXES] :: visible; remarkable, notable; conspicabundus_A = mkA "conspicabundus" "conspicabunda" "conspicabundum" ; -- [DXXFS] :: considering attentively; @@ -12895,6 +13788,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conspicillium_N_N = mkN "conspicillium" ; -- [EXXEE] :: lookout post, place for spying out; watching (L+S); eyeglass (Ecc); binoculars; conspicillum_N_N = mkN "conspicillum" ; -- [BXXEO] :: lookout post, place for spying out; watching (L+S); eyeglass (Ecc); binoculars; conspicio_F_N = mkN "conspicio" "conspicionis " feminine ; -- [XXXEO] :: looking/observing/discerning, action of looking; (augury); + conspicio_V2 = mkV2 (mkV "conspicere" "conspicio" "conspexi" "conspectus ") ; -- [XXXBO] :: |have appearance; attract attention; discern; (PASS) be conspicuous/visible; conspicor_V = mkV "conspicari" ; -- [XXXCO] :: catch sight of, see; observe, notice; perceive; be conspicuous; be regarded; conspicuus_A = mkA "conspicuus" "conspicua" "conspicuum" ; -- [XXXCO] :: visible, clearly seen, in sight/full view; illustrious/notable/famous/striking; conspirate_Adv =mkAdv "conspirate" "conspiratius" "conspiratissime" ; -- [DXXFS] :: unanimously, with one accord, all together; @@ -12906,6 +13800,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conspissatio_F_N = mkN "conspissatio" "conspissationis " feminine ; -- [DXXFS] :: thickening, condensing; pressing together; accumulation; conspissatus_A = mkA "conspissatus" "conspissata" "conspissatum" ; -- [XXXES] :: thickened, condensed; pressed together; dense; conspisso_V2 = mkV2 (mkV "conspissare") ; -- [XXXEO] :: thicken; condense; + consplendesco_V = mkV "consplendescere" "consplendesco" nonExist nonExist; -- [DXXFS] :: shine very much/brightly/splendidly; conspolio_V2 = mkV2 (mkV "conspoliare") ; -- [DXXFS] :: rob; conspolium_N_N = mkN "conspolium" ; -- [DXXFS] :: kind of sacrificial fruit cake; conspondeo_V = mkV "conspondere" ; -- [XXXDO] :: exchange pledges; engage/promise mutually (L+S); @@ -12913,11 +13808,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg consponsor_M_N = mkN "consponsor" "consponsoris " masculine ; -- [XXXEO] :: joint surety; one who takes a joint/mutual oath; who obligates himself (L+S); consponsus_A = mkA "consponsus" "consponsa" "consponsum" ; -- [XXXFO] :: bound by mutual pledges; conspultus_A = mkA "conspultus" "conspulta" "conspultum" ; -- [DEXFS] :: buried with; + conspuo_V = mkV "conspuere" "conspuo" "conspui" "consputus "; -- [DXXES] :: spit; spit out much; spit it out; + conspuo_V2 = mkV2 (mkV "conspuere" "conspuo" "conspui" "consputus ") ; -- [XXXCO] :: spit on, sputter over; besplatter with saliva; (contempt); spit; spit it out; conspurcatus_A = mkA "conspurcatus" "conspurcata" "conspurcatum" ; -- [GXXET] :: polluted; (Erasmus); conspurco_V2 = mkV2 (mkV "conspurcare") ; -- [XXXEO] :: befoul, pollute; defile sexually; consputo_V2 = mkV2 (mkV "consputare") ; -- [XXXFO] :: spit on/over; (in contempt); --- IGNORED conss_N : N1 conss., abb. -- M -- [XXXCT] :: consuls (pl.) (highest elected official); abb. conss./coss.; (two of a year); + conss_N = constN "conss." masculine ; -- [XXXCT] :: consuls (pl.) (highest elected official); abb. conss./coss.; (two of a year); constabilarius_M_N = mkN "constabilarius" ; -- [FLXEM] :: constable; commander, high constable; warden (of castle/manor/parish); + constabilio_V2 = mkV2 (mkV "constabilire" "constabilio" "constabilivi" "constabilitus ") ; -- [XXXEO] :: establish; put on a firm basis; strengthen; confirm, make firm (L+S); constabularius_M_N = mkN "constabularius" ; -- [FLXDM] :: constable; commander, high constable; warden (of castle/manor/parish); constagno_V = mkV "constagnare" ; -- [DXXFS] :: cause to stand; congeal; constans_A = mkA "constans" "constantis"; -- [XXXBO] :: |consistent; standing firm; firm; persistent; mentally/morally settled/certain; @@ -12928,11 +13826,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg constellatus_A = mkA "constellatus" "constellata" "constellatum" ; -- [DSXES] :: starry; studded with stars; consternatio_F_N = mkN "consternatio" "consternationis " feminine ; -- [XXXCO] :: confusion/dismay/shock/alarm; excitement; disturbance/disorder; mutiny/sedition; consternatus_A = mkA "consternatus" "consternata" "consternatum" ; -- [XXXFE] :: dismayed, confused, confounded, in consternation; - consterno_V2 = mkV2 (mkV "consternare") ; -- [DXXDS] :: |overcome; stretch/lay out upon the ground; excite to sedition/revolt/mutiny; + consterno_V2 = mkV2 (mkV "consternere" "consterno" "constravi" "constratus ") ; -- [XXXBO] :: strew/cover/spread (rugs); cover/lay/pave/line; bring down, lay low; calm (sea); constibilis_A = mkA "constibilis" "constibilis" "constibile" ; -- [XXXFO] :: strong; stout; constipatio_F_N = mkN "constipatio" "constipationis " feminine ; -- [DXXES] :: crowding together; a dense crowd; constipo_V2 = mkV2 (mkV "constipare") ; -- [XXXEO] :: crowd together; press/crowd closely together (L+S); constitio_F_N = mkN "constitio" "constitionis " feminine ; -- [XXXFO] :: act of standing in place; abiding (L+S); abode; stay; [w/loci => in same place]; + constituo_V2 = mkV2 (mkV "constituere" "constituo" "constitui" "constitutus ") ; -- [XXXAO] :: ||establish/create/institute; draw up, arrange/set in order; make up, form; fix; constitutio_F_N = mkN "constitutio" "constitutionis " feminine ; -- [XXXBO] :: |ordinance, decree, decision; position/ordering; destiny; definition of a term; constitutionarius_M_N = mkN "constitutionarius" ; -- [DLXFS] :: he who presides over the copying of the imperial constitutions; constitutivus_A = mkA "constitutivus" "constitutiva" "constitutivum" ; -- [EXXFE] :: determining; constituent, component; confirmatory (Souter); defining; @@ -12944,14 +13843,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg consto_V = mkV "constare" ; -- [XXXAO] :: ||stand firm/still/erect/together; remain motionless/constant; consist of/in; constratum_N_N = mkN "constratum" ; -- [XWXEO] :: platform; deck; covering (L+S); constratus_A = mkA "constratus" "constrata" "constratum" ; -- [XWXDO] :: flat, plane; [navis ~ => decked ship]; + constrepo_V = mkV "constrepere" "constrepo" "constrepui" "constrepitus "; -- [XXXCO] :: make a loud noise; resound; sound loudly/boisterously (L+S); (of vivid speech); constricte_Adv = mkAdv "constricte" ; -- [DXXFS] :: closely; constrictio_F_N = mkN "constrictio" "constrictionis " feminine ; -- [XXXFO] :: compression, constriction; binding/drawing together (L+S); constipation; constrictive_Adv = mkAdv "constrictive" ; -- [DBXES] :: astringently; constrictivus_A = mkA "constrictivus" "constrictiva" "constrictivum" ; -- [DXXES] :: contracting; drawing together; astringent; constricto_V2 = mkV2 (mkV "constrictare") ; -- [DBXES] :: draw together; (medical term associated with cauterization and amputation); constrictura_F_N = mkN "constrictura" ; -- [DXXFS] :: drawing together; --- SLASHSTUFF constrictus_A : A2 constrictus, constricta -um, constrictior -or -us, constrictissimus -a -um -- [XXXNO] :: small/limited in size; marked by contraction/tightening; compressed/contracted; + constrictus_A = mkA "constrictus" ; -- [XXXNO] :: small/limited in size; marked by contraction/tightening; compressed/contracted; + constringo_V2 = mkV2 (mkV "constringere" "constringo" "constrinxi" "constrictus ") ; -- [XXXBO] :: |compress/squeeze; make smaller/lessen/contract; hold together; congeal/freeze; constructio_F_N = mkN "constructio" "constructionis " feminine ; -- [XXXCO] :: erection, putting/joining together; building, construction; arrangement (words); + construo_V2 = mkV2 (mkV "construere" "construo" "construxi" "constructus ") ; -- [XXXBO] :: heap/pile/load (up); make/build/construct; arrange (in group); amass, collect; constupeo_V = mkV "constupere" ; -- [DXXFS] :: be very much astonished; constuprator_M_N = mkN "constuprator" "constupratoris " masculine ; -- [XXXFO] :: ravisher, debaucher, defiler; one perpetrating illicit (adultery/forcible) sex; constupro_V2 = mkV2 (mkV "constuprare") ; -- [XXXDO] :: ravish, rape; debauch, defile, corrupt; have illicit (adultery/forcible) sex; @@ -12959,19 +13861,24 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg consuasor_M_N = mkN "consuasor" "consuasoris " masculine ; -- [XXXFO] :: advisor, counselor; one who recommends/advocates/counsels; consuavio_V2 = mkV2 (mkV "consuaviare") ; -- [XXXFO] :: cover with kisses; kiss affectionately (L+S); consuavior_V = mkV "consuaviari" ; -- [XXXFO] :: cover with kisses; kiss affectionately (L+S); + consubigo_V2 = mkV2 (mkV "consubigere" "consubigo" "consubegi" "consubactus ") ; -- [DXXFS] :: knead/work/mix/force together; consubstantialis_A = mkA "consubstantialis" "consubstantialis" "consubstantiale" ; -- [DEXES] :: of like nature/essence/quality; consubstantialitas_F_N = mkN "consubstantialitas" "consubstantialitatis " feminine ; -- [DEXES] :: like quality/nature/essence; consubstantivus_A = mkA "consubstantivus" "consubstantiva" "consubstantivum" ; -- [DEXES] :: of like nature/essence/quality; consucidus_A = mkA "consucidus" "consucida" "consucidum" ; -- [XXXFO] :: fresh; juicy; (applied to a girl); + consudasco_V = mkV "consudascere" "consudasco" nonExist nonExist; -- [XXXFS] :: sweat profusely/thoroughly/much; exude moisture (of packed olives L+S); + consudesco_V = mkV "consudescere" "consudesco" nonExist nonExist; -- [XXXFO] :: sweat profusely/thoroughly/a lot; exude moisture (of packed olives L+S); consudo_V = mkV "consudare" ; -- [XXXDO] :: sweat profusely/well/a lot; (also applied to packed olives/fruit); + consuefacio_V2 = mkV2 (mkV "consuefacere" "consuefacio" "consuefeci" "consuefactus ") ; -- [XXXCO] :: accustom, acclimate, make used to, habituate, inure; consuefio_V = mkV "consueferi" ; -- [DXXCO] :: be/become accustomed/acclimated/habituated/hardened (to); (consuefacio PASS); consueo_V2 = mkV2 (mkV "consuere") ; -- [DXXES] :: accustom; become accustomed; be accustomed, inure, habituate. familiarize; + consuesco_V2 = mkV2 (mkV "consuescere" "consuesco" "consuevi" "consuetus ") ; -- [XXXBO] :: |be intimate/have sexual intercourse with; form a habit; be in the habit of; consuete_Adv = mkAdv "consuete" ; -- [DXXFS] :: in the usual/accustomed manner, as usual; according to custom; consuetio_F_N = mkN "consuetio" "consuetionis " feminine ; -- [XXXEO] :: intimacy; sexual intimacy/intercourse; consuetudinarie_Adv = mkAdv "consuetudinarie" ; -- [DXXFS] :: in the usual/accustomed manner, as usual; according to custom; consuetudinarius_A = mkA "consuetudinarius" "consuetudinaria" "consuetudinarium" ; -- [DXXES] :: usual, ordinary, customary; consuetudo_F_N = mkN "consuetudo" "consuetudinis " feminine ; -- [XXXAO] :: |experience; empirical knowledge; sexual/illicit intercourse, intimacy, affair; --- SLASHSTUFF consuetus_A : A2 consuetus, consueta -um, consuetior -or -us, consuetissimus -a -um -- [XXXCO] :: accustomed. used (to); customary, habitual, usual; ordinary, commonly employed; + consuetus_A = mkA "consuetus" ; -- [XXXCO] :: accustomed. used (to); customary, habitual, usual; ordinary, commonly employed; consul_M_N = mkN "consul" "consulis " masculine ; -- [XLXAO] :: consul (highest elected Roman official - 2/year); supreme magistrate elsewhere; consulans_M_N = mkN "consulans" "consulantis " masculine ; -- [XXXNS] :: those (pl.) who seek advice (from lawyer/oracle); consularis_A = mkA "consularis" "consularis" "consulare" ; -- [XLXBO] :: consular, of/proper to a consul; of consular rank; proposed/governed by consul; @@ -12979,6 +13886,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg consulariter_Adv = mkAdv "consulariter" ; -- [XLXFO] :: in a manner befitting/worthy of a consul; consularius_A = mkA "consularius" "consularia" "consularium" ; -- [DLXES] :: consular, of/proper to a consul; of consular rank; proposed/governed by consul; consulatus_M_N = mkN "consulatus" "consulatus " masculine ; -- [XLXCO] :: consulship/consulate; (term of) office of consul; actions/acts as consul; + consulo_V2 = mkV2 (mkV "consulere" "consulo" "consului" "consultus ") ; -- [XXXAO] :: |decide upon, adopt; look after/out for (DAT), pay attention to; refer to; consultatio_F_N = mkN "consultatio" "consultationis " feminine ; -- [XXXBO] :: |meeting/opportunity for debate; subject for consideration, problem, question; consultator_M_N = mkN "consultator" "consultatoris " masculine ; -- [XXXEO] :: inquirer; one who consults; one who asks advice (L+S); consultatorius_A = mkA "consultatorius" "consultatoria" "consultatorium" ; -- [DXXFS] :: of/pertaining to consultation; @@ -12991,24 +13899,29 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg consultor_V = mkV "consultari" ; -- [DXXES] :: consult, go for/ask/take counsel; consult oracle/astrologer; consultrix_F_N = mkN "consultrix" "consultricis " feminine ; -- [XXXFO] :: one who takes thought for; she who has a care for/provides (L+S); consultum_N_N = mkN "consultum" ; -- [XXXCO] :: decision/resolution/plan; decree (of senate/other authority); oracular response; --- SLASHSTUFF consultus_A : A2 consultus, consulta -um, consultior -or -us, consultissimus -a -um -- [XXXCO] :: skilled/practiced/learned/experienced; planned/prudent, well-considered/advised; + consultus_A = mkA "consultus" ; -- [XXXCO] :: skilled/practiced/learned/experienced; planned/prudent, well-considered/advised; consultus_M_N = mkN "consultus" "consultus " masculine ; -- [DXXFS] :: decision/resolution/plan; decree (of senate/other authority); oracular response; consum_V = mkV "conesse" "consum" "confui" "confuturus " ; -- Comment: [XXXES] :: be together/with, coexist; be, happen; [confore => to be about to happen]; consummabilis_A = mkA "consummabilis" "consummabilis" "consummabile" ; -- [XXXFO] :: perfectible, capable of being perfected/completed; consummatio_F_N = mkN "consummatio" "consummationis " feminine ; -- [XXXBO] :: |final result, conclusion, completion, achievement; consummation; perfection; consummator_M_N = mkN "consummator" "consummatoris " masculine ; -- [DXXES] :: completer, finisher; --- SLASHSTUFF consummatus_A : A2 consummatus, consummata -um, consummatior -or -us, consummatissimus -a -um -- [XXXCO] :: complete, perfect, nothing lacking; perfect/consummate (people); + consummatus_A = mkA "consummatus" ; -- [XXXCO] :: complete, perfect, nothing lacking; perfect/consummate (people); consummo_V = mkV "consummare" ; -- [XXXBO] :: |bring to perfection; put finishing/crowning touch; serve one's time; be grown; + consumo_V2 = mkV2 (mkV "consumere" "consumo" "consumpsi" "consumptus ") ; -- [XXXAO] :: |devour/swallow up/consume/eat/use up/exhaust/expend; spend; squander/waste; consumptibilis_A = mkA "consumptibilis" "consumptibilis" "consumptibile" ; -- [DXXFS] :: transient; consumable; that can be consumed/destroyed; consumptio_F_N = mkN "consumptio" "consumptionis " feminine ; -- [XXXFO] :: consumption, process of consuming or wearing away; wasting; employing, use; consumptivus_A = mkA "consumptivus" "consumptiva" "consumptivum" ; -- [GXXEK] :: of consumption (economy); consumptor_M_N = mkN "consumptor" "consumptoris " masculine ; -- [XXXEO] :: consumer, one who consumes; spendthrift, waster; destroyer; consumptrix_F_N = mkN "consumptrix" "consumptricis " feminine ; -- [DXXES] :: she who consumes/wastes, consumer; spendthrift; + consuo_V2 = mkV2 (mkV "consuere" "consuo" "consui" "consutus ") ; -- [XXXCO] :: sew together/up, stitch/join; make by sewing together; patch up; devise, plan; consupplicatrix_F_N = mkN "consupplicatrix" "consupplicatricis " feminine ; -- [XXXEO] :: fellow suppliant; she who supplicates with (L+S); + consurgo_V = mkV "consurgere" "consurgo" "consurrexi" "consurrectus "; -- [XXXAO] :: |aspire to, rouse, prepare; break out, come from hiding; grow/spring up, rise; consurrectio_F_N = mkN "consurrectio" "consurrectionis " feminine ; -- [XXXEO] :: rising, action of standing up; (as sign of assent in public meeting L+S); consusrro_V = mkV "consusrrare" ; -- [XXXFO] :: whisper together; consutilis_A = mkA "consutilis" "consutilis" "consutile" ; -- [DXXFS] :: sewed together; consutum_N_N = mkN "consutum" ; -- [DXXFS] :: garment stitched together; + contabefacio_V2 = mkV2 (mkV "contabefacere" "contabefacio" "contabefeci" "contabefactus ") ; -- [XXXFO] :: make to waste away; wear away; consume; + contabesco_V = mkV "contabescere" "contabesco" "contabui" nonExist; -- [XXXDO] :: melt/waste slowly/completely away, decline in health; be consumed, pine away; contabulatio_F_N = mkN "contabulatio" "contabulationis " feminine ; -- [XXXDO] :: floor/roof made of boards; flooring, boarding; (folds/tucks of a garment); contabulo_V2 = mkV2 (mkV "contabulare") ; -- [XXXCO] :: board over, cover with boards; furnish with roof/floor/bridge; build; bridge; contactrum_N_N = mkN "contactrum" ; -- [HTXEK] :: electric plug; @@ -13022,7 +13935,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg contaminatio_F_N = mkN "contaminatio" "contaminationis " feminine ; -- [XEXFO] :: defilement; pollution, contamination; contaminator_M_N = mkN "contaminator" "contaminatoris " masculine ; -- [DEXES] :: defiler; polluter; contaminatum_N_N = mkN "contaminatum" ; -- [XXXFS] :: adulterated/contaminated things (pl.); --- SLASHSTUFF contaminatus_A : A2 contaminatus, contaminata -um, contaminatior -or -us, contaminatissimus -a -um -- [XXXDX] :: |impure, vile, defiled, degraded; morally foul, guilt stained; ritually unclean; + contaminatus_A = mkA "contaminatus" ; -- [XXXDX] :: |impure, vile, defiled, degraded; morally foul, guilt stained; ritually unclean; contaminatus_M_N = mkN "contaminatus" ; -- [XXXFS] :: abandoned youths (pl.); (juvenile delinquents?); contamino_V2 = mkV2 (mkV "contaminare") ; -- [XXXBO] :: |debase w/mixture of inferior material; contaminate, infect; pollute (morally); contans_A = mkA "contans" "contantis"; -- [DXXCS] :: hesitant/delaying/slow to act, tardy; clinging; stubborn, resistant to movement; @@ -13031,10 +13944,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg contator_M_N = mkN "contator" "contatoris " masculine ; -- [DXXCS] :: delayer/procrastinator; one prone to delay; considerate/cautious person (L+S); contatus_M_N = mkN "contatus" ; -- [DWXFS] :: soldier armed with a contus (lance/pike/long spear); pike-bearer; contechnor_V = mkV "contechnari" ; -- [XXXFO] :: plot, devise/contrive a trick; + contego_V2 = mkV2 (mkV "contegere" "contego" "contexi" "contectus ") ; -- [XXXBO] :: cover up, conceal, hide; protect; clothe; roof over; bury/entomb; strew thickly; contemero_V2 = mkV2 (mkV "contemerare") ; -- [XXXEO] :: violate; defile, pollute; stain; contemnendus_A = mkA "contemnendus" "contemnenda" "contemnendum" ; -- [XXXCO] :: be despised/neglected; [w/negative => considerable, not negligible]; contemnenter_Adv = mkAdv "contemnenter" ; -- [DXXFS] :: in a contemptuous manner; contemnificus_A = mkA "contemnificus" "contemnifica" "contemnificum" ; -- [XXXFO] :: scornful, contemptuous; despising; + contemno_V2 = mkV2 (mkV "contemnere" "contemno" "contemsi" "contemtus ") ; -- [XXXDO] :: |treat with/hold in contempt, scorn, disdain; despise; keep away from, avoid; contemperatio_F_N = mkN "contemperatio" "contemperationis " feminine ; -- [DBXFS] :: proper/suitable mixture; contempero_V2 = mkV2 (mkV "contemperare") ; -- [XXXFO] :: temper (by mixing) (drink); moderate (L+S); contemplabilis_A = mkA "contemplabilis" "contemplabilis" "contemplabile" ; -- [DXXFS] :: aiming, taking aim; @@ -13048,36 +13963,39 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg contemplo_V2 = mkV2 (mkV "contemplare") ; -- [XXXBO] :: observe/note/notice, gaze/look hard at, regard; contemplate/consider carefully; contemplor_V = mkV "contemplari" ; -- [XXXBO] :: observe/note/notice, gaze/look hard at, regard; contemplate/consider carefully; contemplum_N_N = mkN "contemplum" ; -- [XXXFO] :: place for observation in augury; + contempno_V2 = mkV2 (mkV "contempnere" "contempno" "contempsi" "contemptus ") ; -- [XXXBS] :: |treat with/hold in contempt, scorn, disdain; despise; keep away from, avoid; contemporalis_A = mkA "contemporalis" "contemporalis" "contemporale" ; -- [DXXFS] :: contemporary; contemporalis_M_N = mkN "contemporalis" "contemporalis " masculine ; -- [DXXFS] :: contemporary; contemporaneus_A = mkA "contemporaneus" "contemporanea" "contemporaneum" ; -- [DXXFS] :: contemporary; contemporaneus_M_N = mkN "contemporaneus" ; -- [DXXFS] :: contemporary; contemporo_V = mkV "contemporare" ; -- [DXXFS] :: be contemporary, be at the same time; contempte_Adv =mkAdv "contempte" "contemptius" "contemptissime" ; -- [XXXES] :: with great/greater/greatest contempt; contemptibly, despicably; --- SLASHSTUFF contemptibilis_A : A2 contemptibilis, contemptibile, contemptibilior -or -us, contemptibilissimus -a - -- [XXXFO] :: contemptible, worthless; + contemptibilis_A = mkA "contemptibilis" ; -- [XXXFO] :: contemptible, worthless; contemptibilitas_F_N = mkN "contemptibilitas" "contemptibilitatis " feminine ; -- [DXXFS] :: contemptibleness; contemptim_Adv = mkAdv "contemptim" ; -- [XXXCO] :: contemptuously, with contempt, scornfully; fearlessly, without regard to danger; contemptio_F_N = mkN "contemptio" "contemptionis " feminine ; -- [XXXCO] :: contempt/scorn/destain (act/state); (act) disregard/paying no attention to; contemptor_M_N = mkN "contemptor" "contemptoris " masculine ; -- [XXXCO] :: despiser; one who looks down on/scorns; who disregards/pays no heed (to life); contemptrix_F_N = mkN "contemptrix" "contemptricis " feminine ; -- [XXXCO] :: despiser; she who looks down on/scorns; who disregards/pays no heed (to life); --- SLASHSTUFF contemptus_A : A2 contemptus, contempta -um, contemptior -or -us, contemptissimus -a -um -- [XXXCO] :: despised, despicable, paltry, mean; contemptible, vile; + contemptus_A = mkA "contemptus" ; -- [XXXCO] :: despised, despicable, paltry, mean; contemptible, vile; contemptus_M_N = mkN "contemptus" "contemptus " masculine ; -- [XXXCO] :: contempt/scorn/despising (act/state); ignominy; disregard; object of contempt; contemte_Adv =mkAdv "contemte" "contemtius" "contemtissime" ; -- [XXXES] :: with great/greater/greatest contempt; contemptibly, despicably; --- SLASHSTUFF contemtibilis_A : A2 contemtibilis, contemtibile, contemtibilior -or -us, contemtibilissimus -a -u -- [DXXFS] :: contemptible, worthless; + contemtibilis_A = mkA "contemtibilis" ; -- [DXXFS] :: contemptible, worthless; contemtibilitas_F_N = mkN "contemtibilitas" "contemtibilitatis " feminine ; -- [DXXFS] :: contemptibleness; contemtim_Adv = mkAdv "contemtim" ; -- [XXXCS] :: contemptuously, with contempt, scornfully; fearlessly, without regard to danger; contemtio_F_N = mkN "contemtio" "contemtionis " feminine ; -- [XXXCO] :: contempt/scorn/destain (act/state); (act) disregard/paying no attention to; contemtor_M_N = mkN "contemtor" "contemtoris " masculine ; -- [XXXCS] :: despiser; one who looks down on/scorns; who disregards/pays no heed (to life); contemtrix_F_N = mkN "contemtrix" "contemtricis " feminine ; -- [XXXCS] :: despiser; she who looks down on/scorns; who disregards/pays no heed (to life); --- SLASHSTUFF contemtus_A : A2 contemtus, contemta -um, contemtior -or -us, contemtissimus -a -um -- [XXXCS] :: despised, despicable, paltry, mean; contemptible, vile; + contemtus_A = mkA "contemtus" ; -- [XXXCS] :: despised, despicable, paltry, mean; contemptible, vile; contemtus_M_N = mkN "contemtus" "contemtus " masculine ; -- [XXXCS] :: contempt/scorn/despising (act/state); ignominy; disregard; object of contempt; + contendo_V2 = mkV2 (mkV "contendere" "contendo" "contendi" "contentus ") ; -- [XXXAO] :: |||hurl, shoot; direct; travel; extend; rush to, be in a hurry, hasten; + contenebrasco_V2 = mkV2 (mkV "contenebrascere" "contenebrasco" "contenebravi" nonExist) ; -- [XXXFO] :: become/grow completely/very dark; [used IMPERS => it grew very/completely dark]; contenebro_V2 = mkV2 (mkV "contenebrare") ; -- [DEXFS] :: grow dark; contente_Adv =mkAdv "contente" "contentius" "contentissime" ; -- [XXXDO] :: with great exertion, vehemently, vigorously; eagerly, earnestly; contentio_F_N = mkN "contentio" "contentionis " feminine ; -- [XXXAO] :: ||raising voice, speaking passionately/vigorously/formally; intensification; contentiose_Adv =mkAdv "contentiose" "contentiosius" "contentiosissime" ; -- [XXXFO] :: emphatically; persistently/obstinately; vigorously/passionately/argumentatively; contentiosus_A = mkA "contentiosus" "contentiosa" "contentiosum" ; -- [XXXEO] :: persistent, obstinate, headstrong; argumentative, quarrelsome, contentious; contentor_V = mkV "contentari" ; -- [FLXEM] :: satisfy; pay; --- SLASHSTUFF contentus_A : A2 contentus, contenta -um, contentior -or -us, contentissimus -a -um -- [XXXDO] :: tense, tight, strained, exerted; energetic, vigorous, intent, eager, serious; + contentus_A = mkA "contentus" ; -- [XXXDO] :: tense, tight, strained, exerted; energetic, vigorous, intent, eager, serious; conterebro_V2 = mkV2 (mkV "conterebrare") ; -- [DXXFS] :: pierce/bore through; contereo_V2 = mkV2 (mkV "conterere") ; -- [EXXCW] :: frighten thoroughly; fill with terror; suppress/intimidate by terrorizing; conterito_V2 = mkV2 (mkV "conteritare") ; -- [EXXCW] :: frighten much/greatly/thoroughly, terrorize; @@ -13088,6 +14006,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conternans_A = mkA "conternans" "conternantis"; -- [DXXFS] :: three years old; conternatio_F_N = mkN "conternatio" "conternationis " feminine ; -- [XXXFO] :: group of three; grouping (persons/things) in threes; placing of three together; conterno_V2 = mkV2 (mkV "conternare") ; -- [XXXFO] :: divide into groups of three; (persons); + contero_V2 = mkV2 (mkV "conterere" "contero" "contrivi" "contritus ") ; -- [XXXBO] :: |spend, exhaust, waste (time), use up; wear out/down; make weary; conterraneus_M_N = mkN "conterraneus" ; -- [XXXNO] :: fellow countryman; conterreo_V2 = mkV2 (mkV "conterrere") ; -- [XXXCO] :: frighten thoroughly; fill with terror; suppress/intimidate by terrorizing; conterrito_V2 = mkV2 (mkV "conterritare") ; -- [XXXCO] :: frighten much/greatly/thoroughly, terrorize; @@ -13101,6 +14020,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg contestificans_A = mkA "contestificans" "contestificantis"; -- [DLXFS] :: attesting at the same time; contestis_M_N = mkN "contestis" "contestis " masculine ; -- [XLXFE] :: co-witness; contestor_V = mkV "contestari" ; -- [XLXCO] :: call to witness; appeal to the gods that (w/ut); join issue (w/litis); + contexo_V2 = mkV2 (mkV "contexere" "contexo" "contexui" "contextus ") ; -- [XXXBO] :: weave/entwine/braid/twist together; compose/connect/link/combine; make/join/form contexte_Adv = mkAdv "contexte" ; -- [XXXEO] :: in close combination; in a connected/coherent manner; connected together (L+S); contextim_Adv = mkAdv "contextim" ; -- [XXXEO] :: in a continuous/uninterrupted/connected manner; contextio_F_N = mkN "contextio" "contextionis " feminine ; -- [DXXDS] :: joining, putting together; preparing, composing; @@ -13109,8 +14029,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg contextus_M_N = mkN "contextus" "contextus " masculine ; -- [GXXEK] :: ||context; contheroleta_M_N = mkN "contheroleta" ; -- [DYXFS] :: fellow destroyer of wild beasts; conticeo_V = mkV "conticere" ; -- [XXXFO] :: be silent; keep quiet/still; + conticesco_V = mkV "conticescere" "conticesco" "conticui" nonExist; -- [XXXCO] :: cease to talk, fall silent, lapse into silence; cease to function, become idle; conticinium_N_N = mkN "conticinium" ; -- [XXXEO] :: quiet/still of night; (immediately following nightfall and preceding dawn); conticinnum_N_N = mkN "conticinnum" ; -- [BXXEO] :: quiet/still of night; (immediately following nightfall and preceding dawn); + conticisco_V = mkV "conticiscere" "conticisco" "conticui" nonExist; -- [XXXCO] :: cease to talk, fall silent, lapse into silence; cease to function, become idle; conticium_N_N = mkN "conticium" ; -- [XXXEO] :: quiet/still of night; (immediately following nightfall and preceding dawn); contificis_M_N = mkN "contificis" "contificis " masculine ; -- [DWXFS] :: spearmen (pl.), lancers; contiger_M_N = mkN "contiger" ; -- [DWXFS] :: lancer, spear-bearer; @@ -13127,6 +14049,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg continentia_F_N = mkN "continentia" ; -- [XXXCS] :: |contents of a work; contiguity; proximity; contineo_V2 = mkV2 (mkV "continere") ; -- [XXXAO] :: ||keep/hold/hang together/fast; surround, enclose, contain, limit; concentrate; contingenter_Adv = mkAdv "contingenter" ; -- [FXXFM] :: contingently; conditionally; not of necessity (Def); + contingo_V = mkV "contingere" "contingo" "contigi" "contactus "; -- [XXXBO] :: happen, befall, turn out, come to pass, be granted to one; be produced; + contingo_V2 = mkV2 (mkV "contingere" "contingo" "contigi" "contactus ") ; -- [XXXAO] :: |color/stain; lay hands on, appropriate; smite; affect emotionally, move/touch; + contingt_V0 = mkV0 "contingt"; -- [XXXCO] :: it happens, it turns out; (PERF) it came to pass; continnatus_A = mkA "continnatus" "continnata" "continnatum" ; -- [FXXEE] :: continual; continor_V = mkV "continari" ; -- [XXXDO] :: encounter, meet with; continuanter_Adv = mkAdv "continuanter" ; -- [DXXFS] :: continuously, uninterruptedly; in uninterrupted succession; @@ -13155,6 +14080,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg contitularis_A = mkA "contitularis" "contitularis" "contitulare" ; -- [FXXFE] :: titular; contiuncula_F_N = mkN "contiuncula" ; -- [XLXEO] :: small or negligible meeting; short harangue, trifling speech (L+S); contogatus_M_N = mkN "contogatus" ; -- [DLXFS] :: law-colleague; + contollo_V2 = mkV2 (mkV "contollere" "contollo" nonExist nonExist) ; -- [XXXEO] :: step up/go (to meet a person) (w/gradum); bring together (L+S); contonat_V0 = mkV0 "contonat" ; -- [XXXFO] :: it thunders violently/loudly/heavily; contor_V = mkV "contari" ; -- [DXXBS] :: delay, impede, hold up; hesitate, tarry, linger; be slow to act; dawdle; doubt; contoral_F_N = mkN "contoral" "contoralis " feminine ; -- [FXXFM] :: spouse; @@ -13167,7 +14093,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg contortor_M_N = mkN "contortor" "contortoris " masculine ; -- [XXXFO] :: twister, one who perverts; contortulus_A = mkA "contortulus" "contortula" "contortulum" ; -- [XGXFS] :: somewhat complicated/intricate; contortus_A = mkA "contortus" "contorta" "contortum" ; -- [XXXES] :: |brandished/hurled; vehement, energetic, strong, full of motion; - contra_Acc_Prep = mkPrep "contra" Acc ; -- [XXXAO] :: ||towards/up to, in direction of; directly over/level with; to detriment of; + contra_Acc_Prep = mkPrep "contra" acc ; -- [XXXAO] :: ||towards/up to, in direction of; directly over/level with; to detriment of; contra_Adv = mkAdv "contra" ; -- [XXXAO] :: ||otherwise, differently; conversely; on the contrary; vice versa; contrabassum_N_N = mkN "contrabassum" ; -- [GDXEK] :: bass; contrabium_N_N = mkN "contrabium" ; -- [DTXFS] :: framework of beams, flooring; @@ -13184,14 +14110,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg contractus_A = mkA "contractus" "contracta" "contractum" ; -- [XXXCS] :: violated; dishonored; touched carnally; stolen, purloined, taken by stealth; contractus_M_N = mkN "contractus" "contractus " masculine ; -- [XXXCO] :: shrinking/narrowing; undertaking; legal/commercial agreement/contract; contradicibilis_A = mkA "contradicibilis" "contradicibilis" "contradicibile" ; -- [DXXFS] :: that may be contracted or spoken against; + contradico_V2 = mkV2 (mkV "contradicere" "contradico" "contradixi" "contradictus ") ; -- [XGXCO] :: gainsay/contradict; speak against/speak for adversary, oppose/object to/contest; contradictio_F_N = mkN "contradictio" "contradictionis " feminine ; -- [XGXDX] :: objection; contradiction; opposition; argument against, counter-argument; reply; contradictor_M_N = mkN "contradictor" "contradictoris " masculine ; -- [XGXEO] :: opponent, one who replies/objects; contradictorium_N_N = mkN "contradictorium" ; -- [FGXFE] :: defense, speaking against; contradictorius_A = mkA "contradictorius" "contradictoria" "contradictorium" ; -- [DGXFS] :: containing an objection/contradiction; + contrado_V2 = mkV2 (mkV "contradere" "contrado" "contradidi" "contraditus ") ; -- [DXXES] :: deliver together/wholly; contraeo_V = mkV "contraire" ; -- [DXXES] :: go against, oppose; make resistance; (w/DAT); + contrafacio_V2 = mkV2 (mkV "contrafacere" "contrafacio" "contrafeci" "contrafactus ") ; -- [FLXFM] :: act against; + contrafaco_V2 = mkV2 (mkV "contrafacere" "contrafaco" "contrafeci" "contrafactus ") ; -- [FXXCM] :: counterfeit, forge, fake; contrafactio_F_N = mkN "contrafactio" "contrafactionis " feminine ; -- [DXXFS] :: setting in opposition, contrast; + contraho_V2 = mkV2 (mkV "contrahere" "contraho" "contraxi" "contractus ") ; -- [XXXAO] :: ||sadden/depress/diminish/contract/tighten; cause/provoke (disease/war); commit; contrajuris_A = mkA "contrajuris" "contrajuris" "contrajure" ; -- [XLXFS] :: unlawful, illegal, contrary to law; contrapondus_N_N = mkN "contrapondus" "contraponderis " neuter ; -- [GXXEK] :: counterweight; + contrapono_V2 = mkV2 (mkV "contraponere" "contrapono" "contraposui" "contrapositus ") ; -- [XXXEO] :: put/place/set/station against/opposite; place in opposition; contrapositum_N_N = mkN "contrapositum" ; -- [XGXEE] :: antithesis; contrapunctum_N_N = mkN "contrapunctum" ; -- [GDXEK] :: counterpoint (music); contraretus_M_N = mkN "contraretus" ; -- [XXXIO] :: gladiator matched against the retiarius (net); @@ -13202,7 +14134,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg contrarius_A = mkA "contrarius" "contraria" "contrarium" ; -- [XXXAO] :: |incompatible; reversed, inverted; reciprocal, mutual; counterbalancing; contrarius_M_N = mkN "contrarius" ; -- [XXXFS] :: opponent, adversary; antagonist; contrascriba_M_N = mkN "contrascriba" ; -- [XLXIO] :: checking-clerk; counter-signer (L+S); comptroller; + contrascribo_V2 = mkV2 (mkV "contrascribere" "contrascribo" "contrascripsi" "contrascriptus ") ; -- [DLXFS] :: counter-sign; contrascriptor_M_N = mkN "contrascriptor" "contrascriptoris " masculine ; -- [XXXIO] :: checking-clerk; counter-signer (L+S); comptroller; + contravenio_V = mkV "contravenire" "contravenio" "contraveni" "contraventus "; -- [DXXFS] :: oppose; contraversia_F_N = mkN "contraversia" ; -- [XGXBO] :: controversy/dispute; debate; moot case debated in school, forensic exercise; contraversim_Adv = mkAdv "contraversim" ; -- [XXXFO] :: in reverse (as in a mirror); contraversum_Adv = mkAdv "contraversum" ; -- [XXXFS] :: on the contrary, on the other hand; @@ -13213,17 +14147,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg contrectator_M_N = mkN "contrectator" "contrectatoris " masculine ; -- [XLXFO] :: thief; (who touches/handles with felonious intent, theft/embezzlement); contrecto_V2 = mkV2 (mkV "contrectare") ; -- [XXXBO] :: |handle amorously, caress/fondle; have sex with; deal with/handle/apply oneself; contrectus_A = mkA "contrectus" "contrecta" "contrectum" ; -- [XXXCS] :: violated; dishonored; touched carnally; stolen, purloined, taken by stealth; --- TODO contremesco_V : V2 contremesco, contremescere, contremui, - -- Declension: 3rd -- Comment: [XXXCO] :: tremble all over; shake (violently), quake; tremble at/with fear, be afraid of; --- TODO contremisco_V : V2 contremisco, contremiscere, contremui, - -- Declension: 3rd -- Comment: [XXXCO] :: tremble all over; shake (violently), quake; tremble at/with fear, be afraid of; + contremesco_V2 = mkV2 (mkV "contremescere" "contremesco" "contremui" nonExist ) ; -- [XXXCO] :: tremble all over; shake (violently), quake; tremble at/with fear, be afraid of; + contremisco_V2 = mkV2 (mkV "contremiscere" "contremisco" "contremui" nonExist ) ; -- [XXXCO] :: tremble all over; shake (violently), quake; tremble at/with fear, be afraid of; + contremo_V = mkV "contremere" "contremo" nonExist nonExist; -- [XXXEO] :: tremble/shake violently; quake; contremulus_A = mkA "contremulus" "contremula" "contremulum" ; -- [XXXFO] :: tremulous, shimmering; trembling/shaking violently (L+S); contreo_V2 = mkV2 (mkV "contrire") ; -- [EEXFW] :: destroy, crush; go against; contribulatio_F_N = mkN "contribulatio" "contribulationis " feminine ; -- [DXXFS] :: anguish; contribulis_A = mkA "contribulis" "contribulis" "contribule" ; -- [DXXES] :: from the same tribe/region; contribulis_M_N = mkN "contribulis" "contribulis " masculine ; -- [XXXIO] :: fellow tribesman, member of the same tribe; one from the same region; contribulo_V2 = mkV2 (mkV "contribulare") ; -- [DEXDS] :: crush, bruise; afflict much, crush; + contribuo_V2 = mkV2 (mkV "contribuere" "contribuo" "contribui" "contributus ") ; -- [XXXCO] :: unite/incorporate, join/attach (to state); assign/allot; contribute/give, share; contributio_F_N = mkN "contributio" "contributionis " feminine ; -- [XXXDO] :: payment, contribution; dividing/distributing, distribution (L+S); contributum_N_N = mkN "contributum" ; -- [EXXEE] :: contribution; contrico_V2 = mkV2 (mkV "contricare") ; -- [XXXFO] :: fritter away, waste; + contrio_V2 = mkV2 (mkV "contrire" "contrio" nonExist nonExist) ; -- [XXXFO] :: wear down; contristatio_F_N = mkN "contristatio" "contristationis " feminine ; -- [DEXES] :: grief; affliction, afflicting; contristo_V2 = mkV2 (mkV "contristare") ; -- [XXXBO] :: sadden, make gloomy, depress, discourage; afflict, sap, damage (crops); darken; contritio_F_N = mkN "contritio" "contritionis " feminine ; -- [XXXFO] :: grief, dismay, despondency; grinding (L+S); @@ -13236,9 +14173,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg controversum_N_N = mkN "controversum" ; -- [XGXFS] :: controversial/debatable/disputed/questionable/doubtful points (pl.); controversus_A = mkA "controversus" "controversa" "controversum" ; -- [XXXCO] :: controversial/debatable/disputed; turned against, in opposite direction (L+S); controversus_Adv = mkAdv "controversus" ; -- [XXXFO] :: in opposite directions; + controverto_V2 = mkV2 (mkV "controvertere" "controverto" "controverti" "controversus ") ; -- [EGXEE] :: deny; oppose, voice opposition; contrpuncticus_A = mkA "contrpuncticus" "contrpunctica" "contrpuncticum" ; -- [FGXFE] :: pertaining to a counterpoint; contrpunctum_N_N = mkN "contrpunctum" ; -- [FGXEE] :: counterpoint; contrucido_V2 = mkV2 (mkV "contrucidare") ; -- [XXXCO] :: |inflict many wounds on, kill large numbers; slay (L+S); put to the sword; + contrudo_V2 = mkV2 (mkV "contrudere" "contrudo" "contrusi" "contrusus ") ; -- [XXXCO] :: thrust/crowd (together), impel; thrust/press/push in (to receptacle), cram/stow; contrunco_V2 = mkV2 (mkV "contruncare") ; -- [XXXEO] :: hack/cut down/to pieces; gobble up, dispatch (food); contubernalis_M_N = mkN "contubernalis" "contubernalis " masculine ; -- [XWXCO] :: tent mate, comrade-in-arms; staff trainee; companion; colleague; slave's mate; contubernium_N_N = mkN "contubernium" ; -- [XWXBO] :: |cohabitation, concubinage (with/between slaves); attendance on a general; @@ -13251,14 +14190,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg contumelia_F_N = mkN "contumelia" ; -- [XXXCO] :: indignity, affront, abuse/insult; insulting language/behavior; rough treatment; contumelio_V2 = mkV2 (mkV "contumeliare") ; -- [XXXIO] :: insult; treat outrageously; contumeliose_Adv =mkAdv "contumeliose" "contumeliosius" "contumeliosissime" ; -- [XXXDO] :: in an insulting manner; abusively, insolently (L+S); --- SLASHSTUFF contumeliosus_A : A2 contumeliosus, contumeliosa -um, contumeliosior -or -us, contumeliosissimus -a -u -- [XXXCO] :: insulting, outrageous, humiliating; rude, insolent, abusive; reproachful (L+S); + contumeliosus_A = mkA "contumeliosus" ; -- [XXXCO] :: insulting, outrageous, humiliating; rude, insolent, abusive; reproachful (L+S); + contumesco_V = mkV "contumescere" "contumesco" "contumi" nonExist; -- [DXXFS] :: swell greatly; contumia_F_N = mkN "contumia" ; -- [DXXCS] :: indignity, affront, abuse/insult; insulting language/behavior; rough treatment; contumulo_V2 = mkV2 (mkV "contumulare") ; -- [XXXDO] :: bury, inter; heap together; heap up like a mound (L+S); furnish with a mound; + contundo_V2 = mkV2 (mkV "contundere" "contundo" "contudi" "contusus ") ; -- [XXXCO] :: quell/crush/outdo/subdue utterly; bruise/beat; pound to pieces/powder/pulp; + contuo_V = mkV "contuere" "contuo" nonExist nonExist; -- [XXXEO] :: look at/gaze on/behold; see to; be in sight of, have view of; contemplate/weigh; contuolus_A = mkA "contuolus" "contuola" "contuolum" ; -- [DBXFS] :: surrounded by a partial closing of the eyelid (eyes w/oculi); + contuor_V = mkV "contui" "contuor" nonExist ; -- [XXXCO] :: look at/gaze on/behold; see to; be in sight of, have view of; contemplate/weigh; conturbatio_F_N = mkN "conturbatio" "conturbationis " feminine ; -- [XXXDO] :: disorder (physical/mental/emotional); perturbation, dismay, confusion, panic; conturbator_A = mkA "conturbator" "conturbatoris"; -- [XXXFO] :: leading to bankruptcy, ruinous, expensive, costly; conturbator_M_N = mkN "conturbator" "conturbatoris " masculine ; -- [XXXDO] :: disturber; who/that which brings/spreads disorder/ruin; bankrupt; --- SLASHSTUFF conturbatus_A : A2 conturbatus, conturbata -um, conturbatior -or -us, conturbatissimus -a -um -- [XXXFO] :: disturbed, perplexed, disquieted, confused; disordered, diseased (L+S); + conturbatus_A = mkA "conturbatus" ; -- [XXXFO] :: disturbed, perplexed, disquieted, confused; disordered, diseased (L+S); conturbo_V = mkV "conturbare" ; -- [XXXCO] :: confuse, disquiet/confound/derange/dismay, upset/mix up; go bankrupt, default; conturmalis_M_N = mkN "conturmalis" "conturmalis " masculine ; -- [XWXFO] :: fellow soldier from the same turma/squadron (small unit of cavalry); conturmo_V2 = mkV2 (mkV "conturmare") ; -- [DWXFS] :: arrange in turmae/squadrons (cavalry); @@ -13275,22 +14218,28 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg convador_V = mkV "convadari" ; -- [XXXFO] :: make a person give surety/bail to appear in court; convalescens_M_N = mkN "convalescens" "convalescentis " masculine ; -- [XBXDS] :: convalescents (pl.), those convalescing/regaining health; convalescentia_F_N = mkN "convalescentia" ; -- [DBXFS] :: convalescence, regaining of health; + convalesco_V = mkV "convalescere" "convalesco" "convalui" "convalitus "; -- [XLXEO] :: |become valid; (legal term); convalidatio_F_N = mkN "convalidatio" "convalidationis " feminine ; -- [FEXFE] :: convalidation; (renewal of/consent to marriage previously canonically invalid); convalido_V2 = mkV2 (mkV "convalidare") ; -- [EXXEE] :: validate, make valid; convallaria_F_N = mkN "convallaria" ; -- [GAXEK] :: lily of the valley; convallis_F_N = mkN "convallis" "convallis " feminine ; -- [XXXCO] :: valley (much shut in), ravine, deep/narrow/enclosed valley, glen; (also pl.); convallo_V2 = mkV2 (mkV "convallare") ; -- [XXXFO] :: surround with a rampart/entrenchment; hedge in; encircle, surround (L+S); + convalo_V = mkV "convalere" "convalo" "convalui" "convalitus "; -- [XXXCO] :: grow strong/thrive/gain power; regain health/strength, recover, get well/better; convario_V = mkV "convariare" ; -- [DXXFS] :: vary, be different; convario_V2 = mkV2 (mkV "convariare") ; -- [XXXFO] :: spot, variegate; convaso_V2 = mkV2 (mkV "convasare") ; -- [XWXFO] :: pack up (baggage); pack vessels/implements together (L+S); pile up; convectio_F_N = mkN "convectio" "convectionis " feminine ; -- [DXXFS] :: carrying/bringing together; convecto_V = mkV "convectare" ; -- [XXXEO] :: carry/bring together (in abundance); gather, collect; convector_M_N = mkN "convector" "convectoris " masculine ; -- [XXXEO] :: |passenger; fellow traveler; he who goes with one (L+S); + conveho_V2 = mkV2 (mkV "convehere" "conveho" "convexi" "convectus ") ; -- [XXXCO] :: bring/carry/bear together/to one place; collect, gather; get in (harvest) (L+S); + convello_V2 = mkV2 (mkV "convellere" "convello" "convelli" "convulsus ") ; -- [XXXBO] :: |pull/pluck/tug/tear up/at dislodge, uproot; wrench, strain, dislocate (limbs); convelo_V2 = mkV2 (mkV "convelare") ; -- [XXXEO] :: cover (over), veil; wrap around; convena_M_N = mkN "convena" ; -- [XXXCO] :: refugees (pl.), immigrants; those together for some purpose (asylum); tramps; conveniens_A = mkA "conveniens" "convenientis"; -- [XXXCO] :: |agreed, conventional, based on agreement; agreeable, compliant; convenienter_Adv = mkAdv "convenienter" ; -- [XXXCO] :: suitably, consistently; comfortably; conformably (L+S); convenientia_F_N = mkN "convenientia" ; -- [XXXCO] :: agreement (things), consistency; harmony (music); arrangement; convention; + convenio_V2 = mkV2 (mkV "convenire" "convenio" "conveni" "conventus ") ; -- [XXXAO] :: ||resort to; sue, prosecute, take legal action; be agreed upon/arranged (PASS); + convenit_V0 = mkV0 "convenit"; -- [XXXCO] :: it agrees/came together/is agreed/asserted; [bene ~ nobis=>we're on good terms]; conventicium_N_N = mkN "conventicium" ; -- [XLXEO] :: fee paid to attend an assembly; (paid to poor Greek citizens as inducement L+S); conventicius_A = mkA "conventicius" "conventicia" "conventicium" ; -- [XXXFO] :: |met by chance; conventiculum_N_N = mkN "conventiculum" ; -- [XXXCS] :: small assembly; place of assembly/resort; assembly, meeting, association (L+S); @@ -13305,7 +14254,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg convenusto_V2 = mkV2 (mkV "convenustare") ; -- [DXXDS] :: ornament, adorn; converbero_V2 = mkV2 (mkV "converberare") ; -- [XXXCO] :: beat, batter; bruise; strike severely (L+S); chastise; convergentia_F_N = mkN "convergentia" ; -- [GXXEK] :: convergence; + convergo_V = mkV "convergere" "convergo" nonExist nonExist; -- [DXXFS] :: incline together; converritor_M_N = mkN "converritor" "converritoris " masculine ; -- [XXXFO] :: sweeper; one who sweeps up/together; (janitor?); + converro_V2 = mkV2 (mkV "converrere" "converro" "converri" "conversus ") ; -- [XXXCO] :: sweep/brush/scrape together/thoroughly/up; sweep/beat clean; clear away (L+S); conversa_F_N = mkN "conversa" ; -- [EEXEE] :: convert; she who has changed; conversatio_F_N = mkN "conversatio" "conversationis " feminine ; -- [XXXCO] :: ||turning around; moving in place; constant practical experience; frequent use; conversator_M_N = mkN "conversator" "conversatoris " masculine ; -- [XXXFS] :: companion; @@ -13320,6 +14271,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conversus_M_N = mkN "conversus" "conversus " masculine ; -- [DXXFS] :: turning, twisting around; convertibilis_A = mkA "convertibilis" "convertibilis" "convertibile" ; -- [DXXES] :: changeable; convertibiliter_Adv = mkAdv "convertibiliter" ; -- [DXXES] :: changeably; + converto_V2 = mkV2 (mkV "convertere" "converto" "converti" "conversus ") ; -- [XXXAO] :: |||cause to turn/revolve, rotate; turn/wheel about; reverse; shift/transfer; + convertor_V = mkV "converti" "convertor" "conversus sum " ; -- [FXXCE] :: convert; change, alter; refresh; turn; + convescor_V = mkV "convesci" "convescor" nonExist ; -- [DEXFS] :: eat with one; (eccl.); + convestio_V2 = mkV2 (mkV "convestire" "convestio" "convestivi" "convestitus ") ; -- [XXXCO] :: clothe, dress; cover; cover with clothing (L+S); surround; conveteranus_M_N = mkN "conveteranus" ; -- [XWXIO] :: fellow veteran; convexio_F_N = mkN "convexio" "convexionis " feminine ; -- [XSXFO] :: convexity; curvature; vaulting (L+S); concavity; convexitas_F_N = mkN "convexitas" "convexitatis " feminine ; -- [XTXNO] :: arched formation, vaulting, curvature; concavity, hollowness; convexity (L+S); @@ -13337,10 +14292,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg convictor_M_N = mkN "convictor" "convictoris " masculine ; -- [XXXCO] :: messmate, friend, companion; one who lives with a person on intimate terms; convictus_M_N = mkN "convictus" "convictus " masculine ; -- [XXXCO] :: intimacy; association; living together; close friends; banquet, dinner party; convicus_M_N = mkN "convicus" ; -- [XXXIO] :: inhabitant of the same vicus (village/street/row of houses); fellow villager; + convinco_V2 = mkV2 (mkV "convincere" "convinco" "convici" "convictus ") ; -- [XLXBO] :: |find guilty/against, convict; prove wrong, refute (person/statement); expose; convinctio_F_N = mkN "convinctio" "convinctionis " feminine ; -- [XGXFO] :: conjunction, connective particle; conviolo_V2 = mkV2 (mkV "conviolare") ; -- [XEXIO] :: violate, desecrate (tomb/etc.); + conviresco_V = mkV "convirescere" "conviresco" nonExist nonExist; -- [DAXES] :: grow green, become verdant; convisero_V2 = mkV2 (mkV "conviserare") ; -- [DXXFS] :: incorporate, unite; convisio_F_N = mkN "convisio" "convisionis " feminine ; -- [EEXFR] :: joint vision; + conviso_V2 = mkV2 (mkV "convisere" "conviso" "convisi" "convisus ") ; -- [XXXCO] :: watch/look at/scan; visit, go to see; consider attentively, examine thoroughly; convitiator_M_N = mkN "convitiator" "convitiatoris " masculine ; -- [DXXFS] :: one who utters abuse, reviler; convitio_V2 = mkV2 (mkV "convitiare") ; -- [DWXFS] :: attack/injure at some later time; convitior_V = mkV "convitiari" ; -- [FXXEE] :: revile, reproach; insult; @@ -13352,7 +14310,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg conviventia_F_N = mkN "conviventia" ; -- [FXXEE] :: cooperation; living and working together; convivifico_V2 = mkV2 (mkV "convivificare") ; -- [DEXES] :: quicken together; revive, give/restore life together (physical/spiritual); convivium_N_N = mkN "convivium" ; -- [XXXBO] :: banquet/feast/dinner party; guests/people at party; dining-club; living together - convivo_V = mkV "convivare" ; -- [XXXCO] :: give/attend dinner party/banquet; carouse; eat/feast together (L+S); live with; + convivo_V = mkV "convivere" "convivo" "convixi" "convictus "; -- [XXXCO] :: live at same time, be contemporary; spend time in company; live/dine together; convivor_V = mkV "convivari" ; -- [XXXCO] :: give/attend a dinner party/feast; carouse/feast/banquet together (L+S); eat; convocatio_F_N = mkN "convocatio" "convocationis " feminine ; -- [XXXFO] :: assembling, convoking, action of calling together; convoco_V2 = mkV2 (mkV "convocare") ; -- [XXXBO] :: call/bring together; assemble; convoke/convene; summon/muster; collect (thing); @@ -13363,8 +14321,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg convolsus_A = mkA "convolsus" "convolsa" "convolsum" ; -- [XBXES] :: suffering from wrenching/dislocation of a limb; convoluto_V = mkV "convolutare" ; -- [XXXEO] :: revolve; whirl around; wallow in vice; convoluto_V2 = mkV2 (mkV "convolutare") ; -- [XXXFS] :: whirl/roll around rapidly?; + convolvo_V2 = mkV2 (mkV "convolvere" "convolvo" "convolvi" "convolutus ") ; -- [XXXBS] :: |fasten together, interweave, interlace; unroll and roll up (scroll), look up; convolvolus_M_N = mkN "convolvolus" ; -- [XAXEO] :: caterpillar which rolls up leaves; plant bindweed (Calystegia sepium); + convomo_V2 = mkV2 (mkV "convomere" "convomo" "convomui" "convomitus ") ; -- [XXXEO] :: vomit over/on; bespew upon (L+S); convoro_V2 = mkV2 (mkV "convorare") ; -- [DXXFS] :: eat up, devour; + convorro_V2 = mkV2 (mkV "convorrere" "convorro" "convorri" "convorsus ") ; -- [XXXCO] :: sweep/brush/scrape together/thoroughly/up; sweep/beat clean; clear away (L+S); convotus_M_N = mkN "convotus" ; -- [XLXFO] :: binding vow; legal oath; convoveo_V = mkV "convovere" ; -- [XLXIO] :: join in taking a vow/oath; devour together (L+S)?; convulnero_V2 = mkV2 (mkV "convulnerare") ; -- [XXXCO] :: inflict severe wounds (on person/part of body); cut; bore, perforate (pipe); @@ -13379,6 +14340,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cooperatrix_F_N = mkN "cooperatrix" "cooperatricis " feminine ; -- [EEXEE] :: joint-laborer (female), co-operator; coworker, fellow helper (Ecc); assistant; cooperculum_N_N = mkN "cooperculum" ; -- [XXXEO] :: lid/cover (of a jar/coffin/etc.); cooperimentum_N_N = mkN "cooperimentum" ; -- [XXXFO] :: covering; + cooperio_V2 = mkV2 (mkV "cooperire" "cooperio" "cooperui" "coopertus ") ; -- [XXXCO] :: cover wholly/completely, cover up; overwhelm, bury deep; [lapidibus ~ => stone]; + cooperior_V = mkV "cooperiri" "cooperior" "coopertus sum " ; -- [FXXDE] :: clothe; cover wholly/completely, cover up; overwhelm, bury deep; coopero_V = mkV "cooperare" ; -- [FXXEE] :: work with/together, cooperate (with); combine, unite; cooperor_V = mkV "cooperari" ; -- [DXXDS] :: work with/together, cooperate (with); combine, unite; coopertorium_N_N = mkN "coopertorium" ; -- [XXXFO] :: covering, garment; cover (L+S); @@ -13388,15 +14351,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg coordinatio_F_N = mkN "coordinatio" "coordinationis " feminine ; -- [FXXDE] :: coordination, arranging together; coordinatus_A = mkA "coordinatus" "coordinata" "coordinatum" ; -- [FSXEM] :: coordinate; coordino_V = mkV "coordinare" ; -- [FXXDO] :: coordinate, arrange together; set in order; correlate; + coorior_V = mkV "cooriri" "coorior" "coortus sum " ; -- [XXXCO] :: appear, originate; arise, break out (bad); be born; spring forth/to attack; coortus_M_N = mkN "coortus" "coortus " masculine ; -- [XXXEO] :: coming into being, birth; breaking out (storm); rising, originating (L+S); copa_F_N = mkN "copa" ; -- [XXXEO] :: dancing-girl; female tavern-keeper and castanet-dancer (L+S); copadium_N_N = mkN "copadium" ; -- [DXXES] :: delicacy, tidbit; (usu. pl.) delicacies; dainty dishes, tidbits (L+S); coperculum_N_N = mkN "coperculum" ; -- [XXXEO] :: lid/cover (of a jar/coffin/etc.); coperimentum_N_N = mkN "coperimentum" ; -- [XXXFO] :: covering; + coperio_V2 = mkV2 (mkV "coperire" "coperio" "coperui" "copertus ") ; -- [XXXDX] :: cover wholly/completely, cover up; overwhelm, bury deep; [lapidibus ~ => stone]; coperor_V = mkV "coperari" ; -- [DXXDS] :: work with/together, cooperate (with); combine, unite; copertorium_N_N = mkN "copertorium" ; -- [XXXFO] :: covering, garment; cover (L+S); copertus_A = mkA "copertus" "coperta" "copertum" ; -- [XXXCO] :: overwhelmed, buried deep (in crime/misfortune/etc.); --- IGNORED coph_N : N1 coph, undeclined -- N -- [DEQEW] :: qof; (19th letter of Hebrew alphabet); (transliterate as K); + coph_N = constN "coph" neuter ; -- [DEQEW] :: qof; (19th letter of Hebrew alphabet); (transliterate as K); cophinus_M_N = mkN "cophinus" ; -- [XXXBO] :: basket, hamper; copia_F_N = mkN "copia" ; -- [GXXEK] :: ||copy; copiarius_M_N = mkN "copiarius" ; -- [DXXFS] :: purveyor; @@ -13406,11 +14371,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg copior_V = mkV "copiari" ; -- [XWXFO] :: furnish oneself (with supplies); (military); provide oneself abundantly (L+S); copiose_Adv =mkAdv "copiose" "copiosius" "copiosissime" ; -- [XXXCO] :: eloquently/fully/at length; w/abundant provisions, sumptuously/copiously/richly; copiositas_F_N = mkN "copiositas" "copiositatis " feminine ; -- [FXXDE] :: abundance; --- SLASHSTUFF copiosus_A : A2 copiosus, copiosa -um, copiosior -or -us, copiosissimus -a -um -- [XXXBO] :: |eloquent, w/plentiful command of the language; verbose; rich/wealthy; fruitful; + copiosus_A = mkA "copiosus" ; -- [XXXBO] :: |eloquent, w/plentiful command of the language; verbose; rich/wealthy; fruitful; copis_F_N = mkN "copis" "copidis " feminine ; -- [XWXFO] :: short curved sword; copo_M_N = mkN "copo" "coponis " masculine ; -- [XXXCO] :: shopkeeper, salesman, huckster; innkeeper, keeper of a tavern; copona_F_N = mkN "copona" ; -- [XXXCO] :: landlady; (female) shopkeeper, hostess; inn, tavern, lodging-house; shop; --- IGNORED coppa_N : N1 coppa, undeclined -- N -- [XXXEO] :: archaic Greek letter koppa; + coppa_N = constN "coppa" neuter ; -- [XXXEO] :: archaic Greek letter koppa; coppadium_N_N = mkN "coppadium" ; -- [DXXES] :: delicacy, tidbit; (usu. pl.) delicacies; dainty dishes, tidbits (L+S); coprea_M_N = mkN "coprea" ; -- [XXXFO] :: buffoon, jester; cops_A = mkA "cops" "copis"; -- [XXXEO] :: well/abundantly equipped/supplied; rich; swelling (of chest with pride); @@ -13428,7 +14393,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg copulator_M_N = mkN "copulator" "copulatoris " masculine ; -- [DXXFS] :: connector, binder; copulatrix_F_N = mkN "copulatrix" "copulatricis " feminine ; -- [DXXFS] :: connector, she who connects/couples; copulatum_N_N = mkN "copulatum" ; -- [DGXFS] :: joint sentence; (also called conjunctum); --- SLASHSTUFF copulatus_A : A2 copulatus, copulata -um, copulatior -or -us, copulatissimus -a -um -- [XXXCO] :: closely connected/associated/joined (blood/marriage); intimate; compound/complex + copulatus_A = mkA "copulatus" ; -- [XXXCO] :: closely connected/associated/joined (blood/marriage); intimate; compound/complex copulatus_M_N = mkN "copulatus" "copulatus " masculine ; -- [DXXFS] :: connecting/joining together; copulo_V2 = mkV2 (mkV "copulare") ; -- [XXXBO] :: connect, join physically, couple; bind/tie together, associate, unite, ally; copulor_V = mkV "copulari" ; -- [XXXES] :: connect, join physically, couple; bind/tie together, associate, unite, ally; @@ -13445,6 +14410,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg coquitatio_F_N = mkN "coquitatio" "coquitationis " feminine ; -- [XXXFO] :: long and thorough process of cooking; continuous cooking (L+S); coquitatorius_A = mkA "coquitatorius" "coquitatoria" "coquitatorium" ; -- [XXXFO] :: culinary; used in cooking; coquito_V2 = mkV2 (mkV "coquitare") ; -- [BXXFO] :: cook; boil, fry, bake; burn, parch (sun); stir up; ripen, mature (plot); digest; + coquo_V2 = mkV2 (mkV "coquere" "coquo" "coxi" "coctus ") ; -- [XXXAO] :: cook; boil, fry, bake; burn, parch (sun); stir up; ripen, mature (plot); digest; coquos_M_N = mkN "coquos" "coqui " masculine ; -- [XXXCO] :: cook; coquula_F_N = mkN "coquula" ; -- [XXXES] :: cook (female); coquulum_N_N = mkN "coquulum" ; -- [XXXCS] :: cooking vessel/pot/pan; (bronze); @@ -13467,13 +14433,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg corallius_C_N = mkN "corallius" ; -- [DXXFS] :: coral; coralloachates_M_N = mkN "coralloachates" "coralloachatae " masculine ; -- [XXXNS] :: precious stone (coral agate); corallum_N_N = mkN "corallum" ; -- [DXXDS] :: coral; (esp. red coral); - coram_Abl_Prep = mkPrep "coram" Abl ; -- [XXXCO] :: in the presence of, before; (may precede or follow object); personally (L+S); + coram_Abl_Prep = mkPrep "coram" abl ; -- [XXXCO] :: in the presence of, before; (may precede or follow object); personally (L+S); coram_Adv = mkAdv "coram" ; -- [XXXBO] :: in person, face-to-face; in one's presence, before one's eyes; publicly/openly; corambe_F_N = mkN "corambe" "corambes " feminine ; -- [XAXFO] :: cultivated plant (unidentified); kind of cabbage injurious to the eyes (L+S); coranus_M_N = mkN "coranus" ; -- [GXXEK] :: Koran; corarius_A = mkA "corarius" "coraria" "corarium" ; -- [XXXEO] :: of/related to the tanning of hides; [frutex coriarius => sumac, Rhus coriaria]; corax_M_N = mkN "corax" "coracis " masculine ; -- [XWXFO] :: kind of siege engine; raven (L+S); hooked war engine; battering ram (corvus); --- IGNORED corban_N : N1 corban, undeclined -- N -- [EEQFP] :: gift/corban (Hebrew); offering given to God usually associated w/vow; + corban_N = constN "corban" neuter ; -- [EEQFP] :: gift/corban (Hebrew); offering given to God usually associated w/vow; corbicula_F_N = mkN "corbicula" ; -- [DXXFS] :: little basket; corbis_F_N = mkN "corbis" "corbis " feminine ; -- [XXXCO] :: basket; (esp. one used for gathering grain/fruit; basketful (quantity); corbis_M_N = mkN "corbis" "corbis " masculine ; -- [XXXCO] :: basket; (esp. one used for gathering grain/fruit; basketful (quantity); @@ -13496,7 +14462,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg corcus_M_N = mkN "corcus" ; -- [DBXFS] :: disease of the chest; corda_F_N = mkN "corda" ; -- [XXXEO] :: tripe; catgut, musical instrument string; rope/cord (binding a slave) (L+S); cordate_Adv = mkAdv "cordate" ; -- [XXXEO] :: sensibly, shrewdly; with intelligence; wisely, with prudence (L+S); --- SLASHSTUFF cordatus_A : A2 cordatus, cordata -um, cordatior -or -us, cordatissimus -a -um -- [XXXEO] :: prudent, wise; sensible, judicious; endowed with intelligence; + cordatus_A = mkA "cordatus" ; -- [XXXEO] :: prudent, wise; sensible, judicious; endowed with intelligence; cordax_A = mkA "cordax" "cordacis"; -- [XXXDO] :: lively, tripping; cordax_M_N = mkN "cordax" "cordacis " masculine ; -- [XPXDO] :: trochaic meter; cordax (indecent/extravagant dance of Greek comedy L+S); cordetenus_Adv = mkAdv "cordetenus" ; -- [FXXFX] :: as far as the heart?; with wisdom?; (JFW guess, medieval, not in L+S or Latham); @@ -13520,13 +14486,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg corinthius_M_N = mkN "corinthius" ; -- [XXHEO] :: Corinthian; worker/dealer in Corinthian bronze vessels; coriolum_N_N = mkN "coriolum" ; -- [XXXDO] :: small piece of leather; corion_N_N = mkN "corion" "corii " neuter ; -- [XAXNS] :: plant; (also called chamaepitys or hypericon); + corior_V = mkV "coriri" "corior" "cortus sum " ; -- [XXXCO] :: appear, originate; arise, break out (bad); be born; spring forth/to attack; + coris_1_N = mkN "coris" "coridis" feminine ; -- [XAXNS] :: plant; (species of hypericon); its seed; + coris_2_N = mkN "coris" "coridos" feminine ; -- [XAXNS] :: plant; (species of hypericon); its seed; coris_F_N = mkN "coris" "coris " feminine ; -- [XAXNS] :: plant; (species of hypericon); its seed; --- TODO coris_N : N1 coris, coridos/is -- F -- [XAXNS] :: plant; (species of hypericon); its seed; corissum_N_N = mkN "corissum" ; -- [XAXNO] :: plant (St. John's wort); chamaepitys (L+S); corium_N_N = mkN "corium" ; -- [XAXBO] :: skin/leather/hide; peel/rind/shell/outer cover; layer/coating; thong/strap/whip; corius_M_N = mkN "corius" ; -- [BAXDO] :: skin/leather/hide; peel/rind/shell/outer cover; layer/coating; thong/strap/whip; cornatus_A = mkA "cornatus" "cornata" "cornatum" ; -- [XXXFS] :: horn-like; horn-shaped; corneolus_A = mkA "corneolus" "corneola" "corneolum" ; -- [XAXFO] :: made of cornel-wood; + cornesco_V = mkV "cornescere" "cornesco" nonExist nonExist; -- [XXXNO] :: become horny; (sexually stimulated); become like horn, turn to horn (L+S); cornetum_N_N = mkN "cornetum" ; -- [XAXEO] :: plantation/orchard/grove of cornelian cherry trees; corneus_A = mkA "corneus" "cornea" "corneum" ; -- [XXXCO] :: of horn, made of horn, horn-; resembling horn (hardness/appearance); horny; cornicen_M_N = mkN "cornicen" "cornicinis " masculine ; -- [XWXCO] :: trumpeter, bugler; horn blower; @@ -13588,6 +14557,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg corporalis_A = mkA "corporalis" "corporalis" "corporale" ; -- [XXXCO] :: of/belonging/related to body, physical; having tangible body/material/corporeal; corporalitas_F_N = mkN "corporalitas" "corporalitatis " feminine ; -- [DXXFS] :: materiality, corporality; (as opposed to spirituality); corporaliter_Adv = mkAdv "corporaliter" ; -- [XXXEO] :: in respect of material things; carnally; corporally, bodily (L+S); + corporasco_V = mkV "corporascere" "corporasco" nonExist nonExist; -- [DEXES] :: assume a body; become incarnate; corporatio_F_N = mkN "corporatio" "corporationis " feminine ; -- [XBXFO] :: build, physical make-up; assuming a body, incarnation (L+S); corporativus_A = mkA "corporativus" "corporativa" "corporativum" ; -- [DXXFS] :: of/pertaining to the forming of a body; corporatura_F_N = mkN "corporatura" ; -- [XBXEO] :: build, frame; physical/corporeal structure/nature; @@ -13598,21 +14568,23 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg corporo_V2 = mkV2 (mkV "corporare") ; -- [XXXDO] :: kill, strike dead; form into a body, furnish w/a body; form (corporate society); corporosus_A = mkA "corporosus" "corporosa" "corporosum" ; -- [DBXFS] :: corpulent, gross, large, fat, obese; corpulentia_F_N = mkN "corpulentia" ; -- [XBXNO] :: obesity, corpulence, fleshiness of body; putting on of flesh/fat; --- SLASHSTUFF corpulentus_A : A2 corpulentus, corpulenta -um, corpulentior -or -us, corpulentissimus -a -um -- [XXXDO] :: corpulent, fat, stout, of a heavy build of body; large; great (L+S); physical; + corpulentus_A = mkA "corpulentus" ; -- [XXXDO] :: corpulent, fat, stout, of a heavy build of body; large; great (L+S); physical; corpus_N_N = mkN "corpus" "corporis " neuter ; -- [XXXAO] :: |substantial/material/concrete object/body; particle/atom; corporation, guild; corpuscularis_A = mkA "corpuscularis" "corpuscularis" "corpusculare" ; -- [GXXEK] :: corpuscular; corpusculum_N_N = mkN "corpusculum" ; -- [XXXDX] :: small/little body/object, atom/minute particle; human body (contempt/pity/love); + corrado_V2 = mkV2 (mkV "corradere" "corrado" "corrasi" "corrasus ") ; -- [XXXCO] :: rake/sweep/draw together; amass with difficulty, scrape together; scrape off; corrationalitas_F_N = mkN "corrationalitas" "corrationalitatis " feminine ; -- [DSXFS] :: analogy; correctio_F_N = mkN "correctio" "correctionis " feminine ; -- [XXXCO] :: amendment, rectification; improvement, correction; word substitution; reproof; corrector_M_N = mkN "corrector" "correctoris " masculine ; -- [XXXDX] :: corrector/improver, reformer; one who sets things right; financial commissioner; correctura_F_N = mkN "correctura" ; -- [DLXES] :: office of a corrector (financial commissioner/land bailiff); --- SLASHSTUFF correctus_A : A2 correctus, correcta -um, correctior -or -us, correctissimus -a -um -- [XXXEO] :: reformed (person); + correctus_A = mkA "correctus" ; -- [XXXEO] :: reformed (person); correctus_M_N = mkN "correctus" ; -- [DXXES] :: reformed person; one who has/is reformed; correcumbens_A = mkA "correcumbens" "correcumbentis"; -- [DXXFS] :: lying down with (anyone); corregio_F_N = mkN "corregio" "corregionis " feminine ; -- [XEXEO] :: drawing of boundary lines (within which auspices may be taken); corregionalis_M_N = mkN "corregionalis" "corregionalis " masculine ; -- [DXXFS] :: adjoining/neighboring people; corregno_V = mkV "corregnare" ; -- [DLXES] :: reign together with one; correlativus_A = mkA "correlativus" "correlativa" "correlativum" ; -- [FXXFM] :: correlative; + correpo_V = mkV "correpere" "correpo" "correpsi" "correptus "; -- [XXXCO] :: creep, crawl; slink, move stealthily; take to the bush; creep (of the flesh); correpte_Adv =mkAdv "correpte" "correptius" "correptissime" ; -- [XGXEO] :: shortly; with a short vowel or syllable; correptio_F_N = mkN "correptio" "correptionis " feminine ; -- [XXXCO] :: seizure/attack, onset (disease); reproof/rebuke/censure; shorting (in vowel); correpto_V = mkV "correptare" ; -- [DXXCS] :: creep; @@ -13626,6 +14598,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg correus_M_N = mkN "correus" ; -- [XLXFO] :: joint defendant; co-respondent; joint/co-criminal (Ecc); corrideo_V = mkV "corridere" ; -- [XXXFO] :: laugh together; laugh out loud (L+S); corrigia_F_N = mkN "corrigia" ; -- [XXXEO] :: shoe-lace/tie, thong for securing shoes to feet; thong of any kind; + corrigo_V2 = mkV2 (mkV "corrigere" "corrigo" "correxi" "correctus ") ; -- [XXXBO] :: correct, set right; straighten; improve, edit, reform; restore, cure; chastise; + corripio_V2 = mkV2 (mkV "corripere" "corripio" "corripui" "correptus ") ; -- [XXXAO] :: |censure/reproach/rebuke/chastise; shorten/abridge; hasten (upon); catch (fire); corrivalis_M_N = mkN "corrivalis" "corrivalis " masculine ; -- [XXXFS] :: joint rival; corrivatio_F_N = mkN "corrivatio" "corrivationis " feminine ; -- [XXXNO] :: leading/channeling (water) into the same channel/basin, collection; corrivium_N_N = mkN "corrivium" ; -- [XXXNS] :: confluence of brooks/streams; @@ -13634,6 +14608,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg corroboramentum_N_N = mkN "corroboramentum" ; -- [DXXFS] :: means of strengthening; corroboro_V2 = mkV2 (mkV "corroborare") ; -- [XXXBO] :: strengthen, harden, reinforce; corroborate; mature; make powerful, fortify; corroco_M_N = mkN "corroco" "corroconis " masculine ; -- [DAXFS] :: kind of fish (unidentified); + corrodo_V2 = mkV2 (mkV "corrodere" "corrodo" "corrosi" "corrosus ") ; -- [XXXDO] :: gnaw, gnaw away; chew up; gnaw to pieces (L+S); corrogatio_F_N = mkN "corrogatio" "corrogationis " feminine ; -- [DEXFS] :: bringing together; gathering, assembly (Ecc); collection; corrogo_V2 = mkV2 (mkV "corrogare") ; -- [XXXCO] :: collect money by begging/entreaty; summon/invite (persons) to a gathering; corrosio_F_N = mkN "corrosio" "corrosionis " feminine ; -- [XXXFE] :: gnawing; @@ -13642,11 +14617,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg corrugis_A = mkA "corrugis" "corrugis" "corruge" ; -- [XXXFS] :: wrinkled, having wrinkles/folds; corrugated; corrugo_V2 = mkV2 (mkV "corrugare") ; -- [XXXEO] :: make wrinkled; (make one turn up one's nose); corrugate; corrugus_M_N = mkN "corrugus" ; -- [XTXNO] :: channel/canal/conduit/sluice constructed to bring wash water for ore (mining); + corrumpo_V2 = mkV2 (mkV "corrumpere" "corrumpo" "corrupi" "corruptus ") ; -- [XXXAO] :: |pervert, corrupt, deprave; bribe, suborn; seduce, tempt, beguile; falsify; corrumptela_F_N = mkN "corrumptela" ; -- [XXXCS] :: |seduction/seducing; enticement to sexual misconduct; brothel/place of seduction corrumptella_F_N = mkN "corrumptella" ; -- [EXXCE] :: |seduction/seducing; enticement to sexual misconduct; brothel/place of seduction + corruo_V2 = mkV2 (mkV "corruere" "corruo" "corrui" "corrutus ") ; -- [XXXBO] :: |topple (house/wall), totter; subside (ground); rush/sweep together; overthrow; corrupte_Adv =mkAdv "corrupte" "corruptius" "corruptissime" ; -- [XXXCO] :: incorrectly; perversely; in bad style/depraved manner; licentiously, corruptly; corruptela_F_N = mkN "corruptela" ; -- [XXXCO] :: |seduction/seducing; enticement to sexual misconduct; brothel/place of seduction --- SLASHSTUFF corruptibilis_A : A2 corruptibilis, corruptibile, corruptibilior -or -us, corruptibilissimus -a -u -- [DXXES] :: corruptible, liable to decay, perishable; + corruptibilis_A = mkA "corruptibilis" ; -- [DXXES] :: corruptible, liable to decay, perishable; corruptibilitas_F_N = mkN "corruptibilitas" "corruptibilitatis " feminine ; -- [DEXFS] :: corruptibility, perishability; corruptio_F_N = mkN "corruptio" "corruptionis " feminine ; -- [XXXDO] :: corruption; bribery, seduction from loyalty; diseased/corrupt condition; corruptive_Adv = mkAdv "corruptive" ; -- [DEXFS] :: corruptibly; perishably; @@ -13656,7 +14633,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg corruptrix_A = mkA "corruptrix" "corruptricis"; -- [XXXFO] :: tending to deprave/corrupt, corruptive; corruptrix_F_N = mkN "corruptrix" "corruptricis " feminine ; -- [DXXES] :: she who corrupts/seduces; corruptum_N_N = mkN "corruptum" ; -- [XBXFS] :: corrupted parts (pl.) (of the body); --- SLASHSTUFF corruptus_A : A2 corruptus, corrupta -um, corruptior -or -us, corruptissimus -a -um -- [XXXCO] :: |incorrect/improper/disorderly; impure/adulterated/changed for worse; seditious; + corruptus_A = mkA "corruptus" ; -- [XXXCO] :: |incorrect/improper/disorderly; impure/adulterated/changed for worse; seditious; corruspor_V = mkV "corruspari" ; -- [XXXEO] :: search for, seek out; search carefully after (L+S); corrutundo_V2 = mkV2 (mkV "corrutundare") ; -- [XXXDO] :: make round; round off; amass/make up a round sum of money; cors_F_N = mkN "cors" "cortis " feminine ; -- [XWXAO] :: |cohort, tenth part of legion (360 men); armed force; band; ship crew; bodyguard @@ -13706,8 +14683,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg corytus_M_N = mkN "corytus" ; -- [XWXDO] :: quiver, case holding arrows; coryza_F_N = mkN "coryza" ; -- [DBXFS] :: catarrh; cold, runny nose; cos_F_N = mkN "cos" "cotis " feminine ; -- [XXXCO] :: flint-stone; whetstone, hone, grinding stone; rocks (pl.); any hard stone (L+S); --- IGNORED cos_N : N1 cos., abb. -- M -- [CLICO] :: consul (the highest elected Roman official); abb. cons./cos.; + cos_N = constN "cos." masculine ; -- [CLICO] :: consul (the highest elected Roman official); abb. cons./cos.; coscinomantia_F_N = mkN "coscinomantia" ; -- [DEXFS] :: divination by the sieve; + cosentio_V2 = mkV2 (mkV "cosentire" "cosentio" "cosensi" "cosensus ") ; -- [XXXIS] :: ||agree, consent; fit/be consistent/in sympathy/unison with; favor; assent to; cosidero_V2 = mkV2 (mkV "cosiderare") ; -- [XXXIO] :: examine/look at/inspect; consider closely, reflect on/contemplate; investigate; cosigno_V2 = mkV2 (mkV "cosignare") ; -- [XXXIO] :: (fix a) seal; put on record; indicate precisely/establish; attest/authenticate; cosmeta_M_N = mkN "cosmeta" ; -- [XXXFC] :: woman's valet; slave responsible for the adornment of his mistress; @@ -13718,6 +14696,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cosmicos_M_N = mkN "cosmicos" "cosmici " masculine ; -- [XXXFC] :: citizen of the world; cosmicum_N_N = mkN "cosmicum" ; -- [DEXFS] :: worldly things (pl.); cosmicus_A = mkA "cosmicus" "cosmica" "cosmicum" ; -- [DXXES] :: of the world; fashionable; cosmopolitan; + cosmitto_V2 = mkV2 (mkV "cosmittere" "cosmitto" "cosmisi" "cosmissus ") ; -- [AXXCS] :: |engage (battle), set against; begin/start; bring about; commit; incur; forfeit; cosmogonia_F_N = mkN "cosmogonia" ; -- [HSXEK] :: cosmogony; (subject of) generation/creation of existing universe; cosmographia_F_N = mkN "cosmographia" ; -- [DSXFS] :: description/mapping of the universe; cosmographicus_A = mkA "cosmographicus" "cosmographica" "cosmographicum" ; -- [HSXEK] :: cosmographic; @@ -13728,7 +14707,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cosmopoliticus_A = mkA "cosmopoliticus" "cosmopolitica" "cosmopoliticum" ; -- [GXXEK] :: cosmopolitan; cosmopolitismus_M_N = mkN "cosmopolitismus" ; -- [GXXEK] :: cosmopolitanism; cosmos_M_N = mkN "cosmos" "cosmi " masculine ; -- [XXXEO] :: universe; one of the chief magistrates of Crete; --- IGNORED coss_N : N1 coss., abb. -- M -- [XXXCO] :: consuls (pl.) (highest elected official); abb. conss./coss.; (two of a year); + coss_N = constN "coss." masculine ; -- [XXXCO] :: consuls (pl.) (highest elected official); abb. conss./coss.; (two of a year); cossim_Adv = mkAdv "cossim" ; -- [DXXES] :: |as to give way/lose ground; bending/turning in; (turned) backwards; obliquely; cossis_M_N = mkN "cossis" "cossis " masculine ; -- [XAXDO] :: worm or grub found in wood; cossus_M_N = mkN "cossus" ; -- [XAXDO] :: worm or grub found in wood; @@ -13775,6 +14754,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cotyla_F_N = mkN "cotyla" ; -- [XSXES] :: small cup; liquid measure (= 6 cyathi/1 hemina/half sextarius/about 1/2 pint); cotyledon_F_N = mkN "cotyledon" "cotyledonis " feminine ; -- [XAXEO] :: plant, navelwort; coum_N_N = mkN "coum" ; -- [XAXEO] :: hole in middle of yoke in which pole fits; thong used to attach pole to yoke; + coutor_V = mkV "couti" "coutor" "cousus sum " ; -- [DXXFS] :: associate with, have dealings with; covinnarius_M_N = mkN "covinnarius" ; -- [XWXFO] :: soldier who fought from a war chariot; covinnus_M_N = mkN "covinnus" ; -- [XWXEO] :: war-chariot (w/scythes on axle) (Celtic); a traveling-chariot/carriage; coxa_F_N = mkN "coxa" ; -- [XBXCO] :: hip (of human); haunch (of animal); hip bone (L+S); bend inwards; @@ -13803,6 +14783,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg crassator_M_N = mkN "crassator" "crassatoris " masculine ; -- [XXXCO] :: vagabond; footpad, highway robber; crasse_Adv =mkAdv "crasse" "crassius" "crassissime" ; -- [XXXCO] :: dimly/indistinctly, w/out detail; coarsely/inartistically; w/thick layer/thickly crassendo_F_N = mkN "crassendo" "crassendinis " feminine ; -- [DXXFS] :: thickness; stupidity; + crassesco_V = mkV "crassescere" "crassesco" nonExist nonExist; -- [XXXCO] :: thicken, fatten, become thick/hard/large/fat/dense/solid; condense; set; crassicula_F_N = mkN "crassicula" ; -- [GGXEK] :: bold print; crassificatio_F_N = mkN "crassificatio" "crassificationis " feminine ; -- [DXXES] :: thickness; making thick or fat; crassitas_F_N = mkN "crassitas" "crassitatis " feminine ; -- [XSXFO] :: density; thickness; @@ -13811,11 +14792,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg crassivenius_A = mkA "crassivenius" "crassivenia" "crassivenium" ; -- [XAXNO] :: having thick veins; (name of type of maple tree); crasso_V2 = mkV2 (mkV "crassare") ; -- [XXXFO] :: thicken, condense, make thick; crassundium_N_N = mkN "crassundium" ; -- [XXXFO] :: fat pork? (pl.); thick intestines (L+S); --- SLASHSTUFF crassus_A : A2 crassus, crassa -um, crassior -or -us, crassissimus -a -um -- [XXXAO] :: |fat/stout; rude, coarse, rough, harsh, heavy, gross; stupid, crass/insensitive; + crassus_A = mkA "crassus" ; -- [XXXAO] :: |fat/stout; rude, coarse, rough, harsh, heavy, gross; stupid, crass/insensitive; crastino_Adv = mkAdv "crastino" ; -- [XXXEO] :: tomorrow; crastinum_N_N = mkN "crastinum" ; -- [XXXFS] :: tomorrow; crastinus_A = mkA "crastinus" "crastina" "crastinum" ; -- [XXXBX] :: of tomorrow/next day/future; [in ~um => for/til tomorrow/following day]; --- TODO crataegis_N : N1 crataegis, crataegos/is -- F -- [XAXNO] :: plant (unidentified); (another name for the plant satyrion L+S); + crataegis_1_N = mkN "crataegis" "crataegis" feminine ; -- [XAXNO] :: plant (unidentified); (another name for the plant satyrion L+S); + crataegis_2_N = mkN "crataegis" "crataegos" feminine ; -- [XAXNO] :: plant (unidentified); (another name for the plant satyrion L+S); crataegon_M_N = mkN "crataegon" "crataegonis " masculine ; -- [XAHNO] :: holly; (the Greek name for holly); plant called aquifolia in pure Latin (L+S); crataegonon_N_N = mkN "crataegonon" "crataegoni " neuter ; -- [XAXNO] :: plant; (perh. Polygonum hydropiper); common fleawort (L+S); crataegonos_F_N = mkN "crataegonos" "crataegoni " feminine ; -- [XAXNO] :: plant; (perh. Polygonum persicaria); common fleawort (L+S); @@ -13829,6 +14811,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg craticius_A = mkA "craticius" "craticia" "craticium" ; -- [XAXEO] :: made of wattle; (interlaced twigs/wickerwork, may be plastered with mud/clay); craticula_F_N = mkN "craticula" ; -- [XXXEO] :: gridiron; grating, grill; griddle; small gridiron (L+S); fine hurdle-work; craticulus_A = mkA "craticulus" "craticula" "craticulum" ; -- [XXXFS] :: composed of lattice-work; wattled; + cratio_V2 = mkV2 (mkV "cratire" "cratio" "crativi" "cratitus ") ; -- [XAXNO] :: bush-harrow; cratis_F_N = mkN "cratis" "cratis " feminine ; -- [XAXAO] :: wickerwork; bundle of brush, fascine; framework, network, lattice; bush-harrow; cratitio_F_N = mkN "cratitio" "cratitionis " feminine ; -- [XAXNO] :: action of bush-harrowing; cratitius_A = mkA "cratitius" "cratitia" "cratitium" ; -- [XAXES] :: made of wattle; (interlaced twigs/wickerwork, may be plastered with mud/clay); @@ -13843,13 +14826,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg creatura_F_N = mkN "creatura" ; -- [DXXCS] :: creation; creature, thing created; servant (late Latin); creatus_A = mkA "creatus" "creata" "creatum" ; -- [XXXEO] :: sprung from, begotten by, born of; creatus_M_N = mkN "creatus" ; -- [XXXEO] :: child, offspring; --- SLASHSTUFF creber_A : A2 creber, crebra -um, crebrior -or -us, creberrimus -a -um -- [XXXBO] :: thick/crowded/packed/close set; frequent/repeated, constant; numerous/abundant; --- TODO crebesco_V : V2 crebesco, crebescere, crebui, - -- Declension: 3rd -- Comment: [XXXCS] :: become frequent/widespread, increase, strengthen; spread/be noised abroad (L+S); + creber_A = mkA "creber" ; -- [XXXBO] :: thick/crowded/packed/close set; frequent/repeated, constant; numerous/abundant; + crebesco_V2 = mkV2 (mkV "crebescere" "crebesco" "crebui" nonExist ) ; -- [XXXCS] :: become frequent/widespread, increase, strengthen; spread/be noised abroad (L+S); crebo_Adv =mkAdv "crebo" "crebrius" "creberrime" ; -- [XXXCS] :: repeatedly, often, frequently, many times; closely, close one after another; crebra_Adv = mkAdv "crebra" ; -- [DXXFS] :: repeatedly; crebratus_A = mkA "crebratus" "crebrata" "crebratum" ; -- [XXXNO] :: closely woven; thick, close (L+S); crebre_Adv = mkAdv "crebre" ; -- [XXXDO] :: thickly, densely; frequently; closely; compactly (L+S); --- TODO crebresco_V : V2 crebresco, crebrescere, crebrui, - -- Declension: 3rd -- Comment: [XXXCO] :: become frequent/widespread, increase, strengthen; spread/be noised abroad (L+S); + crebresco_V2 = mkV2 (mkV "crebrescere" "crebresco" "crebrui" nonExist ) ; -- [XXXCO] :: become frequent/widespread, increase, strengthen; spread/be noised abroad (L+S); crebrinodosus_A = mkA "crebrinodosus" "crebrinodosa" "crebrinodosum" ; -- [XXXFO] :: having frequent knots; crebrinodus_A = mkA "crebrinodus" "crebrinoda" "crebrinodum" ; -- [XXXFO] :: having frequent knots; crebrisurus_A = mkA "crebrisurus" "crebrisura" "crebrisurum" ; -- [XXXFO] :: fortified by closely packed stakes; @@ -13869,12 +14852,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg creditrix_F_N = mkN "creditrix" "creditricis " feminine ; -- [XXXEO] :: female lender/creditor; creditum_N_N = mkN "creditum" ; -- [XXXCO] :: loan, debt, what is lent; [in ~ accipere => to receive a loan]; creditus_A = mkA "creditus" "credita" "creditum" ; -- [XXXEO] :: loan; + credo_V2 = mkV2 (mkV "credere" "credo" "credidi" "creditus ") ; -- [XXXAO] :: |lend (money) to, make loans/give credit; believe/think/accept as true/be sure; credra_F_N = mkN "credra" ; -- [XAXFO] :: citrus fruit; credulitas_F_N = mkN "credulitas" "credulitatis " feminine ; -- [XXXCO] :: credulity, trustfulness; easiness of belief (L+S); credulus_A = mkA "credulus" "credula" "credulum" ; -- [XXXCO] :: credulous, trusting, gullible; prone to believe/trust; full of confidence (L+S); --- TODO creduo_V : V2 creduo, creduere, -, - -- Declension: 3rd -- Comment: [BXXES] :: believe, confide; commit/consign; suppose; lend; (archaic form of credo); + creduo_V = mkV "creduere" "creduo" nonExist nonExist ; -- [BXXES] :: believe, confide; commit/consign; suppose; lend; (archaic form of credo); cremabilis_A = mkA "cremabilis" "cremabilis" "cremabile" ; -- [DXXFS] :: combustible; --- TODO cremaster_N : N1 cremaster, cremasteros/is -- M -- [XBXFO] :: cremaster muscle; (muscle of the spermatic cord by which testicle is suspended); + cremaster_1_N = mkN "cremaster" "cremasteris" masculine ; -- [XBXFO] :: cremaster muscle; (muscle of the spermatic cord by which testicle is suspended); + cremaster_2_N = mkN "cremaster" "cremasteros" masculine ; -- [XBXFO] :: cremaster muscle; (muscle of the spermatic cord by which testicle is suspended); crematio_F_N = mkN "crematio" "cremationis " feminine ; -- [XXXEO] :: burning; consumption by fire (L+S); cremation; cremator_M_N = mkN "cremator" "crematoris " masculine ; -- [DEXEO] :: burner, consumer by fire; (God); crementum_N_N = mkN "crementum" ; -- [XXXEO] :: increase, growth; @@ -13914,6 +14899,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg crepusculascens_A = mkA "crepusculascens" "crepusculascentis"; -- [DXXFS] :: growing dusk; dusky; crepusculum_N_N = mkN "crepusculum" ; -- [XXXCO] :: twilight, dusk; darkness (L+S); crescentia_F_N = mkN "crescentia" ; -- [XXXFO] :: increase, lengthening; augmentation (L+S); + cresco_V = mkV "crescere" "cresco" "crevi" "cretus "; -- [XXXAO] :: |thrive, increase (size/number/honor), multiply; ascend; attain, be promoted; cresso_V = mkV "cressare" ; -- [XXXDM] :: increase (size/number/honor), multiply; thrive; creta_F_N = mkN "creta" ; -- [XXXBO] :: clay/clayey soil; chalk; white/fuller's earth; paint/whitening; white goal line; cretaceus_A = mkA "cretaceus" "cretacea" "cretaceum" ; -- [XXXNO] :: resembling chalk or pipe-clay; chalk-like, creataceous (L+S); @@ -13950,12 +14936,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg criminologus_M_N = mkN "criminologus" ; -- [GXXEK] :: criminologist; criminor_V = mkV "criminari" ; -- [XLXBO] :: accuse, denounce; charge (with); allege with accusation; make accusations; criminose_Adv =mkAdv "criminose" "criminosius" "criminissime" ; -- [XXXDO] :: reproachfully, abusively, slanderously; manner which invites accusation; --- SLASHSTUFF criminosus_A : A2 criminosus, criminosa -um, criminosior -or -us, criminosissimus -a -um -- [XXXCO] :: accusatory/reproachful; slanderous/vituperative; shameful/dishonoring/criminal; + criminosus_A = mkA "criminosus" ; -- [XXXCO] :: accusatory/reproachful; slanderous/vituperative; shameful/dishonoring/criminal; criminosus_M_N = mkN "criminosus" ; -- [DLXFS] :: guilty man; crinale_N_N = mkN "crinale" "crinalis " neuter ; -- [XXXFO] :: ornament for the hair; hair-comb (L+S); crinalis_A = mkA "crinalis" "crinalis" "crinale" ; -- [XXXDO] :: worn in the hair; covered with hair-like filaments; of/pertaining to hair (L+S); criniger_A = mkA "criniger" "crinigera" "crinigerum" ; -- [XXXEO] :: long-haired; having long hair; crininus_A = mkA "crininus" "crinina" "crininum" ; -- [DAXFS] :: lily-, made of lilies; + crinio_V2 = mkV2 (mkV "crinire" "crinio" nonExist "crinitus ") ; -- [XXXEO] :: deck/cover/provide with hair; crinis_M_N = mkN "crinis" "crinis " masculine ; -- [XXXBO] :: hair; lock of hair, tress, plait; plume (helmet); tail of a comet; crinitus_A = mkA "crinitus" "crinita" "crinitum" ; -- [XXXDX] :: hairy; having long locks, long haired; hair-like; [stella crinita => comet]; crinomenon_N_N = mkN "crinomenon" "crinomeni " neuter ; -- [XGXFO] :: point at issue in a dispute; @@ -13964,7 +14951,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg criobolium_N_N = mkN "criobolium" ; -- [DEXIS] :: ram (as an offering); cripa_F_N = mkN "cripa" ; -- [XAXFO] :: plant (unidentified); crisimus_A = mkA "crisimus" "crisima" "crisimum" ; -- [DXXEO] :: critical, decisive; [~ dies => day of a crisis in disease]; --- TODO crisis_N : N1 crisis, crisos/is -- F -- [XXXEO] :: judgment (literary); crisis, critical stage in one's life; decision (L+S); + crisis_1_N = mkN "crisis" "crisis" feminine ; -- [XXXEO] :: judgment (literary); crisis, critical stage in one's life; decision (L+S); + crisis_2_N = mkN "crisis" "crisos" feminine ; -- [XXXEO] :: judgment (literary); crisis, critical stage in one's life; decision (L+S); criso_V = mkV "crisare" ; -- [XXXEO] :: move the haunches as in copulation (women); (rude); crispans_A = mkA "crispans" "crispantis"; -- [XXXNS] :: curled; uneven, wrinkled; trembling (of an earthquake); crispatorium_N_N = mkN "crispatorium" ; -- [GXXEK] :: roller; @@ -13996,6 +14984,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg crocallis_F_N = mkN "crocallis" "crocallidis " feminine ; -- [XXXNO] :: precious stone (unidentified); (cherry-shaped L+S); crocatio_F_N = mkN "crocatio" "crocationis " feminine ; -- [XXXFO] :: croaking; (of ravens L+S); crocatus_A = mkA "crocatus" "crocata" "crocatum" ; -- [XXXEO] :: saffron-colored; (yellow); + croccio_V = mkV "croccire" "croccio" nonExist nonExist; -- [XAXEO] :: croak/caw (like a raven); crocea_F_N = mkN "crocea" ; -- [EEXEE] :: crozier/crosier, bishop's crook/pastoral staff; long mantle w/cape and sleeves; croceus_A = mkA "croceus" "crocea" "croceum" ; -- [XXXCO] :: yellow, golden; saffron-colored; of saffron/its oil, saffron-; scarlet (Ecc); crocia_F_N = mkN "crocia" ; -- [EEXEE] :: crozier/crosier, bishop's crook/pastoral staff; long mantle w/cape and sleeves; @@ -14004,6 +14993,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg crocino_V2 = mkV2 (mkV "crocinare") ; -- [DEXFS] :: anoint with saffron-ointment; crocinum_N_N = mkN "crocinum" ; -- [XXXNO] :: saffron oil used as a perfume; color of saffron, saffron-yellow (L+S); crocinus_A = mkA "crocinus" "crocina" "crocinum" ; -- [XXXDO] :: of/made from saffron; saffron colored, yellow; + crocio_V = mkV "crocire" "crocio" nonExist nonExist; -- [XAXES] :: croak/caw (like a raven); crocis_F_N = mkN "crocis" "crocidis " feminine ; -- [XAXNO] :: plant; (perh. one of the catchflies Silene); crocito_V = mkV "crocitare" ; -- [XAXFO] :: croak/caw (like a raven); (loudly L+S); crocitus_M_N = mkN "crocitus" "crocitus " masculine ; -- [DAXFS] :: croaking of the raven; @@ -14060,6 +15050,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cruciatorius_A = mkA "cruciatorius" "cruciatoria" "cruciatorium" ; -- [DEXFS] :: full of torture; cruciatus_M_N = mkN "cruciatus" "cruciatus " masculine ; -- [XXXDX] :: torture/cruelty; torture form/apparatus; suffering, severe physical/mental pain; crucifer_M_N = mkN "crucifer" ; -- [DEXFS] :: cross-bearer; (Christ); + crucifigo_V2 = mkV2 (mkV "crucifigere" "crucifigo" "crucifixi" "crucifixus ") ; -- [XXXEO] :: crucify; attach to a cross; crucifixio_F_N = mkN "crucifixio" "crucifixionis " feminine ; -- [DEXDF] :: crucifixion; (act of putting to death by nailing to a cross); crucifixor_M_N = mkN "crucifixor" "crucifixoris " masculine ; -- [DEXES] :: crucifer (attendant who carries a cross in procession), cross-bearer; (Christ); crucifixum_N_N = mkN "crucifixum" ; -- [EEXDE] :: crucifix; @@ -14071,20 +15062,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cruciverbium_N_N = mkN "cruciverbium" ; -- [GXXEK] :: crossword puzzle; crudarius_A = mkA "crudarius" "crudaria" "crudarium" ; -- [XXXNO] :: outcropping; (of a vein of silver); vein of silver that lies on surface (L+S); crudele_Adv =mkAdv "crudele" "crudelius" "crudelissime" ; -- [DXXES] :: cruelly, harshly, severely, unmercifully, savagely, fiercely; --- SLASHSTUFF crudelis_A : A2 crudelis, crudele, crudelior -or -us, crudelissimus -a -um -- [XXXBO] :: cruel/hardhearted/unmerciful/severe, bloodthirsty/savage/inhuman; harsh/bitter; + crudelis_A = mkA "crudelis" ; -- [XXXBO] :: cruel/hardhearted/unmerciful/severe, bloodthirsty/savage/inhuman; harsh/bitter; crudelitas_F_N = mkN "crudelitas" "crudelitatis " feminine ; -- [XXXDX] :: cruelty/barbarity, harshness/severity, savagery/inhumanity; instance of cruelty; crudeliter_Adv =mkAdv "crudeliter" "crudelius" "crudelissime" ; -- [XXXCO] :: cruelly, savagely, relentlessly; with cruel effect; + crudesco_V = mkV "crudescere" "crudesco" "crudui" nonExist; -- [XXXCO] :: become fierce/violent/savage/hard (persons/battle/disease); grow worse (L+S); cruditas_F_N = mkN "cruditas" "cruditatis " feminine ; -- [XBXCO] :: indigestion; inability to digest; too full stomach; undigested food; bitterness; cruditatio_F_N = mkN "cruditatio" "cruditationis " feminine ; -- [DBXFS] :: indigestion, overloading of the stomach; crudito_V2 = mkV2 (mkV "cruditare") ; -- [DBXES] :: suffer from indigestion; --- SLASHSTUFF crudus_A : A2 crudus, cruda -um, crudior -or -us, crudissimus -a -um -- [XXXAO] :: |youthful/hardy/vigorous; fresh/green/immature; undigested; w/undigested food; + crudus_A = mkA "crudus" ; -- [XXXAO] :: |youthful/hardy/vigorous; fresh/green/immature; undigested; w/undigested food; cruentatio_F_N = mkN "cruentatio" "cruentationis " feminine ; -- [DXXFS] :: staining with blood; cruentatus_A = mkA "cruentatus" "cruentata" "cruentatum" ; -- [XXXCQ] :: bloodstained, besplattered; bloody, bleeding (Ecc); cruente_Adv =mkAdv "cruente" "cruentius" "cruentissime" ; -- [XXXEO] :: savagely, bloodthirstily; cruelly, severely (L+S); cruenter_Adv = mkAdv "cruenter" ; -- [XXXFO] :: savagely, bloodthirstily; cruelly, severely (L+S); cruentifer_A = mkA "cruentifer" "cruentifera" "cruentiferum" ; -- [DXXFS] :: bloody; cruento_V2 = mkV2 (mkV "cruentare") ; -- [XXXCO] :: |make/dye blood-red; soak/besplatter with any liquid; tinge with red (L+S); --- SLASHSTUFF cruentus_A : A2 cruentus, cruenta -um, cruentior -or -us, cruentissimus -a -um -- [XXXBO] :: |bloodthirsty, insatiably cruel, savage; accompanied by/involving bloodshed; + cruentus_A = mkA "cruentus" ; -- [XXXBO] :: |bloodthirsty, insatiably cruel, savage; accompanied by/involving bloodshed; crumena_F_N = mkN "crumena" ; -- [XXXDO] :: pouch, purse; small money-bag; store/supply of money/cash, funds, resources; crumilla_F_N = mkN "crumilla" ; -- [XXXFO] :: small/little purse; crumina_F_N = mkN "crumina" ; -- [XXXDO] :: pouch, purse; small money-bag; store/supply of money/cash, funds, resources; @@ -14109,7 +15101,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg crustarius_M_N = mkN "crustarius" ; -- [XXXNS] :: one who makes embossed/chased figures; crustatum_N_N = mkN "crustatum" ; -- [XAXNO] :: crustacean; animal with a hard shell; shellfish (L+S); crusto_V2 = mkV2 (mkV "crustare") ; -- [XXXDO] :: encrust/cover w/layer/coating/plaster; emboss/carve/decorate w/relief/embossing; --- SLASHSTUFF crustosus_A : A2 crustosus, crustosa -um, crustosior -or -us, crustosissimus -a -um -- [XXXNO] :: encrusted, covered with a hard crust/rind; + crustosus_A = mkA "crustosus" ; -- [XXXNO] :: encrusted, covered with a hard crust/rind; crustula_F_N = mkN "crustula" ; -- [DXXFS] :: little rind/shell/crust; crustularius_M_N = mkN "crustularius" ; -- [FXXEK] :: confectioner; crustulum_N_N = mkN "crustulum" ; -- [XXXCO] :: small cake/pastry, cookie; confectionery (L+S); @@ -14154,8 +15146,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cubitus_M_N = mkN "cubitus" "cubitus " masculine ; -- [XXXCO] :: state/action of reclining/lying down/taking rest; bed, couch; cubo_V = mkV "cubare" ; -- [XXXBO] :: lie (down/asleep); recline, incline; lie/be in bed, rest/sleep; be sick/dead; cubus_M_N = mkN "cubus" ; -- [XSXDO] :: cube (geometric figure), die/dice; lump; cubic number; + cuccubio_V = mkV "cuccubire" "cuccubio" nonExist nonExist; -- [XAXFO] :: hoot; (of owls); cuccuru_Interj = ss "cuccuru" ; -- [XXXFO] :: cock-a-doodle-doo! --- IGNORED cuci_N : N1 cuci, undeclined -- N -- [XAXNO] :: doum-palm (Hyphanae thebaica); + cuci_N = constN "cuci" neuter ; -- [XAXNO] :: doum-palm (Hyphanae thebaica); cucubalus_F_N = mkN "cucubalus" ; -- [XAXNS] :: plant; strychnon; (of the nightshade family); (also called strumus L+S); cucubo_V = mkV "cucubare" ; -- [XAXFS] :: hoot; (of the screech owl); cuculio_M_N = mkN "cuculio" "cuculionis " masculine ; -- [XXXFO] :: hood, kind of headgear; @@ -14180,10 +15173,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cucurbitivus_A = mkA "cucurbitivus" "cucurbitiva" "cucurbitivum" ; -- [XAXEO] :: variety of pear or fig, gourd-; cucurbitula_F_N = mkN "cucurbitula" ; -- [XXXDO] :: bitter gourd (Cucurbitaceae); courgette; dolt/pumpkinhead; cupping-glass+use; cucurbitularis_F_N = mkN "cucurbitularis" "cucurbitularis " feminine ; -- [DAXFS] :: field cypress; (chamaepitys); + cucurrio_V = mkV "cucurrire" "cucurrio" nonExist nonExist; -- [XAXFO] :: crow; (of cocks); cucurru_Interj = ss "cucurru" ; -- [XXXFS] :: cock-a-doodle-doo! cucus_M_N = mkN "cucus" ; -- [BAXFS] :: daw, jackdaw (Corvus monedula?); (might be used of a fool/sluggard/slut); cucutium_N_N = mkN "cucutium" ; -- [DXXFS] :: kind of hood; cudo_M_N = mkN "cudo" "cudonis " masculine ; -- [XWXFO] :: helmet; (made of raw skin L+S); + cudo_V2 = mkV2 (mkV "cudere" "cudo" "cudi" "cusus ") ; -- [XXXCO] :: beat/pound/thresh; forge/stamp/hammer (metal); make by beating/striking, coin; cuferion_N_N = mkN "cuferion" "cuferii " neuter ; -- [DAXFS] :: nose bleed; (disease of horses); cuicuimodi_Adv = mkAdv "cuicuimodi" ; -- [XXXCS] :: of what kind/sort/nature soever; cuimodi_Adv = mkAdv "cuimodi" ; -- [XXXCS] :: of what kind/sort/nature soever; @@ -14231,15 +15226,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg culmus_M_N = mkN "culmus" ; -- [XAXCO] :: stalk, stem (of cereal grass/others); hay; straw; thatch; culo_V2 = mkV2 (mkV "culare") ; -- [XXXFO] :: drive, thrust, shove; (perh. slang); push (one) by/in the culus (Sex rude); culpa_F_N = mkN "culpa" ; -- [XXXAO] :: |offense; error; (sense of) guilt; fault/defect (moral/other); sickness/injury; --- SLASHSTUFF culpabilis_A : A2 culpabilis, culpabile, culpabilior -or -us, culpabilissimus -a -um -- [XXXEO] :: reprehensible, deserving/worthy of censure/blame; guilty/culpable/criminal; + culpabilis_A = mkA "culpabilis" ; -- [XXXEO] :: reprehensible, deserving/worthy of censure/blame; guilty/culpable/criminal; culpabilitas_F_N = mkN "culpabilitas" "culpabilitatis " feminine ; -- [EXXEE] :: guilt, culpability; guiltiness; culpabiliter_Adv =mkAdv "culpabiliter" "culpabilius" "culpabilissime" ; -- [DXXFS] :: culpably; criminally; culpandum_N_N = mkN "culpandum" ; -- [XXXFS] :: things (pl.) deserving censure; culpatio_F_N = mkN "culpatio" "culpationis " feminine ; -- [XXXDO] :: censure, rebuke; reproach, blame (L+S); --- SLASHSTUFF culpatus_A : A2 culpatus, culpata -um, culpatior -or -us, culpatissimus -a -um -- [XXXFO] :: reprehensible, deserving of censure; corrupted (L+S); + culpatus_A = mkA "culpatus" ; -- [XXXFO] :: reprehensible, deserving of censure; corrupted (L+S); culpito_V2 = mkV2 (mkV "culpitare") ; -- [XXXFO] :: censure, find fault with; blame/reproach severely/harshly (L+S); culpo_V2 = mkV2 (mkV "culpare") ; -- [XXXCO] :: blame, find fault with, censure, reproach, reprove, disapprove; accuse, condemn; --- SLASHSTUFF culposus_A : A2 culposus, culposa -um, culposior -or -us, culposissimus -a -um -- [FXXEE] :: reprehensible, deserving/worthy of censure/blame; guilty/culpable/criminal; + culposus_A = mkA "culposus" ; -- [FXXEE] :: reprehensible, deserving/worthy of censure/blame; guilty/culpable/criminal; culte_Adv =mkAdv "culte" "cultius" "cultissime" ; -- [XXXDO] :: elegantly, smartly, stylishly; (of oratorical style); with polish/refinement; cultellatus_A = mkA "cultellatus" "cultellata" "cultellatum" ; -- [XXXNO] :: shaped like a small knife; cultello_V2 = mkV2 (mkV "cultellare") ; -- [XXXDS] :: |make in shape of a knife; level ground by the coulter (vertical blade on plow); @@ -14255,12 +15250,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cultum_N_N = mkN "cultum" ; -- [XAXCO] :: cultivated/tilled/farmed lands (pl.); gardens; plantations; standing crops; cultura_F_N = mkN "cultura" ; -- [XXXDX] :: agriculture/cultivation/tilling, care of plants; field; care/upkeep; training; culturalis_A = mkA "culturalis" "culturalis" "culturale" ; -- [FEXEE] :: liturigal, of worship/cult; cultual; --- SLASHSTUFF cultus_A : A2 cultus, culta -um, cultior -or -us, cultissimus -a -um -- [XAXBO] :: cultivated/tilled/farmed (well); ornamented, neat/well groomed; polished/elegant + cultus_A = mkA "cultus" ; -- [XAXBO] :: cultivated/tilled/farmed (well); ornamented, neat/well groomed; polished/elegant cultus_M_N = mkN "cultus" "cultus " masculine ; -- [XXXAO] :: ||personal care/maintenance/grooming; style; finery, splendor; neatness/order; cululla_F_N = mkN "cululla" ; -- [XXXEO] :: drinking vessel/beaker/goblet or its contents; (originally sacrificial vessel); culullus_M_N = mkN "culullus" ; -- [XXXEO] :: drinking vessel/beaker/goblet or its contents; (originally sacrificial vessel); culus_M_N = mkN "culus" ; -- [XBXCO] :: buttocks; posterior; anus; (rude); - cum_Abl_Prep = mkPrep "cum" Abl ; -- [XXXAO] :: |under command/at the head of; having/containing/including; using/by means of; + cum_Abl_Prep = mkPrep "cum" abl ; -- [XXXAO] :: |under command/at the head of; having/containing/including; using/by means of; cum_Adv = mkAdv "cum" ; -- [XXXAO] :: |as soon; while, as (well as); whereas, in that, seeing that; on/during which; cuma_F_N = mkN "cuma" ; -- [XAXCS] :: spring shoots of cabbage/similar; hollow sphere (L+S); spherical layer, stratum; cuma_N_N = mkN "cuma" "cumatis " neuter ; -- [XAXCS] :: spring shoots of cabbage/similar; hollow sphere (L+S); spherical layer, stratum; @@ -14272,25 +15267,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cumbula_F_N = mkN "cumbula" ; -- [XWXFO] :: small boat; cumera_F_N = mkN "cumera" ; -- [XXXDO] :: box/basket to hold grain; (ritual object in a bridal procession); cumerum_N_N = mkN "cumerum" ; -- [XXXDO] :: box/basket to hold grain; (ritual object in a bridal procession); --- IGNORED cumi_V : V1 cumi, undeclined -- [EEQFE] :: arise; (Aramaic); (Mark 5:41); + cumi_V = constV "cumi" ; -- [EEQFE] :: arise; (Aramaic); (Mark 5:41); cuminatus_A = mkA "cuminatus" "cuminata" "cuminatum" ; -- [DXXFS] :: seasoned/mixed with cumin; cumininus_A = mkA "cumininus" "cuminina" "cumininum" ; -- [DAXFS] :: of cumin; (oil); cuminum_N_N = mkN "cuminum" ; -- [XAXCO] :: cumin (plant/seed); (spice/drug); cummagis_Adv = mkAdv "cummagis" ; -- [XXXCO] :: more particularly; cummaxime_Adv = mkAdv "cummaxime" ; -- [XXXCO] :: at the/this/that very moment; most particularly; --- IGNORED cummi_N : N1 cummi, undeclined -- N -- [XAXCO] :: gum, vicid secretion from trees; + cummi_N = constN "cummi" neuter ; -- [XAXCO] :: gum, vicid secretion from trees; cumminosus_A = mkA "cumminosus" "cumminosa" "cumminosum" ; -- [XAXNO] :: gummy, full of gum; cummis_F_N = mkN "cummis" "cummis " feminine ; -- [XAXCO] :: gum, vicid secretion from trees; cummitio_F_N = mkN "cummitio" "cummitionis " feminine ; -- [XXXFO] :: application of gum; cumprime_Adv = mkAdv "cumprime" ; -- [XXXFO] :: especially, particularly; cumprimis_Adv = mkAdv "cumprimis" ; -- [XXXDO] :: chiefly, pre-eminently, in the highest degree; first of all; (cum primis); --- cumquam_Conj : Conj cumquam -- [XXXFO] :: ever; [in combination sicumquam => if ever]; + cumquam_Conj = mkConj "cumquam" missing ; -- [XXXFO] :: ever; [in combination sicumquam => if ever]; cumque_Adv = mkAdv "cumque" ; -- [XXXEO] :: at any time; -ever, -soever; appended to give generalized/indefinite force; cumulate_Adv =mkAdv "cumulate" "cumulatius" "cumulatissime" ; -- [XXXCO] :: abundantly, copiously, liberally; in rich abundance; cumulatim_Adv = mkAdv "cumulatim" ; -- [XXXEO] :: abundantly, in abundance, copiously, liberally; in heaps (L+S); cumulatio_F_N = mkN "cumulatio" "cumulationis " feminine ; -- [FXXEE] :: accumulation; cumulativus_A = mkA "cumulativus" "cumulativa" "cumulativum" ; -- [FXXEE] :: cumulative; accruing; --- SLASHSTUFF cumulatus_A : A2 cumulatus, cumulata -um, cumulatior -or -us, cumulatissimus -a -um -- [XXXCO] :: heaped (up), abounding in; great/abundant/vast; increased/augmented (L+S); full; + cumulatus_A = mkA "cumulatus" ; -- [XXXCO] :: heaped (up), abounding in; great/abundant/vast; increased/augmented (L+S); full; cumulo_V2 = mkV2 (mkV "cumulare") ; -- [XXXAO] :: |increase/augment/enhance; perfect/finish up; (PASS) be made/composed of; cumulus_M_N = mkN "cumulus" ; -- [XXXBO] :: |finishing touch, consummation, pinnacle, summit, peak, crown; ending of speech; cuna_F_N = mkN "cuna" ; -- [XXXCO] :: cradle (usu. pl.); nest for young birds; one's earliest years; @@ -14306,7 +15301,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cunctatio_F_N = mkN "cunctatio" "cunctationis " feminine ; -- [XXXCO] :: delay, hesitation; tardiness, inactivity; hesitating about/delaying of (w/GEN); cunctator_M_N = mkN "cunctator" "cunctatoris " masculine ; -- [XXXDX] :: delayer/procrastinator; one prone to delay; considerate/cautious person (L+S); cunctatrix_F_N = mkN "cunctatrix" "cunctatricis " feminine ; -- [DXXFS] :: procrastinator, she who hesitates; she who acts deliberately/cautiously; --- SLASHSTUFF cunctatus_A : A2 cunctatus, cunctata -um, cunctatior -or -us, cunctatissimus -a -um -- [XXXFO] :: hesitant; tardy; + cunctatus_A = mkA "cunctatus" ; -- [XXXFO] :: hesitant; tardy; cuncticinus_A = mkA "cuncticinus" "cuncticina" "cuncticinum" ; -- [DXXFS] :: concordant, harmonious; sounding all together; cunctim_Adv = mkAdv "cunctim" ; -- [XXXFO] :: collectively, taken all together; in a body (L+S); cunctiparens_M_N = mkN "cunctiparens" "cunctiparentis " masculine ; -- [DXXFS] :: parent of all; @@ -14316,7 +15311,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cunctum_N_N = mkN "cunctum" ; -- [XXXCO] :: all (pl.) (N); all with a stated/implied exception; cunctus_A = mkA "cunctus" "cuncta" "cunctum" ; -- [XXXAO] :: altogether (usu. pl.), in a body; every, all, entire; total/complete; whole of; cunctus_M_N = mkN "cunctus" ; -- [XXXCO] :: all (pl.) (M); all with a stated/implied exception; --- cuncumque_Conj : Conj cuncumque -- [XXXFO] :: whenever; + cuncumque_Conj = mkConj "cuncumque" missing ; -- [XXXFO] :: whenever; cuneatim_Adv = mkAdv "cuneatim" ; -- [XWXEO] :: in a closely packed/wedge formation; in the form of a wedge, wedge-shaped; cuneatio_F_N = mkN "cuneatio" "cuneationis " feminine ; -- [XXXFO] :: action of making wedge-shaped/tapering; wedge-shaped point (nose) (L+S); cuneatus_A = mkA "cuneatus" "cuneata" "cuneatum" ; -- [XXXDO] :: wedge-shaped, cuneiform; tapering; pointed like a wedge (L+S); @@ -14336,6 +15331,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cuniculus_M_N = mkN "cuniculus" ; -- [XAXBO] :: rabbit; underground tunnel/burrow/hole; mine/excavation; channel; secret device; cunila_F_N = mkN "cunila" ; -- [XAXDO] :: plant (genus Satureia, savory); (also called conila and origanum L+S); cunilago_F_N = mkN "cunilago" "cunilaginis " feminine ; -- [XAXNO] :: plant (variety of genus Satureia, savory); + cunio_V = mkV "cunire" "cunio" nonExist nonExist; -- [XXXFO] :: defecate; cunnilingus_A = mkA "cunnilingus" "cunnilinga" "cunnilingum" ; -- [XXXEO] :: type of sexual perversion, practicing cunnilingus; cunnio_M_N = mkN "cunnio" "cunnionis " masculine ; -- [XXXIO] :: type of sexual pervert, one practicing cunnilingus; cunnuliggeter_M_N = mkN "cunnuliggeter" ; -- [XXXIO] :: type of sexual pervert, one practicing cunnilingus; @@ -14355,9 +15351,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cupidium_N_N = mkN "cupidium" ; -- [XXXEO] :: delicacy, tidbit; (usu. pl.) delicacies; dainty dishes, tidbits (L+S); cupido_F_N = mkN "cupido" "cupidinis " feminine ; -- [XXXBO] :: desire/love/wish/longing (passionate); lust; greed, appetite; desire for gain; cupido_M_N = mkN "cupido" "cupidinis " masculine ; -- [XXXBO] :: desire/love/wish/longing (passionate); lust; greed, appetite; desire for gain; --- SLASHSTUFF cupidus_A : A2 cupidus, cupida -um, cupidior -or -us, cupidissimus -a -um -- [XXXBO] :: eager/passionate; longing for/desirous of (with gen.); greedy; wanton/lecherous; + cupidus_A = mkA "cupidus" ; -- [XXXBO] :: eager/passionate; longing for/desirous of (with gen.); greedy; wanton/lecherous; cupiens_A = mkA "cupiens" "cupientis"; -- [BXXCO] :: desirous, eager for, longing; anxious; cupienter_Adv = mkAdv "cupienter" ; -- [BXXEO] :: eagerly, avidly; earnestly (L+S); + cupio_V2 = mkV2 (mkV "cupere" "cupio" "cupivi" "cupitus ") ; -- [XXXBO] :: wish/long/be eager for; desire/want, covet; desire as a lover; favor, wish well; + cupisco_V = mkV "cupiscere" "cupisco" nonExist nonExist; -- [DXXES] :: wish, desire; cupita_F_N = mkN "cupita" ; -- [XXXDO] :: beloved, loved one; cupitor_M_N = mkN "cupitor" "cupitoris " masculine ; -- [XXXEO] :: one who desires/wishes; seeker after; cupitum_N_N = mkN "cupitum" ; -- [XXXDO] :: one's desire, that which one desires; @@ -14388,6 +15386,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cura_F_N = mkN "cura" ; -- [XXXAO] :: |office/task/responsibility/post; administration, supervision; command (army); curabilis_A = mkA "curabilis" "curabilis" "curabile" ; -- [XBXFO] :: requiring medical treatment; that is to be apprehended/feared (L+S); curable; curagendarius_M_N = mkN "curagendarius" ; -- [DAXFS] :: manager, overseer; + curago_V = mkV "curagere" "curago" "curegi" "curactus "; -- [XXXIO] :: manage, take charge; curalium_N_N = mkN "curalium" ; -- [XXXDO] :: coral; (esp. red coral); curandus_M_N = mkN "curandus" ; -- [XBXFS] :: patient; (medical); curans_M_N = mkN "curans" "curantis " masculine ; -- [XBXEO] :: one who treats a patient; physician (L+S); @@ -14402,7 +15401,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg curatorius_A = mkA "curatorius" "curatoria" "curatorium" ; -- [XLXEO] :: of/belonging to a curator/guardian; pertaining to guardianship (L+S); curatrix_F_N = mkN "curatrix" "curatricis " feminine ; -- [DLXFS] :: guardian (female); curatura_F_N = mkN "curatura" ; -- [XXXEO] :: treatment/care/attention; office of curator/guardian; management/superintendence --- SLASHSTUFF curatus_A : A2 curatus, curata -um, curatior -or -us, curatissimus -a -um -- [XXXCO] :: well looked after; carefully prepared; anxious, solicitous, earnest; + curatus_A = mkA "curatus" ; -- [XXXCO] :: well looked after; carefully prepared; anxious, solicitous, earnest; curculio_F_N = mkN "curculio" "curculionis " feminine ; -- [XAXCO] :: grain-worm/weevil; weevil; curculiunculus_M_N = mkN "curculiunculus" ; -- [XAXFO] :: small/little weevil; something trifling/worthless (L+S); curcuma_F_N = mkN "curcuma" ; -- [GXXEK] :: curcuma; (spice); @@ -14423,7 +15422,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg curiose_Adv =mkAdv "curiose" "curiosius" "curiosissime" ; -- [XXXCO] :: carefully/attentively, w/care; elaborately; curiously/inquisitively, w/curiosity curiositas_F_N = mkN "curiositas" "curiositatis " feminine ; -- [XXXDO] :: curiosity, inquisitiveness; excessive eagerness for knowledge; nosiness; curiosulus_A = mkA "curiosulus" "curiosula" "curiosulum" ; -- [XXXFO] :: somewhat inquisitive/curious/nosy; --- SLASHSTUFF curiosus_A : A2 curiosus, curiosa -um, curiosior -or -us, curiosissimus -a -um -- [XXXBO] :: |labored/elaborate/complicated; eager to know, curious, inquisitive; careworn; + curiosus_A = mkA "curiosus" ; -- [XXXBO] :: |labored/elaborate/complicated; eager to know, curious, inquisitive; careworn; curiosus_M_N = mkN "curiosus" ; -- [XXXDS] :: spy, one who is prying; scout; informer; class of secret spys; secret police; curis_F_N = mkN "curis" "curis " feminine ; -- [XWXEO] :: spear; (Sabine word); curito_V2 = mkV2 (mkV "curitare") ; -- [XXXFO] :: give frequent/abundant attention to; take care of, cherish (L+S); @@ -14435,6 +15434,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg curriculo_Adv = mkAdv "curriculo" ; -- [XXXDO] :: on the double, at the run; quickly; curriculum_N_N = mkN "curriculum" ; -- [XXXBO] :: act of running; race; lap, track; chariot; course of action/heavenly bodies; currilis_A = mkA "currilis" "currilis" "currile" ; -- [DXXES] :: of/belonging/pertaining to chariots/chariot race; + curro_V = mkV "currere" "curro" "cucurri" "cursus "; -- [XXXAO] :: run/trot/gallop, hurry/hasten/speed, move/travel/proceed/flow swiftly/quickly; currulis_A = mkA "currulis" "currulis" "currule" ; -- [XXXEO] :: of/belonging/pertaining to chariots/chariot race; currus_M_N = mkN "currus" "currus " masculine ; -- [XXXBO] :: chariot, light horse vehicle; triumphal chariot; triumph; wheels on plow; cart; cursatio_F_N = mkN "cursatio" "cursationis " feminine ; -- [DXXFS] :: action of running; a running; @@ -14462,6 +15462,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg curvatio_F_N = mkN "curvatio" "curvationis " feminine ; -- [XSXEO] :: curvature; bend; curvatura_F_N = mkN "curvatura" ; -- [XSXCO] :: curve/bend, curved shape/outline/part; rounding (L+S); vault/arched ceiling; curvatus_A = mkA "curvatus" "curvata" "curvatum" ; -- [XSXDO] :: curved, bent; crooked; swelling; + curvesco_V = mkV "curvescere" "curvesco" nonExist nonExist; -- [DXXDS] :: be crooked/curved; make a curve; curvilineus_A = mkA "curvilineus" "curvilinea" "curvilineum" ; -- [GSXEZ] :: curvilinear; in a curved line; curvitas_F_N = mkN "curvitas" "curvitatis " feminine ; -- [DSXFS] :: crookedness; curvature; curvo_V2 = mkV2 (mkV "curvare") ; -- [XXXCO] :: bend/arch, make curved/bent; form a curve; make stoop/bow/yield; influence; @@ -14482,12 +15483,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg custodia_F_N = mkN "custodia" ; -- [XXXAO] :: |watch/guard/picket; guard post/house; prison; confinement; protective space; custodiarium_N_N = mkN "custodiarium" ; -- [DXXIS] :: watch/guard house; custodiarius_M_N = mkN "custodiarius" ; -- [XXXIO] :: jailer, warder; + custodio_V2 = mkV2 (mkV "custodire" "custodio" "custodivi" "custoditus ") ; -- [XXXAO] :: guard/protect/preserve, watch over, keep safe; take heed/care, observe; restrain custodiola_F_N = mkN "custodiola" ; -- [XXXIO] :: place of confinement; (tomb); custodite_Adv =mkAdv "custodite" "custoditius" "custoditissime" ; -- [XXXEO] :: cautiously, guardedly; carefully (L+S); custoditio_F_N = mkN "custoditio" "custoditionis " feminine ; -- [XXXFO] :: protection, guarding; guardianship (L+S); keeping, observance; custos_F_N = mkN "custos" "custodis " feminine ; -- [XXXAO] :: |jailer, warden; poll watcher; spy; garrison; container; replacement vine shoot; custos_M_N = mkN "custos" "custodis " masculine ; -- [XXXAO] :: |jailer, warden; poll watcher; spy; garrison; container; replacement vine shoot; --- IGNORED cusuc_N : N1 cusuc, undeclined -- N -- [XXXFO] :: shanty, small hut; + cusuc_N = constN "cusuc" neuter ; -- [XXXFO] :: shanty, small hut; cuticula_F_N = mkN "cuticula" ; -- [XBXFO] :: skin; cuticle; cutio_M_N = mkN "cutio" "cutionis " masculine ; -- [DAXFS] :: small insect; millipede; cutis_F_N = mkN "cutis" "cutis " feminine ; -- [XXXBO] :: skin; external appearance, surface; person, body; leather/hide; rind; membrane; @@ -14569,7 +15571,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cynanche_F_N = mkN "cynanche" "cynanches " feminine ; -- [DBXFS] :: inflammation of the throat (which caused the tongue to be thrust out); cynapanxis_F_N = mkN "cynapanxis" "cynapanxis " feminine ; -- [XAXNO] :: kind of rose; cynarium_N_N = mkN "cynarium" ; -- [XBXIO] :: remedy for eye trouble; --- TODO cynas_N : N1 cynas, cynados/is -- F -- [XAQNO] :: Arabian tree; + cynas_1_N = mkN "cynas" "cynadis" feminine ; -- [XAQNO] :: Arabian tree; + cynas_2_N = mkN "cynas" "cynados" feminine ; -- [XAQNO] :: Arabian tree; cynegiolum_N_N = mkN "cynegiolum" ; -- [XAXIO] :: group of hunters; cynice_Adv = mkAdv "cynice" ; -- [XXXFO] :: after the manner of the Cynics; cynicus_A = mkA "cynicus" "cynica" "cynicum" ; -- [XSXCO] :: of/pertaining to Cynic philosophy; [spasticus ~ => who has facial paralysis]; @@ -14640,8 +15643,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg cytisus_C_N = mkN "cytisus" ; -- [XAXCO] :: fodder plant, tree-medick Medicago arborea; wood of this; scrubby snail-clover; cytoplasma_N_N = mkN "cytoplasma" "cytoplasmatis " neuter ; -- [HTXEK] :: cytoplasm; cytropus_M_N = mkN "cytropus" "cytropodis " masculine ; -- [EXXFS] :: chafing dish/pot with feet (for cooking directly over coals on the ground); --- IGNORED d_A : A2 d., abb. -- [XLXIO] :: obliged; bound (to pay), condemned to pay; sentenced; (abb. d. in inscription); --- IGNORED d_N : N1 d., abb. -- C -- [XXXCS] :: diem, abb. d; in calendar expression a. d. = ante diem = before the day; + d_A = constA "d" ; -- [XLXIO] :: obliged; bound (to pay), condemned to pay; sentenced; (abb. d. in inscription); + d_F_N = constN "d." feminine ; -- [XXXCS] :: diem, abb. d; in calendar expression a. d. = ante diem = before the day; + d_M_N = constN "d." masculine ; -- [XXXCS] :: diem, abb. d; in calendar expression a. d. = ante diem = before the day; dablas_F_N = mkN "dablas" "dablae " feminine ; -- [XAQNO] :: kind of Arabian palm; (bears delicious fruit L+S); dacrima_F_N = mkN "dacrima" ; -- [AXXBS] :: |juice; exuded gum/sap from plant; quicksilver from ore; dirge; dactylicus_A = mkA "dactylicus" "dactylica" "dactylicum" ; -- [XPXEO] :: dactylic; of/characterized by dactyls (metric foot long-short-short); @@ -14660,7 +15664,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg daemonion_N_N = mkN "daemonion" "daemonii " neuter ; -- [CSXFO] :: spirit; Socrates' indwelling genius; familiar; little spirit (L+S); demon/devil; daemonium_N_N = mkN "daemonium" ; -- [CSXFO] :: spirit; Socrates' indwelling genius; familiar; little spirit (L+S); demon/devil; dagnades_F_N = mkN "dagnades" "dagnadis " feminine ; -- [XAEFS] :: kind of bird in Egypt; --- IGNORED daleth_N : N1 daleth, undeclined -- N -- [DEQEE] :: dalet/daleth; (4th letter of Hebrew alphabet); (transliterate as D); + daleth_N = constN "daleth" neuter ; -- [DEQEE] :: dalet/daleth; (4th letter of Hebrew alphabet); (transliterate as D); dalia_F_N = mkN "dalia" ; -- [GXXEK] :: dahlia; dalmatia_F_N = mkN "dalmatia" ; -- [XXKES] :: Dalmatia; dalmatica_F_N = mkN "dalmatica" ; -- [EEXFE] :: dalmitic, vestment of deacon; @@ -14672,51 +15676,52 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg damiurgus_M_N = mkN "damiurgus" ; -- [XLHEO] :: magistrate in various Greek states; play by Turpilus; damma_F_N = mkN "damma" ; -- [XAXCO] :: fallow/red-deer; small member of deer family; gazelle/antelope; doe; dammula_F_N = mkN "dammula" ; -- [XAXFO] :: little deer (as a small and harmless animal); little fallow deer (L+S); --- SLASHSTUFF damnabilis_A : A2 damnabilis, damnabile, damnabilior -or -us, damnabilissimus -a -um -- [DXXDS] :: damnable, worthy of condemnation/damnation; + damnabilis_A = mkA "damnabilis" ; -- [DXXDS] :: damnable, worthy of condemnation/damnation; damnabiliter_Adv = mkAdv "damnabiliter" ; -- [DXXFS] :: culpably; --- IGNORED damnas_A : A2 damnas, undeclined -- [XLXCO] :: obliged; bound (to pay), condemned to pay; sentenced; (abb. d. in inscription); + damnas_A = constA "damnas" ; -- [XLXCO] :: obliged; bound (to pay), condemned to pay; sentenced; (abb. d. in inscription); damnaticius_A = mkA "damnaticius" "damnaticia" "damnaticium" ; -- [DLXES] :: condemned; sentenced; damnatio_F_N = mkN "damnatio" "damnationis " feminine ; -- [EEXCE] :: |damnation; [~ memoriae => erasing all record/images of defeated rivals]; damnatitius_A = mkA "damnatitius" "damnatitia" "damnatitium" ; -- [DLXES] :: condemned; sentenced; damnator_M_N = mkN "damnator" "damnatoris " masculine ; -- [DXXDS] :: one who condemns; damnatorius_A = mkA "damnatorius" "damnatoria" "damnatorium" ; -- [XLXEO] :: condemnatory; that involves/indicates condemnation; --- SLASHSTUFF damnatus_A : A2 damnatus, damnata -um, damnatior -or -us, damnatissimus -a -um -- [XLXFO] :: condemned; found guilty; reprobate (L+S); criminal; hateful, wretched; damned; --- IGNORED damnaustra_N : N1 damnaustra, undeclined -- N -- [XEXFS] :: Damnaustra!; (word of charm to cure dislocated joint); + damnatus_A = mkA "damnatus" ; -- [XLXFO] :: condemned; found guilty; reprobate (L+S); criminal; hateful, wretched; damned; + damnaustra_N = constN "damnaustra" neuter ; -- [XEXFS] :: Damnaustra!; (word of charm to cure dislocated joint); damnifico_V2 = mkV2 (mkV "damnificare") ; -- [DEXES] :: injure; fine; damnificus_A = mkA "damnificus" "damnifica" "damnificum" ; -- [XXXEO] :: injurious, hurtful, pernicious; that causes loss; damnigerulus_A = mkA "damnigerulus" "damnigerula" "damnigerulum" ; -- [BXXFS] :: injurious, hurtful, pernicious; damno_V2 = mkV2 (mkV "damnare") ; -- [XXXAO] :: |discredit; seek/secure condemnation of; find fault; bind/oblige under a will; damnose_Adv = mkAdv "damnose" ; -- [XXXFO] :: ruinously, so as to cause loss; to the injury of (L+S); excessively; --- SLASHSTUFF damnosus_A : A2 damnosus, damnosa -um, damnosior -or -us, damnosissimus -a -um -- [XXXDX] :: harmful/detrimental/ruinous; prodigal/spendthrift; that causes financial loss; + damnosus_A = mkA "damnosus" ; -- [XXXDX] :: harmful/detrimental/ruinous; prodigal/spendthrift; that causes financial loss; damnula_F_N = mkN "damnula" ; -- [DAXFS] :: little deer (as a small and harmless animal); little fallow deer (L+S); damnum_N_N = mkN "damnum" ; -- [XXXAO] :: financial/property/physical loss/damage/injury; forfeiture/fine; lost possession dampnaticius_A = mkA "dampnaticius" "dampnaticia" "dampnaticium" ; -- [DLXES] :: condemned; sentenced; dampnatio_F_N = mkN "dampnatio" "dampnationis " feminine ; -- [XLXCO] :: condemnation (in a court of law); obligation under a will; adverse judgment; dampnatitius_A = mkA "dampnatitius" "dampnatitia" "dampnatitium" ; -- [DLXES] :: condemned; sentenced; --- SLASHSTUFF dampnatus_A : A2 dampnatus, dampnata -um, dampnatior -or -us, dampnatissimus -a -um -- [XLXFO] :: condemned; found guilty; reprobate (L+S); criminal; hateful, wretched; + dampnatus_A = mkA "dampnatus" ; -- [XLXFO] :: condemned; found guilty; reprobate (L+S); criminal; hateful, wretched; dampno_V2 = mkV2 (mkV "dampnare") ; -- [DXXDS] :: |discredit; seek/secure condemnation of; find fault; bind/oblige under a will; dampnum_N_N = mkN "dampnum" ; -- [XXXCO] :: financial/property/physical loss/damage/injury; forfeiture/fine; lost possession damula_F_N = mkN "damula" ; -- [FAXEE] :: doe; gazelle; danista_M_N = mkN "danista" ; -- [XXXEO] :: money-lender; usurer; danisticus_A = mkA "danisticus" "danistica" "danisticum" ; -- [XXXFO] :: of/pertaining to money-lenders or usury; money-lending, usurious (L+S); --- IGNORED dannaustra_N : N1 dannaustra, undeclined -- N -- [XEXFS] :: Damnaustra!; (word of charm to cure dislocated joint); + dannaustra_N = constN "dannaustra" neuter ; -- [XEXFS] :: Damnaustra!; (word of charm to cure dislocated joint); dapalis_A = mkA "dapalis" "dapalis" "dapale" ; -- [XEXEO] :: sacrificial; of/pertaining to a sacrificial feast; dapatice_Adv = mkAdv "dapatice" ; -- [BXXFS] :: splendidly, in fine/lordly manner/language; superbly; proudly/boastfully; --- SLASHSTUFF dapaticus_A : A2 dapaticus, dapatica -um, dapaticior -or -us, dapaticissimus -a -um -- [BXXFS] :: splendid/excellent; sumptuous/magnificent/stately; noble/eminent; proud/boastful + dapaticus_A = mkA "dapaticus" ; -- [BXXFS] :: splendid/excellent; sumptuous/magnificent/stately; noble/eminent; proud/boastful daphine_F_N = mkN "daphine" "daphines " feminine ; -- [XAXIS] :: laurel-tree; bay-tree; daughter of river-god Peneus changed into laurel-tree; daphne_F_N = mkN "daphne" "daphnes " feminine ; -- [XAXES] :: laurel-tree; bay-tree; daughter of river-god Peneus changed into laurel-tree; daphneas_F_N = mkN "daphneas" "daphneae " feminine ; -- [XXXNO] :: precious stone (unidentified); daphnias_F_N = mkN "daphnias" "daphniae " feminine ; -- [XXXNS] :: precious stone (unidentified); daphnitis_F_N = mkN "daphnitis" "daphnitidis " feminine ; -- [XAXFO] :: kind of casia/cinnamon resembling bay; daphnoides_A = mkA "daphnoides" "daphnoides" "daphnoides" ; -- [XAXNO] :: epithet of spurge laurel Daphne laureola; kind of clematis (or cassia L+S); --- TODO daphnon_N : N1 daphnon, daphnonos/is -- M -- [XAXEO] :: grove of laurels; + daphnon_1_N = mkN "daphnon" "daphnonis" masculine ; -- [XAXEO] :: grove of laurels; + daphnon_2_N = mkN "daphnon" "daphnonos" masculine ; -- [XAXEO] :: grove of laurels; dapifer_M_N = mkN "dapifer" ; -- [XXXIS] :: servant who waited at tables; dapifex_M_N = mkN "dapifex" "dapificis " masculine ; -- [XXXIS] :: servant who prepared food; dapino_V2 = mkV2 (mkV "dapinare") ; -- [XXXFO] :: provide for; meet the cost of; serve up (as food) (L+S); dapis_F_N = mkN "dapis" "dapis " feminine ; -- [DXXES] :: sacrificial feast/meal; feast, banquet; food composing it; food/meal of animals; daps_F_N = mkN "daps" "dapis " feminine ; -- [XXXBO] :: sacrificial feast/meal; feast, banquet; food composing it; food/meal of animals; dapsile_Adv =mkAdv "dapsile" "dapsilius" "dapsilissime" ; -- [XXXEO] :: plentifully, copiously, abundantly; sumptuously, bountifully (L+S); --- SLASHSTUFF dapsilis_A : A2 dapsilis, dapsile, dapsilior -or -us, dapsilissimus -a -um -- [XXXCO] :: sumptuous, plentiful, abundant; richly provided with everything (L+S); + dapsilis_A = mkA "dapsilis" ; -- [XXXCO] :: sumptuous, plentiful, abundant; richly provided with everything (L+S); dapsiliter_Adv = mkAdv "dapsiliter" ; -- [XXXFO] :: plentifully, copiously, abundantly; sumptuously, bountifully (L+S); dardanarius_M_N = mkN "dardanarius" ; -- [XXXEO] :: speculator; (in grain); forestaller (buys up goods before they reach market); dartos_A = mkA "dartos" "dartos" "darton" ; -- [XBXFO] :: name of membrane enclosing the testicles; @@ -14737,13 +15742,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg daucos_F_N = mkN "daucos" "dauci " feminine ; -- [XAXEO] :: name of various plants; (prob. Athamanta cretensis); like parsnip/carrot (L+S); daucum_N_N = mkN "daucum" ; -- [XAXEO] :: name of various plants; (prob. Athamanta cretensis); like parsnip/carrot (L+S); dautium_N_N = mkN "dautium" ; -- [ALXEO] :: entertainment provided for foreign guests of the state of Rome; state banquet; - de_Abl_Prep = mkPrep "de" Abl ; -- [XXXAO] :: down/away from, from, off; about, of, concerning; according to; with regard to; + de_Abl_Prep = mkPrep "de" abl ; -- [XXXAO] :: down/away from, from, off; about, of, concerning; according to; with regard to; dea_F_N = mkN "dea" ; -- [XEXCO] :: goddess; deacinatus_A = mkA "deacinatus" "deacinata" "deacinatum" ; -- [BAXFS] :: cleared from the grapes; (skins OLD); deacino_V2 = mkV2 (mkV "deacinare") ; -- [XXXFO] :: cleanse of grape-skins/etc.; deaconus_M_N = mkN "deaconus" ; -- [FEXDM] :: deacon; cleric of minor orders (first/highest level); deactio_F_N = mkN "deactio" "deactionis " feminine ; -- [XXXFO] :: conclusion?; finishing (L+S); deaduoco_V = mkV "deaduocare" ; -- [FLXFJ] :: dis-avow; + deago_V2 = mkV2 (mkV "deagere" "deago" "deegi" "deactus ") ; -- [XXXFO] :: remove, take off; dealbamentum_N_N = mkN "dealbamentum" ; -- [XXXIO] :: whitewash; dealbatio_F_N = mkN "dealbatio" "dealbationis " feminine ; -- [DXXFS] :: whitewashing; dealbator_M_N = mkN "dealbator" "dealbatoris " masculine ; -- [XXXIO] :: whitewasher; plasterer (L+S); pargeter; one who whitens over; @@ -14765,11 +15771,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg deauro_V = mkV "deaurare" ; -- [XXXCS] :: gild, gild over; (cover with gold leaf or plate); debacchatio_F_N = mkN "debacchatio" "debacchationis " feminine ; -- [DXXFS] :: fury; passionate raving; debacchor_V = mkV "debacchari" ; -- [XXXEO] :: rage; rave; (like Bacchantes); revel wildly (L+S); rage without control; + debattuo_V2 = mkV2 (mkV "debattuere" "debattuo" nonExist nonExist) ; -- [XXXFO] :: belabor/batter/beat, thump hard; bang; (of sexual intercourse, usu. adulterous); + debatuo_V2 = mkV2 (mkV "debatuere" "debatuo" nonExist nonExist) ; -- [XXXFS] :: belabor/batter/beat, thump hard; bang; (of sexual intercourse, usu. adulterous); debellator_M_N = mkN "debellator" "debellatoris " masculine ; -- [XWXEO] :: conqueror; subduer; debellatrix_F_N = mkN "debellatrix" "debellatricis " feminine ; -- [DXXES] :: conqueress; she who conquers; debello_V = mkV "debellare" ; -- [XWXCO] :: fight out/to a finish; bring a battle/war to an end; vanquish, subdue; debeo_V = mkV "debere" ; -- [XXXAO] :: owe; be indebted/responsible for/obliged/bound/destined; ought, must, should; --- SLASHSTUFF debilis_A : A2 debilis, debile, debilior -or -us, debilissimus -a -um -- [XXXBO] :: weak/feeble/frail; crippled/disabled; wanting/deprived (competence); ineffective + debibo_V2 = mkV2 (mkV "debibere" "debibo" "debibi" nonExist) ; -- [DXXFS] :: drink of; + debilis_A = mkA "debilis" ; -- [XXXBO] :: weak/feeble/frail; crippled/disabled; wanting/deprived (competence); ineffective debilitas_F_N = mkN "debilitas" "debilitatis " feminine ; -- [XXXCO] :: weakness, infirmity, debility, lameness; feebleness (intellectual/moral); debilitatio_F_N = mkN "debilitatio" "debilitationis " feminine ; -- [XXXEO] :: mutilation; act/process of disabling/maiming/laming; enfeeblement (of the mind); debiliter_Adv = mkAdv "debiliter" ; -- [XXXFO] :: impotently; with weakness, feebly; lamely, infirmly (L+S); @@ -14794,9 +15803,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg decalautico_V2 = mkV2 (mkV "decalauticare") ; -- [XXXFO] :: remove/relieve/deprive of a calautica (shoulder-length woman's headdress/hood); decalcificatio_F_N = mkN "decalcificatio" "decalcificationis " feminine ; -- [GXXEK] :: decalcification; decalco_V2 = mkV2 (mkV "decalcare") ; -- [DXXFS] :: plaster with lime; coat thoroughly with whitewash; + decalesco_V = mkV "decalescere" "decalesco" nonExist nonExist; -- [DXXFS] :: become warm; decalicator_M_N = mkN "decalicator" "decalicatoris " masculine ; -- [XXXFS] :: hard drinker; (who is plastered/stiff?); decalicatum_N_N = mkN "decalicatum" ; -- [XXXFO] :: thing plastered/coated thoroughly with whitewash/lime; decalicatus_A = mkA "decalicatus" "decalicata" "decalicatum" ; -- [XXXFO] :: coated thoroughly with whitewash; plastered with lime; + decalifacio_V2 = mkV2 (mkV "decalifacere" "decalifacio" "decalifeci" "decalifactus ") ; -- [DXXFS] :: warm thoroughly; warm through-and-through; decalifio_V = mkV "decaliferi" ; -- [DXXFS] :: be/become warmed thoroughly/through-and-through; (decalifacio PASS); decalvatio_F_N = mkN "decalvatio" "decalvationis " feminine ; -- [DXXFS] :: making bald; shaving/cutting/removing the hair; decalvatus_A = mkA "decalvatus" "decalvata" "decalvatum" ; -- [DXXFS] :: shorn; (of hair); (Sampson); @@ -14805,6 +15816,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg decanatus_M_N = mkN "decanatus" "decanatus " masculine ; -- [GEXEK] :: function of dean; decanicum_N_N = mkN "decanicum" ; -- [DEXFS] :: building belonging to the church; decanium_N_N = mkN "decanium" ; -- [XSXFS] :: divisions/thirds (pl.) of the Zodiac; (for astrology); + decano_V2 = mkV2 (mkV "decanere" "decano" "dececini" "decantus ") ; -- [DEXFS] :: celebrate by singing; decantatio_F_N = mkN "decantatio" "decantationis " feminine ; -- [DXXFS] :: talkativeness; decanto_V = mkV "decantare" ; -- [GXXEK] :: decant; decanto_V2 = mkV2 (mkV "decantare") ; -- [XXXBO] :: chant, recite singing; reel off, repeat often/harp on; prattle; bewitch/enchant; @@ -14816,10 +15828,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg decargyrum_N_N = mkN "decargyrum" ; -- [DLHFS] :: large silver coin; decarmino_V2 = mkV2 (mkV "decarminare") ; -- [DPXFS] :: make prose of verse; disarrange the order of words (in a verse); decarno_V2 = mkV2 (mkV "decarnare") ; -- [DXXDS] :: take off the flesh; + decarpo_V2 = mkV2 (mkV "decarpere" "decarpo" "decarpsi" "decarptus ") ; -- [XXXEO] :: pluck, pull/tear/snip off, pick; cull; reap/procure/gather; catch/snatch; remove decas_F_N = mkN "decas" "decadis " feminine ; -- [DSXES] :: decade; decastylos_A = mkA "decastylos" "decastylos" "decastylon" ; -- [XTXFO] :: decastyle, having ten columns; decatressis_M_N = mkN "decatressis" "decatressis " masculine ; -- [XXXIO] :: members (pl.) of collegium at Puteoli which held reunions on 13th of the month; + decaulesco_V = mkV "decaulescere" "decaulesco" nonExist nonExist; -- [XAXNO] :: form a stem; run to stalk; dececro_V2 = mkV2 (mkV "dececrare") ; -- [XXXEO] :: consecrate, dedicate; assign/devote (to purpose/function); deify (person) (L+S); + decedo_V = mkV "decedere" "decedo" "decessi" "decessus "; -- [XXXAO] :: |stray/digress; pass away/depart life, die; subside/cease (feelings); disappear; + decello_V2 = mkV2 (mkV "decellere" "decello" nonExist nonExist) ; -- [DXXES] :: deviate, turn aside; decemjugis_A = mkA "decemjugis" "decemjugis" "decemjuge" ; -- [XAXEO] :: ten-horse (chariot/wagon); ten-yoked; equipped for yoking ten draught animals; decemmestris_A = mkA "decemmestris" "decemmestris" "decemmestre" ; -- [DXXFS] :: of ten months; decemmodia_F_N = mkN "decemmodia" ; -- [XSXFO] :: basket holding ten modii; (total 2.5 bushels); @@ -14857,6 +15873,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg deceris_A = mkA "deceris" "deceris" "decere" ; -- [XWXFO] :: having ten banks of oars or with oars/rowers grouped in tens in some way; deceris_F_N = mkN "deceris" "deceris " feminine ; -- [XWXES] :: ship having ten banks of oars or with oars/rowers grouped in tens in some way; decerminum_N_N = mkN "decerminum" ; -- [XAXEO] :: trimmings (pl.), prunings; leaves and boughs plucked off (L+S); beggars, refuse; + decerno_V2 = mkV2 (mkV "decernere" "decerno" "decrevi" "decretus ") ; -- [XXXAO] :: decide/settle/determine/resolve; decree/declare/ordain; judge; vote for/contend; + decerpo_V2 = mkV2 (mkV "decerpere" "decerpo" "decerpsi" "decerptus ") ; -- [XXXBO] :: pluck, pull/tear/snip off, pick; cull; reap/procure/gather; catch/snatch; remove decerptor_M_N = mkN "decerptor" "decerptoris " masculine ; -- [XXXFS] :: one who plucks/excerpts/extracts/quotes; decertatio_F_N = mkN "decertatio" "decertationis " feminine ; -- [XXXFO] :: action of fighting out an issue; decision of a dispute (L+S); decisive conflict; decertator_M_N = mkN "decertator" "decertatoris " masculine ; -- [DXXFS] :: champion; he who goes through a decisive contest; @@ -14870,6 +15888,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg decharmido_V2 = mkV2 (mkV "decharmidare") ; -- [BDXFS] :: de-Charmidize, destroy identity as Charmides (character in Plautus' Trinummus); decidens_A = mkA "decidens" "decidentis"; -- [XXXBE] :: fading; falling; decidiculum_N_N = mkN "decidiculum" ; -- [HTXEK] :: parachute; + decido_V = mkV "decidere" "decido" "decidi" nonExist; -- [XXXBO] :: fall/drop/hang/flow down/off/over; sink/drop; fail, fall in ruin; end up; die; + decido_V2 = mkV2 (mkV "decidere" "decido" "decidi" "decisus ") ; -- [XXXBO] :: |make explicit; put an end to, bring to conclusion, settle/decide/agree (on); deciduus_A = mkA "deciduus" "decidua" "deciduum" ; -- [XXXCO] :: falling (down/off); hanging down; tending to be dropped, cast; deciduous (L+S); decima_F_N = mkN "decima" ; -- [XLXDO] :: tithe; tenth part; (offering/tax/largesse); tax/right to collect 10%; 10th hour; decimalis_A = mkA "decimalis" "decimalis" "decimale" ; -- [GXXEK] :: decimal; @@ -14883,6 +15903,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg decimo_V2 = mkV2 (mkV "decimare") ; -- [XWXDO] :: choose by lot every tenth man (for punishment); make tithe offering (to a god); decimum_Adv = mkAdv "decimum" ; -- [XXXEO] :: for the tenth time; decineratus_A = mkA "decineratus" "decinerata" "decineratum" ; -- [DXXFS] :: wholly/completely reduced/turned to ashes; + decineresco_V = mkV "decinerescere" "decineresco" nonExist nonExist; -- [DXXFS] :: be wholly/completely reduced to ashes; + decipio_V2 = mkV2 (mkV "decipere" "decipio" "decepi" "deceptus ") ; -- [XXXBO] :: cheat/deceive/mislead/dupe/trap; elude/escape notice; disappoint/frustrate/foil; decipula_F_N = mkN "decipula" ; -- [DXXDO] :: trap, snare; device serving to deceive; decipulum_N_N = mkN "decipulum" ; -- [XXXDO] :: trap, snare; device serving to deceive; decircino_V2 = mkV2 (mkV "decircinare") ; -- [XXXEO] :: round off, make rounded/circular; @@ -14913,11 +15935,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg declivis_A = mkA "declivis" "declivis" "declive" ; -- [XXXCO] :: sloping, descending, sloping downwards; shelving; tending down; falling (stars); declivitas_F_N = mkN "declivitas" "declivitatis " feminine ; -- [XXXFO] :: declivity, slope, descent; tendency to slope down; falling gradient; decliviter_Adv =mkAdv "decliviter" "declivius" "declivissime" ; -- [DXXFS] :: in a sloping manner; + decludo_V2 = mkV2 (mkV "decludere" "decludo" "declusi" "declusus ") ; -- [XXXFO] :: unclose; + decoco_V2 = mkV2 (mkV "decocere" "decoco" "decoxi" "decoctus ") ; -- [XXXBO] :: |ruin; (cause to) waste away; shrivel; squander; suffer loss, become bankrupt; decocta_F_N = mkN "decocta" ; -- [XXXEO] :: drink made by raising water to boiling then plunging into snow to cool; decoctio_F_N = mkN "decoctio" "decoctionis " feminine ; -- [DXXCS] :: decoction; boiling down; mixture; decoctor_M_N = mkN "decoctor" "decoctoris " masculine ; -- [XLXDO] :: insolvent person, defaulting debtor; ruined spendthrift (L+S); decoctum_N_N = mkN "decoctum" ; -- [XBXNO] :: decoction, potion made by boiling; (usu. medicine); medicinal drink (L+S); --- SLASHSTUFF decoctus_A : A2 decoctus, decocta -um, decoctior -or -us, decoctissimus -a -um -- [XXXEO] :: over-ripe (fruit); luscious (literary/rhetoric style); mature/ripe (good sense); + decoctus_A = mkA "decoctus" ; -- [XXXEO] :: over-ripe (fruit); luscious (literary/rhetoric style); mature/ripe (good sense); decoctus_M_N = mkN "decoctus" "decoctus " masculine ; -- [XXXNO] :: process of boiling (in); seething (L+S); decollatio_F_N = mkN "decollatio" "decollationis " feminine ; -- [DXXFS] :: beheading, decapitation, decollation; decollo_V = mkV "decollare" ; -- [XXXEO] :: trickle/drain away/from/through; drain (of); come to naught, fail (L+S); @@ -14930,8 +15954,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg decompositus_A = mkA "decompositus" "decomposita" "decompositum" ; -- [DGXFS] :: formed/derived from a compound word; deconcilio_V2 = mkV2 (mkV "deconciliare") ; -- [XXXFO] :: extricate from trouble; deprive of, take away (L+S); deconctor_V = mkV "deconctari" ; -- [XXXEO] :: hesitate, delay (over), take one's time; + decondo_V2 = mkV2 (mkV "decondere" "decondo" "decondidi" "deconditus ") ; -- [XXXFO] :: stow away; hide deep down; secrete (by burying) (L+S); decontor_V = mkV "decontari" ; -- [DXXFS] :: hesitate; be at a loss; decontra_Adv = mkAdv "decontra" ; -- [XXXFO] :: facing; from a position opposite; + decoquo_V2 = mkV2 (mkV "decoquere" "decoquo" "decoxi" "decoctus ") ; -- [XXXBO] :: |ruin; (cause to) waste away; shrivel; squander; suffer loss, become bankrupt; decor_A = mkA "decor" "decoris"; -- [XXXEO] :: beautiful; pleasing to the senses; decor_M_N = mkN "decor" "decoris " masculine ; -- [XXXBO] :: beauty/good looks, decent appearance; ornament; grace/elegance/charm; propriety; decoramen_N_N = mkN "decoramen" "decoraminis " neuter ; -- [XXXFO] :: adornment; ornament, decoration (L+S); @@ -14945,12 +15971,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg decorticatio_F_N = mkN "decorticatio" "decorticationis " feminine ; -- [XXXNO] :: act/process of stripping off bark; peeling (L+S); decortico_V2 = mkV2 (mkV "decorticare") ; -- [XAXNO] :: strip away the bark/rind; peel; scrape off (outer skin); decorum_N_N = mkN "decorum" ; -- [XXXCS] :: decorum, that which is suitable/seemly, propriety; --- SLASHSTUFF decorus_A : A2 decorus, decora -um, decorior -or -us, decorissimus -a -um -- [XXXBO] :: |honorable, noble; glorious, decorated; decorous, proper, decent, fitting; + decorus_A = mkA "decorus" ; -- [XXXBO] :: |honorable, noble; glorious, decorated; decorous, proper, decent, fitting; decotes_F_N = mkN "decotes" "decotis " feminine ; -- [XXXFO] :: worn/threadbare toga; decrementum_N_N = mkN "decrementum" ; -- [XXXFO] :: shrinkage; diminution; decrease; decremo_V2 = mkV2 (mkV "decremare") ; -- [DXXFS] :: burn up; consume by fire; decrepitus_A = mkA "decrepitus" "decrepita" "decrepitum" ; -- [XXXCO] :: worn out (with age), feeble, decrepit; infirm; very old (L+S); (noiseless); decrescentia_F_N = mkN "decrescentia" ; -- [XXXFO] :: decrease; waning (L+S); + decresco_V2 = mkV2 (mkV "decrescere" "decresco" "decrevi" "decretus ") ; -- [XXXBO] :: |lose vigor/intensity, decline/weaken/fade influence/reputation; grow shorter; decretale_N_N = mkN "decretale" "decretalis " neuter ; -- [FEXFE] :: decretals (pl.); (letter w/papal ruling/decision/response); decretalis_A = mkA "decretalis" "decretalis" "decretale" ; -- [XLXFO] :: of decree; depending for validity on ruling of magistrate/judge's decision; decretalista_M_N = mkN "decretalista" ; -- [FEXFE] :: decretalist, scholar of decretals (letter w/papal ruling/decision/response); @@ -14970,6 +15997,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg decumanus_A = mkA "decumanus" "decumana" "decumanum" ; -- [XWXCO] :: of the tenth (legion); huge/outsize; of tithe; [w/porta => rear gate of camp]; decumanus_M_N = mkN "decumanus" ; -- [XWICO] :: man of tenth legion; tax-farmer/who buys right to tithe; line bounding 10 actus; decumas_A = mkA "decumas" "decumatis"; -- [XAFFO] :: land divided into groups (pl.) of ten districts or the like; relating to tithes; + decumbo_V = mkV "decumbere" "decumbo" "decumbui" nonExist; -- [XXXCO] :: to lie down, recline; take to bed; lie ill, die; fall (in a fight), fall down; decumo_V2 = mkV2 (mkV "decumare") ; -- [XWXDO] :: choose by lot every tenth man (for punishment); make tithe offering (to a god); decuncis_M_N = mkN "decuncis" "decuncis " masculine ; -- [XSXFS] :: measure/weight of ten unciae (ten ounces); (ten-twelfths of a unit); decunctor_V = mkV "decunctari" ; -- [XXXEO] :: hesitate, delay (over), take one's time; @@ -14989,6 +16017,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg decurionatus_A = mkA "decurionatus" "decurionata" "decurionatum" ; -- [EXXES] :: of a decurion; decurionus_M_N = mkN "decurionus" ; -- [XXXES] :: |member of municipal senate/governing committee of decuria; councillor; decuris_M_N = mkN "decuris" "decuris " masculine ; -- [XXXFO] :: member of municipal senate/governing committee of decuria; councillor; + decurro_V2 = mkV2 (mkV "decurrere" "decurro" "decurri" "decursus ") ; -- [XWXAO] :: |run a race (over course); make for; turn (to); exercise/drill/maneuver (army); decursio_F_N = mkN "decursio" "decursionis " feminine ; -- [XWXCO] :: attack from high ground, decent; raid, inroad; military pageant; flowing down; decursus_M_N = mkN "decursus" "decursus " masculine ; -- [XXXBO] :: |running race/course; finish; flow (verse); coming to land; watercourse/channel; decurtatio_F_N = mkN "decurtatio" "decurtationis " feminine ; -- [DBXFS] :: mutilation; @@ -15005,6 +16034,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg decussis_M_N = mkN "decussis" "decussis " masculine ; -- [XLXCO] :: coin (10 asses); number ten; decade; intersection/cross of two lines, X-mark; decussissexis_M_N = mkN "decussissexis" "decussissexis " masculine ; -- [XXXFS] :: number sixteen; decusso_V2 = mkV2 (mkV "decussare") ; -- [XXXDO] :: arrange crosswise; mark with a cross; divide crosswise (in form of X) (L+S); + decutio_V2 = mkV2 (mkV "decutire" "decutio" nonExist nonExist) ; -- [DXXFS] :: flay, skin; deprive of skin; dedecens_A = mkA "dedecens" "dedecentis"; -- [XXXEE] :: unbecoming; unsuitable; dedecor_A = mkA "dedecor" "dedecoris"; -- [XXXEO] :: dishonorable, shameful; unseemly, unbecoming (L+S); dedecoramentum_N_N = mkN "dedecoramentum" ; -- [XXXFO] :: source of disgrace; disgrace, dishonor (L+S); @@ -15012,55 +16042,60 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dedecorator_M_N = mkN "dedecorator" "dedecoratoris " masculine ; -- [DXXFS] :: reviler; blasphemer; one who dishonors; dedecoro_V2 = mkV2 (mkV "dedecorare") ; -- [XXXCO] :: disgrace, dishonor; bring discredit/shame on; disfigure; dedecorose_Adv = mkAdv "dedecorose" ; -- [DXXFS] :: disgracefully; shamefully, dishonorably; --- SLASHSTUFF dedecorosus_A : A2 dedecorosus, dedecorosa -um, dedecorosior -or -us, dedecorosissimus -a -um -- [XXXES] :: dishonorable, disgraceful, discreditable; + dedecorosus_A = mkA "dedecorosus" ; -- [XXXES] :: dishonorable, disgraceful, discreditable; dedecorus_A = mkA "dedecorus" "dedecora" "dedecorum" ; -- [XXXEO] :: dishonorable/disgraceful/discreditable/shameful; dishonoring; causing disgrace; + dedect_V0 = mkV0 "dedect"; -- [XXXCO] :: be unsuitable/unbecoming to; bring disgrace/dishonor upon; (also TRANS); dedecus_N_N = mkN "dedecus" "dedecoris " neuter ; -- [XXXBO] :: |shameful/repulsive appearance; blot, blemish (L+S); vicious act, shameful deed; dedicatio_F_N = mkN "dedicatio" "dedicationis " feminine ; -- [XXXCO] :: dedication, consecration, ceremonial opening; act/rite conferring sanctity; dedicative_Adv = mkAdv "dedicative" ; -- [DSXFS] :: affirmatively; dedicativus_A = mkA "dedicativus" "dedicativa" "dedicativum" ; -- [DSXES] :: affirmative; dedicator_M_N = mkN "dedicator" "dedicatoris " masculine ; -- [XXXIO] :: dedicator, one who dedicates; founder, author (L+S); dedicatorius_A = mkA "dedicatorius" "dedicatoria" "dedicatorium" ; -- [GXXEK] :: dedicatory; --- SLASHSTUFF dedicatus_A : A2 dedicatus, dedicata -um, dedicatior -or -us, dedicatissimus -a -um -- [XXXEO] :: devoted; dedicated; - dedico_V2 = mkV2 (mkV "dedicare") ; -- [XXXBO] :: declare/proclaim; census return; dedicate/consecrate; devote/apply/commit (to); + dedicatus_A = mkA "dedicatus" ; -- [XXXEO] :: devoted; dedicated; + dedico_V2 = mkV2 (mkV "dedicere" "dedico" "dedixi" "dedictus ") ; -- [FXXEM] :: deny, refuse; contradict; dedignatio_F_N = mkN "dedignatio" "dedignationis " feminine ; -- [XXXEO] :: contempt; feeling of disdain; disdaining, refusal (L+S); dedigno_V2 = mkV2 (mkV "dedignare") ; -- [DXXFS] :: disdain; refuse (scornfully), reject with scorn, spurn; feel contempt for; dedignor_V = mkV "dedignari" ; -- [XXXCO] :: disdain; refuse (scornfully), reject with scorn, spurn; feel contempt for; dediscalus_M_N = mkN "dediscalus" ; -- [FGXFM] :: teacher; + dedisco_V2 = mkV2 (mkV "dediscere" "dedisco" "dedidici" nonExist) ; -- [XXXCO] :: unlearn, forget, put out of one's mind; lose the habit of, forget (how to); dediticius_A = mkA "dediticius" "dediticia" "dediticium" ; -- [XWXCO] :: surrendered; having surrendered; (later civil status); of surrender/capitulation dediticius_M_N = mkN "dediticius" ; -- [XXXDX] :: prisoners of war, captives (the surrendered); deditio_F_N = mkN "deditio" "deditionis " feminine ; -- [XWXCO] :: surrender (of combatants/town/possessions); cession of right/title; dedititius_A = mkA "dedititius" "dedititia" "dedititium" ; -- [DWXCS] :: surrendered; having surrendered; (later civil status); of surrender/capitulation dedititius_M_N = mkN "dedititius" ; -- [DXXCS] :: prisoners of war, captives (the surrendered); --- SLASHSTUFF deditus_A : A2 deditus, dedita -um, deditior -or -us, deditissimus -a -um -- [XXXCO] :: devoted/attached to, fond of; devoted/directed/given over (to) (activity); + deditus_A = mkA "deditus" ; -- [XXXCO] :: devoted/attached to, fond of; devoted/directed/given over (to) (activity); + dedo_V2 = mkV2 (mkV "dedere" "dedo" "dedidi" "deditus ") ; -- [XXXBO] :: give up/in, surrender; abandon/consign/devote (to); yield, hand/deliver over; dedoceo_V2 = mkV2 (mkV "dedocere") ; -- [XXXCO] :: cause (person) to unlearn/discard previous teaching; reeducate; teach opposite; dedolentia_F_N = mkN "dedolentia" ; -- [XXXFS] :: abandonment of grief, ceasing to lament; dedoleo_V = mkV "dedolere" ; -- [XXXFO] :: cease to grieve; put an end to one's sorrows; dedolo_V2 = mkV2 (mkV "dedolare") ; -- [XXXCO] :: cut down; hew smooth/away/to shape; beat/cudgel badly; (of sexual intercourse); dedomo_V2 = mkV2 (mkV "dedomare") ; -- [DXXFS] :: tame; (of horses); deducibilis_A = mkA "deducibilis" "deducibilis" "deducibile" ; -- [GXXEK] :: deductible; + deduco_V2 = mkV2 (mkV "deducere" "deduco" "deduxi" "deductus ") ; -- [XXXAO] :: |launch/bring downstream (ship); remove (force); entice; found/settle (colony); deducticius_A = mkA "deducticius" "deducticia" "deducticium" ; -- [XXXIO] :: colonial, having the status of a settler in a colony; deductio_F_N = mkN "deductio" "deductionis " feminine ; -- [XXXCO] :: |colonizing/settling; billeting (army); escorting; transportation, delivery; deductivus_A = mkA "deductivus" "deductiva" "deductivum" ; -- [DXXFS] :: derivative; deductor_M_N = mkN "deductor" "deductoris " masculine ; -- [XXXEO] :: escort, one who acts as an escort; guide, teacher (late Latin L+S); attendant; deductorium_N_N = mkN "deductorium" ; -- [DXXFS] :: drain; deductorius_A = mkA "deductorius" "deductoria" "deductorium" ; -- [DXXES] :: of/for drawing/draining off; purgative; laxative/aperient; --- SLASHSTUFF deductus_A : A2 deductus, deducta -um, deductior -or -us, deductissimus -a -um -- [XXXDO] :: drawn down; bent in; attenuated/slender, weak, soft (voice); fine-spun (style); + deductus_A = mkA "deductus" ; -- [XXXDO] :: drawn down; bent in; attenuated/slender, weak, soft (voice); fine-spun (style); deductus_M_N = mkN "deductus" "deductus " masculine ; -- [XXXFO] :: downward pull; drawing/dragging down (L+S); dedux_A = mkA "dedux" "deducis"; -- [DXXES] :: derived; descended; deebriatus_A = mkA "deebriatus" "deebriata" "deebriatum" ; -- [DXXES] :: inebriated, drunk; made drunk; deerro_V = mkV "deerrare" ; -- [XXXCO] :: go astray, wander off; miss, stray from target/goal; err/make a mistake/go wrong defaecabilis_A = mkA "defaecabilis" "defaecabilis" "defaecabile" ; -- [DXXFS] :: that may be easily cleaned; defaecatio_F_N = mkN "defaecatio" "defaecationis " feminine ; -- [DXXFS] :: cleansing, purifying; --- SLASHSTUFF defaecatus_A : A2 defaecatus, defaecata -um, defaecatior -or -us, defaecatissimus -a -um -- [DXXFS] :: refined; + defaecatus_A = mkA "defaecatus" ; -- [DXXFS] :: refined; defaeco_V2 = mkV2 (mkV "defaecare") ; -- [XSXCO] :: strain/clear; cleanse, remove dregs/impurities from; defecate (L+S); set at ease defaenero_V2 = mkV2 (mkV "defaenerare") ; -- [XXXEO] :: exhaust, bring ruin; (by the extortion of usury); defalta_F_N = mkN "defalta" ; -- [FLXFJ] :: default; --- SLASHSTUFF defamatus_A : A2 defamatus, defamata -um, defamatior -or -us, defamatissimus -a -um -- [XXXFO] :: infamous, having a bad reputation; + defamatus_A = mkA "defamatus" ; -- [XXXFO] :: infamous, having a bad reputation; defamis_A = mkA "defamis" "defamis" "defame" ; -- [XXXFO] :: disgraceful, shameful; defanatus_A = mkA "defanatus" "defanata" "defanatum" ; -- [DEXES] :: profaned, desecrated, unholy; defarinatus_A = mkA "defarinatus" "defarinata" "defarinatum" ; -- [DAXFS] :: pulverized, reduced to flour; defatigatio_F_N = mkN "defatigatio" "defatigationis " feminine ; -- [XXXCO] :: weariness, fatigue; physical/mental exhaustion; state of being worn out; defatigo_V2 = mkV2 (mkV "defatigare") ; -- [XXXCO] :: tire (out), exhaust; break force of; (PASS) lose heart, weary, be discouraged; + defatiscor_V = mkV "defatisci" "defatiscor" "defassus sum " ; -- [XXXEO] :: become exhausted/suffer exhaustion, grow weary/faint/weak, flag; lose heart; defecabilis_A = mkA "defecabilis" "defecabilis" "defecabile" ; -- [DXXFS] :: that may be easily cleaned; defecatio_F_N = mkN "defecatio" "defecationis " feminine ; -- [DXXFS] :: cleansing, purifying; defeco_V2 = mkV2 (mkV "defecare") ; -- [XSXFS] :: strain/clear; cleanse, remove dregs/impurities; defecate (L+S); set at ease; @@ -15070,9 +16105,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg defectivus_A = mkA "defectivus" "defectiva" "defectivum" ; -- [DXXDS] :: defective/imperfect; intermittent (fever); defective/lacking forms (grammar); defector_M_N = mkN "defector" "defectoris " masculine ; -- [XXXEO] :: rebel, renegade; one who revolts (from); defectrix_A = mkA "defectrix" "defectricis"; -- [DXXFS] :: defective, imperfect; (feminine); --- SLASHSTUFF defectus_A : A2 defectus, defecta -um, defectior -or -us, defectissimus -a -um -- [XXXCO] :: tired, enfeebled, worn out; faulty, defective; reduced in size, smaller; + defectus_A = mkA "defectus" ; -- [XXXCO] :: tired, enfeebled, worn out; faulty, defective; reduced in size, smaller; defectus_M_N = mkN "defectus" "defectus " masculine ; -- [XXXBO] :: |diminution, growing less, becoming ineffective, cessation; eclipse; fading; defendito_V2 = mkV2 (mkV "defenditare") ; -- [XXXEO] :: make practice of defending (legal cases); defend often/habitually (contentions); + defendo_V2 = mkV2 (mkV "defendere" "defendo" "defendi" "defensus ") ; -- [XXXAO] :: |repel, fend/ward off, avert/prevent; support/preserve/maintain; defend (right); defeneratus_A = mkA "defeneratus" "defenerata" "defeneratum" ; -- [DLXES] :: overwhelmed by debt; exhausted by usury; defenero_V2 = mkV2 (mkV "defenerare") ; -- [XXXEO] :: exhaust, bring ruin; (by extortion of usury); involve in debt; defensa_F_N = mkN "defensa" ; -- [DXXFS] :: defense; @@ -15088,17 +16124,26 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg defenstrix_F_N = mkN "defenstrix" "defenstricis " feminine ; -- [XXXFO] :: defender/protector (female); supporter/apologist; defendant; defense advocate; defensum_N_N = mkN "defensum" ; -- [FXBEM] :: defense; enclosure; defero_V = mkV "deferre" "defero" "detuli" "delatus " ; -- Comment: [FXXFY] :: ||||honor; export (medieval usage); + defervefacio_V2 = mkV2 (mkV "defervefacere" "defervefacio" "defervefeci" "defervefactus ") ; -- [XXXDO] :: boil thoroughly (liquids/solids); seethe, cause to boil (L+S); defervefactus_A = mkA "defervefactus" "defervefacta" "defervefactum" ; -- [DXXFS] :: heated; defervefio_V = mkV "deferveferi" ; -- [XXXDO] :: be boiled thoroughly (liquids/solids); (defervefacio PASS); deferveo_V = mkV "defervere" ; -- [XXXDS] :: |boil thoroughly; ferment completely (wine); effervesce (lime); subside; + defervesco_V = mkV "defervescere" "defervesco" "defervui" nonExist; -- [XSXCO] :: come to full boil; cease boiling, cool off (fermentation); calm down, subside; defessus_A = mkA "defessus" "defessa" "defessum" ; -- [XXXCL] :: worn out, weary, exhausted, tired; weakened (L+S); defetigatio_F_N = mkN "defetigatio" "defetigationis " feminine ; -- [XXXCO] :: weariness, fatigue; physical/mental exhaustion; state of being worn out; defetigo_V2 = mkV2 (mkV "defetigare") ; -- [XXXCO] :: tire (out), exhaust; break force of; (PASS) lose heart, weary, be discouraged; defetiscentia_F_N = mkN "defetiscentia" ; -- [DXXFS] :: weariness; + defetiscor_V = mkV "defetisci" "defetiscor" "defessus sum " ; -- [XXXCO] :: become exhausted/suffer exhaustion, grow weary/faint/tired/weak; lose heart; deficientia_F_N = mkN "deficientia" ; -- [DXXFS] :: want, wanting; + deficio_V = mkV "deficere" "deficio" "defeci" "defectus "; -- [XXXAO] :: |pass away; become extinct, die/fade out; subside/sink; suffer eclipse, wane; + deficio_V2 = mkV2 (mkV "deficere" "deficio" "defeci" "defectus ") ; -- [XXXCO] :: |(PASS) be left without/wanting, lack; have shortcomings; L:come to nothing; defico_V2 = mkV2 (mkV "deficare") ; -- [XSXEO] :: strain/clear/cleanse, remove dregs/impurities from; defecate (L+S); set at ease; + defigo_V2 = mkV2 (mkV "defigere" "defigo" "defixi" "defixus ") ; -- [XXXBO] :: |focus (thoughts/eyes); dumbfound, astonish/stupefy, fix w/glance; censure; defigurstus_A = mkA "defigurstus" "defigursta" "defigurstum" ; -- [DGXFS] :: declined; derived; + defindo_V2 = mkV2 (mkV "defindere" "defindo" "defidi" "defissus ") ; -- [BXXFO] :: split down the whole length; + defingo_V2 = mkV2 (mkV "defingere" "defingo" "definxi" "defictus ") ; -- [BXXEO] :: mold into shape; fashion, form (L+S); definienter_Adv = mkAdv "definienter" ; -- [DXXFS] :: distinctly; + definio_V2 = mkV2 (mkV "definire" "definio" "definivi" "definitus ") ; -- [XXXBO] :: |finish off/put an end/end the life; determine, settle; specify, sum up; assert; definite_Adv = mkAdv "definite" ; -- [XXXCO] :: precisely, definitely, distinctly, clearly; expressly, in particular instances; definitio_F_N = mkN "definitio" "definitionis " feminine ; -- [XXXCS] :: ||ending/boundary/limit (L+S); limiting; explanation; which is decreed/decided; definitive_Adv = mkAdv "definitive" ; -- [DXXES] :: definitively, plainly, distinctly; @@ -15115,6 +16160,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg deflagro_V = mkV "deflagrare" ; -- [XXXCO] :: be burnt down/destroyed by fire; perish; be (emotionally/physically) burnt out; deflagro_V2 = mkV2 (mkV "deflagrare") ; -- [XXXCO] :: burn down/up/destroy by fire/utterly; parch (sun); die down/abate, burn out; deflammo_V2 = mkV2 (mkV "deflammare") ; -- [XXXFO] :: extinguish, put out (the flame of); deprive of flame (L+S); + deflecto_V = mkV "deflectere" "deflecto" "deflexi" "deflexus "; -- [XXXCO] :: bend/turn aside/off; deviate/change one's course; digress (speech); alter pitch; + deflecto_V2 = mkV2 (mkV "deflectere" "deflecto" "deflexi" "deflexus ") ; -- [XXXBO] :: |divert, distract; turn one's eyes; modify/twist (words/ideas); round (point); defleo_V = mkV "deflere" ; -- [XXXDO] :: cry bitterly; give oneself up to tears; weep much/violently/to exhaustion (L+S); defleo_V2 = mkV2 (mkV "deflere") ; -- [XXXCO] :: weep (abundantly) for; mourn loss of; express/feel sorrow about; lament/bewail; defletio_F_N = mkN "defletio" "defletionis " feminine ; -- [DXXFS] :: violent weeping; @@ -15125,35 +16172,43 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg deflocco_V2 = mkV2 (mkV "defloccare") ; -- [XXXEO] :: rub the nap of (cloth); strip of possessions, fleece; defloratio_F_N = mkN "defloratio" "deflorationis " feminine ; -- [DXXFS] :: plucking of flowers; deflowering/dishonoring (of a virgin); defloreo_V = mkV "deflorere" ; -- [XXXEO] :: drop/shed blossoms/petals (before bearing fruit); + defloresco_V = mkV "deflorescere" "defloresco" "deflorui" nonExist; -- [XAXCO] :: drop/shed blossoms/petals (before bearing fruit); fade, wither, decay, decline; + deflorio_V = mkV "deflorere" "deflorio" nonExist nonExist; -- [EXXFP] :: cease to flourish; drop/shed blossoms/petals (before bearing fruit)?; defloro_V2 = mkV2 (mkV "deflorare") ; -- [DXXES] :: pluck flowers; deflower/dishonor/ravish/seduce (virgin); cull/excerpt; + defluo_V = mkV "defluere" "defluo" "defluxi" "defluxus "; -- [XXXAO] :: |flow/drain/die/melt/slip away, fade/disappear; originate/stem, be derived from; defluus_A = mkA "defluus" "deflua" "defluum" ; -- [XXXEO] :: flowing/moving down; traveling downstream; emitting a flow (of a container); defluvium_N_N = mkN "defluvium" ; -- [XXXNO] :: loss by flowing or falling away; flowing down/off (L+S); falling off/out; defluxio_F_N = mkN "defluxio" "defluxionis " feminine ; -- [DXXES] :: flowing off; discharge; diarrhea; defluxus_M_N = mkN "defluxus" "defluxus " masculine ; -- [XXXFO] :: downward flow or falling (of liquids); flowing/running off (L+S); + defodio_V2 = mkV2 (mkV "defodere" "defodio" "defodi" "defossus ") ; -- [XXXBO] :: |make fast/set up in ground (part burying); embed; hide; dig up; excavate; dig; defoedo_V2 = mkV2 (mkV "defoedare") ; -- [DEXFS] :: defile; deforcians_A = mkA "deforcians" "deforciantis"; -- [FXXFJ] :: deforciant; one who wrongfully keeps another from possession of an estate; deforcio_V = mkV "deforciare" ; -- [FLXFJ] :: deforce; keep by force/violence; withhold wrongfully; deforis_Adv = mkAdv "deforis" ; -- [DXXDS] :: outside, from outside; out of doors; abroad; deformatio_F_N = mkN "deformatio" "deformationis " feminine ; -- [DXXDS] :: |representation; delineation; deforming, disfiguring, defacing; deforme_N_N = mkN "deforme" "deformis " neuter ; -- [XXXEO] :: disgrace; shameful thing/deed; --- SLASHSTUFF deformis_A : A2 deformis, deforme, deformior -or -us, deformissimus -a -um -- [XXXBO] :: |inappropriate/unseemly/offending good taste; shapeless/lacking definite shape; + deformis_A = mkA "deformis" ; -- [XXXBO] :: |inappropriate/unseemly/offending good taste; shapeless/lacking definite shape; deformitas_F_N = mkN "deformitas" "deformitatis " feminine ; -- [XXXBO] :: |inelegance, impropriety, lack of good taste (speech/writing); shapelessness; deformiter_Adv = mkAdv "deformiter" ; -- [XXXDO] :: hideously; shamefully; unbecomingly; in an ugly/disgraceful/inelegant manner; deformo_V2 = mkV2 (mkV "deformare") ; -- [XXXBO] :: |transform (into something less beautiful); lay out, arrange (plan of action); --- SLASHSTUFF deformus_A : A2 deformus, deforma -um, deformior -or -us, deformissimus -a -um -- [DXXCS] :: |inappropriate/unseemly/offending good taste; shapeless/lacking definite shape; + deformus_A = mkA "deformus" ; -- [DXXCS] :: |inappropriate/unseemly/offending good taste; shapeless/lacking definite shape; defossum_N_N = mkN "defossum" ; -- [XXXDO] :: underground chamber, place dug out; defossus_M_N = mkN "defossus" "defossus " masculine ; -- [XXXNS] :: digging deeply; defraudatio_F_N = mkN "defraudatio" "defraudationis " feminine ; -- [DXXFS] :: deficiency; defrauding; defraudator_M_N = mkN "defraudator" "defraudatoris " masculine ; -- [DXXFS] :: defrauder, one who defrauds; defraudatrix_F_N = mkN "defraudatrix" "defraudatricis " feminine ; -- [DXXFS] :: defrauder (female), she who defrauds; defraudo_V2 = mkV2 (mkV "defraudare") ; -- [XXXCO] :: cheat, defraud, deceive; rob (of); [w/se => deny oneself, self-sacrifice]; + defremo_V = mkV "defremere" "defremo" "defremui" "defremitus "; -- [XXXFO] :: quiet down, finish/end making noise; (public indignation); cease raging/roaring; defrenatus_A = mkA "defrenatus" "defrenata" "defrenatum" ; -- [XXXFO] :: unbridled, unrestrained; defretum_N_N = mkN "defretum" ; -- [XAXCO] :: grape juice (new wine) boiled down into a syrup; defricate_Adv = mkAdv "defricate" ; -- [XXXFO] :: sharply, keenly; (of speech); with biting sarcasm (L+S); defricatio_F_N = mkN "defricatio" "defricationis " feminine ; -- [DXXES] :: rubbing; defrico_V2 = mkV2 (mkV "defricare") ; -- [XXXCO] :: rub hard/thoroughly; (ointment); rub down (person/beast); scour/rub off; + defrigesco_V = mkV "defrigescere" "defrigesco" "defrixi" nonExist; -- [XXXFO] :: cool off; grow cold (L+S); + defringo_V2 = mkV2 (mkV "defringere" "defringo" "defrengi" "defractus ") ; -- [XXXCO] :: break off; remove by breaking; break to pieces (L+S); destroy; defrudo_V2 = mkV2 (mkV "defrudare") ; -- [XXXCO] :: cheat, defraud, deceive; rob (of); [w/se => deny oneself, self-sacrifice]; defrugo_V2 = mkV2 (mkV "defrugare") ; -- [XAXES] :: rob of grain; sow too little grain; + defruor_V = mkV "defrui" "defruor" nonExist ; -- [XXXFS] :: use up; consume by enjoying; defrusto_V2 = mkV2 (mkV "defrustare") ; -- [DXXES] :: divide into pieces, dismember; defrustror_V = mkV "defrustrari" ; -- [XXXFO] :: foil/thwart completely/thoroughly; defrutarium_N_N = mkN "defrutarium" ; -- [XAXFO] :: cauldron used for making defrutum (boiled down grape juice); @@ -15161,6 +16216,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg defruto_V2 = mkV2 (mkV "defrutare") ; -- [XAXEO] :: boil down (grape juice) into defrutum/syrup; defrutum_N_N = mkN "defrutum" ; -- [XAXCO] :: grape juice (must/new wine) boiled down into a syrup; defuga_M_N = mkN "defuga" ; -- [DXXES] :: runaway; deserter; + defugio_V = mkV "defugere" "defugio" "defugi" nonExist; -- [XXXCO] :: escape from/make one's escape/flee; keep clear of (responsibility/liability); + defugio_V2 = mkV2 (mkV "defugere" "defugio" "defugi" nonExist) ; -- [XXXCO] :: flee, escape, run/move away (from), make one's escape from; avoid (strongly); defugo_V2 = mkV2 (mkV "defugare") ; -- [DXXFS] :: drive away; remove; defulguro_V2 = mkV2 (mkV "defulgurare") ; -- [DXXFS] :: flash away; defuncta_F_N = mkN "defuncta" ; -- [XXXEO] :: dead person (female); @@ -15171,40 +16228,55 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg defunctus_A = mkA "defunctus" "defuncta" "defunctum" ; -- [EXXDX] :: dead, deceased; defunct; defunctus_C_N = mkN "defunctus" ; -- [XXXDO] :: dead person; (usu. male); the dead (pl.) (L+S); defunctus_M_N = mkN "defunctus" "defunctus " masculine ; -- [DXXFS] :: death; + defundo_V2 = mkV2 (mkV "defundere" "defundo" "defudi" "defusus ") ; -- [XXXCO] :: pour out/away/off/down; discharge; shed; empty/pour out; wet by pouring; + defungor_V = mkV "defungi" "defungor" "defunctus sum " ; -- [XXXBO] :: |settle a case (for so much); make do; discharge; die; (PERF) to have died; defusio_F_N = mkN "defusio" "defusionis " feminine ; -- [XXXFO] :: pouring out (of a liquid); (into vessels L+S); + defutuo_V2 = mkV2 (mkV "defutuere" "defutuo" "defutui" "defututus ") ; -- [XXXFD] :: indulge in promiscuous sexual intercourse with (woman); copulate freely (rude); defututus_A = mkA "defututus" "defututa" "defututum" ; -- [XXXFO] :: worn out by excessive sexual intercourse; exhausted by sensuality (L+S); degener_A = mkA "degener" "degeneris"; -- [XXXBO] :: |low-born, of/belonging to inferior stock/breed/variety; soft/weak; softened; degeneratio_F_N = mkN "degeneratio" "degenerationis " feminine ; -- [XXXDE] :: degeneration; degenero_V = mkV "degenerare" ; -- [XXXBO] :: |sink (to); fall away from/below the level; degenerate/revert (breeding); degenero_V2 = mkV2 (mkV "degenerare") ; -- [XXXDO] :: be unworthy (of), fall short of the standard set by; cause deterioration in; + degero_V2 = mkV2 (mkV "degerere" "degero" "degessi" "degestus ") ; -- [XXXEO] :: remove; carry off/away (to a destination); deglabro_V2 = mkV2 (mkV "deglabrare") ; -- [XXXFO] :: make smooth; (remove bark from trees/logs); smooth off (L+S); + deglubo_V2 = mkV2 (mkV "deglubere" "deglubo" "deglupsi" "degluptus ") ; -- [XXXDO] :: skin, flay; strip (w/ABL) (of a coating); peel/skin/husk (L+S); deglutino_V2 = mkV2 (mkV "deglutinare") ; -- [XXXNO] :: unglue; separate by moistening (L+S); + deglutio_V2 = mkV2 (mkV "deglutire" "deglutio" "deglutivi" "deglutitus ") ; -- [DXXCS] :: swallow down; overwhelm, abolish (L+S); + degluttio_V2 = mkV2 (mkV "degluttire" "degluttio" "degluttivi" "degluttitus ") ; -- [XXXCO] :: swallow down; overwhelm, abolish (L+S); + dego_V = mkV "degere" "dego" "degi" nonExist; -- [XXXCO] :: spend/bide one's time in; wait; remain alive, live on, endure; continue; + dego_V2 = mkV2 (mkV "degere" "dego" "degi" nonExist) ; -- [XXXCO] :: spend/pass (time); spend/bide one's time in; carry on, wage; conduct away?; degradatio_F_N = mkN "degradatio" "degradationis " feminine ; -- [FEXDE] :: degradation; deprivation; rank reduction; penalty for cleric/reduction to lay; degrado_V2 = mkV2 (mkV "degradare") ; -- [EEXEE] :: reduce in rank; deprive of office; degrade; degrandinat_V0 = mkV0 "degrandinat" ; -- [XXXFO] :: it goes on hailing; it hails violently, or (perhaps) it ceases to hail (Cas); degrassor_V = mkV "degrassari" ; -- [XXXEO] :: sink (w/ACC); descend upon; rush down (L+S); attack fiercely; revile; degravo_V2 = mkV2 (mkV "degravare") ; -- [XXXCO] :: weigh/press/drag down; rest heavily on; overpower, overwhelm; burden; + degredior_V = mkV "degredi" "degredior" "degressus sum " ; -- [XXXBO] :: march/go/come/flow down, descend; dismount; move off/depart; turn aside/deviate; degrumo_V2 = mkV2 (mkV "degrumare") ; -- [BTXEO] :: lay out with a surveying instrument, survey; degrumor_V = mkV "degrumari" ; -- [XTXDO] :: straighten; level off; + degrunnio_V = mkV "degrunnire" "degrunnio" nonExist nonExist; -- [XXXFO] :: give a performance of grunting; grunt hard (L+S); degulator_M_N = mkN "degulator" "degulatoris " masculine ; -- [XXXFO] :: glutton; one who devours; degulo_V2 = mkV2 (mkV "degulare") ; -- [XXXEO] :: devour, swallow down; consume (L+S); - deguno_V2 = mkV2 (mkV "degunare") ; -- [XXXFO] :: taste; taste/try/eat/drink a little of; glance at; graze; sip; test; judge; + deguno_V2 = mkV2 (mkV "degunere" "deguno" nonExist nonExist) ; -- [DXXFS] :: taste; degustatio_F_N = mkN "degustatio" "degustationis " feminine ; -- [XXXFO] :: act of tasting; a tasting (L+S); degusto_V2 = mkV2 (mkV "degustare") ; -- [XXXCO] :: taste; taste/try/eat/drink a little of; glance at; graze; sip; test; judge; dehabeo_V2 = mkV2 (mkV "dehabere") ; -- [DXXFS] :: lack, not to have; + dehaurio_V2 = mkV2 (mkV "dehaurire" "dehaurio" "dehausi" "dehaustus ") ; -- [XXXFO] :: drain off; skim off (L+S); (late) swallow, swallow down; dehibeo_V = mkV "dehibere" ; -- [XXXAO] :: owe; be indebted/responsible for/obliged/bound/destined; ought, must, should; dehinc_Adv = mkAdv "dehinc" ; -- [XXXBO] :: |then, after that, thereupon; at a later stage; for the rest; next (in order); + dehisco_V = mkV "dehiscere" "dehisco" "dehivi" nonExist; -- [XXXCO] :: gape/yawn/split open; part/divide, develop/leave a gap/leak; be/become apart; dehonestamentum_N_N = mkN "dehonestamentum" ; -- [XXXCO] :: source/act inflicting disgrace/dishonor; degradation; disfigurement, blemish; dehonestatio_F_N = mkN "dehonestatio" "dehonestationis " feminine ; -- [DXXFS] :: disgrace, dishonor; dehonesto_V2 = mkV2 (mkV "dehonestare") ; -- [XXXCO] :: dishonor, discredit, disgrace; disparage (L+S); dehonestus_A = mkA "dehonestus" "dehonesta" "dehonestum" ; -- [XXXFO] :: vulgar, low-class; unbecoming, improper (L+S); dehonoro_V2 = mkV2 (mkV "dehonorare") ; -- [DXXES] :: dishonor; + dehorio_V2 = mkV2 (mkV "dehorire" "dehorio" nonExist nonExist) ; -- [DXXFS] :: drain off; skim off (L+S); (late) swallow, swallow down; dehortatio_F_N = mkN "dehortatio" "dehortationis " feminine ; -- [DXXFS] :: dissuading; dehortativus_A = mkA "dehortativus" "dehortativa" "dehortativum" ; -- [DXXES] :: fit for dissuading, likely to dissuade; dehortator_M_N = mkN "dehortator" "dehortatoris " masculine ; -- [DXXFE] :: dissuader; dehortatorius_A = mkA "dehortatorius" "dehortatoria" "dehortatorium" ; -- [DXXFS] :: dissuasive, dehortatory; dehortor_V = mkV "dehortari" ; -- [XXXCO] :: dissuade; advise (person) against an action; deter, have restraining influence; deicida_M_N = mkN "deicida" ; -- [DEXFS] :: killer/slayer of God; (Judas); + deicio_V2 = mkV2 (mkV "deicere" "deicio" "dejeci" "dejectus ") ; -- [XXXAO] :: |unhorse; let fall; shed; purge/evacuate bowel; dislodge/rout; drive/throw out; deifer_A = mkA "deifer" "deifera" "deiferum" ; -- [FEXFE] :: God-bearing, bearing a god in one's self; deiferus_A = mkA "deiferus" "deifera" "deiferum" ; -- [DEXFS] :: God-bearing, bearing a god in one's self; deifico_V2 = mkV2 (mkV "deificare") ; -- [XEXES] :: deify; make one a god @@ -15228,14 +16300,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dejectus_M_N = mkN "dejectus" "dejectus " masculine ; -- [XXXCO] :: slope, sloping surface, declivity; act of throwing/causing to fall/felling; dejeratio_F_N = mkN "dejeratio" "dejerationis " feminine ; -- [XLXIO] :: oath; dejero_V = mkV "dejerare" ; -- [XLXCO] :: swear, take an oath; + dejicio_V2 = mkV2 (mkV "dejicere" "dejicio" "dejeci" "dejectus ") ; -- [XXXAS] :: |unhorse; let fall; shed; purge/evacuate (bowel); dislodge/rout; drive/throw out dejudico_V2 = mkV2 (mkV "dejudicare") ; -- [XXXFO] :: give final judgment on (question); dejugis_A = mkA "dejugis" "dejugis" "dejuge" ; -- [DXXFS] :: sloping; dejugo_V2 = mkV2 (mkV "dejugare") ; -- [XXXFO] :: disconnect; disunite; separate (L+S); sever; dejunctus_A = mkA "dejunctus" "dejuncta" "dejunctum" ; -- [XGXEO] :: disconnected, lacking a common term; (grammar); + dejungo_V2 = mkV2 (mkV "dejungere" "dejungo" "dejunxi" "dejunctus ") ; -- [XXXDO] :: separate, unyoke; release (from activity); dejuratio_F_N = mkN "dejuratio" "dejurationis " feminine ; -- [DLXDO] :: oath; dejurium_N_N = mkN "dejurium" ; -- [XLXFO] :: oath; dejuro_V = mkV "dejurare" ; -- [XLXCO] :: swear, take an oath; dejuvo_V = mkV "dejuvare" ; -- [BXXFS] :: withhold assistance; leave off helping; + delabor_V = mkV "delabi" "delabor" "delapsus sum " ; -- [XXXAO] :: |drop, descend; sink; fall/fail/lose strength; flow down; be carried downstream; delaboro_V = mkV "delaborare" ; -- [XXXFO] :: work hard; overwork (L+S); delacero_V2 = mkV2 (mkV "delacerare") ; -- [XXXFO] :: tear to shreds/pieces; destroy, frustrate (L+S); delachrimatorius_A = mkA "delachrimatorius" "delachrimatoria" "delachrimatorium" ; -- [XBXIO] :: producing watering/running of the eyes; for/belonging to weeping (L+S); @@ -15244,9 +16319,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg delacrimo_V = mkV "delacrimare" ; -- [XXXFO] :: shed tears; leek sap (trees); weep (L+S); delacrumo_V = mkV "delacrumare" ; -- [XXXFS] :: shed tears; leek sap (trees); weep (L+S); delaevo_V2 = mkV2 (mkV "delaevare") ; -- [XXXFS] :: smooth down/off; make smooth (L+S); + delambo_V2 = mkV2 (mkV "delambere" "delambo" "delambi" nonExist) ; -- [XXXFO] :: lick all over; lick off (L+S); lick; delamentor_V = mkV "delamentari" ; -- [XXXFO] :: give oneself up to mourning for; lament, bewail (L+S); delapido_V2 = mkV2 (mkV "delapidare") ; -- [XXXEO] :: pave over/lay with stones; remove stones from; clear from stones (L+S); delapsus_M_N = mkN "delapsus" "delapsus " masculine ; -- [XTXFO] :: outfall (for drainage); flowing off, discharge (L+S); falling off, decent; + delargior_V = mkV "delargiri" "delargior" "delargitus sum " ; -- [XXXFO] :: lavish; give away freely; give/bestow liberally/profusely/recklessly; delassabilis_A = mkA "delassabilis" "delassabilis" "delassabile" ; -- [XXXFO] :: capable of fatigue; that can be worn/wearied out (L+S); delasso_V2 = mkV2 (mkV "delassare") ; -- [XXXDO] :: tire out, weary, exhaust; exhaust by experiencing; delatio_F_N = mkN "delatio" "delationis " feminine ; -- [XLXCO] :: accusation/denunciation; laying charge; indicting; informing; offering an oath; @@ -15255,7 +16332,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg delatura_F_N = mkN "delatura" ; -- [DXXES] :: accusation, denunciation; information (about someone); delavo_V2 = mkV2 (mkV "delavare") ; -- [DXXES] :: wash off; wash clean; delebilis_A = mkA "delebilis" "delebilis" "delebile" ; -- [XXXFO] :: capable of/susceptible to being obliterated/blotted out/destroyed; effaceable; --- SLASHSTUFF delectabilis_A : A2 delectabilis, delectabile, delectabilior -or -us, delectabilissimus -a -um -- [XXXCS] :: enjoyable, delectable, delightful, agreeable; delicious (taste) (OLD); + delectabilis_A = mkA "delectabilis" ; -- [XXXCS] :: enjoyable, delectable, delightful, agreeable; delicious (taste) (OLD); delectabiliter_Adv =mkAdv "delectabiliter" "delectabilius" "delectabilissime" ; -- [XXXES] :: delightfully; delectamentum_N_N = mkN "delectamentum" ; -- [XXXEO] :: delight, amusement; instrument/cause of delight/amusement/enjoyment; delectatio_F_N = mkN "delectatio" "delectationis " feminine ; -- [DBXES] :: |straining/effort/tenesmus; inclination/futile straining to void bowels/bladder; @@ -15272,13 +16349,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg delego_V2 = mkV2 (mkV "delegare") ; -- [XXXBO] :: assign/appoint; delegate/entrust (to); consign; transfer/pass; refer/attribute; delenificus_A = mkA "delenificus" "delenifica" "delenificum" ; -- [XXXEO] :: ingratiating; cajoling; soothing/mollifying; flattering, enchanting (L+S); delenimentum_N_N = mkN "delenimentum" ; -- [XXXCO] :: blandishment/enticement/charm; ingratiating/soothing action/quality; consolation + delenio_V2 = mkV2 (mkV "delenire" "delenio" "delenivi" "delenitus ") ; -- [XXXCO] :: mitigate, mollify, smooth down, soothe; soften, cajole; bewitch, charm, entice; delenitor_M_N = mkN "delenitor" "delenitoris " masculine ; -- [XXXFO] :: appeaser; soother, one who mollifies/wins over; delenitorius_A = mkA "delenitorius" "delenitoria" "delenitorium" ; -- [DXXFS] :: pertaining to/serving for softening/smoothing; deleo_V2 = mkV2 (mkV "delere") ; -- [XXXBO] :: |destroy completely, demolish/obliterate/crush; ruin; overthrow; nullify/annul; deleramentum_N_N = mkN "deleramentum" ; -- [XXXDO] :: delusion, nonsense; product of a deranged mind; absurdity (L+S); deleritas_F_N = mkN "deleritas" "deleritatis " feminine ; -- [XXXFO] :: insanity; delero_V = mkV "delerare" ; -- [XXXCO] :: be mad/deranged/silly; dote; speak deliriously, rave; deviate from balks (plow); --- IGNORED deleth_N : N1 deleth, undeclined -- N -- [DEQEW] :: dalet/daleth; (4th letter of Hebrew alphabet); (transliterate as D); + deleth_N = constN "deleth" neuter ; -- [DEQEW] :: dalet/daleth; (4th letter of Hebrew alphabet); (transliterate as D); deleticius_A = mkA "deleticius" "deleticia" "deleticium" ; -- [XGXFO] :: palimpsest, from which (anything/writing) has been erased/effaced/blotted out; deletilis_A = mkA "deletilis" "deletilis" "deletile" ; -- [XGXFO] :: that expunges/erases; that wipes/blots out (L+S); deletio_F_N = mkN "deletio" "deletionis " feminine ; -- [XXXFO] :: destruction, annihilation; @@ -15294,18 +16372,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg deliberatio_F_N = mkN "deliberatio" "deliberationis " feminine ; -- [XXXCO] :: deliberation/consultation (w/others), consideration; deliberative style speech; deliberativus_A = mkA "deliberativus" "deliberativa" "deliberativum" ; -- [XXXEO] :: concerned with/relating to discussion/deliberation (future acts); deliberative; deliberator_M_N = mkN "deliberator" "deliberatoris " masculine ; -- [XXXFO] :: one who deliberates; --- SLASHSTUFF deliberatus_A : A2 deliberatus, deliberata -um, deliberatior -or -us, deliberatissimus -a -um -- [XXXEO] :: determined; worked out; resolved upon; certain (L+S); + deliberatus_A = mkA "deliberatus" ; -- [XXXEO] :: determined; worked out; resolved upon; certain (L+S); delibero_V = mkV "deliberare" ; -- [XXXBO] :: weigh/consider/deliberate/consult (oracle); ponder/think over; resolve/decide on delibo_V = mkV "delibare" ; -- [XXXBO] :: |take a little, wear away, nibble at; taste (of), touch on (subject) lightly; delibro_V2 = mkV2 (mkV "delibrare") ; -- [XAXEO] :: peel, remove/strip the bark (from); strip/take off (bark); (rind L+S); + delibuo_V2 = mkV2 (mkV "delibuere" "delibuo" "delibui" "delibutus ") ; -- [XXXCS] :: besmear; anoint with a liquid; delibutus_A = mkA "delibutus" "delibuta" "delibutum" ; -- [XXXCO] :: thickly smeared/stained; steeped (in a condition), deeply imbued (with feeling); delicata_F_N = mkN "delicata" ; -- [XXXEO] :: paramour, favorite; voluptuary (L+S); one addicted to pleasure; delicate_Adv =mkAdv "delicate" "delicatius" "delicatissime" ; -- [XXXCO] :: delicately/tenderly/gently; luxuriously; frivolously; fastidiously; effeminately --- SLASHSTUFF delicatus_A : A2 delicatus, delicata -um, delicatior -or -us, delicatissimus -a -um -- [XXXBO] :: |skittish/frisky/frivolous; fastidious/squeamish; delicate/dainty/pretty/fine; + delicatus_A = mkA "delicatus" ; -- [XXXBO] :: |skittish/frisky/frivolous; fastidious/squeamish; delicate/dainty/pretty/fine; delicatus_M_N = mkN "delicatus" ; -- [XXXEO] :: paramour, favorite; voluptuary (L+S); one addicted to pleasure; delicia_F_N = mkN "delicia" ; -- [XTXEO] :: ||||corner beam supporting a section of an outward-sloping roof; gutter (L+S); deliciaris_A = mkA "deliciaris" "deliciaris" "deliciare" ; -- [XTXFO] :: fitting an outward-sloping roof; pertaining to a gutter (L+S); deliciatus_A = mkA "deliciatus" "deliciata" "deliciatum" ; -- [XTXFO] :: outward-sloping (roof); with a gutter (L+S); + delicio_V2 = mkV2 (mkV "delicere" "delicio" nonExist nonExist) ; -- [XXXFO] :: entice/lure (from one's preoccupations); allure (from the right way L+S); deliciola_F_N = mkN "deliciola" ; -- [XXXFO] :: darling, little sweetheart (pl.); deliciolum_N_N = mkN "deliciolum" ; -- [XXXFO] :: darling, little sweetheart; deliciosus_A = mkA "deliciosus" "deliciosa" "deliciosum" ; -- [DXXCS] :: delicious; delicate; @@ -15317,7 +16397,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg deliculus_A = mkA "deliculus" "delicula" "deliculum" ; -- [DXXFO] :: blemished; having a (small) defect; defective (L+S); delicus_A = mkA "delicus" "delica" "delicum" ; -- [XXXFS] :: weaned; put away (from the breast); delicuus_A = mkA "delicuus" "delicua" "delicuum" ; -- [DXXEO] :: lacking, wanting; missing; - deligo_V2 = mkV2 (mkV "deligare") ; -- [XXXCO] :: bind fast, tie (up), fasten; make fast by tying; bandage; tie (bandage); + deligo_V2 = mkV2 (mkV "deligere" "deligo" "delegi" "delectus ") ; -- [XXXBO] :: pick/pluck off, cull; choose, select, levy (soldiers), enroll; conduct a levy; delimator_M_N = mkN "delimator" "delimatoris " masculine ; -- [DXXFS] :: filer, one who files; (rasp); delimitatio_F_N = mkN "delimitatio" "delimitationis " feminine ; -- [DXXFS] :: marking out, limiting; delimito_V2 = mkV2 (mkV "delimitare") ; -- [XXXFO] :: delimit, mark out the boundaries of; @@ -15325,14 +16405,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg delimo_V2 = mkV2 (mkV "delimare") ; -- [XXXEO] :: file down; produce by filing; delineatio_F_N = mkN "delineatio" "delineationis " feminine ; -- [DXXFS] :: sketch; delineation; delineo_V2 = mkV2 (mkV "delineare") ; -- [XXXDO] :: delineate; trace the outline of; (sketch out L+S); + delingo_V2 = mkV2 (mkV "delingere" "delingo" nonExist nonExist) ; -- [XXXDO] :: lick; lick up; lick off; + delinguo_V2 = mkV2 (mkV "delinguere" "delinguo" nonExist nonExist) ; -- [XXXFO] :: lick; lick up; lick off; delinificus_A = mkA "delinificus" "delinifica" "delinificum" ; -- [XXXES] :: ingratiating; cajoling; soothing/mollifying; flattering, enchanting (L+S); delinimentum_N_N = mkN "delinimentum" ; -- [XXXCS] :: blandishment/enticement/charm; ingratiating/soothing action/quality; consolation - delinio_V2 = mkV2 (mkV "deliniare") ; -- [XXXDO] :: delineate; trace the outline of; sketch out (L+S); + delinio_V2 = mkV2 (mkV "delinire" "delinio" "delinivi" "delinitus ") ; -- [XXXCO] :: mitigate, mollify, smooth down, soothe; soften, cajole; bewitch, charm, entice; delinitor_M_N = mkN "delinitor" "delinitoris " masculine ; -- [XXXFS] :: appeaser; soother, one who mollifies/wins over; delinitorius_A = mkA "delinitorius" "delinitoria" "delinitorium" ; -- [DXXFS] :: pertaining to/serving for softening/smoothing; + delino_V2 = mkV2 (mkV "delinere" "delino" "delivi" "delitus ") ; -- [XXXCO] :: smear/daub/anoint (with); obliterate, smudge/blot out; daub w/owner mark (pig); delinquentia_F_N = mkN "delinquentia" ; -- [DXXFS] :: fault; crime; delinquency; delinquio_F_N = mkN "delinquio" "delinquionis " feminine ; -- [XXXES] :: failure, lack, want; eclipse (of a heavenly body); + delinquo_V2 = mkV2 (mkV "delinquere" "delinquo" "deliqui" "delictus ") ; -- [XXXBO] :: fail (duty), be wanting/lacking, fall short; offend/do wrong/err/commit offense; deliquatitudo_F_N = mkN "deliquatitudo" "deliquatitudinis " feminine ; -- [DXXFS] :: melting; dropping; + deliquesco_V = mkV "deliquescere" "deliquesco" "delicui" nonExist; -- [XXXEO] :: melt away, dissolve, melt; dissipate one's energy; vanish, disappear (L+S); deliquia_F_N = mkN "deliquia" ; -- [XTXEO] :: corner beam supporting a section of an outward-sloping roof; gutter (L+S); deliquio_F_N = mkN "deliquio" "deliquionis " feminine ; -- [XXXEO] :: failure, lack, want; eclipse (of a heavenly body); deliquium_N_N = mkN "deliquium" ; -- [XXXEO] :: eclipse (of a heavenly body); want, defect (L+S); flowing/dropping down; @@ -15344,59 +16429,73 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg delirium_N_N = mkN "delirium" ; -- [XXXEO] :: delirium, frenzy; derangement of the mental facilities; madness (L+S); deliro_V = mkV "delirare" ; -- [XXXCO] :: be mad/crazy/deranged/silly; speak deliriously, rave; deviate from balks (plow); delirus_A = mkA "delirus" "delira" "delirum" ; -- [XXXCO] :: crazy, insane, mad; senseless, silly; + delitesco_V = mkV "delitescere" "delitesco" "delitui" nonExist; -- [XXXCO] :: hide, go in hiding/seclusion; withdraw; vanish/be concealed; take refuge/shelter delitigo_V = mkV "delitigare" ; -- [XXXFO] :: dispute wholeheartedly; have it out; scold, rail angrily (L+S); + delitisco_V = mkV "delitiscere" "delitisco" "delitui" nonExist; -- [XXXBO] :: hide, go in hiding/seclusion; withdraw; vanish/be concealed; take refuge/shelter + delito_V = mkV "delitere" "delito" "delitui" nonExist; -- [XXXDV] :: hide; hide oneself, go into hiding; seek safety; take refuge/shelter; delitor_M_N = mkN "delitor" "delitoris " masculine ; -- [XXXFO] :: avenger, one who wipes out/extracts vengeance for; (w/GEN); obliterator (L+S); delocatio_F_N = mkN "delocatio" "delocationis " feminine ; -- [DBXFS] :: dislocation; (of a joint); delonge_Adv = mkAdv "delonge" ; -- [DXXES] :: from afar; (de longe); delotus_A = mkA "delotus" "delota" "delotum" ; -- [DXXFS] :: washed; delphin_M_N = mkN "delphin" "delphinis " masculine ; -- [XAXDO] :: dolphin; ornament shaped like a dolphin; (part of water organ); constellation; delphinus_M_N = mkN "delphinus" ; -- [XAXCO] :: dolphin; ornament shaped like a dolphin; (part of water organ); constellation; --- TODO delphis_N : N1 delphis, delphinos/is -- M -- [XAXFS] :: dolphin; ornament shaped like a dolphin; (part of water organ); constellation; --- IGNORED delta_N : N1 delta, undeclined -- N -- [XXHDO] :: Greek letter delta; delta of the Nile; + delphis_1_N = mkN "delphis" "delphinis" masculine ; -- [XAXFS] :: dolphin; ornament shaped like a dolphin; (part of water organ); constellation; + delphis_2_N = mkN "delphis" "delphinos" masculine ; -- [XAXFS] :: dolphin; ornament shaped like a dolphin; (part of water organ); constellation; + delta_N = constN "delta" neuter ; -- [XXHDO] :: Greek letter delta; delta of the Nile; delubrum_N_N = mkN "delubrum" ; -- [XXXDX] :: shrine; temple; sanctuary (L+S); deluctio_F_N = mkN "deluctio" "deluctionis " feminine ; -- [DXXFS] :: struggle, combat; wrestling; delucto_V2 = mkV2 (mkV "deluctare") ; -- [XXXEO] :: wrestle; fight it out (with); struggle (L+S); deluctor_V = mkV "deluctari" ; -- [XXXEO] :: wrestle; fight it out (with); struggle (L+S); deludifico_V2 = mkV2 (mkV "deludificare") ; -- [XXXEO] :: dupe, make a complete fool of; mock (L+S); make sport of; banter; deludificor_V = mkV "deludificari" ; -- [XXXEO] :: dupe, make a complete fool of; + deludo_V2 = mkV2 (mkV "deludere" "deludo" "delusi" "delusus ") ; -- [XXXCO] :: deceive/dupe; play false/mock/make sport; play through, complete a performance; delumbis_A = mkA "delumbis" "delumbis" "delumbe" ; -- [XBXEO] :: lame; suffering from injury/lameness in the lumbar region; (in the loins L+S); delumbo_V2 = mkV2 (mkV "delumbare") ; -- [XBXCO] :: injure (by dislocating hip); bring down on haunches; lame, weaken; bend/curve; + deluo_V2 = mkV2 (mkV "deluere" "deluo" nonExist nonExist) ; -- [XXXFO] :: wash away; wash out/off, cleanse (L+S); delusio_F_N = mkN "delusio" "delusionis " feminine ; -- [DXXFS] :: deceiving, deluding; delusor_M_N = mkN "delusor" "delusoris " masculine ; -- [DXXFS] :: deceiver; delustro_V2 = mkV2 (mkV "delustrare") ; -- [DXXFS] :: disenchant, free from an evil charm/spell/enchantment; deluto_V2 = mkV2 (mkV "delutare") ; -- [DTXFO] :: plaster/daub with (preparation of) clay; --- TODO dem_N : N1 dem, demos/is -- M -- [XXHEO] :: community, a people; administrative district (in Attica); tract of land (L+S); + dem_1_N = mkN "dem" "demis" masculine ; -- [XXHEO] :: community, a people; administrative district (in Attica); tract of land (L+S); + dem_2_N = mkN "dem" "demos" masculine ; -- [XXHEO] :: community, a people; administrative district (in Attica); tract of land (L+S); + demadesco_V = mkV "demadescere" "demadesco" nonExist nonExist; -- [XXXFS] :: become thoroughly wet; become humid/moist (L+S); demagis_Adv = mkAdv "demagis" ; -- [XXXFS] :: furthermore, moreover; very much (L+S); demagogicus_A = mkA "demagogicus" "demagogica" "demagogicum" ; -- [GXXEK] :: demagogic; demagogus_M_N = mkN "demagogus" ; -- [GXXEK] :: demagogue; demandatio_F_N = mkN "demandatio" "demandationis " feminine ; -- [DXXFS] :: delivering with commendation; commending; demando_V2 = mkV2 (mkV "demandare") ; -- [XXXCO] :: entrust, hand over (to), commit; lay (duty on a person), charge (that); demano_V = mkV "demanare" ; -- [XXXEO] :: run/flow down; percolate; flow different ways (L+S); descend; descend from; + demarcesco_V = mkV "demarcescere" "demarcesco" nonExist nonExist; -- [DXXFS] :: wither, fade away; demarchia_F_N = mkN "demarchia" ; -- [BLHIO] :: office and dignity of a demarch (magistrate of a Greek deme/township); demarchisas_A = mkA "demarchisas" "demarchisantis"; -- [BLHIO] :: having served as demarch (magistrate of a Greek deme/township); demarchus_M_N = mkN "demarchus" ; -- [BLHFO] :: demarch (magistrate of a Greek deme/township); president of a demos (L+S); dematricatus_A = mkA "dematricatus" "dematricata" "dematricatum" ; -- [DBXFS] :: bled from the vena matricalis in the neck; demeaculum_N_N = mkN "demeaculum" ; -- [XXXFO] :: decent underground; passage underground (L+S); + demelior_V = mkV "demeliri" "demelior" nonExist ; -- [FXXEE] :: consume, destroy, demolish, lay waste; demens_A = mkA "demens" "dementis"; -- [XXXCO] :: out of one's mind/senses; demented, mad, wild, raving; reckless, foolish; demensio_F_N = mkN "demensio" "demensionis " feminine ; -- [DSXFS] :: measuring; (measurement?); demensum_N_N = mkN "demensum" ; -- [XXXES] :: measured allowance; ration; (of slaves); demensus_A = mkA "demensus" "demensa" "demensum" ; -- [XXXFO] :: regular; measured; dementer_Adv =mkAdv "dementer" "dementius" "dementissime" ; -- [XXXDO] :: madly, crazily; foolishly (L+S); dementia_F_N = mkN "dementia" ; -- [XBXCO] :: madness, insanity; derangement of the mind; distraction, folly; + dementio_V = mkV "dementire" "dementio" nonExist nonExist; -- [XXXEO] :: become deranged; lose one's reason; be mad, rave; demento_V = mkV "dementare" ; -- [DXXDS] :: drive mad/crazy; bewitch; delude; rave, be out of one's mind; demeo_V = mkV "demeare" ; -- [XXXEO] :: descend, go down; demereo_V2 = mkV2 (mkV "demerere") ; -- [XXXCO] :: oblige, please, win the favor of; earn, merit, deserve (well of); demereor_V = mkV "demereri" ; -- [XXXCO] :: oblige/please, win favor of; earn/merit, deserve (well of); lay under obligation + demergo_V2 = mkV2 (mkV "demergere" "demergo" "demersi" "demersus ") ; -- [XXXBO] :: submerge/sink; plunge/dip/immerse; set; retract; conceal; bury; overwhelm/engulf demeritum_N_N = mkN "demeritum" ; -- [FXXEE] :: defect; demerit; demersio_F_N = mkN "demersio" "demersionis " feminine ; -- [DXXES] :: sinking, being sunk down; --- SLASHSTUFF demersus_A : A2 demersus, demersa -um, demersior -or -us, demersissimus -a -um -- [DXXES] :: depressed; + demersus_A = mkA "demersus" ; -- [DXXES] :: depressed; demersus_M_N = mkN "demersus" "demersus " masculine ; -- [XXXFO] :: action of sinking/submerging; a sinking (L+S); - demeto_V2 = mkV2 (mkV "demetare") ; -- [XSXFS] :: measure out; mark out; fix the limits; + demetior_V = mkV "demetiri" "demetior" "demensus sum " ; -- [XSXCO] :: weigh out, measure by weight; measure out/off; (space/time/words); lay out; + demeto_V2 = mkV2 (mkV "demetere" "demeto" "demessui" "demessus ") ; -- [XAXCO] :: reap, cut, mow; cut off/down (body); pick (fruit); gather; take (honey); shear; demetor_V = mkV "demetari" ; -- [XSXFO] :: measure, mark out; demigratio_F_N = mkN "demigratio" "demigrationis " feminine ; -- [XXXFO] :: emigration, action of going out as colonists; demigro_V = mkV "demigrare" ; -- [XXXCO] :: emigrate; migrate; depart/remove/withdraw/go away (from situation/local/thing); deminoratio_F_N = mkN "deminoratio" "deminorationis " feminine ; -- [DXXFS] :: degradation; injury; deminoro_V2 = mkV2 (mkV "deminorare") ; -- [DXXFS] :: lessen, diminish; (in honor/rank); + deminuo_V2 = mkV2 (mkV "deminuere" "deminuo" "deminui" "deminutus ") ; -- [XXXBO] :: |weaken; curtail; impair; understate; make diminutive; take away/deduct/deprive; deminutio_F_N = mkN "deminutio" "deminutionis " feminine ; -- [XXXBO] :: |understatement; formation of diminutive; [capitis ~ => loss of civil rights]; deminutive_Adv = mkAdv "deminutive" ; -- [DGXES] :: as diminutive (noun); (grammar); deminutivus_A = mkA "deminutivus" "deminutiva" "deminutivum" ; -- [DGXES] :: diminutive; (grammar); [w/nomen => diminutive noun]; @@ -15406,9 +16505,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg demissicius_A = mkA "demissicius" "demissicia" "demissicium" ; -- [XXXFO] :: reaching to the ground; (of clothes); hanging down, flowing, long (L+S); demissio_F_N = mkN "demissio" "demissionis " feminine ; -- [XXXEO] :: letting/lowering down; extension downward; sinking; dejection/lowering of spirit demissitius_A = mkA "demissitius" "demissitia" "demissitium" ; -- [XXXFS] :: reaching to the ground; (of clothes); hanging down, flowing, long (L+S); --- SLASHSTUFF demissus_A : A2 demissus, demissa -um, demissior -or -us, demississimus -a -um -- [XXXBO] :: |lowly/degraded/abject; downhearted/low/downcast/dejected/discouraged/despondent + demissus_A = mkA "demissus" ; -- [XXXBO] :: |lowly/degraded/abject; downhearted/low/downcast/dejected/discouraged/despondent demitigo_V2 = mkV2 (mkV "demitigare") ; -- [XXXFO] :: calm (person) down; (PASS) become milder/more lenient (L+S); + demitto_V2 = mkV2 (mkV "demittere" "demitto" "demisi" "demissus ") ; -- [XXXAO] :: |descend by race/birth; leave (will); let issue rest (on evidence); fell (tree); demiurgus_M_N = mkN "demiurgus" ; -- [XLHEO] :: magistrate in various Greek states; play by Turpilus; + demo_V2 = mkV2 (mkV "demere" "demo" "dempsi" "demptus ") ; -- [XXXBO] :: take/cut away/off, remove, withdraw; subtract; take away from; democrata_M_N = mkN "democrata" ; -- [GXXEK] :: democrat; democratia_F_N = mkN "democratia" ; -- [HXXEZ] :: democracy; democraticus_A = mkA "democraticus" "democratica" "democraticum" ; -- [GXXEK] :: democratic; @@ -15417,6 +16518,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg demographia_F_N = mkN "demographia" ; -- [GXXEK] :: demography; demographicus_A = mkA "demographicus" "demographica" "demographicum" ; -- [HSXFE] :: demographic; demographus_M_N = mkN "demographus" ; -- [GXXEK] :: demographer; + demolio_V2 = mkV2 (mkV "demolire" "demolio" "demolivi" "demolitus ") ; -- [XXXCO] :: throw/cast off, remove; pull/tear down, demolish/destroy/lay waste; abolish; + demolior_V = mkV "demoliri" "demolior" "demolitus sum " ; -- [XXXCO] :: throw/cast off, remove; pull/tear down, demolish/destroy/lay waste; abolish; demolitio_F_N = mkN "demolitio" "demolitionis " feminine ; -- [XXXDO] :: demolition; act of demolishing, pulling/tearing down; undermining (L+S); demolitor_M_N = mkN "demolitor" "demolitoris " masculine ; -- [XXXFO] :: demolisher, agent/instrument of demolition; that which breaks down (L+S); demonstrabilis_A = mkA "demonstrabilis" "demonstrabilis" "demonstrabile" ; -- [DGXFS] :: demonstrable; @@ -15429,6 +16532,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg demonstro_V2 = mkV2 (mkV "demonstrare") ; -- [XXXBO] :: |reveal, mention, refer to; allege; prove, demonstrate; represent; recommend; demoratio_F_N = mkN "demoratio" "demorationis " feminine ; -- [DXXFS] :: lingering, abiding, remaining; demordeo_V2 = mkV2 (mkV "demordere") ; -- [XXXNO] :: bite off; + demorior_V = mkV "demori" "demorior" "demortuus sum " ; -- [XXXCO] :: die; die off/out (group/class), become extinct; be gone; long for much (w/ACC); demoror_V = mkV "demorari" ; -- [XXXCO] :: detain, cause delay, keep waiting/back, hold up; keep (from); delay/linger/stay; demorsico_V2 = mkV2 (mkV "demorsicare") ; -- [XXXFO] :: bite pieces off; nibble at; bite off; demorsito_V2 = mkV2 (mkV "demorsitare") ; -- [DXXFS] :: bite pieces off; nibble at; bite off; @@ -15437,6 +16541,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg demoscopicus_A = mkA "demoscopicus" "demoscopica" "demoscopicum" ; -- [GXXEK] :: poll-, of poll/polls; demoveo_V2 = mkV2 (mkV "demovere") ; -- [XXXCO] :: |dislodge; turn aside; remove/get rid of; depose/oust; banish; dissociate; demptio_F_N = mkN "demptio" "demptionis " feminine ; -- [XXXFO] :: removal, action of taking away; + demugio_V2 = mkV2 (mkV "demugire" "demugio" "demugivi" "demugitus ") ; -- [XAXFO] :: fill with the sound of lowing/bellowing; demugitus_A = mkA "demugitus" "demugita" "demugitum" ; -- [XXXFO] :: filled with the sound of lowing/bellowing; demulcatus_A = mkA "demulcatus" "demulcata" "demulcatum" ; -- [DXXFS] :: beaten/cudgeled soundly; demulceo_V2 = mkV2 (mkV "demulcere") ; -- [XXXDO] :: stroke, stroke down, rub/stroke caressingly/soothingly; soothe/entrance/charm; @@ -15451,12 +16556,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg demutator_M_N = mkN "demutator" "demutatoris " masculine ; -- [DXXFS] :: changer, transmuter; demutilo_V2 = mkV2 (mkV "demutilare") ; -- [XXXFO] :: lop off; demuto_V = mkV "demutare" ; -- [XXXCO] :: change/alter/transform; deviate from way/goal, fail; depart/be different from; + demuttio_V = mkV "demuttire" "demuttio" nonExist nonExist; -- [DXXFS] :: speak very softly; denariarius_A = mkA "denariarius" "denariaria" "denariarium" ; -- [XLXFO] :: related to the denarius (Roman silver coin); denarismus_M_N = mkN "denarismus" ; -- [DLXFS] :: kind of tax; denarium_N_N = mkN "denarium" ; -- [XLXDO] :: denarius (silver coin=10/16/18 asses); (~ aureus=25 silver ~); drachma weight; denarius_A = mkA "denarius" "denaria" "denarium" ; -- [XLXCO] :: containing/related to the number ten; worth a denarius (Roman silver coin); denarius_M_N = mkN "denarius" ; -- [XLXBO] :: denarius (silver coin=10/16/18 asses); (~ aureus=25 silver ~); drachma weight; denarro_V2 = mkV2 (mkV "denarrare") ; -- [XXXDO] :: tell/relate fully/in full; give a full account of; recount, narrate (L+S); + denascor_V = mkV "denasci" "denascor" nonExist ; -- [XXXDO] :: dwindle, go back in growth; lose vigor; perish, die (L+S); denaso_V2 = mkV2 (mkV "denasare") ; -- [BXXFO] :: remove the nose (from a person's face); deprive of the nose (L+S); denato_V = mkV "denatare" ; -- [XXXFO] :: swim downstream; swim down (L+S); denavigo_V = mkV "denavigare" ; -- [XXXIO] :: sail down; @@ -15493,7 +16600,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg denseo_V2 = mkV2 (mkV "densere") ; -- [XXXCO] :: thicken/condense, press/crowd together; multiply; cause to come thick and fast; densitas_F_N = mkN "densitas" "densitatis " feminine ; -- [XXXCO] :: thickness; density; multitude, abundance; crowding together; (of style); denso_V2 = mkV2 (mkV "densare") ; -- [XXXCO] :: thicken/condense/concentrate/compress/coagulate; press/pack/crowd together; --- SLASHSTUFF densus_A : A2 densus, densa -um, densior -or -us, densissimus -a -um -- [XXXBO] :: |frequent, recurring; terse/concise (style); harsh/horse/thick (sound/voice); + densus_A = mkA "densus" ; -- [XXXBO] :: |frequent, recurring; terse/concise (style); harsh/horse/thick (sound/voice); dentale_N_N = mkN "dentale" "dentalis " neuter ; -- [XAXDO] :: sharebeam/sole of a plowshare; plowshare (L+S); (pl. classical); dentaneus_A = mkA "dentaneus" "dentanea" "dentaneum" ; -- [DXXFS] :: threatening; dentarius_A = mkA "dentarius" "dentaria" "dentarium" ; -- [DBXFS] :: pertaining to the teeth; that cures toothache (w/herba); @@ -15511,11 +16618,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dentifrangibulus_M_N = mkN "dentifrangibulus" ; -- [BXXFS] :: tough, goon, one who knocks out teeth; tooth breaker; dentifricium_N_N = mkN "dentifricium" ; -- [XBXEO] :: dentifrice, tooth powder, toothpaste; dentilegus_M_N = mkN "dentilegus" ; -- [BXXFO] :: one who collects teeth (that were knocked out); (factious); tooth-gatherer; + dentio_V = mkV "dentire" "dentio" nonExist nonExist; -- [XXXEO] :: teethe, cut teeth; (of teeth) grow longer (for lack of food to eat); dentiscalpium_N_N = mkN "dentiscalpium" ; -- [XXXFO] :: toothpick; dentista_M_N = mkN "dentista" ; -- [GXXEK] :: dentist; dentitio_F_N = mkN "dentitio" "dentitionis " feminine ; -- [XBXNO] :: teething, dentation; dentix_M_N = mkN "dentix" "denticis " masculine ; -- [XAXFS] :: kind of sea fish; dentrix_M_N = mkN "dentrix" "dentricis " masculine ; -- [XAXFS] :: kind of sea fish; + denubo_V = mkV "denubere" "denubo" "denupsi" "denuptus "; -- [XXXCO] :: marry; marry off; (from paternal home) (of a woman); marry beneath station; denudatio_F_N = mkN "denudatio" "denudationis " feminine ; -- [EXXFS] :: uncovering, laying bare; denudator_M_N = mkN "denudator" "denudatoris " masculine ; -- [XXXIO] :: stripper; (gymnasium attendant/valet); denudo_V2 = mkV2 (mkV "denudare") ; -- [XXXCO] :: strip, denude, lay bare, uncover; reveal/disclose; expose; rob/plunder/despoil; @@ -15530,39 +16639,51 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg deocco_V2 = mkV2 (mkV "deoccare") ; -- [XAXNO] :: harrow, run the harrows over (crop to remove weeds and ventilate the soil); deonero_V2 = mkV2 (mkV "deonerare") ; -- [XXXFO] :: unload, unburden, remove (burden); deontologia_F_N = mkN "deontologia" ; -- [GXXEK] :: dentistry; + deoperio_V2 = mkV2 (mkV "deoperire" "deoperio" "deoperui" "deopertus ") ; -- [XXXNO] :: uncover, lay bare; open up; disclose (L+S); deopto_V2 = mkV2 (mkV "deoptare") ; -- [XXXFO] :: choose, select; deoratus_A = mkA "deoratus" "deorata" "deoratum" ; -- [XXXFO] :: pleaded; pleading; deordinatio_F_N = mkN "deordinatio" "deordinationis " feminine ; -- [FXXEE] :: disorder; + deorio_V2 = mkV2 (mkV "deorire" "deorio" nonExist nonExist) ; -- [XXXFO] :: drain off; skim off (L+S); (late) swallow, swallow down; deorsom_Adv = mkAdv "deorsom" ; -- [XXXFO] :: down, downwards, beneath, below; (motion/direction/order); in lower situation; deorsum_Adv = mkAdv "deorsum" ; -- [XXXCO] :: down, downwards, beneath, below; (motion/direction/order); in lower situation; deorsus_Adv = mkAdv "deorsus" ; -- [XXXCO] :: down, downwards, beneath, below; (motion/direction/order); in lower situation; deosculor_V = mkV "deosculari" ; -- [XXXEO] :: kiss warmly/affectionately; praise/laud highly (L+S); deosum_Adv = mkAdv "deosum" ; -- [XXXIO] :: down, downwards, beneath, below; (motion/direction/order); in lower situation; + depaciscor_V = mkV "depacisci" "depaciscor" "depactus sum " ; -- [XXXEO] :: bargain for; make a bargain for or about, agree (upon); come to terms; depalator_M_N = mkN "depalator" "depalatoris " masculine ; -- [DXXFS] :: one who marks out the bounds; founder; depalmo_V2 = mkV2 (mkV "depalmare") ; -- [XXXFO] :: slap, strike with the open hand; box on the ear (L+S); depalo_V2 = mkV2 (mkV "depalare") ; -- [DXXFS] :: disclose, reveal; + depango_V2 = mkV2 (mkV "depangere" "depango" "depegi" "depactus ") ; -- [XXXDO] :: drive down (into); fix into the ground (L+S); depansum_N_N = mkN "depansum" ; -- [XXXEO] :: payment; expenditure; [actio ~ => action for double expense incurred]; deparcus_A = mkA "deparcus" "deparca" "deparcum" ; -- [XXXFO] :: miserly, thoroughly mean/stingy; niggardly, excessively sparing (L+S); + depasco_V2 = mkV2 (mkV "depascere" "depasco" "depavi" "depastus ") ; -- [XXXBO] :: graze/feed/pasture (cattle); devour/eat up; waste/consume (w/fire); lay waste; + depascor_V = mkV "depasci" "depascor" "depastus sum " ; -- [XXXDS] :: |cull, select; prune away, remove; destroy, waste; lay waste; depastio_F_N = mkN "depastio" "depastionis " feminine ; -- [XAXNO] :: action of grazing down or stripping the food from; feeding (L+S); depauperatio_F_N = mkN "depauperatio" "depauperationis " feminine ; -- [FXXEM] :: impoverishment; depauperatus_A = mkA "depauperatus" "depauperata" "depauperatum" ; -- [FXXEB] :: impoverished; depaupero_V = mkV "depauperare" ; -- [FXXEM] :: impoverish; depavitus_A = mkA "depavitus" "depavita" "depavitum" ; -- [DXXFS] :: beaten/trampled down; + depeciscor_V = mkV "depecisci" "depeciscor" "depectus sum " ; -- [XXXCO] :: bargain for; make a bargain for or about, agree (upon); come to terms; depectio_F_N = mkN "depectio" "depectionis " feminine ; -- [DLXFS] :: contract, bargain, agreement; + depecto_V2 = mkV2 (mkV "depectere" "depecto" nonExist "depexus ") ; -- [XXXDO] :: comb out; comb thoroughly; comb off/away; depector_M_N = mkN "depector" "depectoris " masculine ; -- [XLXFO] :: one who settles/arranges discreditably; embezzler; fraud; depectulatus_M_N = mkN "depectulatus" "depectulatus " masculine ; -- [XLXEO] :: fraud, act of defrauding/plundering depeculator_M_N = mkN "depeculator" "depeculatoris " masculine ; -- [XLXEO] :: fraud; plunderer, embezzler (Cas); depeculo_V2 = mkV2 (mkV "depeculare") ; -- [XXXEO] :: defraud/embezzle, deprive by fraud; steal/rob/plunder/despoil/rifle; diminish; depeculor_V = mkV "depeculari" ; -- [XXXCO] :: defraud/embezzle, deprive by fraud; steal/rob/plunder/despoil/rifle; diminish; + depello_V2 = mkV2 (mkV "depellere" "depello" "depuli" "depulsus ") ; -- [XXXAO] :: |dislodge; avert; rebut; veer away; force to withdraw/desist; turn out/dismiss; dependentia_F_N = mkN "dependentia" ; -- [FXXEE] :: dependence; dependeo_V = mkV "dependere" ; -- [XXXCO] :: hang on/from/down (from); depend; depend upon/on; proceed/be derived from; + dependo_V2 = mkV2 (mkV "dependere" "dependo" "dependi" "depensus ") ; -- [XXXCO] :: pay over/down; pay (penalty); expend (time/labor); spend, lay out; bestow; dependulus_A = mkA "dependulus" "dependula" "dependulum" ; -- [XXXFO] :: hanging down (from); depennatus_A = mkA "depennatus" "depennata" "depennatum" ; -- [DXXFS] :: winged; depensio_F_N = mkN "depensio" "depensionis " feminine ; -- [DLXFS] :: expenditure; outlay; deperditio_F_N = mkN "deperditio" "deperditionis " feminine ; -- [EXXEE] :: loss; deperditum_N_N = mkN "deperditum" ; -- [XXXEO] :: that which is permanently lost; deperditus_A = mkA "deperditus" "deperdita" "deperditum" ; -- [XXXEO] :: corrupt, abandoned; --- TODO depereo_V : V1 depereo, deperire, deperivi(ii), deperitus -- [XXXCO] :: perish/die; be lost/totally destroyed; be much in love with/love to distraction; + deperdo_V2 = mkV2 (mkV "deperdere" "deperdo" "deperdidi" "deperditus ") ; -- [XXXCO] :: lose permanently/utterly (destruction); be deprived/desperate; destroy, ruin; + depereo_1_V2 = mkV2 (mkV "deperire" "depereo" "deperivi" "deperitus") ; -- [XXXCO] :: perish/die; be lost/totally destroyed; be much in love with/love to distraction; + depereo_2_V2 = mkV2 (mkV "deperire" "depereo" "deperii" "deperitus") ; -- [XXXCO] :: perish/die; be lost/totally destroyed; be much in love with/love to distraction; depetigo_F_N = mkN "depetigo" "depetiginis " feminine ; -- [XBXEO] :: kind of skin eruption; leprosy, scab (L+S); depictio_F_N = mkN "depictio" "depictionis " feminine ; -- [DXXES] :: description, delineation; characterization; depilatio_F_N = mkN "depilatio" "depilationis " feminine ; -- [GXXEK] :: depilation; @@ -15570,11 +16691,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg depilatus_A = mkA "depilatus" "depilata" "depilatum" ; -- [XXXEO] :: having one's hair/plumage plucked; swindled, plucked, fleeced; depilis_A = mkA "depilis" "depilis" "depile" ; -- [XBXEO] :: hairless; without hair; plucked; depilo_V2 = mkV2 (mkV "depilare") ; -- [XXXEC] :: strip hair/feathers; pull out hair; pluck feathers; peel skin; plunder, cheat; + depingo_V2 = mkV2 (mkV "depingere" "depingo" "depinxi" "depictus ") ; -- [XXXCO] :: paint, depict, portray; describe; decorate/color w/paint; embroider; depinnatus_A = mkA "depinnatus" "depinnata" "depinnatum" ; -- [DXXFS] :: winged; deplaco_V2 = mkV2 (mkV "deplacare") ; -- [DXXES] :: appease, propitiate; + deplango_V2 = mkV2 (mkV "deplangere" "deplango" "deplanxi" nonExist) ; -- [XXXEO] :: mourn by beating the breast; bewail, lament (L+S); deplano_V2 = mkV2 (mkV "deplanare") ; -- [DTXES] :: level off, make level/even; deplanto_V2 = mkV2 (mkV "deplantare") ; -- [XAXCO] :: sever/break off (twig/branch/shoot); plant/set in the ground (L+S); deplatio_F_N = mkN "deplatio" "deplationis " feminine ; -- [XXXIO] :: marking off with stakes/palings; marking time by shadows of stakes (L+S); + deplector_V = mkV "deplecti" "deplector" "deplexus sum " ; -- [XXXFO] :: claw down, pull down in one's grasp; depleo_V2 = mkV2 (mkV "deplere") ; -- [XBXCO] :: drain/draw off, empty out; bleed/let (blood); relieve (of); exhaust; subtract; depletura_F_N = mkN "depletura" ; -- [DBXFS] :: bleeding, blood-letting; deplexus_A = mkA "deplexus" "deplexa" "deplexum" ; -- [DXXES] :: clasping; grasping; @@ -15584,15 +16708,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg deploratus_A = mkA "deploratus" "deplorata" "deploratum" ; -- [XXXDO] :: miserable; mournful; hopeless, incurable (disease/patient); deploro_V = mkV "deplorare" ; -- [XXXCO] :: weep/lament/mourn for/cry over; deplore, complain of; lose; despair/give up on; deplumis_A = mkA "deplumis" "deplumis" "deplume" ; -- [XAXNO] :: moulted; denuded of feathers; without feathers (L+S); featherless; + depluo_V = mkV "depluere" "depluo" "deplui" "deplutus "; -- [XXXEO] :: rain down; [depluta terra => drenched (L+S)]; depoclo_V2 = mkV2 (mkV "depoclare") ; -- [XXXFO] :: ruin by expenditure on cups/drinking; depoculo_V2 = mkV2 (mkV "depoculare") ; -- [XXXFO] :: ruin by expenditure on cups/drinking; + depolio_V2 = mkV2 (mkV "depolire" "depolio" "depolivi" "depolitus ") ; -- [XXXEO] :: polish thoroughly; smooth, polish off (L+S); depolitio_F_N = mkN "depolitio" "depolitionis " feminine ; -- [XAXFO] :: careful/thorough cultivation/polish; perfection, finished/perfect thing (L+S); depompatio_F_N = mkN "depompatio" "depompationis " feminine ; -- [DXXFS] :: dishonoring; depriving of ornament; depompo_V2 = mkV2 (mkV "depompare") ; -- [DXXFS] :: dishonor; deprive of ornament; depondero_V = mkV "deponderare" ; -- [DXXFS] :: weigh down, press down by its weight; + deponefacio_V2 = mkV2 (mkV "deponefacere" "deponefacio" "deponefeci" "deponefactus ") ; -- [XXXFO] :: deposit, put down; deponefio_V = mkV "deponeferi" ; -- [XXXFO] :: be deposited/put down; (deponefacio PASS); deponens_A = mkA "deponens" "deponentis"; -- [DGXES] :: deponent; of a verb which in passive has active meaning; deponens_M_N = mkN "deponens" "deponentis " masculine ; -- [DGXES] :: deponent; a verb which in passive has active meaning; + depono_V2 = mkV2 (mkV "deponere" "depono" "deposui" "depostus ") ; -- [XXXAO] :: ||pull down, demolish; plant (seedlings); set up, place; lay to rest; fire; depontanus_A = mkA "depontanus" "depontana" "depontanum" ; -- [XXXFO] :: thrown off bridge; (old men, 60, who were thrown off bridge?); deponto_V2 = mkV2 (mkV "depontare") ; -- [XXXFO] :: throw from a bridge; depopulatio_F_N = mkN "depopulatio" "depopulationis " feminine ; -- [XWXFO] :: plundering/pillaging/sacking/marauding/ravaging/laying waste; @@ -15604,6 +16732,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg deportatorius_A = mkA "deportatorius" "deportatoria" "deportatorium" ; -- [DXXFS] :: transportation-, belonging to removal/transportation; deportio_F_N = mkN "deportio" "deportionis " feminine ; -- [EXXEW] :: carrying, conveying; conveyance; transportation; deporto_V = mkV "deportare" ; -- [XXXBO] :: bring, convey (to); carry along/down (current); transport; take/bring home; + deposco_V2 = mkV2 (mkV "deposcere" "deposco" "depoposci" nonExist) ; -- [XXXCO] :: demand peremptorily; ask for earnestly; require; request earnestly; challenge; depositarius_M_N = mkN "depositarius" ; -- [XXXEO] :: person in whose care property is deposited; depositor; trustee; depositary; depositio_F_N = mkN "depositio" "depositionis " feminine ; -- [DXXCS] :: ||laying down/aside, putting off; burying/depositing in earth; parting from; depositivus_A = mkA "depositivus" "depositiva" "depositivum" ; -- [DXXFS] :: deposit-, of/belonging to a deposit; @@ -15636,31 +16765,40 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg deprecio_V2 = mkV2 (mkV "depreciare") ; -- [DXXES] :: depreciate, lower the value of; depreco_V = mkV "deprecare" ; -- [EXXFW] :: avert by prayer; entreat/pray/beg; intercede/beg pardon/mercy/relief/exemption; deprecor_V = mkV "deprecari" ; -- [XXXAO] :: avert by prayer; entreat/pray/beg; intercede/beg pardon/mercy/relief/exemption; + deprehendo_V2 = mkV2 (mkV "deprehendere" "deprehendo" "deprehendi" "deprehensus ") ; -- [XXXAO] :: |discover, discern, recognize; detect; indicate, reveal; embarrass; deprehensio_F_N = mkN "deprehensio" "deprehensionis " feminine ; -- [XXXEO] :: detection, act of coming upon and catching; surprising (L+S); seizing; + deprendo_V2 = mkV2 (mkV "deprendere" "deprendo" "deprendi" "deprensus ") ; -- [XPXAO] :: |discover, discern, recognize; detect; indicate, reveal; embarrass; deprensa_F_N = mkN "deprensa" ; -- [DWXFS] :: species of military punishment; (more than castigatio, less than ignominia); depresse_Adv =mkAdv "depresse" "depressius" "depressissime" ; -- [XXXFO] :: deeply; deep/way down; depressio_F_N = mkN "depressio" "depressionis " feminine ; -- [XXXEO] :: lowering, sinking down (action of); depression (L+S); nervous breakdown (Cal); depressivus_A = mkA "depressivus" "depressiva" "depressivum" ; -- [GXXEK] :: depressive; --- SLASHSTUFF depressus_A : A2 depressus, depressa -um, depressior -or -us, depressissimus -a -um -- [XXXCO] :: |reaching/sloping down; base/mean, pedestrian, lacking moral/style; depressed; + depressus_A = mkA "depressus" ; -- [XXXCO] :: |reaching/sloping down; base/mean, pedestrian, lacking moral/style; depressed; depretiator_M_N = mkN "depretiator" "depretiatoris " masculine ; -- [DXXFS] :: depreciator, one who depreciates/lowers value/undervalues; depretio_V2 = mkV2 (mkV "depretiare") ; -- [XXXEO] :: depreciate, lower the value of; + deprimo_V2 = mkV2 (mkV "deprimere" "deprimo" "depressi" "depressus ") ; -- [XXXAO] :: |humble, reduce position/fortune/value; lower pitch (sound)/brightness (color); deproelians_A = mkA "deproelians" "deproeliantis"; -- [XXXFC] :: struggling violently; deproelior_V = mkV "deproeliari" ; -- [XWXFO] :: fight/struggle/war fiercely/violently, battle; + depromo_V2 = mkV2 (mkV "depromere" "depromo" "deprompsi" "depromptus ") ; -- [XXXCO] :: bring/draw out, fetch, produce (from container/store); bring/utter (info); depropero_V = mkV "deproperare" ; -- [XXXDO] :: hurry/hasten/make haste to complete/finish (w/INF); prepare hastily (L+S); deproperus_A = mkA "deproperus" "depropera" "deproperum" ; -- [DXXFS] :: hastening/hurrying, making great haste; + depso_V2 = mkV2 (mkV "depsere" "depso" "depsui" "depstus ") ; -- [XXXFS] :: |dishonor; have improper sex; (rude); depsticius_A = mkA "depsticius" "depsticia" "depsticium" ; -- [XXXFO] :: kneaded, made by kneading; depstitius_A = mkA "depstitius" "depstitia" "depstitium" ; -- [BXXFS] :: kneaded, made by kneading; depubes_A = mkA "depubes" "depuberis"; -- [XXXFS] :: immature, not a full age; + depudesco_V = mkV "depudescere" "depudesco" "depudui" nonExist; -- [XXXEO] :: put off all shame; become shameless (L+S); depudico_V2 = mkV2 (mkV "depudicare") ; -- [DXXFS] :: violate, dishonor; deflower, deprive of virginity (Sex); + depudt_V0 = mkV0 "depudt"; -- [XXXFO] :: make/be utterly/greatly ashamed (W/INF); not to be ashamed. be shameless (L+S); depugis_A = mkA "depugis" "depugis" "depuge" ; -- [XBXFO] :: having meager/skinny/thin buttocks; depugnatio_F_N = mkN "depugnatio" "depugnationis " feminine ; -- [XWXFO] :: method of fighting a battle; violent fighting (L+S); eager contest; depugno_V = mkV "depugnare" ; -- [XWXCO] :: fight hard/it out, do battle; fight against and kill (in arena); stop fighting; + depuio_V2 = mkV2 (mkV "depuire" "depuio" "depuivi" nonExist) ; -- [XXXFO] :: beat thoroughly; strike, beat; depulpo_V = mkV "depulpare" ; -- [DBXFS] :: grow lean/thin; lose flesh; depulsio_F_N = mkN "depulsio" "depulsionis " feminine ; -- [XXXCO] :: thrusting down; averting/lowering/repelling/warding off; rebuttal/rejoinder; depulso_V2 = mkV2 (mkV "depulsare") ; -- [XXXFO] :: push/thrust away; push aside (L+S); depulsor_M_N = mkN "depulsor" "depulsoris " masculine ; -- [XXXEO] :: one who repels/averts/removes/drives away; (of Jupiter as averter of evil); depulsorium_N_N = mkN "depulsorium" ; -- [XXXEO] :: spells (pl.) to avert evil; depulsorius_A = mkA "depulsorius" "depulsoria" "depulsorium" ; -- [XXXEO] :: that averts evil; serving to avert (L+S); + depungo_V2 = mkV2 (mkV "depungere" "depungo" "depupugi" "depunctus ") ; -- [XLXFO] :: indicate by pricking (in accounts); mark off (L+S); designate; depuratio_F_N = mkN "depuratio" "depurationis " feminine ; -- [GXXEK] :: refinement; depuratus_A = mkA "depuratus" "depurata" "depuratum" ; -- [FEXEF] :: purified, made/become free of impurities; depurgatio_F_N = mkN "depurgatio" "depurgationis " feminine ; -- [DBXFS] :: cleaning by purgatives; purging; @@ -15669,9 +16807,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg deputatio_F_N = mkN "deputatio" "deputationis " feminine ; -- [FXXDE] :: deputation; assignment, appointment; deputatus_M_N = mkN "deputatus" ; -- [GXXEK] :: deputy; deputo_V2 = mkV2 (mkV "deputare") ; -- [XXXCO] :: prune/cut away/back; regard/esteem; define as/assign to/classify; post/second; + depuvio_V2 = mkV2 (mkV "depuvire" "depuvio" "depuvivi" nonExist) ; -- [XXXEO] :: beat thoroughly; strike, beat; depygis_A = mkA "depygis" "depygis" "depyge" ; -- [XBXFS] :: having meager/skinny/thin buttocks; deque_Adv = mkAdv "deque" ; -- [XXXFS] :: downwards; + dequeror_V = mkV "dequeri" "dequeror" "dequestus sum " ; -- [XXXEO] :: bewail; complain of; dequestus_A = mkA "dequestus" "dequesta" "dequestum" ; -- [XXXES] :: having deeply deplored. bitterly complained of; + derado_V2 = mkV2 (mkV "deradere" "derado" "derasi" "derasus ") ; -- [XXXCO] :: scrape/rub/smooth off/away (surface of); graze; shave/cut off (hair/head); deraino_V2 = mkV2 (mkV "derainare") ; -- [FLXEM] :: deraign; establish title; vindicate; deratio_F_N = mkN "deratio" "derationis " feminine ; -- [FLXFY] :: deraignment; disarrangement; E:discharge (from monastic order); derationo_V = mkV "derationare" ; -- [FLXEY] :: prove; establish; deraign; disarrange; E:be discharged (from monastic order); @@ -15693,28 +16834,33 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg derectorius_A = mkA "derectorius" "derectoria" "derectorium" ; -- [EXXFS] :: that directs or sends in any direction; derectum_N_N = mkN "derectum" ; -- [XSXEE] :: straight line; derectura_F_N = mkN "derectura" ; -- [XTXFO] :: level, uniform horizontal surface; leveling of a surface; --- SLASHSTUFF derectus_A : A2 derectus, derecta -um, derectior -or -us, derectissimus -a -um -- [XXXBO] :: ||sheer/steep (L+S); level; open/straightforward (Ecc); proper, helpful/guiding; + derectus_A = mkA "derectus" ; -- [XXXBO] :: ||sheer/steep (L+S); level; open/straightforward (Ecc); proper, helpful/guiding; derectus_M_N = mkN "derectus" ; -- [XLXFO] :: person given rights by direct procedure; derelictio_F_N = mkN "derelictio" "derelictionis " feminine ; -- [XXXFO] :: neglect, disregard; abandoning; derelictor_M_N = mkN "derelictor" "derelictoris " masculine ; -- [DXXFS] :: one who abandons; derelictum_N_N = mkN "derelictum" ; -- [XLXDO] :: that which has been given up/abandoned; (legal); derelictus_A = mkA "derelictus" "derelicta" "derelictum" ; -- [XXXEO] :: abandoned, derelict (places/sites); derelictus_M_N = mkN "derelictus" "derelictus " masculine ; -- [XXXFO] :: neglect; + derelinquo_V2 = mkV2 (mkV "derelinquere" "derelinquo" "dereliqui" "derelictus ") ; -- [XXXBO] :: leave behind/abandon/discard; forsake/desert; neglect; leave derelict; bequeath; derepente_Adv = mkAdv "derepente" ; -- [XXXCO] :: suddenly; --- TODO derepo_V : V2 derepo, derepere, derepsi, - -- Declension: 3rd -- Comment: [XXXDO] :: crawl/creep/sneak down; + derepo_V2 = mkV2 (mkV "derepere" "derepo" "derepsi" nonExist ) ; -- [XXXDO] :: crawl/creep/sneak down; derideo_V2 = mkV2 (mkV "deridere") ; -- [XXXCO] :: mock/deride/laugh at/make fun of; be able to laugh, escape, get off scot free; deridiculum_N_N = mkN "deridiculum" ; -- [XXXCO] :: laughing-stock; absurdity, ridiculous thing; ridiculousness; ridicule (L+S); deridiculus_A = mkA "deridiculus" "deridicula" "deridiculum" ; -- [XXXEO] :: very/utterly laughable; ridiculous, absurd, ludicrous; derigeo_V2 = mkV2 (mkV "derigere") ; -- [DXXFS] :: soften, remove hardness; + derigesco_V = mkV "derigescere" "derigesco" "derigui" nonExist; -- [XXXCO] :: freeze, become/grow stiff/rigid (through fear); grow quite/very still; + derigo_V2 = mkV2 (mkV "derigere" "derigo" "derexi" "derectus ") ; -- [XXXAO] :: |||direct (course/steps), turn/steer/guide; propel/direct (missiles/blows); + deripio_V2 = mkV2 (mkV "deripere" "deripio" "deripui" "dereptus ") ; -- [XXXBO] :: seize/grab/snatch/take away; tear/pull off/down; remove (violently); derisio_F_N = mkN "derisio" "derisionis " feminine ; -- [DXXES] :: mockery, scorn, derision; derisor_M_N = mkN "derisor" "derisoris " masculine ; -- [XXXCO] :: scoffer, mocker; cynic; satirical person; derisorius_A = mkA "derisorius" "derisoria" "derisorium" ; -- [XXXEO] :: derisory, characterized by mockery; ridiculous, serving for laughter (L+S); --- SLASHSTUFF derisus_A : A2 derisus, derisa -um, derisior -or -us, derisissimus -a -um -- [XXXFO] :: absurd, laughable; scorned (L+S); + derisus_A = mkA "derisus" ; -- [XXXFO] :: absurd, laughable; scorned (L+S); derisus_M_N = mkN "derisus" "derisus " masculine ; -- [XXXCO] :: mockery; scorn, derision; derivatio_F_N = mkN "derivatio" "derivationis " feminine ; -- [XXXCO] :: heading/turning off/away, diversion (into another channel); derivation (words); derivativum_N_N = mkN "derivativum" ; -- [XGXFO] :: derivative, word formed from another word; derivation (L+S); derivativus_A = mkA "derivativus" "derivativa" "derivativum" ; -- [DGXFS] :: derivative; (grammar); derivo_V2 = mkV2 (mkV "derivare") ; -- [XXXCO] :: draw/lead off (river/fluid), divert/turn aside; derive/draw on; form derivative; + derodo_V2 = mkV2 (mkV "derodere" "derodo" "derosi" "derosus ") ; -- [XXXNO] :: gnaw/nibble away; derogatio_F_N = mkN "derogatio" "derogationis " feminine ; -- [XLXFO] :: derogation, partial abrogation of a law; derogator_M_N = mkN "derogator" "derogatoris " masculine ; -- [DXXFS] :: detractor, depreciator; derogatorius_A = mkA "derogatorius" "derogatoria" "derogatorium" ; -- [XXXFO] :: modifying; belonging to a derogation/partial repeal of a law (L+S); @@ -15722,67 +16868,81 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg derogo_V = mkV "derogare" ; -- [XXXCO] :: subtract/remove/diminish/detract; disparage; repeal/set aside/modify (law); derosus_A = mkA "derosus" "derosa" "derosum" ; -- [XXXEC] :: gnawed away; nibbled (L+S); deruncino_V2 = mkV2 (mkV "deruncinare") ; -- [XXXEO] :: plane off, shave; cheat, fleece; deceive; + deruo_V2 = mkV2 (mkV "deruere" "deruo" "derui" "derutus ") ; -- [XXXEO] :: fall down/off; cause to fall/collapse; throw/cast down (L+S); detract/take away; + derupio_V2 = mkV2 (mkV "derupere" "derupio" "derupui" "dereptus ") ; -- [XXXDS] :: seize/grab/snatch/take away; tear/pull off/down; remove (violently); deruptum_N_N = mkN "deruptum" ; -- [XXXES] :: precipices (pl.); --- SLASHSTUFF deruptus_A : A2 deruptus, derupta -um, deruptior -or -us, deruptissimus -a -um -- [XXXDO] :: steep, precipitous; craggy; broken; + deruptus_A = mkA "deruptus" ; -- [XXXDO] :: steep, precipitous; craggy; broken; desacrifico_V2 = mkV2 (mkV "desacrificare") ; -- [XEXIO] :: dedicate as a sacrificial victim; + desaevio_V = mkV "desaevire" "desaevio" "desaevivi" "desaevitus "; -- [XXXCO] :: rage, rave furiously; work off/vent one's rage; desalto_V2 = mkV2 (mkV "desaltare") ; -- [XXXFO] :: dance through; perform w/dance; represent in dance (L+S); dance the part of; descendens_F_N = mkN "descendens" "descendentis " feminine ; -- [XXXFS] :: descendant; (pl.) posterity, descendants; descendens_M_N = mkN "descendens" "descendentis " masculine ; -- [XXXFS] :: descendant; (pl.) posterity, descendants; + descendo_V = mkV "descendere" "descendo" "descendi" "descensus "; -- [XXXAO] :: |stoop; demean; drop/become lower (pitch); be reduced; trace descent/come down; descensio_F_N = mkN "descensio" "descensionis " feminine ; -- [XXXEO] :: descent, action of going down; sailing down; (sunken) bath; descensorius_A = mkA "descensorius" "descensoria" "descensorium" ; -- [DXXFS] :: descent, descending, coming down; descensus_M_N = mkN "descensus" "descensus " masculine ; -- [XXXCO] :: decent, climbing/getting down; action/means/way of descent; lying down (rude); + descindo_V2 = mkV2 (mkV "descindere" "descindo" "descidi" "descissus ") ; -- [XXXFO] :: cut/slit down; divide (L+S), divide into two parties; + descisco_V = mkV "desciscere" "descisco" "descivi" "descitus "; -- [XXXBO] :: desert/defect/revolt; deviate/abandon standard/principle; degenerate; fall away; descobino_V2 = mkV2 (mkV "descobinare") ; -- [XXXEO] :: scrape, graze; scrape/rasp/file off/away; + describo_V2 = mkV2 (mkV "describere" "describo" "descripsi" "descriptus ") ; -- [XXXBO] :: describe/draw, mark/trace out; copy/transcribe/write; establish (law/right) descripte_Adv = mkAdv "descripte" ; -- [XXXFO] :: exactly; in a clearly defined manner; distinctly, precisely (L+S); descriptio_F_N = mkN "descriptio" "descriptionis " feminine ; -- [XXXCO] :: description/descriptive story; drawing of diagram/plan; indictment; transcript; descriptiuncula_F_N = mkN "descriptiuncula" ; -- [XGXFO] :: delineation, short description; short passage of description (in speech/etc.); descriptivus_A = mkA "descriptivus" "descriptiva" "descriptivum" ; -- [XXXFS] :: descriptive, containing an exact description; descriptor_M_N = mkN "descriptor" "descriptoris " masculine ; -- [DXXFS] :: describer, delineator; descriptum_N_N = mkN "descriptum" ; -- [XXXFS] :: diary, journal; things (pl.) recorded, writings; --- SLASHSTUFF descriptus_A : A2 descriptus, descripta -um, descriptior -or -us, descriptissimus -a -um -- [XXXFO] :: organized, arranged; precisely ordered (L+S); + descriptus_A = mkA "descriptus" ; -- [XXXFO] :: organized, arranged; precisely ordered (L+S); descrobo_V2 = mkV2 (mkV "descrobare") ; -- [DTXFS] :: set (jewel in setting); enchase, deeply engrave; ornament; + desculpo_V2 = mkV2 (mkV "desculpere" "desculpo" "desculpi" "desculptus ") ; -- [DXXFS] :: carve out, sculpt; copy by carving/graving; desecatio_F_N = mkN "desecatio" "desecationis " feminine ; -- [DXXFS] :: cutting off; deseco_V2 = mkV2 (mkV "desecare") ; -- [XAXCO] :: sever; cut off (limb/boundary); cut/carve from/out/away; cut/reap/mow (crop); desectio_F_N = mkN "desectio" "desectionis " feminine ; -- [XAXFO] :: mowing, action of mowing; cutting off (L+S); + desenesco_V = mkV "desenescere" "desenesco" "desenui" nonExist; -- [XXXFO] :: die away; lose force with the passage of time; diminish by age (L+S); deseps_A = mkA "deseps" "desipis"; -- [XXXFS] :: insane; out of one's mind; --- deserpo_V2 : V4 deserpo, deserpere, deserpsi, deserptus -- Declension: 3rd -- Case: DAT -- Comment: [XXXEO] :: creep over; spread over; creep down (L+S); + desero_V2 = mkV2 (mkV "deserere" "desero" "desevi" "desatus ") ; -- [XAXFS] :: plant, sow; + deserpo_V2 = mkV2 (mkV "deserpere" "deserpo" "deserpsi" "deserptus ") Dat_Prep ; -- [XXXEO] :: creep over; spread over; creep down (L+S); desersum_Adv = mkAdv "desersum" ; -- [FXXFE] :: from above; deserta_F_N = mkN "deserta" ; -- [XXXFS] :: abandoned/deserted wife; desertio_F_N = mkN "desertio" "desertionis " feminine ; -- [XWXEO] :: desertion; deserting (from army); forsaking (L+S); desolation (4 Ezra 3:2); desertor_M_N = mkN "desertor" "desertoris " masculine ; -- [XWXCO] :: deserter; one who abandons/forsakes (duty); fugitive; turncoat (L+S); runaway; desertrix_F_N = mkN "desertrix" "desertricis " feminine ; -- [DXXFS] :: deserter (female); she who abandons/forsakes/neglects; desertum_N_N = mkN "desertum" ; -- [XXXDX] :: desert; wilderness (pl.); unfrequented places; desert places, wastes (L+S); --- SLASHSTUFF desertus_A : A2 desertus, deserta -um, desertior -or -us, desertissimus -a -um -- [XXXDX] :: deserted, uninhabited, without people; solitary/lonely; forsaken; desert/waste; --- deservio_V2 : V4 deservio, deservire, deservivi, deservitus -- Declension: 4th -- Case: DAT -- Comment: [XXXCO] :: serve; devote oneself to (interest/job); be subject to; be of service/use to; + desertus_A = mkA "desertus" ; -- [XXXDX] :: deserted, uninhabited, without people; solitary/lonely; forsaken; desert/waste; + deservio_V2 = mkV2 (mkV "deservire" "deservio" "deservivi" "deservitus ") Dat_Prep ; -- [XXXCO] :: serve; devote oneself to (interest/job); be subject to; be of service/use to; deses_A = mkA "deses" "desidis"; -- [XXXEC] :: idle, lazy, indolent; inactive, sluggish; slacking off (from); desicco_V2 = mkV2 (mkV "desiccare") ; -- [XXXFO] :: dry (up), drain dry; desiccate (L+S); desico_V2 = mkV2 (mkV "desicare") ; -- [XAXEO] :: sever; cut off (limb/boundary); cut/carve from/out/away; cut/reap/mow (crop); desicut_Adv = mkAdv "desicut" ; -- [FLXFJ] :: since; desideo_V = mkV "desidere" ; -- [XXXCO] :: |settle (sediment); defecate; deteriorate, degenerate; remain inactive (L+S); --- SLASHSTUFF desiderabilis_A : A2 desiderabilis, desiderabile, desiderabilior -or -us, desiderabilissimus -a -u -- [XXXDO] :: wanted, desirable, that is to be wished for; missed (dead people); regretted; + desiderabilis_A = mkA "desiderabilis" ; -- [XXXDO] :: wanted, desirable, that is to be wished for; missed (dead people); regretted; desiderans_A = mkA "desiderans" "desiderantis"; -- [XXXEO] :: greatly desired or missed; (SUPER of absent/dead persons); desideranter_Adv =mkAdv "desideranter" "desiderantius" "desiderantissime" ; -- [XXXEO] :: longingly, with yearning; eagerly, with ardent desire (L+S); desideratio_F_N = mkN "desideratio" "desiderationis " feminine ; -- [XXXFO] :: desire, longing; want, requirement; question to be examined (L+S); desiderativus_A = mkA "desiderativus" "desiderativa" "desiderativum" ; -- [DGXFS] :: desiderative; (of verbs constructed from other indicating desire for that act); --- SLASHSTUFF desideratus_A : A2 desideratus, desiderata -um, desideratior -or -us, desideratissimus -a -um -- [XXXEO] :: desired, longed for, sought after; missed (the dead), regretted; + desideratus_A = mkA "desideratus" ; -- [XXXEO] :: desired, longed for, sought after; missed (the dead), regretted; desiderium_N_N = mkN "desiderium" ; -- [XXXBO] :: |favorite, object of desire; pleasure, that desired/needed; petition, request; desidero_V2 = mkV2 (mkV "desiderare") ; -- [XXXBO] :: |want to know; investigate/examine/discuss (L+S); raise the question; desidia_F_N = mkN "desidia" ; -- [XXXEO] :: |ebbing; subsiding; (process of); retiring (L+S); desidiabulum_N_N = mkN "desidiabulum" ; -- [XXXFO] :: place for lounging/wasting time in; desidies_F_N = mkN "desidies" "desidiei " feminine ; -- [DXXFS] :: idleness; desidiose_Adv = mkAdv "desidiose" ; -- [XXXFO] :: idly; indolently; slothfully; --- SLASHSTUFF desidiosus_A : A2 desidiosus, desidiosa -um, desidiosior -or -us, desidiosissimus -a -um -- [XXXCO] :: idle, indolent, lazy; slothful; causing idleness, making lazy (L+S); --- TODO desido_V : V2 desido, desidere, desidi, - -- Declension: 3rd -- Comment: [XXXEO] :: sink/settle down, subside; sit down; defecate; be depressed; deteriorate; + desidiosus_A = mkA "desidiosus" ; -- [XXXCO] :: idle, indolent, lazy; slothful; causing idleness, making lazy (L+S); + desido_V2 = mkV2 (mkV "desidere" "desido" "desidi" nonExist ) ; -- [XXXEO] :: sink/settle down, subside; sit down; defecate; be depressed; deteriorate; desiduo_Adv = mkAdv "desiduo" ; -- [XXXFO] :: for a long time; a long time (L+S); designate_Adv = mkAdv "designate" ; -- [DXXIS] :: distinctly; designatio_F_N = mkN "designatio" "designationis " feminine ; -- [XXXCO] :: |demarcation, marking out; figure, diagram; specification; describing (L+S); designator_M_N = mkN "designator" "designatoris " masculine ; -- [XXXCS] :: arranger; assigner of theater seats; undertaker/master of ceremonies (funeral); designatus_A = mkA "designatus" "designata" "designatum" ; -- [XLXCO] :: designate/elect; appointed (but not yet installed magistrate); expected (baby); designo_V2 = mkV2 (mkV "designare") ; -- [XXXBO] :: |earmark/choose; appoint, elect (magistrate); order/plan; scheme. perpetrate; + desilio_V2 = mkV2 (mkV "desilire" "desilio" "desului" "desultus ") ; -- [BXXFS] :: leap/jump down, dismount, alight; (chariot); jump headlong, venture heedlessly; desinentia_F_N = mkN "desinentia" ; -- [GGXEK] :: inflection; desino_V = mkV "desinare" ; -- [DXXFS] :: stop/end/finish, abandon/leave/break off, desist/cease; come to/at end/close; + desino_V2 = mkV2 (mkV "desinere" "desino" "desivi" "desitus ") ; -- [XXXBO] :: stop/end/finish, abandon/leave/break off, desist/cease; come to/at end/close; desioculus_M_N = mkN "desioculus" ; -- [DBXFS] :: one who has lost an eye; desipiens_A = mkA "desipiens" "desipientis"; -- [XXXEO] :: stupid, witless, lacking intelligence; foolish, silly (L+S); desipientia_F_N = mkN "desipientia" ; -- [XXXFO] :: loss of reason; want of understanding (L+S); foolishness; + desipio_V = mkV "desipere" "desipio" "desipui" nonExist; -- [XXXCO] :: act/be foolish; be out of one's mind/lose one's reason/lack rational thought; + desisto_V2 = mkV2 (mkV "desistere" "desisto" "destiti" "destitus ") ; -- [XXXBO] :: stop/cease/desist (from); give up, leave/stand off; dissociate oneself; desitus_A = mkA "desitus" "desita" "desitum" ; -- [XAXFS] :: sown/planted deep; desitus_M_N = mkN "desitus" "desitus " masculine ; -- [DXXFS] :: ceasing, stopping; desolatio_F_N = mkN "desolatio" "desolationis " feminine ; -- [EEXCS] :: desolation; desert; abandonment (Souter); solitude; @@ -15790,6 +16950,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg desolatorius_A = mkA "desolatorius" "desolatoria" "desolatorium" ; -- [EXXES] :: that makes lonely/desolate; desolatus_A = mkA "desolatus" "desolata" "desolatum" ; -- [EXXEE] :: desolate; empty; desolo_V2 = mkV2 (mkV "desolare") ; -- [XXXCO] :: forsake/abandon/desert; leave alone/without; empty of people; deprive/rob; + desolvo_V2 = mkV2 (mkV "desolvere" "desolvo" "desolvi" "desolutus ") ; -- [XXXFO] :: disperse, pay out (sum of money); desommis_A = mkA "desommis" "desommis" "desomme" ; -- [XBXFO] :: deprived of sleep; sleepless (L+S); desonans_A = mkA "desonans" "desonantis"; -- [XXXFO] :: echoing downwards; desorbeo_V2 = mkV2 (mkV "desorbere") ; -- [DBXES] :: swallow down; @@ -15807,16 +16968,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg desperanter_Adv = mkAdv "desperanter" ; -- [XXXFO] :: despairingly; in a despairing manner; desperate_Adv = mkAdv "desperate" ; -- [XXXEO] :: desperately, hopelessly; tremendously, very; desperatio_F_N = mkN "desperatio" "desperationis " feminine ; -- [XXXCO] :: desperation; desperate action/conduct/health; despair/hopelessness (of w/GEN); --- SLASHSTUFF desperatus_A : A2 desperatus, desperata -um, desperatior -or -us, desperatissimus -a -um -- [XXXCO] :: desperate/hopeless; despairing/lacking hope; desperately ill/situated; reckless; + desperatus_A = mkA "desperatus" ; -- [XXXCO] :: desperate/hopeless; despairing/lacking hope; desperately ill/situated; reckless; + desperno_V2 = mkV2 (mkV "despernere" "desperno" "desprevi" "despretus ") ; -- [XXXEO] :: despise utterly/greatly/completely; disdain (L+S); despero_V = mkV "desperare" ; -- [XXXBO] :: despair (of); have no/give up hope (of/that); give up as hopeless (of cure); despicabilis_A = mkA "despicabilis" "despicabilis" "despicabile" ; -- [DXXES] :: despicable, contemptible; despicans_A = mkA "despicans" "despicantis"; -- [XXXFO] :: contemptuous, scornful (of); despicatio_F_N = mkN "despicatio" "despicationis " feminine ; -- [XXXFO] :: scorn; contempt; --- SLASHSTUFF despicatus_A : A2 despicatus, despicata -um, despicatior -or -us, despicatissimus -a -um -- [XXXDO] :: despicable, contemptible; that is an object of contempt; despised (L+S); + despicatus_A = mkA "despicatus" ; -- [XXXDO] :: despicable, contemptible; that is an object of contempt; despised (L+S); despicatus_M_N = mkN "despicatus" "despicatus " masculine ; -- [XXXEO] :: scorn; contempt; (only DAT L+S); despicientia_F_N = mkN "despicientia" ; -- [XXXEO] :: contempt (for); indifference (to); despising (L+S); + despicio_V2 = mkV2 (mkV "despicere" "despicio" "despexi" "despectus ") ; -- [XXXBO] :: look down on/over; relax attention; disdain, despise; express contempt for; despicor_V = mkV "despicari" ; -- [XXXEO] :: despise; scorn, disdain; despicus_A = mkA "despicus" "despica" "despicum" ; -- [XXXFO] :: looking down; despised, disdained (L+S); + desplendesco_V = mkV "desplendescere" "desplendesco" nonExist nonExist; -- [DXXFS] :: dim; go out; cease to shine; lose its brightness; despolator_M_N = mkN "despolator" "despolatoris " masculine ; -- [XXXFO] :: robber; plunderer; despoiler; despoliatio_F_N = mkN "despoliatio" "despoliationis " feminine ; -- [DXXES] :: robbery; despoiling; despoliator_M_N = mkN "despoliator" "despoliatoris " masculine ; -- [XXXFZ] :: robber; plunderer; despoiler; (Bianchi); @@ -15828,18 +16992,22 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg desponsio_F_N = mkN "desponsio" "desponsionis " feminine ; -- [DXXFS] :: despairing, desponding; desponso_V2 = mkV2 (mkV "desponsare") ; -- [XXXEO] :: betroth, promise in marriage; desponsor_M_N = mkN "desponsor" "desponsoris " masculine ; -- [XXXFO] :: pledger, one who betroths/pledges; + desposco_V2 = mkV2 (mkV "desposcere" "desposco" "desposci" "desposctus ") ; -- [FXXEN] :: demand; despotice_Adv = mkAdv "despotice" ; -- [EXXFE] :: despotically; despumatio_F_N = mkN "despumatio" "despumationis " feminine ; -- [DXXFS] :: skimming off; despumo_V = mkV "despumare" ; -- [XXXCO] :: skim, remove/draw froth/foam/scum (from); stop foaming, settle; deposit foam; --- TODO despuo_V : V2 despuo, despuere, -, - -- Declension: 3rd -- Comment: [XXXCO] :: spit (out/down/upon), spurn/reject, abhor; spit on ground (avert evil/disease); + despuo_V = mkV "despuere" "despuo" nonExist nonExist ; -- [XXXCO] :: spit (out/down/upon), spurn/reject, abhor; spit on ground (avert evil/disease); desputamentum_N_N = mkN "desputamentum" ; -- [DXXFS] :: spit, spittle; desputum_N_N = mkN "desputum" ; -- [DXXFS] :: spit, spittle; desquamatum_N_N = mkN "desquamatum" ; -- [XBXES] :: excoriated parts; parts of the body from which the skin has been rubbed off; desquamo_V2 = mkV2 (mkV "desquamare") ; -- [XXXCO] :: scale, remove scales/skin/surface from; peel/rub/scour/clean/scrape/shake off; + dessico_V2 = mkV2 (mkV "dessicere" "dessico" nonExist "dessectus ") ; -- [EXXFP] :: divide; penetrate through; open by force; dismember, dissect; dessidens_A = mkA "dessidens" "dessidentis"; -- [XXXDS] :: dissenting; inimical; discordant, at variance; dessignatio_F_N = mkN "dessignatio" "dessignationis " feminine ; -- [XXXCS] :: |demarcation, marking out; figure, diagram; specification; describing (L+S); dessignator_M_N = mkN "dessignator" "dessignatoris " masculine ; -- [XXXCS] :: arranger; assigner of theater seats; undertaker/master of ceremonies (funeral); dessignatus_A = mkA "dessignatus" "dessignata" "dessignatum" ; -- [XLXCS] :: designate/elect; appointed (but not yet installed magistrate); expected (baby); + desterno_V2 = mkV2 (mkV "desternere" "desterno" "destravi" "destratus ") ; -- [EXXFS] :: unsaddle; ungird; free from its covering; + desterto_V = mkV "destertere" "desterto" "destertui" nonExist; -- [XXXFO] :: snore off; (finish dreaming that one is); cease snoring (L+S); destico_V = mkV "desticare" ; -- [DAXFS] :: squeak; (of the noise made by the shrew-mouse); destillatio_F_N = mkN "destillatio" "destillationis " feminine ; -- [XBXDO] :: cold/rheum/catarrh; runny nose/eyes; bodily fluid; abscess; distillation (Cal); destillo_V = mkV "destillare" ; -- [XXXCO] :: drip/trickle down; wet/sprinkle; distill; have dripping off; fall bit by bit; @@ -15855,6 +17023,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg destinatus_A = mkA "destinatus" "destinata" "destinatum" ; -- [XXXCO] :: stubborn/obstinate; determined/resolved/resolute/firm; destined (L+S); fixed; destino_V2 = mkV2 (mkV "destinare") ; -- [XXXAO] :: |determine/intend; settle on, arrange; design; send, address, dedicate (Bee); destitor_M_N = mkN "destitor" "destitoris " masculine ; -- [XXXFS] :: he who withdraws from a thing; + destituo_V2 = mkV2 (mkV "destituere" "destituo" "destitui" "destitutus ") ; -- [XXXAO] :: |desert/leave/abandon/forsake/leave in lurch; disappoint/let down; fail/give up; destitutio_F_N = mkN "destitutio" "destitutionis " feminine ; -- [XXXEO] :: desertion; letting down; betrayal; forsaking (L+S); failure; letting down; destitutor_M_N = mkN "destitutor" "destitutoris " masculine ; -- [XXXFO] :: one who disappoints/deceives/forsakes/fails; destitutus_A = mkA "destitutus" "destituta" "destitutum" ; -- [XXXDO] :: destitute, devoid of; childless; @@ -15862,20 +17031,26 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg destrictarium_N_N = mkN "destrictarium" ; -- [XXXIO] :: place in the baths for rubbing the body down after exercise; destricte_Adv =mkAdv "destricte" "destrictius" "destrictissime" ; -- [XXXDO] :: severely, strictly; unreservedly; destrictivus_A = mkA "destrictivus" "destrictiva" "destrictivum" ; -- [DXXFS] :: dissolving; loosening up; --- SLASHSTUFF destrictus_A : A2 destrictus, destricta -um, destrictior -or -us, destrictissimus -a -um -- [XXXEO] :: strict, severe; uncompromising; unreserved; rigid (L+S); censorious; + destrictus_A = mkA "destrictus" ; -- [XXXEO] :: strict, severe; uncompromising; unreserved; rigid (L+S); censorious; + destringo_V2 = mkV2 (mkV "destringere" "destringo" "destrinxi" "destrictus ") ; -- [XXXBO] :: |scour (bowels); draw (sword); graze; touch lightly; censure/criticize/satirize; destructibilis_A = mkA "destructibilis" "destructibilis" "destructibile" ; -- [DXXFS] :: destructible; destructilis_A = mkA "destructilis" "destructilis" "destructile" ; -- [DXXFS] :: destructible; destructio_F_N = mkN "destructio" "destructionis " feminine ; -- [XXXEO] :: destruction, demolishing, pulling down; refutation; destructivus_A = mkA "destructivus" "destructiva" "destructivum" ; -- [DXXFS] :: destructive; destructor_M_N = mkN "destructor" "destructoris " masculine ; -- [DXXDS] :: destroyer, one who pulls down; - desub_Abl_Prep = mkPrep "desub" Abl ; -- [XXXFO] :: below, under; beneath; + destruo_V2 = mkV2 (mkV "destruere" "destruo" "destruxi" "destructus ") ; -- [XXXCO] :: demolish, pull/tear down; destroy, ruin; demolish/refute (arguments/evidence); + desub_Abl_Prep = mkPrep "desub" abl ; -- [XXXFO] :: below, under; beneath; desubito_Adv = mkAdv "desubito" ; -- [XXXDO] :: suddenly; desubulo_V2 = mkV2 (mkV "desubulare") ; -- [XXXEO] :: make by piercing; bore in deeply (L+S); + desudasco_V = mkV "desudascere" "desudasco" nonExist nonExist; -- [XXXFO] :: sweat away; perspire freely/greatly; desudatio_F_N = mkN "desudatio" "desudationis " feminine ; -- [XBXFO] :: free/thorough perspiration/sweating; exertion, painstaking (L+S); desudo_V = mkV "desudare" ; -- [XBXCO] :: sweat/perspire/exude (freely); sweat, exert oneself (physical/mental effort); + desuefacio_V2 = mkV2 (mkV "desuefacere" "desuefacio" "desuefactus") ; -- [XXXEO] :: be disaccustomed; bring out of use (L+S); desuefio_V = mkV "desueferi" ; -- [XXXEO] :: be disaccustomed; bring out of use (L+S); + desuesco_V2 = mkV2 (mkV "desuescere" "desuesco" "desuevi" "desuetus ") ; -- [XXXDO] :: forget/unlearn; become/be unaccustomed to; disaccustom; lay aside custom/habit; desuetudo_F_N = mkN "desuetudo" "desuetudinis " feminine ; -- [XXXCO] :: disuse, discontinuance, desuetude; discontinuance of practice/habit (L+S); desuetus_A = mkA "desuetus" "desueta" "desuetum" ; -- [XXXCO] :: disaccustomed; that has fallen out of use or become unfamiliar; + desugo_V2 = mkV2 (mkV "desugere" "desugo" "desuxi" "desuctus ") ; -- [DXXFS] :: suck away from; suck in; desulco_V2 = mkV2 (mkV "desulcare") ; -- [XXXFO] :: plow up; furrow through (L+S); desulto_V = mkV "desultare" ; -- [DXXFS] :: leap down (into/onto); desultor_M_N = mkN "desultor" "desultoris " masculine ; -- [XDXCO] :: vaulter/leaper (between horses), circus trick rider; fickle person/lover (L+S); @@ -15884,20 +17059,28 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg desultrix_A = mkA "desultrix" "desultricis"; -- [DXXFS] :: inconstant; (of a lover); desultura_F_N = mkN "desultura" ; -- [XXXFO] :: jumping/leaping down, dismounting; action of jumping down; (from a horse); desum_V = mkV "desse" "desum" "defui" "defuturus " ; -- Comment: [BPXDO] :: be wanting/lacking; fail/miss; abandon/desert, neglect; be away/absent/missing; - desuper_Acc_Prep = mkPrep "desuper" Acc ; -- [XXXEO] :: over, above; + desumo_V2 = mkV2 (mkV "desumere" "desumo" "desumpsi" "desumptus ") ; -- [XXXCO] :: choose, pick out, select, take; pick (fight); take for/upon one's self (L+S); + desuo_V2 = mkV2 (mkV "desuere" "desuo" "desui" "desutus ") ; -- [BXXFS] :: fasten; + desuper_Acc_Prep = mkPrep "desuper" acc ; -- [XXXEO] :: over, above; desuper_Adv = mkAdv "desuper" ; -- [XXXCO] :: from above, from overhead; up above; desuperne_Adv = mkAdv "desuperne" ; -- [DXXFS] :: from above, from overhead; + desurgo_V = mkV "desurgere" "desurgo" "desurexi" "desurectus "; -- [XXXEO] :: rise, get up (from table); go to stool, defecate (euphemism); + desurgo_V2 = mkV2 (mkV "desurgere" "desurgo" "desurrexi" "desurrectus ") ; -- [XXXFS] :: rise; rise from; desurrectio_F_N = mkN "desurrectio" "desurrectionis " feminine ; -- [XXXFS] :: defecation (euphemism), going to stool; desursum_Adv = mkAdv "desursum" ; -- [DXXCS] :: from above, from overhead; up above; detectio_F_N = mkN "detectio" "detectionis " feminine ; -- [XXXFO] :: disclosure; uncovering, revealing (L+S); detector_M_N = mkN "detector" "detectoris " masculine ; -- [DXXES] :: revealer; uncoverer; discloser; + detego_V2 = mkV2 (mkV "detegere" "detego" "detexi" "detectus ") ; -- [XXXCO] :: uncover/disclose/reveal; expose, lay bare; fleece; unsheathe; remove; unroof; + detendo_V2 = mkV2 (mkV "detendere" "detendo" "detendi" "detensus ") ; -- [XXXEO] :: unstretch, loosen, relax; strike (tent); let down; detenso_V2 = mkV2 (mkV "detensare") ; -- [DXXFS] :: shear off; detentatio_F_N = mkN "detentatio" "detentationis " feminine ; -- [XXXFO] :: detention; detaining, keeping back; (temporary) control/possession; detentator_M_N = mkN "detentator" "detentatoris " masculine ; -- [EXXES] :: detainer; one who holds/keeps back; detentio_F_N = mkN "detentio" "detentionis " feminine ; -- [XXXFO] :: detention; detaining, keeping back; (temporary) control/possession; + detento_V2 = mkV2 (mkV "detentere" "detento" "detentavi" "detentatus ") ; -- [DXXES] :: hold/keep back; detentus_M_N = mkN "detentus" "detentus " masculine ; -- [DXXFS] :: holding/keeping back; retention; detention; + detepesco_V = mkV "detepescere" "detepesco" "detepui" nonExist; -- [DXXFS] :: grow cool, cease to be lukewarm; detergeo_V2 = mkV2 (mkV "detergere") ; -- [XXXDS] :: |remove, take away; break to pieces; have swept off; --- SLASHSTUFF deterior_A : A2 deterior -or -us, deterrimus -a -um -- [XXXBO] :: low/bad/inferior; poor/mean; unfavorable; weak; degenerate/wicked; + deterior_A = mkA "deterior" ; -- [XXXBO] :: low/bad/inferior; poor/mean; unfavorable; weak; degenerate/wicked; deterioro_V = mkV "deteriorare" ; -- [EXXES] :: make worse; deteriorate; deterioro_V2 = mkV2 (mkV "deteriorare") ; -- [EXXFS] :: deteriorate, make worse; deterius_Adv =mkAdv "deterius" "deterrime" ; -- [XXXDO] :: bad, worse, less; unfavorably; in less desirable manner; less/least favorably; @@ -15907,15 +17090,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg determinismus_M_N = mkN "determinismus" ; -- [FXXFE] :: determinism; theory of determinism; determinista_M_N = mkN "determinista" ; -- [GXXEK] :: determinist; determino_V2 = mkV2 (mkV "determinare") ; -- [XXXCO] :: |define; designate, mark out; determine linear extent of; conclude/end/settle; + detero_V2 = mkV2 (mkV "deterere" "detero" "detrivi" "detritus ") ; -- [XXXCO] :: |thresh (grain); pound; grind; chafe; impair/lessen/weaken; detract from; prune; deterreo_V2 = mkV2 (mkV "deterrere") ; -- [XXXBO] :: deter; frighten away; discourage (from), put/keep off, avert; frighten/terrify; detersio_F_N = mkN "detersio" "detersionis " feminine ; -- [DXXFS] :: cleansing; --- SLASHSTUFF detestabilis_A : A2 detestabilis, detestabile, detestabilior -or -us, detestabilissimus -a -um -- [XXXCO] :: detestable, execrable, abominable; subject to detestatio/curse; + detestabilis_A = mkA "detestabilis" ; -- [XXXCO] :: detestable, execrable, abominable; subject to detestatio/curse; detestabiliter_Adv = mkAdv "detestabiliter" ; -- [XXXFS] :: abominably, detestably, execrably; detestatio_F_N = mkN "detestatio" "detestationis " feminine ; -- [XXXCO] :: solemn curse/execration; expression of hate; averting w/sacrifice; renunciation; detestator_M_N = mkN "detestator" "detestatoris " masculine ; -- [EEXFS] :: curser; one who detests/execrates/curses; detesto_V2 = mkV2 (mkV "detestare") ; -- [DXXFS] :: call down solemn curse on, execrate; detest/loathe; avert, ward off by entreaty; detestor_M_N = mkN "detestor" "detestoris " masculine ; -- [EEXEE] :: curser; one who detests; detestor_V = mkV "detestari" ; -- [XXXBO] :: call down solemn curse on, execrate; detest/loathe; avert, ward off by entreaty; + detexo_V2 = mkV2 (mkV "detexere" "detexo" "detexui" "detextus ") ; -- [XXXCO] :: weave, finish weaving, weave completely; complete/finish; plait (L+S); explain; detineo_V2 = mkV2 (mkV "detinere") ; -- [XXXAO] :: |hold/keep back (from use); keep, cause to remain; reserve; delay end, protract; detondeo_V2 = mkV2 (mkV "detondere") ; -- [XXXFO] :: clip/shear, crop/prune; shear (wool)/strip (leaf); cut off/short; lay waste; detono_V = mkV "detonare" ; -- [XXXES] :: |cease thundering/raging; @@ -15934,6 +17119,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg detractorium_N_N = mkN "detractorium" ; -- [DXXFS] :: slander (pl.); detractorius_A = mkA "detractorius" "detractoria" "detractorium" ; -- [DXXFS] :: slanderous; disparaging; detractus_M_N = mkN "detractus" "detractus " masculine ; -- [XXXFO] :: omission, taking away; rejection (L+S); + detraho_V2 = mkV2 (mkV "detrahere" "detraho" "detraxi" "detractus ") ; -- [XXXAO] :: |||draw off (blood); promote discharge of; force down, induce to come down; detrectatio_F_N = mkN "detrectatio" "detrectationis " feminine ; -- [XXXCO] :: refusal (of a task), evasion, declining; renunciation; disparagement/detraction; detrectator_M_N = mkN "detrectator" "detrectatoris " masculine ; -- [XXXEO] :: refuser, evader, shirker; one who disparages/belittles; detrectio_F_N = mkN "detrectio" "detrectionis " feminine ; -- [XXXCO] :: removal, withdrawal; omission (words); blood-letting; purge; slander (Plater); @@ -15944,27 +17130,37 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg detritus_A = mkA "detritus" "detrita" "detritum" ; -- [XXXFS] :: worn out; trite, hackneyed; detritus_M_N = mkN "detritus" "detritus " masculine ; -- [XXXFO] :: process of rubbing away; detriumpho_V2 = mkV2 (mkV "detriumphare") ; -- [DWXFS] :: conquer; triumph over; + detrudo_V2 = mkV2 (mkV "detrudere" "detrudo" "detrusi" "detrusus ") ; -- [XXXBO] :: push/thrust/drive/force off/away/aside/from/down; expel; dispossess; postpone; detruncatio_F_N = mkN "detruncatio" "detruncationis " feminine ; -- [XAXNO] :: lopping (branches off tree); detrunco_V2 = mkV2 (mkV "detruncare") ; -- [XXXCO] :: mutilate, cut pieces from; lop off, cut off; remove branches from; maim; behead; detrusio_F_N = mkN "detrusio" "detrusionis " feminine ; -- [DXXFS] :: thrusting down; + detumesco_V = mkV "detumescere" "detumesco" "detumui" nonExist; -- [XXXEO] :: subside, become less swollen; (of passions); settle down (L+S); cease swelling; + detundo_V2 = mkV2 (mkV "detundere" "detundo" "detundi" "detunsus ") ; -- [XBXFO] :: bruise severely; beat (L+S); deturbator_M_N = mkN "deturbator" "deturbatoris " masculine ; -- [FXXFE] :: dispossessor; disturber of property; deturbo_V2 = mkV2 (mkV "deturbare") ; -- [XWXCO] :: |drive/pull/knock/cast/thrust/strike down/off; deprive of; deturpo_V2 = mkV2 (mkV "deturpare") ; -- [XXXEO] :: disfigure, ruin appearance of; discredit; disparage; defile; deunx_M_N = mkN "deunx" "deuncis " masculine ; -- [XSXDO] :: eleven-twelfths (of a unit/as); eleven parts; eleven percent (interest); + deuro_V2 = mkV2 (mkV "deurere" "deuro" "deussi" "deustus ") ; -- [XXXCO] :: burn down/up/thoroughly, consume; destroy/wither/blast (of cold/serpent breath); deurode_Interj = ss "deurode" ; -- [XXXFO] :: come hither!; (deuro de); (applied to a catamite); deuterius_A = mkA "deuterius" "deuteria" "deuterium" ; -- [XAXNO] :: secondary; derived from second pressing deuteros_M_N = mkN "deuteros" "deuteri " masculine ; -- [FDXEZ] :: second note; deuterus_M_N = mkN "deuterus" ; -- [FDXEZ] :: second note; + deutor_V = mkV "deuti" "deutor" "deusus sum " ; -- [XXXFO] :: misuse; use wrongly/wrongfully; (w/ABL); pervert; abuse (L+S); ill-treat (Cas); devagor_V = mkV "devagari" ; -- [DXXES] :: wander; stray from; digress; devastatio_F_N = mkN "devastatio" "devastationis " feminine ; -- [XWXFM] :: devastation; devastator_M_N = mkN "devastator" "devastatoris " masculine ; -- [XWXFS] :: devastator, he who devastates; devasto_V2 = mkV2 (mkV "devastare") ; -- [XWXCO] :: devastate, lay waste (territory/people); ravage; slaughter; devecto_V2 = mkV2 (mkV "devectare") ; -- [DXXFS] :: carry away; + deveho_V2 = mkV2 (mkV "devehere" "deveho" "devexi" "devectus ") ; -- [XXXDS] :: |descend, go down (PASS); go away; + devello_V2 = mkV2 (mkV "devellere" "devello" "develli" "devolsus ") ; -- [XXXDO] :: pull hair from; pluck feathers; pick flowers; pluck bare, depilate; tear off; develo_V2 = mkV2 (mkV "develare") ; -- [XXXFO] :: uncover; unveil (L+S); deveneror_V = mkV "devenerari" ; -- [XEXFO] :: exorcise; ward off by religious rite, avert by prayers; reverence/worship (L+S); + devenio_V = mkV "devenire" "devenio" "deveni" "deventus "; -- [XXXBO] :: come to, arrive/turn up (at); go (to see/stay); reach; land; turn to; extend to; devenusto_V2 = mkV2 (mkV "devenustare") ; -- [XXXFO] :: disfigure; mar the beauty of; deform (L+S); deverbero_V2 = mkV2 (mkV "deverberare") ; -- [XXXFO] :: thrash; flog/whip soundly; cudgel/beat soundly (L+S); deverbium_N_N = mkN "deverbium" ; -- [XDXFO] :: spoken part of play (unaccompanied by music); + devergo_V = mkV "devergere" "devergo" nonExist nonExist; -- [XXXFO] :: incline/tend downwards; sink; + deverro_V2 = mkV2 (mkV "deverrere" "deverro" "deverri" "deversus ") ; -- [XXXEO] :: sweep away; sweep out (L+S); deversito_V = mkV "deversitare" ; -- [XXXFO] :: turn aside and linger (over); put up at an inn (L+S); dwell upon; deversitor_M_N = mkN "deversitor" "deversitoris " masculine ; -- [XXXFO] :: lodger, guest, inhabitant of a rooming house; inn/lodging-house keeper; deversor_M_N = mkN "deversor" "deversoris " masculine ; -- [XXXFO] :: lodger, guest; inmate (L+S); @@ -15974,6 +17170,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg deversorius_A = mkA "deversorius" "deversoria" "deversorium" ; -- [XXXEO] :: of an inn/lodging house; fit to lodge/stay in (L+S); [taberna ~=> inn]; deversus_Adv = mkAdv "deversus" ; -- [XXXFO] :: downward; deverticulum_N_N = mkN "deverticulum" ; -- [XXXBO] :: |circumlocution/evasion; loophole; deviation/diversion/digression; port of call; + deverto_V2 = mkV2 (mkV "devertere" "deverto" "deverti" "deversus ") ; -- [XXXBO] :: divert, turn away/aside/in/off; detour/digress/branch off; lodge/put up; + devescor_V = mkV "devesci" "devescor" nonExist ; -- [XXXFO] :: devour, eat up; + devestio_V2 = mkV2 (mkV "devestire" "devestio" "devestivi" "devestitus ") ; -- [XXXFO] :: undress (w/ABL); change/take off clothes; strip (off); devestivus_A = mkA "devestivus" "devestiva" "devestivum" ; -- [XXXFO] :: undressed; devexitas_F_N = mkN "devexitas" "devexitatis " feminine ; -- [XXXNO] :: declivity; downward slope/incline; sloping; devexo_V2 = mkV2 (mkV "devexare") ; -- [XXXCS] :: |ravage/plunder; tear/rend/pull/rip apart/asunder, destroy (L+S); @@ -15983,8 +17182,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg deviator_M_N = mkN "deviator" "deviatoris " masculine ; -- [DXXFS] :: forsaker, one who leaves the way; deserter, defector; devictio_F_N = mkN "devictio" "devictionis " feminine ; -- [DXXFS] :: conquering; devigeo_V = mkV "devigere" ; -- [XXXFO] :: lose the power (to); + devigesco_V = mkV "devigescere" "devigesco" nonExist nonExist; -- [XXXFS] :: lose one's vigor; slow down; weaken/age; become enfeebled/exhausted/drained; + devincio_V2 = mkV2 (mkV "devincire" "devincio" "devinxi" "devinctus ") ; -- [XXXBO] :: tie/bind up, hold/fix fast; subjugate; obligate/oblige/constrain; unite closely; + devinco_V2 = mkV2 (mkV "devincere" "devinco" "devici" "devictus ") ; -- [XXXCO] :: subdue; defeat decisively, conquer/overcome entirely; devinctio_F_N = mkN "devinctio" "devinctionis " feminine ; -- [DXXFS] :: ensnaring, trapping; binding; [magicae ~ => enchantments]: --- SLASHSTUFF devinctus_A : A2 devinctus, devincta -um, devinctior -or -us, devinctissimus -a -um -- [XXXDO] :: attached; tied (to a person); devoted, greatly attached to (L+S); + devinctus_A = mkA "devinctus" ; -- [XXXDO] :: attached; tied (to a person); devoted, greatly attached to (L+S); devio_V = mkV "deviare" ; -- [FXXDE] :: detour; stray; depart; devirginatio_F_N = mkN "devirginatio" "devirginationis " feminine ; -- [XXXFO] :: deflowering, loss of virginity; ravishing, debauching; seduction; devirginator_M_N = mkN "devirginator" "devirginatoris " masculine ; -- [DXXFS] :: deflowerer; ravisher, despoiler, violator; seducer; @@ -15996,6 +17198,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg devoco_V2 = mkV2 (mkV "devocare") ; -- [XLXDM] :: |call; sue; impede; disavow, deny; devolo_V = mkV "devolare" ; -- [XXXDX] :: fly/swoop/drop down (on to); hurry/rush/hasten/fly down/away (to); devolutivus_A = mkA "devolutivus" "devolutiva" "devolutivum" ; -- [FXXEE] :: devolving to; + devolvo_V2 = mkV2 (mkV "devolvere" "devolvo" "devolvi" "devolutus ") ; -- [XXXCO] :: roll/fall/tumble down; roll off; fall/sink back; fall into; + devolvor_V = mkV "devolvi" "devolvor" "devolutus sum " ; -- [FXXDE] :: roll/fall down; roll off; sink back; fall into; hand over, transfer; deprive; + devomo_V2 = mkV2 (mkV "devomere" "devomo" "devomui" "devomitus ") ; -- [XXXFO] :: vomit out/forth; vomit up; devorabilis_A = mkA "devorabilis" "devorabilis" "devorabile" ; -- [DXXFS] :: devourable, which can be devoured, capable of being devoured; consumable; devoratio_F_N = mkN "devoratio" "devorationis " feminine ; -- [EXXES] :: devouring; gobbling up; (w/GEN); devorator_M_N = mkN "devorator" "devoratoris " masculine ; -- [EXXES] :: devourer; glutton; one who eats greedily/voraciously; who gobbles/swallows up; @@ -16007,6 +17212,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg devorsorium_N_N = mkN "devorsorium" ; -- [XXXCO] :: inn, lodging house; devorticulum_N_N = mkN "devorticulum" ; -- [XXXBO] :: |circumlocution/evasion; loophole; deviation/diversion/digression; port of call; devortium_N_N = mkN "devortium" ; -- [DXXFS] :: by-way, by-path; + devorto_V2 = mkV2 (mkV "devortere" "devorto" "devorti" "devorsus ") ; -- [XXXCE] :: divert, turn away/aside/in; digress; separate, oppose; resort to; lodge; devotamentum_N_N = mkN "devotamentum" ; -- [DXXFS] :: cursing; anathema; devotatio_F_N = mkN "devotatio" "devotationis " feminine ; -- [EEXES] :: consecration, making of vows; curse (Douay); devote_Adv =mkAdv "devote" "devotius" "devotissime" ; -- [XXXCS] :: devotedly, faithfully; devoutly; @@ -16014,12 +17220,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg devoto_V2 = mkV2 (mkV "devotare") ; -- [XXXFO] :: bewitch; put a spell on; curse; devotor_M_N = mkN "devotor" "devotoris " masculine ; -- [EEXFS] :: devotee, votary, one faithful; one who prays or calls down curses; devotrix_F_N = mkN "devotrix" "devotricis " feminine ; -- [EEXFS] :: devotee (female), votary, one faithful; she who prays or calls down curses; --- SLASHSTUFF devotus_A : A2 devotus, devota -um, devotior -or -us, devotissimus -a -um -- [XXXDO] :: devoted, zealously attached, faithful; devout; pious; accursed, execrable; + devotus_A = mkA "devotus" ; -- [XXXDO] :: devoted, zealously attached, faithful; devout; pious; accursed, execrable; devoveo_V2 = mkV2 (mkV "devovere") ; -- [XXXBO] :: |dedicate to infernal gods (general/army); destine, doom; bewitch, enchant; devus_M_N = mkN "devus" ; -- [XEXIO] :: god; dextans_M_N = mkN "dextans" "dextantis " masculine ; -- [XSXEO] :: ten-twelfths (of a unit); measure/weight of ten unciae (ten ounces); dextella_F_N = mkN "dextella" ; -- [XXXFO] :: little right hand; --- SLASHSTUFF dexter_A : A2 dexter, dextra -um, dexterior -or -us, dextimus -a -um -- [XXXBO] :: |favorable/fortunate/pretentious; opportune (L+S); proper/fitting/suitable; + dexter_A = mkA "dexter" ; -- [XXXBO] :: |favorable/fortunate/pretentious; opportune (L+S); proper/fitting/suitable; dextera_Adv = mkAdv "dextera" ; -- [XXXCO] :: on the right; on the right-hand side (of); dextera_F_N = mkN "dextera" ; -- [XXXBO] :: |pledge/contract; metal model of hand as token of agreement; dexteratio_F_N = mkN "dexteratio" "dexterationis " feminine ; -- [DEXFS] :: movement towards the right (in religious ceremonial); @@ -16027,7 +17233,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dextere_Adv =mkAdv "dextere" "dexterius" "dexterime" ; -- [XXXEO] :: skillfully; dexterously; dexteritas_F_N = mkN "dexteritas" "dexteritatis " feminine ; -- [XXXEO] :: readiness to help/oblige; dexterity (L+S); aptness/skill; prosperity; dexterum_N_N = mkN "dexterum" ; -- [XXXDO] :: right hand; right-hand side; - dextra_Acc_Prep = mkPrep "dextra" Acc ; -- [DXXES] :: on the right of; on the right-hand side of; + dextra_Acc_Prep = mkPrep "dextra" acc ; -- [DXXES] :: on the right of; on the right-hand side of; dextra_Adv = mkAdv "dextra" ; -- [XXXCO] :: on the right; on the right-hand side (of); dextra_F_N = mkN "dextra" ; -- [XXXBO] :: |pledge/contract; metal model of hand as token of agreement; dextrale_N_N = mkN "dextrale" "dextralis " neuter ; -- [EXXFS] :: bracelet; armlet (Ecc); @@ -16143,7 +17349,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg diapanton_Adv = mkAdv "diapanton" ; -- [XXXIO] :: pre-eminently; out of all the number; universally (L+S); diapasma_N_N = mkN "diapasma" "diapasmatis " neuter ; -- [XXXEO] :: scented (body) powder; diapason_N_N = mkN "diapason" "diapasi " neuter ; -- [XDHFO] :: whole octave; (music); (indecl.?); --- IGNORED diapente_N : N1 diapente., abb. -- N -- [XDHFO] :: interval of a fifth; (music); + diapente_N = constN "diapente." neuter ; -- [XDHFO] :: interval of a fifth; (music); diaphonia_F_N = mkN "diaphonia" ; -- [DDXFS] :: disharmony; discord; diaphora_F_N = mkN "diaphora" ; -- [DGXFS] :: distinction, repetition of word w/different meanings; uncertainty; diaphoresis_F_N = mkN "diaphoresis" "diaphoresis " feminine ; -- [DBXES] :: sweat; exhaustion; @@ -16218,7 +17424,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dicimonium_N_N = mkN "dicimonium" ; -- [BGXFS] :: oratory; speaking; dicio_F_N = mkN "dicio" "dicionis " feminine ; -- [XXXCO] :: authority, power, control; rule, domain, sway; dicis_F_N = mkN "dicis" "dicis " feminine ; -- [XXXDO] :: form; [~ causa/gratia (only) => for the sake of appearance or judicial form]; - dico_V2 = mkV2 (mkV "dicare") ; -- [XXXBO] :: dedicate/consecrate; deify; devote; attach to another state; assign; show; + dico_V2 = mkV2 (mkV "dicere" "dico" "dixi" "dictus ") ; -- [XXXAO] :: ||name/call; appoint, fix/set (date); designate, declare intention of giving; dicrota_F_N = mkN "dicrota" ; -- [XWXFS] :: light galley; (perhaps propelled by two banks of oars); bireme; dicrotum_N_N = mkN "dicrotum" ; -- [XWXFO] :: light galley; (perhaps propelled by two banks of oars); bireme; dictabolarium_N_N = mkN "dictabolarium" ; -- [XXXFO] :: joke (pl.); (nonce-word indicating verbal joke); satirical saying (L+S); @@ -16244,6 +17450,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dictophonum_N_N = mkN "dictophonum" ; -- [GXXEK] :: Dictaphone; dictor_M_N = mkN "dictor" "dictoris " masculine ; -- [XXXEE] :: speaker; orator; dictum_N_N = mkN "dictum" ; -- [XXXCO] :: words/utterance/remark; one's word/promise; saying/maxim; bon mot, witticism; + dicturio_V2 = mkV2 (mkV "dicturire" "dicturio" nonExist nonExist) ; -- [DXXFS] :: long/want/wish to say/tell; dictus_M_N = mkN "dictus" "dictus " masculine ; -- [XXXEO] :: speech; speaking, saying (action); word (Ecc); command; didacticus_A = mkA "didacticus" "didactica" "didacticum" ; -- [XGXEE] :: teaching; didactic; intellectual; didascalicus_A = mkA "didascalicus" "didascalica" "didascalicum" ; -- [XGXFS] :: of instruction/teaching; teaching, giving instruction; didactic; instructive; @@ -16252,11 +17459,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg didasculatus_M_N = mkN "didasculatus" ; -- [EGXFM] :: office of teacher; didasculo_V2 = mkV2 (mkV "didasculare") ; -- [FGXFM] :: teach, instruct didasculus_M_N = mkN "didasculus" ; -- [FGXDM] :: teacher; + dido_V2 = mkV2 (mkV "didere" "dido" "dididi" "diditus ") ; -- [XXXCO] :: distribute, deal out, disseminate; spread, diffuse; spread abroad (L+S); didrachm_N_N = mkN "didrachm" "didrachmatis " neuter ; -- [XLHFE] :: double drachma; Greek silver coin; half shekel; (1/3000 talent); (half dollar); didrachma_F_N = mkN "didrachma" ; -- [XLHFE] :: double drachma; Greek silver coin; half shekel; (1/3000 talent); (half dollar); didrachmon_N_N = mkN "didrachmon" "didrachmi " neuter ; -- [XLHFE] :: double drachma; Greek silver coin; half shekel; (1/3000 talent); (half dollar); didragma_F_N = mkN "didragma" ; -- [XLHFW] :: double drachma; Greek silver coin; half shekel; (1/3000 talent); (half dollar); didragmon_N_N = mkN "didragmon" "didragmi " neuter ; -- [XLHFW] :: double drachma; Greek silver coin; half shekel; (1/3000 talent); (half dollar); + diduco_V2 = mkV2 (mkV "diducere" "diduco" "diduxi" "diductus ") ; -- [XXXBO] :: |draw/lead/pull apart/aside; spread/open/space out; deploy/disperse (forces); diductio_F_N = mkN "diductio" "diductionis " feminine ; -- [XXXEO] :: distribution; separation/dividing into parts; expansion, (act of) spreading out; diecula_F_N = mkN "diecula" ; -- [XXXEO] :: brief day, short time; (of respite); short space of a day (L+S); little while; dierectus_A = mkA "dierectus" "dierecta" "dierectum" ; -- [BXXES] :: crucified; hanged; (go and be hanged! w/hinc); (sense of peremptory dismissal) @@ -16267,9 +17476,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dietim_Adv = mkAdv "dietim" ; -- [XXXDE] :: daily; day-by-day; diezeugmenon_N_N = mkN "diezeugmenon" "diezeugmeni " neuter ; -- [DDXES] :: separation of equals/equal circumstances; two tetrachords (pl.) forming a scale; diezeugmenos_A = mkA "diezeugmenos" "diezeugmene" "diezeugmenon" ; -- [XDXFO] :: disjunct; separate; --- TODO diezeuxis_N : N1 diezeuxis, diezeuxos/is -- F -- [FDXFZ] :: diezeuxis note; note equal to nete-diezeugmenon; + diezeuxis_1_N = mkN "diezeuxis" "diezeuxis" feminine ; -- [FDXFZ] :: diezeuxis note; note equal to nete-diezeugmenon; + diezeuxis_2_N = mkN "diezeuxis" "diezeuxos" feminine ; -- [FDXFZ] :: diezeuxis note; note equal to nete-diezeugmenon; diffamatio_F_N = mkN "diffamatio" "diffamationis " feminine ; -- [XXXES] :: promulgation, publication; defamation (Ecc); --- SLASHSTUFF diffamatus_A : A2 diffamatus, diffamata -um, diffamatior -or -us, diffamatissimus -a -um -- [XXXEO] :: notorious; widely known; defamed/maligned (Bee), given a bad name; spread about; + diffamatus_A = mkA "diffamatus" ; -- [XXXEO] :: notorious; widely known; defamed/maligned (Bee), given a bad name; spread about; diffamia_F_N = mkN "diffamia" ; -- [DXXFS] :: defamation; diffamo_V2 = mkV2 (mkV "diffamare") ; -- [XXXDO] :: defame, slander; spread news of, publish abroad/widely, publish/divulge (L+S); diffarreatio_F_N = mkN "diffarreatio" "diffarreationis " feminine ; -- [XXXEO] :: ceremony of divorce; ancient form of Roman divorce (L+S); @@ -16284,13 +17494,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg differtus_A = mkA "differtus" "differta" "differtum" ; -- [XXXES] :: full, filled/stuffed; stuffed full; filled/stretched out with stuffing; crowded; diffibulo_V2 = mkV2 (mkV "diffibulare") ; -- [XXXFO] :: unfasten; unbuckle (L+S); unclasp; difficile_Adv = mkAdv "difficile" ; -- [XXXEO] :: with difficulty; --- SLASHSTUFF difficilis_A : A2 difficilis, difficile, difficilior -or -us, difficillimus -a -um -- [XXXBO] :: |obstinate (person), intractable; inflexible; morose/surly; labored; + difficilis_A = mkA "difficilis" ; -- [XXXBO] :: |obstinate (person), intractable; inflexible; morose/surly; labored; difficiliter_Adv =mkAdv "difficiliter" "difficilius" "difficillime" ; -- [XXXCO] :: with difficulty; reluctantly; difficultas_F_N = mkN "difficultas" "difficultatis " feminine ; -- [XXXCO] :: difficulty; trouble; hardship/want/distress/poverty (L+S); obstinacy; difficulter_Adv = mkAdv "difficulter" ; -- [XXXCO] :: with difficulty; reluctantly; diffidens_A = mkA "diffidens" "diffidentis"; -- [XXXEO] :: distrustful; lacking in confidence; without self-confidence (L+S); anxious; diffidenter_Adv =mkAdv "diffidenter" "diffidentius" "diffidentissime" ; -- [XXXEO] :: diffidently; without self-confidence (L+S); anxious; diffidentia_F_N = mkN "diffidentia" ; -- [XXXCO] :: distrust, mistrust; unbelief; want of faith (Ecc); suspicion; disobedience; + diffido_V = mkV "diffidere" "diffido" "diffisus" ; -- [XXXBO] :: distrust; despair; (w/DAT) lack confidence (in), despair (of); expect not; + diffindo_V2 = mkV2 (mkV "diffindere" "diffindo" "diffidi" "diffissus ") ; -- [XXXCO] :: divide (usu. on length); split/cut/break off/open; defer/put off; refute/deny; + diffingo_V2 = mkV2 (mkV "diffingere" "diffingo" "diffinxi" "diffictus ") ; -- [XXXFO] :: reshape/remold, mold/forge into different shape; remodel, transform, make anew; + diffinio_V2 = mkV2 (mkV "diffinire" "diffinio" "diffinivi" "diffinitus ") ; -- [FXXFO] :: define/bound/fix/limit/mark; restrict/confine; assign, ordain; lay down (rule); diffinitio_F_N = mkN "diffinitio" "diffinitionis " feminine ; -- [XXXES] :: ||ending/boundary/limit (L+S); limiting; explanation; which is decreed/decided; diffissio_F_N = mkN "diffissio" "diffissionis " feminine ; -- [XLXFO] :: postponement (of a trial); continuance; delay, deferral; putting off; diffiteor_V = mkV "diffiteri" ; -- [XXXCO] :: disavow, deny; @@ -16299,23 +17513,27 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg diffleo_V2 = mkV2 (mkV "difflere") ; -- [XXXFO] :: cry/weep away (one's eyes); diffletus_A = mkA "diffletus" "diffleta" "diffletum" ; -- [XXXES] :: wept/cried out, drained with weeping/crying; difflo_V2 = mkV2 (mkV "difflare") ; -- [XXXEO] :: blow away, scatter/disperse by blowing; blow apart (L+S); + diffluo_V = mkV "diffluere" "diffluo" "diffluxi" "diffluctus "; -- [XXXBO] :: flow away; waste/wear/melt away; dissolve/disappear; pass out; ramble (speaker); diffluus_A = mkA "diffluus" "difflua" "diffluum" ; -- [XXXFO] :: exuding liquid freely; seeping; overflowing (L+S); flowing asunder; diffluvio_V = mkV "diffluviare" ; -- [XXXFO] :: divide and spread out; split (L+S); divide/branch (into two streams); diffluxio_F_N = mkN "diffluxio" "diffluxionis " feminine ; -- [DXXFS] :: discharge; flowing off; difformatas_F_N = mkN "difformatas" "difformatatis " feminine ; -- [FXXEE] :: disagreement; lack of conformity; diffors_A = mkA "diffors" "diffortis"; -- [DLXFS] :: justified, mitigating; defense that admits act but justifies; diffringo_V2 = mkV2 (mkV "diffringare") ; -- [XXXDO] :: shatter; break up/apart/in pieces; + diffugio_V = mkV "diffugere" "diffugio" "diffugi" "diffugitus "; -- [XXXCO] :: scatter, disperse, dispel; flee/run away in different/several directions; diffugium_N_N = mkN "diffugium" ; -- [XXXFO] :: scattering, flight in all directions; running away; dispersion (L+S); diffugo_V2 = mkV2 (mkV "diffugare") ; -- [XXXES] :: scatter, disperse, dispel; put to flight; rout; diffulguro_V2 = mkV2 (mkV "diffulgurare") ; -- [XXXFO] :: scatter lightning/thunderbolts around/abroad; diffulmino_V2 = mkV2 (mkV "diffulminare") ; -- [DXXFO] :: scatter (as) with a thunderbolt/lightning; diffumigo_V2 = mkV2 (mkV "diffumigare") ; -- [XXXFS] :: fumigate; diffundito_V2 = mkV2 (mkV "diffunditare") ; -- [XXXFO] :: dissipate; squander, waste, throw away; + diffundo_V2 = mkV2 (mkV "diffundere" "diffundo" "diffundi" "diffusus ") ; -- [XXXBO] :: |expand/enlarge; spread/extend over area/time; relax/cheer up/free of restraint; diffuse_Adv =mkAdv "diffuse" "diffusius" "diffusissime" ; -- [XXXEO] :: amply/liberally; expansively; widely/everywhere; copiously (L+S); scattered way; diffusilis_A = mkA "diffusilis" "diffusilis" "diffusile" ; -- [XXXFO] :: diffusive; capable of spreading, elastic (Cas); diffusio_F_N = mkN "diffusio" "diffusionis " feminine ; -- [EXXEP] :: |pouring out (liquids); watering of the eyes; wide stretch, extent; abundance; diffusor_M_N = mkN "diffusor" "diffusoris " masculine ; -- [XXXIO] :: bottler, one who draws off into smaller vessels; drawer-off of liquids (L+S); --- SLASHSTUFF diffusus_A : A2 diffusus, diffusa -um, diffusior -or -us, diffusissimus -a -um -- [XXXCO] :: spread out; wide; extending/covering widely; extensive/expansive (writing); + diffusus_A = mkA "diffusus" ; -- [XXXCO] :: spread out; wide; extending/covering widely; extensive/expansive (writing); + diffutuo_V2 = mkV2 (mkV "diffutuere" "diffutuo" "diffutui" "diffututus ") ; -- [XXXEO] :: indulge in promiscuous sexual intercourse with (woman); copulate freely (rude); diffututus_A = mkA "diffututus" "diffututa" "diffututum" ; -- [XXXFS] :: existed by (sexual) indulgence; difringo_V2 = mkV2 (mkV "difringare") ; -- [XXXEO] :: shatter; break up/apart/in pieces; digamia_F_N = mkN "digamia" ; -- [XLXFS] :: remarriage, second marriage (after death/divorce); digamy; (usu. not bigamy); @@ -16325,6 +17543,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg digammus_F_N = mkN "digammus" ; -- [XGHEO] :: digamma; (archaic Greek letter); Aeolic double gamma; (in Latin use F or V); digamus_A = mkA "digamus" "digama" "digamum" ; -- [XLXES] :: twice-married, remarried, that has been married twice; (usu. not) bigamist; digeries_F_N = mkN "digeries" "digeriei " feminine ; -- [XXXES] :: disposition, arrangement; L:digestion; + digero_V2 = mkV2 (mkV "digerere" "digero" "digessi" "digestus ") ; -- [XBXBO] :: ||dissolve, dissipate morbid matter; exercise (for health); consider maturely; digestibilis_A = mkA "digestibilis" "digestibilis" "digestibile" ; -- [DBXES] :: of digestion; digestible, easy to digest; promoting digestion; digestilis_A = mkA "digestilis" "digestilis" "digestile" ; -- [DBXFS] :: promoting digestion; digestim_Adv = mkAdv "digestim" ; -- [DXXFS] :: in order; @@ -16360,12 +17579,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dignor_V = mkV "dignari" ; -- [XXXDO] :: deem/consider/think worthy/becoming/deserving/fit (to); deign, condescend; dignoro_V2 = mkV2 (mkV "dignorare") ; -- [XXXFO] :: distinguish; know apart, make distinction, separate; dignoscentia_F_N = mkN "dignoscentia" ; -- [XXXFS] :: knowledge; power of distinguishing; + dignosco_V2 = mkV2 (mkV "dignoscere" "dignosco" "dignovi" "dignotus ") ; -- [BXXCO] :: discern/distinguish/separate, recognize as distinct; make distinction; dignum_N_N = mkN "dignum" ; -- [XXXCO] :: appropriate/suitable thing; worthy act; worth; --- SLASHSTUFF dignus_A : A2 dignus, digna -um, dignior -or -us, dignissimus -a -um -- [XXXAO] :: appropriate/suitable; worthy, deserving, meriting; worth (w/ABL/GEN); + dignus_A = mkA "dignus" ; -- [XXXAO] :: appropriate/suitable; worthy, deserving, meriting; worth (w/ABL/GEN); digrassor_V = mkV "digrassari" ; -- [EXXFP] :: rove around/about; + digredior_V = mkV "digredi" "digredior" "digressus sum " ; -- [XXXCO] :: depart; come/go away; part/separate/deviate; divorce; G:digress/leave (topic); digressio_F_N = mkN "digressio" "digressionis " feminine ; -- [EXXEP] :: |place of retirement/holiday; digressivus_A = mkA "digressivus" "digressiva" "digressivum" ; -- [DGXFS] :: digressive, of/pertaining to a digression; contained in digression (Souter); digressus_M_N = mkN "digressus" "digressus " masculine ; -- [EXXDP] :: |place of retirement; death; + digrunnio_V = mkV "digrunnire" "digrunnio" nonExist nonExist; -- [XXXFS] :: grunt hard; give a performance of grunting; dihesis_F_N = mkN "dihesis" "dihesis " feminine ; -- [XDXEO] :: quarter tone; first audible note of instrument (L+S); diiambus_M_N = mkN "diiambus" ; -- [XPXFO] :: diiamb, double iamb, metrical foot of two iambs (U_U_); dijudicatio_F_N = mkN "dijudicatio" "dijudicationis " feminine ; -- [XXXFO] :: judication, action/faculty of deciding/judging/determining (between things); @@ -16377,10 +17599,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dijunctim_Adv = mkAdv "dijunctim" ; -- [XXXFO] :: separately; dijunctio_F_N = mkN "dijunctio" "dijunctionis " feminine ; -- [XXXCO] :: separation (from person); rupture (relationship); disjunctive proposition; dijunctivus_A = mkA "dijunctivus" "dijunctiva" "dijunctivum" ; -- [XGXEO] :: disjunctive, separative; disconnecting, making discontinuous (surveying); --- SLASHSTUFF dijunctus_A : A2 dijunctus, dijuncta -um, dijunctior -or -us, dijunctissimus -a -um -- [XXXCO] :: separated/distant/disconnected/set apart; different/distinct/individual; + dijunctus_A = mkA "dijunctus" ; -- [XXXCO] :: separated/distant/disconnected/set apart; different/distinct/individual; + dijungo_V2 = mkV2 (mkV "dijungere" "dijungo" "dijunxi" "dijunctus ") ; -- [XXXBO] :: unyoke; disunite, sever, divide, separate, part, estrange; put asunder (Ecc); dikerion_N_N = mkN "dikerion" "dikerii " neuter ; -- [EEHFE] :: double candlestick used by Greek bishops; dikerium_N_N = mkN "dikerium" ; -- [EEHFE] :: double candlestick used by Greek bishops; dilabidus_A = mkA "dilabidus" "dilabida" "dilabidum" ; -- [XXXFO] :: that disintegrates, that falls/goes to pieces; + dilabor_V = mkV "dilabi" "dilabor" "dilapsus sum " ; -- [XXXBS] :: ||flee/escape; scatter, fall into confusion; be lost; go to ruin; pass (time); dilaceratio_F_N = mkN "dilaceratio" "dilacerationis " feminine ; -- [DXXES] :: tearing to pieces, tearing in pieces; tearing apart; shredding; dilacero_V2 = mkV2 (mkV "dilacerare") ; -- [XXXDO] :: tear to pieces, tear in pieces; tear apart; dilamino_V2 = mkV2 (mkV "dilaminare") ; -- [XXXFO] :: split in two (?); @@ -16390,8 +17614,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dilapidator_M_N = mkN "dilapidator" "dilapidatoris " masculine ; -- [EXXFP] :: squanderer; dilapido_V2 = mkV2 (mkV "dilapidare") ; -- [XXXES] :: |squander; throw away; scatter like stones; consume; destroy; dilapsio_F_N = mkN "dilapsio" "dilapsionis " feminine ; -- [DXXFS] :: decay; destruction; + dilargio_V2 = mkV2 (mkV "dilargire" "dilargio" "dilargivi" "dilargitus ") ; -- [FXXEE] :: lavish; give away freely; give/bestow liberally/profusely/recklessly; + dilargior_V = mkV "dilargiri" "dilargior" "dilargitus sum " ; -- [XXXDO] :: lavish; give away freely; give/bestow liberally/profusely/recklessly; dilargitor_M_N = mkN "dilargitor" "dilargitoris " masculine ; -- [EXXFP] :: lavish giver; generous donor; --- SLASHSTUFF dilargus_A : A2 dilargus, dilarga -um, dilargior -or -us, dilargissimus -a -um -- [EXXEM] :: extravagant; lavish; + dilargus_A = mkA "dilargus" ; -- [EXXEM] :: extravagant; lavish; dilatatio_F_N = mkN "dilatatio" "dilatationis " feminine ; -- [XXXFO] :: increase/enlargement; expansion/extension; dilation; diffusion/propagation; dilatator_M_N = mkN "dilatator" "dilatatoris " masculine ; -- [DXXFS] :: propagator, he who propagates (the Latin language, for instance); dilatatus_A = mkA "dilatatus" "dilatata" "dilatatum" ; -- [XXXEO] :: dilated; widened out; @@ -16405,30 +17631,34 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dilectator_M_N = mkN "dilectator" "dilectatoris " masculine ; -- [XWXIO] :: recruiter; recruiting officer; dilectio_F_N = mkN "dilectio" "dilectionis " feminine ; -- [EEXFS] :: love; delight, pleasure (Bee); goodwill; dilector_M_N = mkN "dilector" "dilectoris " masculine ; -- [XXXFO] :: lover; one who loves or has affection (for); --- SLASHSTUFF dilectus_A : A2 dilectus, dilecta -um, dilectior -or -us, dilectissimus -a -um -- [XXXCO] :: beloved, dear; loved (L+S); + dilectus_A = mkA "dilectus" ; -- [XXXCO] :: beloved, dear; loved (L+S); dilectus_M_N = mkN "dilectus" "dilectus " masculine ; -- [XXXBO] :: |selection/choosing; choice (between possibilities), discrimination/distinction; dilemma_N_N = mkN "dilemma" "dilemmatis " neuter ; -- [DGXFS] :: dilemma, double proposition; argument putting foe between two difficulties; dilexio_F_N = mkN "dilexio" "dilexionis " feminine ; -- [EXXDM] :: beloved, love; amiability (address or title); favor; + dilibuo_V2 = mkV2 (mkV "dilibuere" "dilibuo" "dilibui" "dilibutus ") ; -- [XXXCS] :: besmear; anoint with a liquid; dilibutus_A = mkA "dilibutus" "dilibuta" "dilibutum" ; -- [XXXCO] :: thickly smeared/stained; steeped (in a condition), deeply imbued (with feeling); diliculum_N_N = mkN "diliculum" ; -- [EXXDE] :: dawn, daybreak; + dilido_V2 = mkV2 (mkV "dilidere" "dilido" nonExist nonExist) ; -- [XXXFO] :: batter to pieces; diligens_A = mkA "diligens" "diligentis"; -- [XXXBO] :: |thrifty, economical, frugal; attentive, fond (of), devoted (to); diligenter_Adv =mkAdv "diligenter" "diligentius" "diligentissime" ; -- [XXXCO] :: carefully; attentively; diligently; scrupulously; thoroughly/completely/well; diligentia_F_N = mkN "diligentia" ; -- [XXXBO] :: diligence/care/attentiveness; economy/frugality/thrift; industry; love (Souter); diligibilis_A = mkA "diligibilis" "diligibilis" "diligibile" ; -- [DXXFS] :: amiable; estimable; lovable (Souter); - diligo_V2 = mkV2 (mkV "diligare") ; -- [XXXCO] :: bind fast, tie (up), fasten; make fast by tying; bandage; tie (bandage); + diligo_V2 = mkV2 (mkV "diligere" "diligo" "dilexi" "dilectus ") ; -- [XXXBO] :: love, hold dear; value/esteem/favor; have special regard for; (milder than amo); dilinio_V2 = mkV2 (mkV "diliniare") ; -- [FXXEE] :: disturb, harass; torment mentally; dilitatio_F_N = mkN "dilitatio" "dilitationis " feminine ; -- [FXXEM] :: delay; enlargement (Nelson); dilogia_F_N = mkN "dilogia" ; -- [XGXFS] :: ambiguity; dilorico_V2 = mkV2 (mkV "diloricare") ; -- [XXXEO] :: tear/pull apart/open; (of garment covering breast); diloris_A = mkA "diloris" "diloris" "dilore" ; -- [DXXFS] :: two-striped; (garment); diluceo_V = mkV "dilucere" ; -- [XXXDO] :: be clear; be evident; be light enough to distinguish objects (L+S); + dilucesco_V = mkV "dilucescere" "dilucesco" "diluxi" nonExist; -- [XXXDO] :: dawn, become/grow light; begin to shine (L+S); shine (PERF); dilucidatio_F_N = mkN "dilucidatio" "dilucidationis " feminine ; -- [DXXFS] :: explaining; distinctness; capability of being clearly perceived/understood; dilucide_Adv =mkAdv "dilucide" "dilucidius" "dilucidissime" ; -- [XXXDO] :: plainly, clearly, distinctly, evidently, lucidly; brightly, clearly; --- SLASHSTUFF dilucidus_A : A2 dilucidus, dilucida -um, dilucidior -or -us, dilucidissimus -a -um -- [XXXDO] :: plain, clear, distinct, evident; lucid; clear, bright; transparent; + dilucidus_A = mkA "dilucidus" ; -- [XXXDO] :: plain, clear, distinct, evident; lucid; clear, bright; transparent; diluculat_V0 = mkV0 "diluculat" ; -- [XXXFO] :: it dawns, it becomes/grows light; diluculo_Adv = mkAdv "diluculo" ; -- [XXXEO] :: at dawn/daybreak/first light; early; diluculum_N_N = mkN "diluculum" ; -- [XXXEO] :: dawn, daybreak, first light; break of day; diludium_N_N = mkN "diludium" ; -- [XXXEO] :: interval; intermission in games/plays; half-time; breathing-space; resting time; + diluo_V2 = mkV2 (mkV "diluere" "diluo" "dilui" "dilutus ") ; -- [XXXBO] :: ||rebut/refute, explain away, make clear, explain, clear up (charge); diminish; dilute_Adv = mkAdv "dilute" ; -- [XXXFS] :: slightly; weakly; faintly; dilutum_N_N = mkN "dilutum" ; -- [XXXFO] :: dilute solution; solution, liquid in which something has been dissolved (L+S); dilutus_A = mkA "dilutus" "diluta" "dilutum" ; -- [XXXCO] :: diluted, mixed w/water; thin, watery; pale; faint; feeble, lacking force; soft; @@ -16440,12 +17670,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dimacha_M_N = mkN "dimacha" ; -- [XWXFO] :: soldiers (pl.) who fight on foot or horseback; dismounted cavalry; dragoons; dimachaerus_A = mkA "dimachaerus" "dimachaera" "dimachaerum" ; -- [XWXIS] :: fighting with two swords; dimachaerus_M_N = mkN "dimachaerus" ; -- [XWXIO] :: gladiator who fights with two swords; + dimadesco_V = mkV "dimadescere" "dimadesco" "dimadui" nonExist; -- [XXXFO] :: melt away; dimano_V = mkV "dimanare" ; -- [XXXES] :: run/flow down; percolate; flow different ways (L+S); descend; descend from; dimensio_F_N = mkN "dimensio" "dimensionis " feminine ; -- [FXXEE] :: |reasoning; judgment; extent (L+S); dimensus_A = mkA "dimensus" "dimensa" "dimensum" ; -- [XXXFO] :: regular; measured; dimeter_A = mkA "dimeter" "dimetra" "dimetrum" ; -- [XPXFS] :: of two measures or two/four metric feet; dimeterus_M_N = mkN "dimeterus" ; -- [XPXFO] :: dimeter; verse of two measures or two/four metric feet; dimetiens_M_N = mkN "dimetiens" "dimetientis " masculine ; -- [XSXNO] :: diameter; + dimetior_V = mkV "dimetiri" "dimetior" "dimensus sum " ; -- [XSXCO] :: measure out/off; (space/time/words); weigh out, measure by weight; lay out; dimeto_V2 = mkV2 (mkV "dimetare") ; -- [XSXFS] :: measure out; mark out; fix the limits; dimetor_V = mkV "dimetari" ; -- [XSXEO] :: measure out; mark out; fix the limits; dimetr_A = mkA "dimetr" "dimetra" "dimetrum" ; -- [XPXFS] :: of two measures or two/four metric feet; @@ -16460,6 +17692,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dimidio_V2 = mkV2 (mkV "dimidiare") ; -- [XXXCS] :: halve, divide in half/two; divide into two equal parts (L+S); dimidium_N_N = mkN "dimidium" ; -- [XXXCO] :: half; [dimidio w/COMP ADJ ~ => twice as ~]; dimidius_A = mkA "dimidius" "dimidia" "dimidium" ; -- [XXXCO] :: half; incomplete, mutilated; [parte ~a auctus => twice as large, doubled]; + diminuo_V2 = mkV2 (mkV "diminuere" "diminuo" "diminui" "diminutus ") ; -- [XXXDO] :: shatter; break; dash to pieces (L+S); violate/outrage; lessen/diminish (Ecc); diminutio_F_N = mkN "diminutio" "diminutionis " feminine ; -- [XXXBO] :: |understatement; formation of diminutive; [capitis ~ => loss of civil rights]; diminutivum_N_N = mkN "diminutivum" ; -- [XGXEO] :: form of the diminutive; diminutive (noun L+S); (grammar); dimissio_F_N = mkN "dimissio" "dimissionis " feminine ; -- [XXXDS] :: |sending out/forth/ in different directions; remission (of pain/fever); @@ -16467,9 +17700,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dimissorialis_A = mkA "dimissorialis" "dimissorialis" "dimissoriale" ; -- [ELXFE] :: of/pertaining to dismissal/discharge/release/firing, dimissorial; dimissorius_A = mkA "dimissorius" "dimissoria" "dimissorium" ; -- [XLXFS] :: of/pertaining to dismissal/discharge/release/firing; B:relaxing/improving; dimissus_M_N = mkN "dimissus" ; -- [FWXEM] :: surrender; handing over; demise; + dimitto_V2 = mkV2 (mkV "dimittere" "dimitto" "dimisi" "dimissus ") ; -- [XXXAO] :: |||discontinue, renounce, abandon/forsake, forgo, give up (activity); dispatch; + dimminuo_V2 = mkV2 (mkV "dimminuere" "dimminuo" "dimminui" "dimminutus ") ; -- [XXXDO] :: shatter; break; dash to pieces (L+S); violate/outrage; lessen/diminish (Ecc); + dimolio_V2 = mkV2 (mkV "dimolire" "dimolio" "dimolivi" "dimolitus ") ; -- [XXXCO] :: throw/cast off, remove; pull/tear down, demolish/destroy/lay waste; abolish; + dimolior_V = mkV "dimoliri" "dimolior" "dimolitus sum " ; -- [XXXCO] :: throw/cast off, remove; pull/tear down, demolish/destroy/lay waste; abolish; dimoveo_V2 = mkV2 (mkV "dimovere") ; -- [XXXBO] :: |separate/divide; cleave; make a parting in/between;, part; disperse; dine_F_N = mkN "dine" "dines " feminine ; -- [XXXFS] :: whirlwind; vortex; dinosaurus_M_N = mkN "dinosaurus" ; -- [GXXEK] :: dinosaur; + dinosco_V2 = mkV2 (mkV "dinoscere" "dinosco" "dinovi" "dinotus ") ; -- [XXXCO] :: discern/distinguish/separate, recognize as distinct; make distinction; dinoto_V2 = mkV2 (mkV "dinotare") ; -- [XXXFO] :: mark with a distinctive label; dinumerabilis_A = mkA "dinumerabilis" "dinumerabilis" "dinumerabile" ; -- [DSXFS] :: calculable; that may be numbered; enumerable, countable; dinumeratio_F_N = mkN "dinumeratio" "dinumerationis " feminine ; -- [XSXCO] :: counting/reckoning (action/process); calculation; enumeration of points; @@ -16479,16 +17717,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dinuptila_F_N = mkN "dinuptila" ; -- [DAXFS] :: plant, bryony; dinus_A = mkA "dinus" "dina" "dinum" ; -- [XEXIO] :: divine; godlike; (divinus in inscription); diobolaris_A = mkA "diobolaris" "diobolaris" "diobolare" ; -- [XXHEO] :: two obol-; priced at/costs/is worth two obols, very cheap; (a dime); --- TODO dioces_N : N1 dioces, diocesos/is -- F -- [EEXDM] :: diocese, province; Roman provincial district; (later) bishop's jurisdiction; + dioces_1_N = mkN "dioces" "diocesis" feminine ; -- [EEXDM] :: diocese, province; Roman provincial district; (later) bishop's jurisdiction; + dioces_2_N = mkN "dioces" "diocesos" feminine ; -- [EEXDM] :: diocese, province; Roman provincial district; (later) bishop's jurisdiction; diocesanus_A = mkA "diocesanus" "diocesana" "diocesanum" ; -- [EEXEM] :: diocesan; of bishop's jurisdiction; diocesis_F_N = mkN "diocesis" "diocesis " feminine ; -- [EEXDM] :: diocese, province; Roman provincial district; (later) bishop's jurisdiction; --- TODO dioeces_N : N1 dioeces, dioeceos/is -- F -- [DLXDS] :: diocese, province; Roman provincial district; (later) bishop's jurisdiction; + dioeces_1_N = mkN "dioeces" "dioeceis" feminine ; -- [DLXDS] :: diocese, province; Roman provincial district; (later) bishop's jurisdiction; + dioeces_2_N = mkN "dioeces" "dioeceos" feminine ; -- [DLXDS] :: diocese, province; Roman provincial district; (later) bishop's jurisdiction; dioecesanus_A = mkA "dioecesanus" "dioecesana" "dioecesanum" ; -- [EEXEM] :: diocesan; of bishop's jurisdiction; dioecesis_F_N = mkN "dioecesis" "dioecesis " feminine ; -- [DLXDS] :: diocese, province; Roman provincial district; (later) bishop's jurisdiction; dioecetes_M_N = mkN "dioecetes" "dioecetae " masculine ; -- [XLXFO] :: officer controlling expenditure; revenue official/overseer, Royal treasurer; diogmita_M_N = mkN "diogmita" ; -- [DWXFS] :: border guards (pl.); light-armed frontier troops for the pursuit of robbers; dionymus_A = mkA "dionymus" "dionyma" "dionymum" ; -- [XXXFS] :: with/having a double name; --- TODO dionysonymphas_N : N1 dionysonymphas, dionysonymphados/is -- F -- [XAHNO] :: plant (unknown); (first y long); (also called casignete); + dionysonymphas_1_N = mkN "dionysonymphas" "dionysonymphadis" feminine ; -- [XAHNO] :: plant (unknown); (first y long); (also called casignete); + dionysonymphas_2_N = mkN "dionysonymphas" "dionysonymphados" feminine ; -- [XAHNO] :: plant (unknown); (first y long); (also called casignete); diopetes_A = mkA "diopetes" "diopetes" "diopetes" ; -- [XXHNO] :: fallen from the sky/heaven; [~ rana => rain-frog]; diopetes_M_N = mkN "diopetes" "diopetis " masculine ; -- [XXHNS] :: something fallen from the sky/heaven; dioptra_F_N = mkN "dioptra" ; -- [XTXEO] :: surveying/optical instrument (used for measuring levels/heights); @@ -16525,6 +17766,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg diptychum_N_N = mkN "diptychum" ; -- [DXHES] :: writing tablet of two leaves (pl.); double shell of oyster; dipyrus_A = mkA "dipyrus" "dipyra" "dipyrum" ; -- [XXXFO] :: twice burnt; twice fired; (applied to encaustic painting); dira_F_N = mkN "dira" ; -- [XEXCO] :: curses, imprecations (pl.); bad omens, presages of evil; The Furies; Harpies; + dirado_V2 = mkV2 (mkV "diradere" "dirado" "dirasi" "dirasus ") ; -- [DXXFS] :: scratch slightly; diraro_V2 = mkV2 (mkV "dirarare") ; -- [XXXFO] :: thin out (vegetation); chop, hoe;; diratio_F_N = mkN "diratio" "dirationis " feminine ; -- [FLXEM] :: deraignment, proof; establishment of title; dirationo_V2 = mkV2 (mkV "dirationare") ; -- [FLXEM] :: deraign; establish title; vindicate; decide/adjudge; [~ me => clear oneself]; @@ -16545,7 +17787,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg directorius_A = mkA "directorius" "directoria" "directorium" ; -- [EXXFS] :: that directs or sends in any direction; directum_N_N = mkN "directum" ; -- [XSXEE] :: straight line; directura_F_N = mkN "directura" ; -- [XTXFO] :: level, uniform horizontal surface; leveling of a surface; --- SLASHSTUFF directus_A : A2 directus, directa -um, directior -or -us, directissimus -a -um -- [XXXBO] :: ||steep (L+S); level; open/straightforward (Ecc); proper, helpful/guiding; + directus_A = mkA "directus" ; -- [XXXBO] :: ||steep (L+S); level; open/straightforward (Ecc); proper, helpful/guiding; directus_M_N = mkN "directus" ; -- [XLXFO] :: person given rights by direct procedure; diremptio_F_N = mkN "diremptio" "diremptionis " feminine ; -- [XXXFO] :: estrangement: break up/off (relations w/person); separation (L+S); diremptus_M_N = mkN "diremptus" "diremptus " masculine ; -- [XXXFO] :: separation; process of taking apart; break up; @@ -16556,13 +17798,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg diribitor_M_N = mkN "diribitor" "diribitoris " masculine ; -- [XLXEO] :: officer who sorts voting tablets; election official; distributor (food); waiter; diribitorium_N_N = mkN "diribitorium" ; -- [XLXEO] :: |ticket booth at public baths (perh.), place for issuing tickets in baths; dirigismus_M_N = mkN "dirigismus" ; -- [GXXFK] :: interventionism; + dirigo_V2 = mkV2 (mkV "dirigere" "dirigo" "direxi" "directus ") ; -- [XXXAO] :: |||direct (course/steps), turn/steer/guide; propel/direct (missiles/blows); dirimens_A = mkA "dirimens" "dirimentis"; -- [EXXFE] :: invalidating, nullifying; E:diriment (diriment impediment annuls marriage); + dirimo_V2 = mkV2 (mkV "dirimere" "dirimo" "diremi" "diremptus ") ; -- [XXXBO] :: ||cause to diverge;; draw a line/boundary; settle, impose decision on (dispute); + diripio_V2 = mkV2 (mkV "diripere" "diripio" "diripui" "direptus ") ; -- [XXXBO] :: ||plunder, pillage, spoil, lay waste; seize and divide; steal/rob; distress; diritas_F_N = mkN "diritas" "diritatis " feminine ; -- [XXXDO] :: frightfulness, quality inspiring fear; dire event; misfortune (L+S); cruelty; dirivatio_F_N = mkN "dirivatio" "dirivationis " feminine ; -- [FXXEZ] :: heading off/away (into another channel); derivation; dirivo_V2 = mkV2 (mkV "dirivare") ; -- [XXXCO] :: draw/lead off (river/fluid), divert/turn aside; derive/draw on; form derivative; + dirrumpo_V2 = mkV2 (mkV "dirrumpere" "dirrumpo" "dirrupi" "dirruptus ") ; -- [XXXCO] :: cause to break apart/shatter/burst/split/rupture/disrupt; (PASS) burst/break; dirum_N_N = mkN "dirum" ; -- [XEXES] :: fearful things; ill-boding events; + dirumpo_V2 = mkV2 (mkV "dirumpere" "dirumpo" "dirupi" "diruptus ") ; -- [XXXCO] :: cause to break apart/shatter/burst/split/rupture/disrupt; (PASS) burst/break; + diruo_V2 = mkV2 (mkV "diruere" "diruo" "dirui" "dirutus ") ; -- [XWXCO] :: |have one's pay stopped/docked (of soldier); scatter, drive asunder (L+S); diruptio_F_N = mkN "diruptio" "diruptionis " feminine ; -- [XXXFO] :: explosion; process of bursting; tearing asunder/to pieces (L+S); --- SLASHSTUFF dirus_A : A2 dirus, dira -um, dirior -or -us, dirissimus -a -um -- [XEXBO] :: awful/dire/dreadful (omen); ominous/frightful/terrible/horrible; skillful (L+S); + dirus_A = mkA "dirus" ; -- [XEXBO] :: awful/dire/dreadful (omen); ominous/frightful/terrible/horrible; skillful (L+S); dirutio_F_N = mkN "dirutio" "dirutionis " feminine ; -- [DXXIO] :: process of falling into ruin; destruction (L+S); dis_A = mkA "dis" "ditis"; -- [XXXCO] :: rich/wealthy; richly adorned; fertile/productive (land); profitable; sumptuous; disamo_V2 = mkV2 (mkV "disamare") ; -- [XXXFO] :: love dearly; @@ -16570,14 +17818,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg discantus_M_N = mkN "discantus" "discantus " masculine ; -- [FDXFE] :: descant, upper voice in part singing; discapedino_V2 = mkV2 (mkV "discapedinare") ; -- [XXXFO] :: separate (the hands so as to use independently); hold hands apart (L+S); discaveo_V = mkV "discavere" ; -- [BXXFS] :: beware of; be on one's guard against; keep away from; + discedo_V2 = mkV2 (mkV "discedere" "discedo" "discessi" "discessus ") ; -- [XXXAX] :: go/march off, depart, withdraw; scatter, dissipate; abandon; lay down (arms); disceptatio_F_N = mkN "disceptatio" "disceptationis " feminine ; -- [XXXCE] :: debate; dispute; discussion; judgment, judicial award; disceptator_M_N = mkN "disceptator" "disceptatoris " masculine ; -- [XXXDX] :: arbitrator; disceptio_F_N = mkN "disceptio" "disceptionis " feminine ; -- [XXXCE] :: debate; dispute; discussion; judgment, judicial award; discepto_V = mkV "disceptare" ; -- [XXXDX] :: dispute; debate; arbitrate; + discerno_V2 = mkV2 (mkV "discernere" "discerno" "discrevi" "discretus ") ; -- [XXXDX] :: see, discern; distinguish, separate; + discerpo_V2 = mkV2 (mkV "discerpere" "discerpo" "discerpsi" "discerptus ") ; -- [XXXDX] :: pluck or tear in pieces; rend, mutilate, mangle; discessio_F_N = mkN "discessio" "discessionis " feminine ; -- [XXXDX] :: withdrawal, dispersal; discessus_M_N = mkN "discessus" "discessus " masculine ; -- [XXXDX] :: going apart; separation departure, marching off; discidium_N_N = mkN "discidium" ; -- [XXXDE] :: separation, divorce, discord; disagreement, quarrel; tearing apart; + discido_V2 = mkV2 (mkV "discidere" "discido" nonExist nonExist) ; -- [XXXEC] :: cut in pieces; discinctus_A = mkA "discinctus" "discincta" "discinctum" ; -- [XXXDX] :: wearing loose clothes; easy-going; + discindo_V2 = mkV2 (mkV "discindere" "discindo" "discidi" "discissus ") ; -- [XXXDX] :: cut in two, divide; disciplina_F_N = mkN "disciplina" ; -- [XXXBX] :: teaching, instruction, education; training; discipline; method, science, study; disciplinabilis_A = mkA "disciplinabilis" "disciplinabilis" "disciplinabile" ; -- [XXXES] :: learned by teaching; disciplinaris_A = mkA "disciplinaris" "disciplinaris" "disciplinare" ; -- [FXXEE] :: disciplinary; @@ -16586,12 +17839,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg discipulatus_M_N = mkN "discipulatus" "discipulatus " masculine ; -- [DXXFE] :: discipleship; discipulus_M_N = mkN "discipulus" ; -- [XXXBX] :: student, pupil, trainee; follower, disciple; discissus_A = mkA "discissus" "discissa" "discissum" ; -- [XXXEE] :: torn, rent; + discludo_V2 = mkV2 (mkV "discludere" "discludo" "disclusi" "disclusus ") ; -- [XXXDX] :: divide, separate, keep apart; shut off; + disco_V2 = mkV2 (mkV "discere" "disco" "didici" "discitus ") ; -- [XXXAO] :: learn; hear, get to know, become acquainted with; acquire knowledge/skill of/in; discographia_F_N = mkN "discographia" ; -- [HXXEK] :: discography; discolor_A = mkA "discolor" "discoloris"; -- [XXXDX] :: another color, not of the same color; of different/party colors; variegated; discolus_A = mkA "discolus" "discola" "discolum" ; -- [XXXEE] :: deformed; discomputus_M_N = mkN "discomputus" ; -- [GXXEK] :: discount; --- TODO disconvenio_V : V2 disconvenio, disconvenire, -, - -- Declension: 4th -- Comment: [XXXDX] :: be inconsistent, be different; + disconvenio_V = mkV "disconvenire" "disconvenio" nonExist nonExist ; -- [XXXDX] :: be inconsistent, be different; + discooperio_V2 = mkV2 (mkV "discooperire" "discooperio" "discooperui" "discoopertus ") ; -- [EXXDS] :: expose, bare, lay bare, uncover; disclose; put/take off, remove; + discoperio_V2 = mkV2 (mkV "discoperire" "discoperio" "discoperui" "discopertus ") ; -- [EXXDP] :: expose, bare, lay bare, uncover; disclose; put/take off, remove; discophonum_N_N = mkN "discophonum" ; -- [HTXEK] :: CD/compact disk reader; + discoquo_V2 = mkV2 (mkV "discoquere" "discoquo" "discoxi" "discoctus ") ; -- [XXXFS] :: cook thoroughly; discordia_F_N = mkN "discordia" ; -- [XXXBX] :: disagreement, discord; discordiosus_A = mkA "discordiosus" "discordiosa" "discordiosum" ; -- [XXXEC] :: full of discord, mutinous; discorditer_Adv = mkAdv "discorditer" ; -- [XXXFE] :: disproportionally; @@ -16605,6 +17863,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg discretio_F_N = mkN "discretio" "discretionis " feminine ; -- [XXXDE] :: separation; discretion, discrimination, power of distinguishing, discernment; discretor_M_N = mkN "discretor" "discretoris " masculine ; -- [XXXDE] :: judge; discerner; discretus_A = mkA "discretus" "discreta" "discretum" ; -- [XXXCO] :: separate, situated/put apart; distinguished/differentiated; discreet/wise (Bee); + discribo_V2 = mkV2 (mkV "discribere" "discribo" "discripsi" "discriptus ") ; -- [XXXDX] :: divide, assign, distribute; discrimen_N_N = mkN "discrimen" "discriminis " neuter ; -- [XXXBX] :: crisis, separating line, division; distinction, difference; discriminale_N_N = mkN "discriminale" "discriminalis " neuter ; -- [XXXFO] :: hair-pin/ornament used to preserve part; bodkin/hair pin (Douay); headdress; discriminalis_A = mkA "discriminalis" "discriminalis" "discriminale" ; -- [XXXEE] :: divider, which serves to divide/separate; @@ -16615,10 +17874,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg discubitus_M_N = mkN "discubitus" "discubitus " masculine ; -- [EXXFR] :: seat; dining couch; place at the table (Ecc); disculcio_V2 = mkV2 (mkV "disculciare") ; -- [DXXFS] :: unshoe; remove the shoe from; discumbens_M_N = mkN "discumbens" "discumbentis " masculine ; -- [XXXEE] :: guest; + discumbo_V2 = mkV2 (mkV "discumbere" "discumbo" "discubui" "discubitus ") ; -- [XXXBX] :: sit (to eat), recline at table; lie down; go to bed; + discurro_V = mkV "discurrere" "discurro" "discurri" "discursus "; -- [XXXBO] :: run off in different directions; run/dash around/about; wander; roam; discursus_M_N = mkN "discursus" "discursus " masculine ; -- [XXXDX] :: running about; separate lion, dispersal; discus_M_N = mkN "discus" ; -- [FXXCE] :: |paten (Greek rite); high table (Latham); measure (grain/salt/ale/ore); tray; --- TODO discuto_V : V2 discuto, discutere, -, - -- Declension: 3rd -- Comment: [FXXDE] :: examine, inquire into; discuss; + discutio_V2 = mkV2 (mkV "discutere" "discutio" "discussi" "discussus ") ; -- [XXXCE] :: strike down; shatter, shake violently; dissipate, bring to naught; plead case; + discuto_V = mkV "discutere" "discuto" nonExist nonExist ; -- [FXXDE] :: examine, inquire into; discuss; disdiapason_N_N = mkN "disdiapason" "disdiapasi " neuter ; -- [XDXFO] :: double octave; + disdo_V2 = mkV2 (mkV "disdere" "disdo" "disdidi" "disditus ") ; -- [XXXCS] :: distribute, deal out, disseminate; spread, diffuse; spread abroad (L+S); diselianus_A = mkA "diselianus" "diseliana" "diselianum" ; -- [GXXEK] :: diesel-; diserte_Adv = mkAdv "diserte" ; -- [XXXDE] :: eloquently; expressly; distinctly, clearly; disertitudo_F_N = mkN "disertitudo" "disertitudinis " feminine ; -- [EXXES] :: eloquence; skillfully expression; @@ -16627,38 +17890,55 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg disgregatio_F_N = mkN "disgregatio" "disgregationis " feminine ; -- [FXXFF] :: dispersal; separation, putting apart, disunion; disgregation, disintegration; disgregativus_A = mkA "disgregativus" "disgregativa" "disgregativum" ; -- [FXXFF] :: dispersing; separating, putting apart; disgrego_V2 = mkV2 (mkV "disgregare") ; -- [EXXES] :: separate; divide; disperse, scatter, divide; rend asunder; break up; + disicio_V2 = mkV2 (mkV "disicere" "disicio" "disjeci" "disjectus ") ; -- [XXXBO] :: |ruin; destroy; rout; disperse; squander; frustrate; dispel, end; disidium_N_N = mkN "disidium" ; -- [XXXDE] :: separation, divorce, discord; disagreement, quarrel; tearing apart; + disilio_V = mkV "disilire" "disilio" "disilivi" "disilitus "; -- [FXXEE] :: leap from one place to another; + disjicio_V2 = mkV2 (mkV "disjicere" "disjicio" "disjeci" "disjectus ") ; -- [XXXCS] :: |ruin; destroy; rout; disperse; squander; frustrate; dispel, end; disjugata_F_N = mkN "disjugata" ; -- [FXXFM] :: unmarried woman; disjugo_V2 = mkV2 (mkV "disjugare") ; -- [DXXFS] :: separate; disjuncte_Adv =mkAdv "disjuncte" "disjunctius" "disjunctissime" ; -- [XGXEO] :: separately; disjunctively, in form of disjunctive proposition; disjunctim_Adv = mkAdv "disjunctim" ; -- [XXXEO] :: separately; disjunctio_F_N = mkN "disjunctio" "disjunctionis " feminine ; -- [XXXCO] :: separation (from person); rupture (relationship); disjunctive proposition; disjunctivus_A = mkA "disjunctivus" "disjunctiva" "disjunctivum" ; -- [XGXEO] :: disjunctive, separative; disconnecting, making discontinuous (surveying); --- SLASHSTUFF disjunctus_A : A2 disjunctus, disjuncta -um, disjunctior -or -us, disjunctissimus -a -um -- [XXXCO] :: separated/distant/disconnected/set apart; different/distinct/individual; + disjunctus_A = mkA "disjunctus" ; -- [XXXCO] :: separated/distant/disconnected/set apart; different/distinct/individual; + disjungo_V2 = mkV2 (mkV "disjungere" "disjungo" "disjunxi" "disjunctus ") ; -- [XXXBO] :: unyoke; disunite, sever, divide, separate, part, estrange; put asunder (Ecc); dismembratio_F_N = mkN "dismembratio" "dismembrationis " feminine ; -- [FXXEE] :: dismemberment; separation; dismembratus_A = mkA "dismembratus" "dismembrata" "dismembratum" ; -- [FXXEE] :: dismembered; dismembro_V2 = mkV2 (mkV "dismembrare") ; -- [FXXDE] :: dismember; separate, break up; distribute; + dispando_V = mkV "dispandere" "dispando" "dispansus" ; -- [XXXDO] :: open/spread out; expatiate, walk/roam at large/will, roam freely; dispar_A = mkA "dispar" "disparis"; -- [XXXDX] :: unequal, disparate, unlike; dispareo_V = mkV "disparere" ; -- [FXXCF] :: disappear, vanish, vanish out of sight; disparitas_F_N = mkN "disparitas" "disparitatis " feminine ; -- [FXXDE] :: difference; discrepancy; inequality; [~ cultus => in marriage w/non=Catholic]; disparitio_F_N = mkN "disparitio" "disparitionis " feminine ; -- [GXXEK] :: disappearance; disparo_V = mkV "disparare" ; -- [XXXDX] :: separate, divide; + dispartio_V2 = mkV2 (mkV "dispartire" "dispartio" "dispartivi" "dispartitus ") ; -- [XXXDO] :: divide (up); distribute; assign; separate into lots/groups; + dispartior_V = mkV "dispartiri" "dispartior" "dispartitus sum " ; -- [XXXEO] :: divide (up); distribute; assign; separate into lots/groups; dispector_M_N = mkN "dispector" "dispectoris " masculine ; -- [FXXEE] :: examiner; searcher; + dispello_V2 = mkV2 (mkV "dispellere" "dispello" "dispuli" "dispulsus ") ; -- [XXXDX] :: drive apart or away; disperse; dispendiose_Adv = mkAdv "dispendiose" ; -- [GXXEK] :: big-expensed; dispendium_N_N = mkN "dispendium" ; -- [XXXDX] :: expense, cost; loss; + dispendo_V = mkV "dispendere" "dispendo" "dispensus" ; -- [XXXDO] :: open/spread out; expatiate, walk/roam at large/will, roam freely; dispensatio_F_N = mkN "dispensatio" "dispensationis " feminine ; -- [XXXDX] :: management; stewardship; dispensation, relaxation of law (Ecc); dispensator_M_N = mkN "dispensator" "dispensatoris " masculine ; -- [XXXDX] :: steward; attendant; treasurer; dispenser; dispensatorius_A = mkA "dispensatorius" "dispensatoria" "dispensatorium" ; -- [XXXEE] :: dispensing; administering; dispenso_V = mkV "dispensare" ; -- [XXXDX] :: manage; dispense, distribute; pay out; arrange; + disperdo_V2 = mkV2 (mkV "disperdere" "disperdo" "disperdidi" "disperditus ") ; -- [XXXCO] :: destroy/ruin utterly; ruin (property/fortunes/persons); dispereo_V = mkV "disperire" ; -- [XXXCO] :: perish/die; be destroyed; be ruined/lost/undone (completely) (L+S); disappear; + dispergo_V2 = mkV2 (mkV "dispergere" "dispergo" "dispersi" "dispersus ") ; -- [XXXBX] :: scatter (about), disperse; disperse_Adv = mkAdv "disperse" ; -- [XXXEO] :: sporadically; here and there; dispersim_Adv = mkAdv "dispersim" ; -- [XXXEO] :: sporadically; here and there; dispersio_F_N = mkN "dispersio" "dispersionis " feminine ; -- [DXXCS] :: dispersion/scattering; destruction; confusion; those scattered/dispersed (pl.); + dispertio_V2 = mkV2 (mkV "dispertire" "dispertio" "dispertivi" "dispertitus ") ; -- [XXXCO] :: divide (up); distribute; assign; separate into lots/groups; + dispertior_V = mkV "dispertiri" "dispertior" "dispertitus sum " ; -- [XXXEO] :: divide (up); distribute; assign; separate into lots/groups; dispertitivus_A = mkA "dispertitivus" "dispertitiva" "dispertitivum" ; -- [EGXEP] :: distributive; + dispesco_V2 = mkV2 (mkV "dispescere" "dispesco" "dispescui" "dispestus ") ; -- [XXXFS] :: separate; take from pasture; + dispicio_V2 = mkV2 (mkV "dispicere" "dispicio" "dispexi" "dispectus ") ; -- [XXXDX] :: look about (for), discover espy, consider; displiceo_V = mkV "displicere" ; -- [XXXDX] :: displease; displodeo_V = mkV "displodere" ; -- [GWXEK] :: explode; + displodo_V2 = mkV2 (mkV "displodere" "displodo" "displosi" "displosus ") ; -- [XXXDX] :: burst apart; displosio_F_N = mkN "displosio" "displosionis " feminine ; -- [GWXEK] :: explosion; dispolio_V2 = mkV2 (mkV "dispoliare") ; -- [XXXDO] :: rob/plunder; despoil (of); strip, deprive of clothing/covering; (for flogging); + dispono_V2 = mkV2 (mkV "disponere" "dispono" "disposui" "dispositus ") ; -- [XXXBO] :: |appoint, post, station; allot, assign; arrange, ordain, prescribe; regulate; disponsatio_F_N = mkN "disponsatio" "disponsationis " feminine ; -- [EXXFW] :: marriage; espousal (in the sense of marriage) (Douay/KJames); disponso_V = mkV "disponsare" ; -- [FEXFM] :: give in marriage; (desponso); dispositio_F_N = mkN "dispositio" "dispositionis " feminine ; -- [XXXCO] :: layout; orderly arrangement/disposition of arguments/words/time/activities; @@ -16666,34 +17946,41 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dispositor_M_N = mkN "dispositor" "dispositoris " masculine ; -- [XXXFE] :: disposer; who arranges/manages/dispenses; disproportio_F_N = mkN "disproportio" "disproportionis " feminine ; -- [GXXEK] :: disproportion; dispunctio_F_N = mkN "dispunctio" "dispunctionis " feminine ; -- [EXXES] :: setting-up; investigation; + dispungo_V2 = mkV2 (mkV "dispungere" "dispungo" "dispunxi" "dispunctus ") ; -- [EXXES] :: check-off (accounts); examine; balance (accounts); disputatio_F_N = mkN "disputatio" "disputationis " feminine ; -- [XXXDX] :: discussion, debate, dispute, argument; disputo_V = mkV "disputare" ; -- [XXXDX] :: discuss, debate, argue; --- TODO disquiro_V : V2 disquiro, disquirere, -, - -- Declension: 3rd -- Comment: [XXXEC] :: inquire into, investigate; + disquiro_V = mkV "disquirere" "disquiro" nonExist nonExist ; -- [XXXEC] :: inquire into, investigate; disquisitio_F_N = mkN "disquisitio" "disquisitionis " feminine ; -- [XXXDX] :: inquiry; disraro_V2 = mkV2 (mkV "disrarare") ; -- [XXXFO] :: thin out (vegetation); chop, hoe;; disratio_F_N = mkN "disratio" "disrationis " feminine ; -- [FLXFJ] :: deraignment; disarrangement; discharge from monastic order; disrationo_V = mkV "disrationare" ; -- [FLXFJ] :: deraign; put into disorder; disarrange; be discharged from order (eccles.); + disrumpo_V2 = mkV2 (mkV "disrumpere" "disrumpo" "disrupi" "disruptus ") ; -- [XXXCO] :: cause to break apart/off, shatter/burst/split, disrupt/sever; (PASS) get broken; + dissaepio_V2 = mkV2 (mkV "dissaepere" "dissaepio" "dissaepsi" "dissaeptus ") ; -- [XXXDX] :: separate, divide; disseco_V = mkV "dissecare" ; -- [GSXEK] :: dissect; - disseco_V2 = mkV2 (mkV "dissecare") ; -- [XXXDO] :: cut apart; cut in pieces; dismember, dissect; + disseco_V2 = mkV2 (mkV "dissecere" "disseco" nonExist "dissectus ") ; -- [EXXFP] :: divide; penetrate through; open by force; dismember, dissect; dissectio_F_N = mkN "dissectio" "dissectionis " feminine ; -- [GSXEK] :: dissection; disseisina_F_N = mkN "disseisina" ; -- [FLXFJ] :: disseisin; dispossession of freehold; + disseisio_V2 = mkV2 (mkV "disseisire" "disseisio" "disseisivi" "disseisitus ") ; -- [FLXFJ] :: disseise; dispossess; put out of seisin/possession (usu. wrongfully); oust; disseisitor_M_N = mkN "disseisitor" "disseisitoris " masculine ; -- [FLXFJ] :: disseisor; dispossessor of freehold; dissemino_V = mkV "disseminare" ; -- [XXXDX] :: broadcast, disseminate; dissensio_F_N = mkN "dissensio" "dissensionis " feminine ; -- [XXXDX] :: disagreement, quarrel; dissension, conflict; dissensus_A = mkA "dissensus" "dissensa" "dissensum" ; -- [XXXEE] :: different; differing; dissensus_M_N = mkN "dissensus" "dissensus " masculine ; -- [XXXEE] :: disagreement, quarrel; dissension, conflict; dissentaneus_A = mkA "dissentaneus" "dissentanea" "dissentaneum" ; -- [XXXEC] :: disagreeing, different; + dissentio_V2 = mkV2 (mkV "dissentire" "dissentio" "dissensi" "dissensus ") ; -- [XXXDX] :: dissent, disagree; differ; disserenat_V0 = mkV0 "disserenat" ; -- [XXXEC] :: it is clearing up all round; (of the weather); + dissero_V2 = mkV2 (mkV "disserere" "dissero" "dissevi" "dissitus ") ; -- [XAXDS] :: plant/sow at intervals; scatter/distribute, plant here/there; separate/part; disserto_V = mkV "dissertare" ; -- [XXXDX] :: discuss; + dissicio_V2 = mkV2 (mkV "dissicere" "dissicio" "dissjeci" "dissjectus ") ; -- [XXXCO] :: |ruin; destroy; rout; disperse; squander; frustrate; dispel, end; dissico_V2 = mkV2 (mkV "dissicare") ; -- [XXXDO] :: cut apart; cut in pieces; dismember, dissect; dissideo_V = mkV "dissidere" ; -- [XXXDX] :: disagree, be at variance; be separated; dissidium_N_N = mkN "dissidium" ; -- [EXXCE] :: separation, divorce, discord; disagreement, quarrel; tearing apart; dissignatio_F_N = mkN "dissignatio" "dissignationis " feminine ; -- [XXXEC] :: arrangement; dissignator_M_N = mkN "dissignator" "dissignatoris " masculine ; -- [XXXEC] :: one that arranges, a supervisor; dissigno_V2 = mkV2 (mkV "dissignare") ; -- [XXXDO] :: |earmark/choose; appoint, elect (magistrate); order/plan; scheme. perpetrate; --- TODO dissilio_V : V2 dissilio, dissilire, dissilui, - -- Declension: 4th -- Comment: [XXXDX] :: fly/leap/burst apart; break up; be broken up; burst; split; + dissilio_V2 = mkV2 (mkV "dissilire" "dissilio" "dissilui" nonExist ) ; -- [XXXDX] :: fly/leap/burst apart; break up; be broken up; burst; split; dissilo_V = mkV "dissilare" ; -- [FXXEE] :: be torn apart; --- SLASHSTUFF dissimilis_A : A2 dissimilis, dissimile, dissimilior -or -us, dissimillimus -a -um -- [XXXDX] :: unlike, different, dissimilar; + dissimilis_A = mkA "dissimilis" ; -- [XXXDX] :: unlike, different, dissimilar; dissimilitudo_F_N = mkN "dissimilitudo" "dissimilitudinis " feminine ; -- [XXXDX] :: unlikeness, difference; dissimulanter_Adv = mkAdv "dissimulanter" ; -- [XXXDX] :: dissemblingly; dissimulatio_F_N = mkN "dissimulatio" "dissimulationis " feminine ; -- [XXXDX] :: dissimulation dissembling; @@ -16707,6 +17994,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dissocio_V = mkV "dissociare" ; -- [XXXDX] :: be/set at variance with, split into factions, separate, part; dissolutio_F_N = mkN "dissolutio" "dissolutionis " feminine ; -- [XXXDX] :: disintegration, dissolution; destruction; disconnection; refutation; dissolutus_A = mkA "dissolutus" "dissoluta" "dissolutum" ; -- [XXXDX] :: loose; lax; negligent, dissolute; + dissolvo_V2 = mkV2 (mkV "dissolvere" "dissolvo" "dissolvi" "dissolutus ") ; -- [XXXDX] :: unloose; dissolve, destroy; melt; pay; refute; annul; dissonanter_Adv = mkAdv "dissonanter" ; -- [DDXFS] :: inharmoniously; inconsistently; dissonantia_F_N = mkN "dissonantia" ; -- [DDXES] :: dissonance; discrepancy; dissonantium_N_N = mkN "dissonantium" ; -- [XXXEE] :: discord, differences; @@ -16716,11 +18004,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dissuasio_F_N = mkN "dissuasio" "dissuasionis " feminine ; -- [XXXEE] :: dissuasion; advising to the contrary; dissuasor_M_N = mkN "dissuasor" "dissuasoris " masculine ; -- [XXXDX] :: discourager, one who advises against; dissuasorius_A = mkA "dissuasorius" "dissuasoria" "dissuasorium" ; -- [GXXEK] :: dissuasive; + dissuesco_V2 = mkV2 (mkV "dissuescere" "dissuesco" "dissuevi" "dissuetus ") ; -- [XXXFO] :: forget, unlearn, become disaccustomed to; disaccustom (person); dissulto_V = mkV "dissultare" ; -- [XXXDX] :: fly or burst apart; bounce off; + dissuo_V2 = mkV2 (mkV "dissuere" "dissuo" "dissui" "dissutus ") ; -- [XXXEO] :: unstitch, undo the stitches of; rip apart, sever; dissupo_V = mkV "dissupare" ; -- [XXXFS] :: scatter, squander; destroy completely; circulate; (alt. form of dissipo); + distabesco_V = mkV "distabescere" "distabesco" "distabui" nonExist; -- [XXXEE] :: waste away; distans_A = mkA "distans" "distantis"; -- [XXXEE] :: distant; separate; distantia_F_N = mkN "distantia" ; -- [XXXDX] :: distance; difference; --- TODO distenno_V : V2 distenno, distennere, -, distensus -- Declension: 3rd -- Comment: [XXXDX] :: stretch (apart); spread out; distend; extend; rack; detract, perplex; + distendo_V2 = mkV2 (mkV "distendere" "distendo" "distendi" "distentus ") ; -- [XXXDX] :: stretch (apart); spread out; distend; extend; rack; detract, perplex; + distenno_V = mkV "distennere" "distenno" "distensus" ; -- [XXXDX] :: stretch (apart); spread out; distend; extend; rack; detract, perplex; distentio_F_N = mkN "distentio" "distentionis " feminine ; -- [XBXEO] :: spasm; distortion; distentus_A = mkA "distentus" "distenta" "distentum" ; -- [XXXEE] :: full, filled up; distended; occupied, busy; distermino_V2 = mkV2 (mkV "disterminare") ; -- [XXXCO] :: divide from, serve as boundary; divide up; mark off w/boundary; separate from; @@ -16733,26 +18025,30 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg distinctio_F_N = mkN "distinctio" "distinctionis " feminine ; -- [XXXDX] :: distinction; difference; distinctus_A = mkA "distinctus" "distincta" "distinctum" ; -- [XXXDX] :: separate, distinct; definite, lucid; distineo_V = mkV "distinere" ; -- [XXXDX] :: keep apart, separate; prevent, hold up; distract; + distinguo_V2 = mkV2 (mkV "distinguere" "distinguo" "distinxi" "distinctus ") ; -- [XXXDX] :: distinguish, separate, divide, part; adorn, decorate; disto_V = mkV "distare" ; -- [XXXDX] :: stand apart, be distant; be different; distorqueo_V = mkV "distorquere" ; -- [XXXDX] :: twist this way and that; distortus_A = mkA "distortus" "distorta" "distortum" ; -- [FXXEE] :: misshapen; distractio_F_N = mkN "distractio" "distractionis " feminine ; -- [GXXEK] :: distraction; distractus_A = mkA "distractus" "distracta" "distractum" ; -- [GXXEK] :: absent-minded; + distraho_V2 = mkV2 (mkV "distrahere" "distraho" "distraxi" "distractus ") ; -- [XXXDX] :: draw/pull/tear apart, wrench, separate, (sub)divide; sell in parcels; distract; + distribuo_V2 = mkV2 (mkV "distribuere" "distribuo" "distribui" "distributus ") ; -- [XXXDX] :: divide, distribute, assign; distributio_F_N = mkN "distributio" "distributionis " feminine ; -- [XXXDX] :: division, distribution; distributivus_A = mkA "distributivus" "distributiva" "distributivum" ; -- [FXXFE] :: distributive; distributor_M_N = mkN "distributor" "distributoris " masculine ; -- [XXXDE] :: distributor; districte_Adv = mkAdv "districte" ; -- [XXXFO] :: strictly; severely; districtim_Adv = mkAdv "districtim" ; -- [FXXFE] :: strictly; severely; districtio_F_N = mkN "districtio" "districtionis " feminine ; -- [XXXDE] :: severity, strictness; --- SLASHSTUFF districtus_A : A2 districtus, districta -um, districtior -or -us, districtissimus -a -um -- [XXXCO] :: busy; having many claims on one's attention; pulled in different directions; + districtus_A = mkA "districtus" ; -- [XXXCO] :: busy; having many claims on one's attention; pulled in different directions; distrinctio_F_N = mkN "distrinctio" "distrinctionis " feminine ; -- [XXXIO] :: distraction; condition of having one's attention elsewhere; + distringo_V2 = mkV2 (mkV "distringere" "distringo" "distrinxi" "districtus ") ; -- [XXXCO] :: stretch out/apart; detain; distract; pull in different directions; disturbium_N_N = mkN "disturbium" ; -- [FXXFM] :: disturbance; disturbo_V = mkV "disturbare" ; -- [XXXDX] :: disturb, demolish, upset; disyllaba_F_N = mkN "disyllaba" ; -- [XDXES] :: di-syllable; disyllabum_N_N = mkN "disyllabum" ; -- [XDXES] :: di-syllable; disyllabus_A = mkA "disyllabus" "disyllaba" "disyllabum" ; -- [XGXES] :: di-syllabic; ditator_M_N = mkN "ditator" "ditatoris " masculine ; -- [XXXFE] :: enricher; --- TODO ditesco_V : V2 ditesco, ditescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: grow rich; + ditesco_V = mkV "ditescere" "ditesco" nonExist nonExist ; -- [XXXDX] :: grow rich; dithalassus_A = mkA "dithalassus" "dithalassa" "dithalassum" ; -- [XXXFE] :: open to two seas; dithyrambicus_A = mkA "dithyrambicus" "dithyrambica" "dithyrambicum" ; -- [XPXEC] :: dithyrambic; of/like dithyramb (Greek choric hymn), vehement/wild/Bacchanalian; dithyrambus_M_N = mkN "dithyrambus" ; -- [XXXDX] :: form of verse used especially choral singing; @@ -16780,15 +18076,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg diutinus_A = mkA "diutinus" "diutina" "diutinum" ; -- [XXXDX] :: long lasting, long; diutule_Adv = mkAdv "diutule" ; -- [XXXEO] :: for a short while; diuturnitas_F_N = mkN "diuturnitas" "diuturnitatis " feminine ; -- [XXXDX] :: long duration; --- SLASHSTUFF diuturnus_A : A2 diuturnus, diuturna -um, diuturnior -or -us, diuturnissimus -a -um -- [XXXDX] :: lasting, lasting long; + diuturnus_A = mkA "diuturnus" ; -- [XXXDX] :: lasting, lasting long; diva_F_N = mkN "diva" ; -- [XXXDX] :: goddess; divaliis_A = mkA "divaliis" "divaliis" "divalie" ; -- [XLXFS] :: imperial(legal); divine; divarico_V2 = mkV2 (mkV "divaricare") ; -- [XXXEC] :: stretch apart, spread out; --- TODO divendo_V : V2 divendo, divendere, -, divenditus -- Declension: 3rd -- Comment: [XXXDX] :: sell in small lots/retail; sell out; + divello_V2 = mkV2 (mkV "divellere" "divello" "divulsi" "divulsus ") ; -- [XXXBO] :: |tear away/open/apart, tear to pieces/in two; break up, sunder/disrupt; divide; + divendo_V = mkV "divendere" "divendo" "divenditus" ; -- [XXXDX] :: sell in small lots/retail; sell out; diverbero_V = mkV "diverberare" ; -- [XXXDX] :: split; strike violently; diverbium_N_N = mkN "diverbium" ; -- [XDXFO] :: spoken part of play (unaccompanied by music); dialogue on the stage; divergentia_F_N = mkN "divergentia" ; -- [XXXFO] :: declivity; downward slope; downwards incline (L+S); divergeo_V = mkV "divergere" ; -- [GXXEK] :: diverge; + diverro_V2 = mkV2 (mkV "diverrere" "diverro" "diverri" "diversus ") ; -- [XXXES] :: sweep away; sweep out (L+S); diversifico_V = mkV "diversificare" ; -- [FXXEE] :: vary, be different; diversify; diversimodus_M_N = mkN "diversimodus" ; -- [FXXEZ] :: diverse-mode; diversitas_F_N = mkN "diversitas" "diversitatis " feminine ; -- [XXXDX] :: difference; @@ -16796,16 +18094,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg diversorium_N_N = mkN "diversorium" ; -- [XXXCO] :: inn, lodging house, stopping place; public/private accommodation; quarters; diversorius_A = mkA "diversorius" "diversoria" "diversorium" ; -- [XXXEO] :: of an inn/lodging house; fit to lodge/stay in (L+S); [taberna ~ => inn]; diversus_A = mkA "diversus" "diversa" "diversum" ; -- [XXXAX] :: opposite; separate, apart; diverse, unlike, different; hostile; + diverto_V2 = mkV2 (mkV "divertere" "diverto" "diverti" "diversus ") ; -- [XXXCO] :: separate; divert, turn away/in; digress; oppose; divorce/leave marriage; dives_A = mkA "dives" "divitis"; -- [XXXBO] :: rich/wealthy; costly; fertile/productive (land); talented, well endowed; dives_M_N = mkN "dives" "divitis " masculine ; -- [XXXDO] :: rich man; divexo_V2 = mkV2 (mkV "divexare") ; -- [XXXCS] :: |ravage/plunder; tear/rend/pull/rip apart/asunder, destroy (L+S); dividendus_A = mkA "dividendus" "dividenda" "dividendum" ; -- [GSXEK] :: dividing (math.); + divido_V2 = mkV2 (mkV "dividere" "divido" "divisi" "divisus ") ; -- [XXXAX] :: divide; separate, break up; share, distribute; distinguish; dividuus_A = mkA "dividuus" "dividua" "dividuum" ; -- [XXXDX] :: divisible; divided, separated; half; parted; divinatio_F_N = mkN "divinatio" "divinationis " feminine ; -- [XXXDX] :: predicting; divination; prophecy; prognostication; divinitas_F_N = mkN "divinitas" "divinitatis " feminine ; -- [XEXCO] :: divinity, quality/nature of God; divine excellence/power/being; divining; divinitus_Adv = mkAdv "divinitus" ; -- [XXXDX] :: from heaven, by a god, by divine influence/inspiration; divinely, admirable; divino_V = mkV "divinare" ; -- [XXXDX] :: divine; prophesy; guess; --- SLASHSTUFF divinus_A : A2 divinus, divina -um, divinior -or -us, divinissimus -a -um -- [XXXAX] :: divine, of a deity/god, godlike; sacred; divinely inspired, prophetic; natural; + divinus_A = mkA "divinus" ; -- [XXXAX] :: divine, of a deity/god, godlike; sacred; divinely inspired, prophetic; natural; divinus_M_N = mkN "divinus" ; -- [XXXDX] :: prophet; divise_Adv = mkAdv "divise" ; -- [DXXES] :: separately, distinctly; divisibilis_A = mkA "divisibilis" "divisibilis" "divisibile" ; -- [XSXEE] :: divisible; @@ -16815,11 +18115,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg divisus_M_N = mkN "divisus" "divisus " masculine ; -- [XXXDX] :: division; divitia_F_N = mkN "divitia" ; -- [XXXAX] :: riches (pl.), wealth; divortium_N_N = mkN "divortium" ; -- [XXXDX] :: separation; divorce; point of separation; watershed; + divorto_V2 = mkV2 (mkV "divortere" "divorto" "divorti" "divorsus ") ; -- [BXXCO] :: separate; divert, turn away/in; digress; oppose; divorce/leave marriage; divulgamen_N_N = mkN "divulgamen" "divulgaminis " neuter ; -- [FXXEN] :: fame; divulgatio_F_N = mkN "divulgatio" "divulgationis " feminine ; -- [XXXDE] :: publishing; spreading around; divulgo_V = mkV "divulgare" ; -- [XXXDX] :: publish, disseminate news of; divum_N_N = mkN "divum" ; -- [XXXDX] :: sky, open air; [sub divo => in the open air]; --- SLASHSTUFF divus_A : A2 divus, diva -um, -, divissimus -a -um -- [DEXES] :: divine; blessed, saint (Latham); + divus_A = mkA "divus" ; -- [DEXES] :: divine; blessed, saint (Latham); divus_M_N = mkN "divus" ; -- [XXXAX] :: god; do_V2 = mkV2 (mkV "dare") ; -- [XXXAO] :: |surrender/give over; send to die; ascribe/attribute; give birth/produce; utter; doceo_V = mkV "docere" ; -- [XXXAX] :: teach, show, point out; @@ -16835,7 +18136,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg doctrina_F_N = mkN "doctrina" ; -- [XXXBX] :: education; learning; science; teaching; instruction; principle; doctrine; doctrinalis_A = mkA "doctrinalis" "doctrinalis" "doctrinale" ; -- [XXXEE] :: doctrinal; theoretical; doctrix_F_N = mkN "doctrix" "doctricis " feminine ; -- [XXXEE] :: teacher (female); instructor; trainer; doctor; --- SLASHSTUFF doctus_A : A2 doctus, docta -um, doctior -or -us, doctissimus -a -um -- [XXXBO] :: learned, wise; skilled, experienced, expert; trained; clever, cunning, shrewd; + doctus_A = mkA "doctus" ; -- [XXXBO] :: learned, wise; skilled, experienced, expert; trained; clever, cunning, shrewd; documen_N_N = mkN "documen" "documinis " neuter ; -- [XXXEC] :: example, pattern, warning, proof; documentalis_A = mkA "documentalis" "documentalis" "documentale" ; -- [XXXEE] :: documentary; documentarius_A = mkA "documentarius" "documentaria" "documentarium" ; -- [GXXEK] :: documentary; @@ -16887,7 +18188,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg domito_V = mkV "domitare" ; -- [XXXDX] :: tame, break in; domitor_M_N = mkN "domitor" "domitoris " masculine ; -- [XXXDX] :: tamer, breaker; subduer, vanquisher, conqueror; domna_F_N = mkN "domna" ; -- [FLXEM] :: lady, mistress; (shortened form of domina); --- IGNORED domne_N : N1 domne, undeclined -- M -- [FXXEE] :: sir; lord, master; (vocative of domnus); + domne_N = constN "domne" masculine ; -- [FXXEE] :: sir; lord, master; (vocative of domnus); domnus_M_N = mkN "domnus" ; -- [FEXEB] :: lord, master; the Lord; ecclesiastic/gentleman; (shortened form of dominus); domo_V = mkV "domare" ; -- [XXXBX] :: subdue, master, tame; conquer; domuncula_F_N = mkN "domuncula" ; -- [XXXDO] :: small house, cottage, lodge; @@ -16899,12 +18200,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg donator_M_N = mkN "donator" "donatoris " masculine ; -- [XXXEE] :: giver, donor; donatrix_F_N = mkN "donatrix" "donatricis " feminine ; -- [XXXES] :: female donor; donatus_M_N = mkN "donatus" "donatus " masculine ; -- [FXXEE] :: gift, present; --- donec_Conj : Conj donec -- [XXXAX] :: while, as long as, until; + donec_Conj = mkConj "donec" missing ; -- [XXXAX] :: while, as long as, until; dono_V = mkV "donare" ; -- [XXXAX] :: present, grant; forgive; give (gifts), bestow; donum_N_N = mkN "donum" ; -- [XXXAX] :: gift, present; offering; --- TODO dorcas_N : N1 dorcas, dorcados/is -- F -- [XAXEC] :: gazelle, antelope; + dorcas_1_N = mkN "dorcas" "dorcadis" feminine ; -- [XAXEC] :: gazelle, antelope; + dorcas_2_N = mkN "dorcas" "dorcados" feminine ; -- [XAXEC] :: gazelle, antelope; dorcus_C_N = mkN "dorcus" ; -- [XAXFS] :: gazelle; antelope; dormeo_V = mkV "dormire" ; -- [XXXEO] :: sleep, rest; go to sleep, be/fall asleep; be idle, do nothing; (form for FUT); + dormio_V = mkV "dormire" "dormio" "dormivi" "dormitus "; -- [XXXBO] :: sleep, rest; be/fall asleep; behave as if asleep; be idle, do nothing; dormitatio_F_N = mkN "dormitatio" "dormitationis " feminine ; -- [FXXEE] :: slumber, sleep; dormitio_F_N = mkN "dormitio" "dormitionis " feminine ; -- [XXXFO] :: sleep, act of sleeping; dormito_V = mkV "dormitare" ; -- [XXXDX] :: feel sleepy, drowsy; do nothing; @@ -16938,7 +18241,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg drapeta_M_N = mkN "drapeta" ; -- [XXXEC] :: runaway slave; drappus_M_N = mkN "drappus" ; -- [FXXEK] :: cloth; dromadarius_M_N = mkN "dromadarius" ; -- [XWXES] :: camel soldier, soldier serving in unit mounted on dromedaries; --- TODO dromas_N : N1 dromas, dromados/is -- M -- [XAXEO] :: dromedary; + dromas_1_N = mkN "dromas" "dromadis" masculine ; -- [XAXEO] :: dromedary; + dromas_2_N = mkN "dromas" "dromados" masculine ; -- [XAXEO] :: dromedary; dromedaria_F_N = mkN "dromedaria" ; -- [EAXFW] :: dromedary; dromedarius_M_N = mkN "dromedarius" ; -- [EAXES] :: dromedary; dromo_F_N = mkN "dromo" "dromonis " feminine ; -- [FXXFM] :: dromond; galley; L:Dromo (Roman name); very large medieval long ship; @@ -16955,7 +18259,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ducianus_M_N = mkN "ducianus" ; -- [XXXES] :: commander's servant; duciloquus_A = mkA "duciloquus" "duciloqua" "duciloquum" ; -- [FXXEE] :: sweetly speaking; sweet talking; ducissa_F_N = mkN "ducissa" ; -- [FLXDE] :: duchess; --- IGNORED duco_V : V1 duco, ducere, additional, forms -- [XXXDX] :: lead, command; think, consider, regard; prolong; + duco_V2 = mkV2 (mkV "ducere" "duco" "duxi" "ductus ") ; -- [XXXAX] :: lead, command; think, consider, regard; prolong; ductilis_A = mkA "ductilis" "ductilis" "ductile" ; -- [XXXEO] :: ductile/malleable (metals); that is led along a course; ductilitas_F_N = mkN "ductilitas" "ductilitatis " feminine ; -- [GXXEK] :: malleability; ductim_Adv = mkAdv "ductim" ; -- [XXXEC] :: by drawing; in a stream; @@ -16966,7 +18270,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dudum_Adv = mkAdv "dudum" ; -- [XXXBX] :: little while ago; formerly; [tam dudum => long ago]; duellator_M_N = mkN "duellator" "duellatoris " masculine ; -- [BWXDX] :: warrior, fighter; (old form and poetic replacement for bellator); duellatorus_A = mkA "duellatorus" "duellatora" "duellatorum" ; -- [XWXCS] :: war-like, martial; (old form and poetic replacement for bellatorus); --- SLASHSTUFF duellicosus_A : A2 duellicosus, duellicosa -um, duellicosior -or -us, duellicosissimus -a -um -- [XWXDX] :: warlike, fierce; fond of war; (old form and poetic replacement for bellicosus); + duellicosus_A = mkA "duellicosus" ; -- [XWXDX] :: warlike, fierce; fond of war; (old form and poetic replacement for bellicosus); duellicus_A = mkA "duellicus" "duellica" "duellicum" ; -- [XWXDX] :: of war, military; warlike; (old form and poetic replacement for bellator); duellio_F_N = mkN "duellio" "duellionis " feminine ; -- [FWXFM] :: war; strife; L:judicial combat; (also duellum); duello_V = mkV "duellare" ; -- [FXXEE] :: duel; @@ -16974,13 +18278,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg duis_Adv = mkAdv "duis" ; -- [BXXFO] :: twice, at 2 times/occasions; doubly, twofold, in 2 ways; [~ mille => 2000]; dulce_N_N = mkN "dulce" "dulcis " neuter ; -- [XXXDX] :: sweet drink; sweets (pl.); dulcedo_F_N = mkN "dulcedo" "dulcedinis " feminine ; -- [XXXBX] :: sweetness, agreeableness; charm; --- TODO dulcesco_V : V2 dulcesco, dulcescere, -, - -- Declension: 3rd -- Comment: [XXXEC] :: become sweet; + dulcesco_V = mkV "dulcescere" "dulcesco" nonExist nonExist ; -- [XXXEC] :: become sweet; dulciarius_M_N = mkN "dulciarius" ; -- [FXXEK] :: confectioner; dulcicanus_A = mkA "dulcicanus" "dulcicana" "dulcicanum" ; -- [FXXEM] :: sweetly; dulciculus_A = mkA "dulciculus" "dulcicula" "dulciculum" ; -- [XXXEC] :: somewhat sweet; dulcidine_Adv = mkAdv "dulcidine" ; -- [FXXEN] :: sweetly, pleasantly, charmingly; dulciolum_N_N = mkN "dulciolum" ; -- [GXXEK] :: confection; sweet; --- SLASHSTUFF dulcis_A : A2 dulcis, dulce, dulcior -or -us, dulcissimus -a -um -- [XXXAX] :: pleasant, charming; sweet; kind, dear; soft, flattering, delightful; + dulcis_A = mkA "dulcis" ; -- [XXXAX] :: pleasant, charming; sweet; kind, dear; soft, flattering, delightful; dulcisonus_A = mkA "dulcisonus" "dulcisona" "dulcisonum" ; -- [FXXEE] :: harmonious; sweet sounding; dulciter_Adv =mkAdv "dulciter" "dulcius" "dulcissime" ; -- [XXXCO] :: sweetly; dulcitudo_F_N = mkN "dulcitudo" "dulcitudinis " feminine ; -- [XXXDO] :: sweetness (perceived by senses); desirability; affectionateness; @@ -16989,9 +18293,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dulcoratus_A = mkA "dulcoratus" "dulcorata" "dulcoratum" ; -- [XXXFS] :: sweetened; dulcoro_V2 = mkV2 (mkV "dulcorare") ; -- [EXXES] :: sweeten; dulia_F_N = mkN "dulia" ; -- [FEXFE] :: religious veneration given to a creature; --- dum_Conj : Conj dum -- [XXXAX] :: while, as long as, until; provided that; + dum_Conj = mkConj "dum" missing ; -- [XXXAX] :: while, as long as, until; provided that; dumetum_N_N = mkN "dumetum" ; -- [XXXDX] :: thicket; --- dummodo_Conj : Conj dummodo -- [XXXDX] :: provided (that) (+ subj); + dummodo_Conj = mkConj "dummodo" missing ; -- [XXXDX] :: provided (that) (+ subj); dumosus_A = mkA "dumosus" "dumosa" "dumosum" ; -- [XXXDX] :: overgrown with thorn, briar or the like; dumtaxat_Adv = mkAdv "dumtaxat" ; -- [XXXBO] :: to this extent, no more than; as long as; only, precisely; merely; at any rate; dumus_M_N = mkN "dumus" ; -- [XXXDX] :: thorn or briar bush; @@ -17026,7 +18330,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg duriusculus_A = mkA "duriusculus" "duriuscula" "duriusculum" ; -- [XXXEO] :: harsher; somewhat harsh; duro_V = mkV "durare" ; -- [XXXBX] :: harden, make hard; become hard/stern; bear, last, remain, continue; endure; durum_N_N = mkN "durum" ; -- [FXXFE] :: hardships (pl.); --- SLASHSTUFF durus_A : A2 durus, dura -um, durior -or -us, durissimus -a -um -- [XXXAX] :: hard, stern; harsh, rough, vigorous; cruel, unfeeling, inflexible; durable; + durus_A = mkA "durus" ; -- [XXXAX] :: hard, stern; harsh, rough, vigorous; cruel, unfeeling, inflexible; durable; duumvir_M_N = mkN "duumvir" ; -- [XLXEO] :: |special criminal court; keepers of Sibylline books; colony chief magistrates; duumviralis_A = mkA "duumviralis" "duumviralis" "duumvirale" ; -- [XLIFS] :: duumviral; of a duumvir (commission of two men); duumviralis_M_N = mkN "duumviralis" "duumviralis " masculine ; -- [XLIFS] :: ex-duumvir; (member of commission of two men); @@ -17047,12 +18351,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg dyspepsia_F_N = mkN "dyspepsia" ; -- [XBXFO] :: indigestion, dyspepsia; dyspnoea_F_N = mkN "dyspnoea" ; -- [XBXNO] :: difficulty in breathing; dyspnoicus_M_N = mkN "dyspnoicus" ; -- [XBXNO] :: asthmatic; person suffering from difficulty in breathing; - e_Abl_Prep = mkPrep "e" Abl ; -- [XXXAX] :: out of, from; by reason of; according to; because of, as a result of; + e_Abl_Prep = mkPrep "e" abl ; -- [XXXAX] :: out of, from; by reason of; according to; because of, as a result of; eadem_Adv = mkAdv "eadem" ; -- [XXXDX] :: by the same route; at the same time; likewise; same (NOM S F/ABL S F/NOM P N); eatenus_Adv = mkAdv "eatenus" ; -- [XXXEC] :: so far; ebenum_N_N = mkN "ebenum" ; -- [XXXFO] :: ebony (wood or tree of genus Diospyrus); ebenus_C_N = mkN "ebenus" ; -- [XXXDO] :: ebony (wood or tree of genus Diospyrus); + ebibo_V2 = mkV2 (mkV "ebibere" "ebibo" "ebibi" "ebibitus ") ; -- [XXXDX] :: drink up, drain; absorb; squander; ebiscum_N_N = mkN "ebiscum" ; -- [XAXEO] :: marsh mallow; (Althea officinalis); (shrubby herb, grows near salt marshes); + eblandior_V = mkV "eblandiri" "eblandior" "eblanditus sum " ; -- [XXXDX] :: obtain by flattery; eborarius_A = mkA "eborarius" "eboraria" "eborarium" ; -- [XXXIO] :: working/dealing in ivory; eborarius_M_N = mkN "eborarius" ; -- [XXXIO] :: worker/dealer in ivory; eboratus_A = mkA "eboratus" "eborata" "eboratum" ; -- [XXXIO] :: adorned with ivory; inlaid with ivory; @@ -17062,6 +18368,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ebriolus_A = mkA "ebriolus" "ebriola" "ebriolum" ; -- [XXXEC] :: tipsy; ebriosus_A = mkA "ebriosus" "ebriosa" "ebriosum" ; -- [XXXDX] :: addicted to drink; ebrius_A = mkA "ebrius" "ebria" "ebrium" ; -- [XXXCO] :: drunk, intoxicated; riotous; like a drunk, exhilarated, distraught; soaked in; + ebullio_V2 = mkV2 (mkV "ebullire" "ebullio" "ebullivi" "ebullitus ") ; -- [XXXDO] :: |bubble; boil-up; produce in abundance; ebullo_V = mkV "ebullare" ; -- [DXXFS] :: |bubble; boil-up; produce in abundance; ebulum_N_N = mkN "ebulum" ; -- [XXXDX] :: danewort, dwarf elder; ebulus_F_N = mkN "ebulus" ; -- [XXXDX] :: danewort, dwarf elder; @@ -17097,8 +18404,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ecfatus_M_N = mkN "ecfatus" "ecfatus " masculine ; -- [XXXEO] :: utterance; ecfio_V = mkV "ecferi" ; -- [XXXDS] :: be accomplished/completed/made/executed/done; come to pass; (efficio PASS); ecflictim_Adv = mkAdv "ecflictim" ; -- [XXXDO] :: passionately, desperately, to distraction; + ecfloresco_V = mkV "ecflorescere" "ecfloresco" "ecflorui" nonExist; -- [XXXCO] :: blossom forth; burst into flower; bloom (Ecc); flourish; + ecfloro_V = mkV "ecflorere" "ecfloro" "ecflorui" nonExist; -- [XXXCO] :: blossom forth; burst into flower; bloom (Ecc); flourish; ecfo_V2 = mkV2 (mkV "ecfare") ; -- [XEXDO] :: demarcate in words areas/boundaries for augury signs might be observed (PASS); ecfor_V = mkV "ecfari" ; -- [XXXCO] :: utter, say (solemn words); declare, announce, make known; speak, express; + ecfugio_V2 = mkV2 (mkV "ecfugere" "ecfugio" "ecfugi" "ecfugitus ") ; -- [XXXAO] :: flee/escape; run/slip/keep away (from), eschew/avoid; baffle, escape notice; + ecfundo_V2 = mkV2 (mkV "ecfundere" "ecfundo" "ecfudi" "ecfusus ") ; -- [XXXAO] :: |||stretch/spread out, extend; spread (sail); loosen/slacken/fling, give rein; echeneis_F_N = mkN "echeneis" "echeneidis " feminine ; -- [XAXEC] :: sucking fish, the remora; echidna_F_N = mkN "echidna" ; -- [XXXDX] :: serpent, viper; echinus_M_N = mkN "echinus" ; -- [XXXEC] :: edible sea-urchin; copper dish; @@ -17126,34 +18437,37 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg edentulus_A = mkA "edentulus" "edentula" "edentulum" ; -- [XXXFS] :: toothless; matured; edepol_Interj = ss "edepol" ; -- [XXXDX] :: by Pollux!; edibilis_A = mkA "edibilis" "edibilis" "edibile" ; -- [GXXEK] :: edible; + edico_V2 = mkV2 (mkV "edicere" "edico" "edixi" "edictus ") ; -- [XXXDX] :: proclaim, declare; appoint; edictalis_A = mkA "edictalis" "edictalis" "edictale" ; -- [XLXEO] :: by/according to (praetorian) edict; edictum_N_N = mkN "edictum" ; -- [XXXDX] :: proclamation; edict; --- TODO edisco_V : V2 edisco, ediscere, edidici, - -- Declension: 3rd -- Comment: [XXXDX] :: learn by heart; commit to memory; study; get to know; + edisco_V2 = mkV2 (mkV "ediscere" "edisco" "edidici" nonExist ) ; -- [XXXDX] :: learn by heart; commit to memory; study; get to know; + edissero_V2 = mkV2 (mkV "edisserere" "edissero" "edisserui" "edissertus ") ; -- [XXXDX] :: set forth in full, relate at length, dwell upon; unfold, explain, tell; edisserto_V = mkV "edissertare" ; -- [XXXDX] :: relate, expound; explain; editicius_A = mkA "editicius" "editicia" "editicium" ; -- [XXXEC] :: announced, proposed; [w/iudices => jurors chosen by a plaintiff]; editio_F_N = mkN "editio" "editionis " feminine ; -- [XXXDX] :: publishing; edition; statement; editor_M_N = mkN "editor" "editoris " masculine ; -- [GXXEE] :: |editor; producer, publisher; --- SLASHSTUFF editus_A : A2 editus, edita -um, editior -or -us, editissimus -a -um -- [XXXDX] :: high, elevated; rising; + editus_A = mkA "editus" ; -- [XXXDX] :: high, elevated; rising; edius_A = mkA "edius" "edia" "edium" ; -- [XXXDX] :: high, lofty; edo_V2 = mkV2 (mkV "esse") ; -- [XXXCO] :: eat/consume/devour; eat away (fire/water/disease); destroy; spend money on food; edoceo_V = mkV "edocere" ; -- [XXXDX] :: teach or inform thoroughly; edolo_V2 = mkV2 (mkV "edolare") ; -- [XXXEO] :: hack, hew, hew out; form by hacking; plane (Ecc); edomo_V2 = mkV2 (mkV "edomare") ; -- [XXXCO] :: |master (vices); overcome (difficulties); bring (land /plants)under cultivation; --- TODO edormio_V : V2 edormio, edormire, edormivi, - -- Declension: 4th -- Comment: [XXXDX] :: sleep, sleep off; --- TODO edormisco_V : V2 edormisco, edormiscere, -, - -- Declension: 3rd -- Comment: [XXXEC] :: sleep away/through/off; sleep one's fill; + edormio_V2 = mkV2 (mkV "edormire" "edormio" "edormivi" nonExist ) ; -- [XXXDX] :: sleep, sleep off; + edormisco_V = mkV "edormiscere" "edormisco" nonExist nonExist ; -- [XXXEC] :: sleep away/through/off; sleep one's fill; educatio_F_N = mkN "educatio" "educationis " feminine ; -- [XXXDX] :: bringing up; rearing; educativus_A = mkA "educativus" "educativa" "educativum" ; -- [FGXEE] :: educational; educator_M_N = mkN "educator" "educatoris " masculine ; -- [XXXDX] :: bringer up, tutor; foster-father; educatrix_F_N = mkN "educatrix" "educatricis " feminine ; -- [XXXDO] :: nurse; foster-mother; she who nurtures/brings up; tutor/teacher (Ecc); educo_V = mkV "educare" ; -- [XXXBX] :: bring up; train; educate; rear; + educo_V2 = mkV2 (mkV "educere" "educo" "eduxi" "eductus ") ; -- [XXXDX] :: lead out; draw up; bring up; rear; edulcoro_V = mkV "edulcorare" ; -- [GXXEK] :: sweeten; edulis_A = mkA "edulis" "edulis" "edule" ; -- [XXXEO] :: edible, eatable; edulium_N_N = mkN "edulium" ; -- [XXXCO] :: edibles (pl.), eatables; foodstuffs; food (L+S); edurus_A = mkA "edurus" "edura" "edurum" ; -- [XXXDX] :: very hard; edus_M_N = mkN "edus" ; -- [XAXFO] :: kid, young goat; two stars in constellation Auriga (Charioteer), "The Kid"; --- TODO effarcio_V : V2 effarcio, effarcire, -, effartus -- Declension: 4th -- Comment: [XXXEC] :: stuff full; + effarcio_V = mkV "effarcire" "effarcio" "effartus" ; -- [XXXEC] :: stuff full; effascinatio_F_N = mkN "effascinatio" "effascinationis " feminine ; -- [XXXES] :: bewitching; --- IGNORED effatha_V2 : V3 effatha, undeclined -- Type: TRANS -- Comment: [EEQFE] :: be thou opened; (Mark 7:34); (Aramaic); + effatha_V2 = mkV2 (constV "effatha") ; -- Type: TRANS -- Comment: [EEQFE] :: be thou opened; (Mark 7:34); (Aramaic); effatum_N_N = mkN "effatum" ; -- [XXXDO] :: pronouncement (by seer), prediction; announcement; assertion/proposition/axiom; effatus_A = mkA "effatus" "effata" "effatum" ; -- [FXXDE] :: pronounced, designated; determined; established; proclaimed; effatus_M_N = mkN "effatus" "effatus " masculine ; -- [XXXEO] :: utterance; @@ -17166,15 +18480,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg effectus_M_N = mkN "effectus" "effectus " masculine ; -- [XXXDX] :: execution, performance; effect; effeminatus_A = mkA "effeminatus" "effeminata" "effeminatum" ; -- [XXXDX] :: womanish, effeminate; effemino_V = mkV "effeminare" ; -- [XXXDX] :: weaken, enervate, make effeminate, emasculate, unman; --- SLASHSTUFF efferatus_A : A2 efferatus, efferata -um, efferatior -or -us, efferatissimus -a -um -- [XXXDO] :: wild, savage, bestial, fierce, raging; resembling/typical of wild animal; --- TODO effercio_V : V2 effercio, effercire, -, effertus -- Declension: 4th -- Comment: [XXXEC] :: stuff full; + efferatus_A = mkA "efferatus" ; -- [XXXDO] :: wild, savage, bestial, fierce, raging; resembling/typical of wild animal; + effercio_V = mkV "effercire" "effercio" "effertus" ; -- [XXXEC] :: stuff full; effero_V = mkV "efferre" "effero" "extuli" "elatus " ; -- Comment: [XXXDX] :: carry out; bring out; carry out for burial; raise; --- SLASHSTUFF effertus_A : A2 effertus, efferta -um, effertior -or -us, effertissimus -a -um -- [XXXEC] :: stuffed; + effertus_A = mkA "effertus" ; -- [XXXEC] :: stuffed; efferus_A = mkA "efferus" "effera" "efferum" ; -- [XXXDX] :: savage, cruel, barbarous; effervescentia_F_N = mkN "effervescentia" ; -- [GXXEK] :: effervescence; --- TODO effervesco_V : V2 effervesco, effervescere, efferbui, - -- Declension: 3rd -- Comment: [XXXDX] :: boil up, seethe; effervesce; become greatly excited; --- TODO effervo_V : V2 effervo, effervere, -, - -- Declension: 3rd -- Comment: [XXXEC] :: boil up or over; swarm forth; --- IGNORED effetha_V2 : V3 effetha, undeclined -- Type: TRANS -- Comment: [EEQFE] :: be thou opened; (Mark 7:34); (Aramaic); + effervesco_V2 = mkV2 (mkV "effervescere" "effervesco" "efferbui" nonExist ) ; -- [XXXDX] :: boil up, seethe; effervesce; become greatly excited; + effervo_V = mkV "effervere" "effervo" nonExist nonExist ; -- [XXXEC] :: boil up or over; swarm forth; + effetha_V2 = mkV2 (constV "effetha") ; -- Type: TRANS -- Comment: [EEQFE] :: be thou opened; (Mark 7:34); (Aramaic); effetus_A = mkA "effetus" "effeta" "effetum" ; -- [XXXDX] :: exhausted, worn out; efficacia_F_N = mkN "efficacia" ; -- [XXXEO] :: effectiveness; efficiency; accomplishment (Ecc); power, influence; efficacy; efficacitas_F_N = mkN "efficacitas" "efficacitatis " feminine ; -- [XXXEO] :: effectiveness; efficiency; accomplishment (Ecc); power, influence; efficacy; @@ -17183,18 +18497,24 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg efficiens_A = mkA "efficiens" "efficientis"; -- [XXXDM] :: efficient, effective; that gives rise to something; capable of acting/active; efficienter_Adv = mkAdv "efficienter" ; -- [XXXCO] :: effectively; so as to produce an effect; efficiently (L+S); efficientia_F_N = mkN "efficientia" ; -- [XXXEO] :: efficient power, influence; + efficio_V2 = mkV2 (mkV "efficere" "efficio" "effeci" "effectus ") ; -- [XXXAX] :: bring about; effect, execute, cause; accomplish; make, produce; prove; effigia_F_N = mkN "effigia" ; -- [XXXEC] :: image, likeness, effigy; a shade, ghost; an ideal; effigies_F_N = mkN "effigies" "effigiei " feminine ; -- [XXXBX] :: copy, image, likeness, portrait; effigy, statue; ghost; effigio_V = mkV "effigiare" ; -- [EXXFM] :: form; fashion; portray; + effingo_V2 = mkV2 (mkV "effingere" "effingo" "effinxi" "effictus ") ; -- [XXXDX] :: fashion, form, mold; represent, portray, depict; copy; wipe away; effio_V = mkV "efferi" ; -- [XXXDS] :: be accomplished/completed/made/executed/done; come to pass; (efficio PASS); efflagitatio_F_N = mkN "efflagitatio" "efflagitationis " feminine ; -- [XXXDX] :: urgent demand; efflagito_V = mkV "efflagitare" ; -- [XXXDX] :: request, demand, insist, ask urgently; efflictim_Adv = mkAdv "efflictim" ; -- [XXXDO] :: passionately, desperately, to distraction; + effligo_V2 = mkV2 (mkV "effligere" "effligo" "efflixi" "efflictus ") ; -- [XXXEC] :: destroy; efflo_V = mkV "efflare" ; -- [XXXDX] :: blow or breathe out; breathe one's last; --- TODO effluo_V : V2 effluo, effluere, effluxi, - -- Declension: 3rd -- Comment: [XXXDX] :: flow out, flow forth; disappear, vanish, escape; be forgotten; + effloresco_V = mkV "efflorescere" "effloresco" "efflorui" nonExist; -- [XXXCO] :: blossom forth; burst into flower; bloom (Ecc); flourish; + effloro_V = mkV "efflorere" "effloro" "efflorui" nonExist; -- [XXXCO] :: blossom forth; burst into flower; bloom (Ecc); flourish; + effluo_V2 = mkV2 (mkV "effluere" "effluo" "effluxi" nonExist ) ; -- [XXXDX] :: flow out, flow forth; disappear, vanish, escape; be forgotten; effluvium_N_N = mkN "effluvium" ; -- [XXXEC] :: flowing out, outlet; effluxus_A = mkA "effluxus" "effluxa" "effluxum" ; -- [FXXFM] :: lapsed; past (time); effo_V2 = mkV2 (mkV "effare") ; -- [XEXDO] :: demarcate in words areas/boundaries for augury signs might be observed (PASS); + effodio_V2 = mkV2 (mkV "effodere" "effodio" "effodi" "effossus ") ; -- [XXXDX] :: dig out, excavate; gouge out; effor_V = mkV "effari" ; -- [XXXCO] :: utter, say (solemn words); declare, announce, make known; speak, express; efformatio_F_N = mkN "efformatio" "efformationis " feminine ; -- [FXXEM] :: formation; shape; efformo_V2 = mkV2 (mkV "efformare") ; -- [FXXEE] :: form, shape, fashion; @@ -17202,24 +18522,32 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg effrenatus_A = mkA "effrenatus" "effrenata" "effrenatum" ; -- [XXXDX] :: unbridled; unrestrained, unruly, headstrong, violent; freed from/not subject t; effreno_V = mkV "effrenare" ; -- [XXXDX] :: unbridle, let loose; remove or slacken the reins of a horse; effrenus_A = mkA "effrenus" "effrena" "effrenum" ; -- [XXXDX] :: unbridled; unrestrained, unruly, headstrong, violent; freed from/not subject t; + effringo_V2 = mkV2 (mkV "effringere" "effringo" "effregi" "effractus ") ; -- [XXXDX] :: break open; smash; break in; effrons_A = mkA "effrons" "effrontis"; -- [FXXDE] :: shameless, brazen; bold; insulting; effugatio_F_N = mkN "effugatio" "effugationis " feminine ; -- [XXXEE] :: driving away; putting to flight; driving into exile; + effugio_V2 = mkV2 (mkV "effugere" "effugio" "effugi" "effugitus ") ; -- [XXXAO] :: flee/escape; run/slip/keep away (from), eschew/avoid; baffle, escape notice; effugium_N_N = mkN "effugium" ; -- [XXXDX] :: flight; way of escape; effugo_V2 = mkV2 (mkV "effugare") ; -- [XXXEE] :: drive away (from); frighten off, deter; drive/send into exile; effulgeo_V = mkV "effulgere" ; -- [XXXDX] :: shine forth, glitter; be or become conspicuous; effultus_A = mkA "effultus" "effulta" "effultum" ; -- [XXXDX] :: propped up, supported (by); + effundo_V2 = mkV2 (mkV "effundere" "effundo" "effudi" "effusus ") ; -- [XXXAO] :: |||stretch/spread out, extend; spread (sail); loosen/slacken/fling, give rein; effuse_Adv =mkAdv "effuse" "effusius" "effusissime" ; -- [XXXDX] :: over a wide area, extensively; freely, in a disorderly manner; lavishly; effusio_F_N = mkN "effusio" "effusionis " feminine ; -- [XXXDX] :: outpouring, shedding; profusion, lavishness, extravagance, excess; --- SLASHSTUFF effusus_A : A2 effusus, effusa -um, effusior -or -us, effusissimus -a -um -- [XXXDX] :: vast, wide, sprawling; disheveled, loose (hair/reins); disorderly; extravagant; + effusus_A = mkA "effusus" ; -- [XXXDX] :: vast, wide, sprawling; disheveled, loose (hair/reins); disorderly; extravagant; + effutio_V2 = mkV2 (mkV "effutire" "effutio" "effutivi" "effutitus ") ; -- [XXXCO] :: blurt out; blab, babble, prate, chatter; utter foolishly/irresponsibly; + effuttio_V2 = mkV2 (mkV "effuttire" "effuttio" "effuttivi" "effuttitus ") ; -- [XXXCO] :: blurt out; blab, babble, prate, chatter; utter foolishly/irresponsibly; + effutuo_V2 = mkV2 (mkV "effutuere" "effutuo" "effutui" "effututus ") ; -- [XXXDX] :: wear out with sexual intercourse; squander on debauchery; egelidus_A = mkA "egelidus" "egelida" "egelidum" ; -- [XXXDX] :: lukewarm, tepid; egens_A = mkA "egens" "egentis"; -- [XXXDX] :: needy, poor, in want of; very poor, destitute (of); egenus_A = mkA "egenus" "egena" "egenum" ; -- [XXXDX] :: in want of, destitute of; egeo_V = mkV "egere" ; -- [XXXBX] :: need (w/GEN/ABL), lack, want; require, be without; + egero_V2 = mkV2 (mkV "egerere" "egero" "egessi" "egestus ") ; -- [XXXDX] :: carry or bear out, discharge, utter; egestas_F_N = mkN "egestas" "egestatis " feminine ; -- [XXXBX] :: need, poverty, extreme poverty; lack, want; egloga_F_N = mkN "egloga" ; -- [XXXDX] :: short poem (esp. pastoral); short passage selected from longer work, excerpt; egoismus_M_N = mkN "egoismus" ; -- [GXXEK] :: selfishness; egoista_M_N = mkN "egoista" ; -- [GXXEK] :: egoist; egoisticus_A = mkA "egoisticus" "egoistica" "egoisticum" ; -- [FXXEE] :: egotistical; selfish; + egredior_V = mkV "egredi" "egredior" "egressus sum " ; -- [XXXAX] :: go/march/come out; set sail; land, disembark; surpass, go beyond; egregie_Adv = mkAdv "egregie" ; -- [XXXCO] :: excellently, admirably well; signally/remarkably, to outstanding degree; egregius_A = mkA "egregius" "egregia" "egregium" ; -- [XXXBX] :: singular; distinguished; exceptional; extraordinary; eminent; excellent; egressio_F_N = mkN "egressio" "egressionis " feminine ; -- [XXXEO] :: digression (rhetoric); action of going out; @@ -17230,6 +18558,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ehoi_Interj = ss "ehoi" ; -- [XXXEZ] :: hurrah! (exclamation of happiness); ei_Interj = ss "ei" ; -- [XXXDX] :: Ah! Woe!, oh dear, alas; (of grief or fear); eia_Interj = ss "eia" ; -- [XXXBX] :: how now!, Ha, Good, see! (of joy); see!, Quick! (of urgency/astonishment); + eicio_V2 = mkV2 (mkV "eicere" "eicio" "ejeci" "ejectus ") ; -- [XXXDX] :: cast/throw/fling/drive out/up, extract, expel, discharge, vomit; out (tongue); eiero_V = mkV "eierare" ; -- [XXXDX] :: refuse upon/reject by oath; abjure, resign, abdicate, renounce; eileton_N_N = mkN "eileton" "eileti " neuter ; -- [FEHFE] :: corporal (in Greek rite); einlatus_M_N = mkN "einlatus" "einlatus " masculine ; -- [XXXDX] :: wailing, shrieking; @@ -17238,6 +18567,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ejectio_F_N = mkN "ejectio" "ejectionis " feminine ; -- [XXXEO] :: banishment/exile, expulsion from one's country; spitting (of blood); ejection; ejecto_V = mkV "ejectare" ; -- [XXXDX] :: cast out; ejectus_M_N = mkN "ejectus" "ejectus " masculine ; -- [XXXFO] :: expulsion, driving out; banishment/exile (Ecc); + ejicio_V2 = mkV2 (mkV "ejicere" "ejicio" "ejeci" "ejectus ") ; -- [XXXCS] :: cast/throw/fling/drive out/up, extract, expel, discharge, vomit; out (tongue); ejulabundus_A = mkA "ejulabundus" "ejulabunda" "ejulabundum" ; -- [DXXFS] :: abandoned to wailing/lamentation; ejulatio_F_N = mkN "ejulatio" "ejulationis " feminine ; -- [XXXEC] :: wailing, lamentation; ejulatus_M_N = mkN "ejulatus" "ejulatus " masculine ; -- [XXXEC] :: wailing, lamentation; @@ -17245,12 +18575,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ejuro_V = mkV "ejurare" ; -- [XXXDX] :: abjure; resign; reject on oath (of a judge); forswear, disown; ejusmodi_Adv = mkAdv "ejusmodi" ; -- [XXXEE] :: of this sort; of such kind; [et ~ => and the like]; ektheta_F_N = mkN "ektheta" ; -- [ETXFP] :: balcony; gallery (Douay); + elabor_V = mkV "elabi" "elabor" "elapsus sum " ; -- [XXXBX] :: slip away; escape; elapse; elaboratio_F_N = mkN "elaboratio" "elaborationis " feminine ; -- [XXXFO] :: painstaking/persevering effort; elaboration (Ecc); elaboro_V = mkV "elaborare" ; -- [XXXDX] :: take pains, exert oneself; bestow care on; elamentabilis_A = mkA "elamentabilis" "elamentabilis" "elamentabile" ; -- [XXXEC] :: very lamentable; elanguens_A = mkA "elanguens" "elanguentis"; -- [XXXEE] :: growing weak; drooping, flagging; slackening, relaxing; --- TODO elanguesco_V : V2 elanguesco, elanguescere, elangui, - -- Declension: 3rd -- Comment: [XXXDX] :: begin to lose one's vigor, droop, flag; slacken, relax; + elanguesco_V2 = mkV2 (mkV "elanguescere" "elanguesco" "elangui" nonExist ) ; -- [XXXDX] :: begin to lose one's vigor, droop, flag; slacken, relax; elapsus_M_N = mkN "elapsus" "elapsus " masculine ; -- [FXXEE] :: lapse; + elargio_V2 = mkV2 (mkV "elargire" "elargio" nonExist "elargitus ") ; -- [XXXFE] :: bestow freely upon; give out, distribute (Ecc); elasticitas_F_N = mkN "elasticitas" "elasticitatis " feminine ; -- [GXXEK] :: elasticity; springiness; elasticus_A = mkA "elasticus" "elastica" "elasticum" ; -- [GXXEK] :: elastic; elata_F_N = mkN "elata" ; -- [FXXEE] :: spray; @@ -17258,7 +18590,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg elater_N_N = mkN "elater" "elateris " neuter ; -- [GXXEK] :: spring; elaterium_N_N = mkN "elaterium" ; -- [XAXFS] :: cucumber juice; medicine from wild cucumber; elatio_F_N = mkN "elatio" "elationis " feminine ; -- [XXXCO] :: glorification/extolling/lifting; (ceremonial) carrying out; ecstasy; exaltation; --- SLASHSTUFF elatus_A : A2 elatus, elata -um, elatior -or -us, elatissimus -a -um -- [XXXCO] :: raised, reaching high level; head high, proudly erect; sublime/exalted/grand; + elatus_A = mkA "elatus" ; -- [XXXCO] :: raised, reaching high level; head high, proudly erect; sublime/exalted/grand; electa_F_N = mkN "electa" ; -- [FLXEE] :: candidate, one chosen; electarium_N_N = mkN "electarium" ; -- [EBXFQ] :: melt-in-mouth medicine, electuary, paste of powder+honey held in mouth (OED); electio_F_N = mkN "electio" "electionis " feminine ; -- [XXXDX] :: choice, selection; election; E:election to salvation (Ecc); @@ -17303,7 +18635,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg elegeia_F_N = mkN "elegeia" ; -- [XXXDX] :: elegy; elegia_F_N = mkN "elegia" ; -- [XXXDX] :: elegy; elegus_M_N = mkN "elegus" ; -- [XXXDX] :: elegiac verses (pl.), elegy; --- IGNORED eleison_V : V1 eleison, undeclined -- [EEHDE] :: have mercy (upon us); (Greek imperative); + eleison_V = constV "eleison" ; -- [EEHDE] :: have mercy (upon us); (Greek imperative); elelisphacos_M_N = mkN "elelisphacos" "elelisphaci " masculine ; -- [DAXNS] :: sage (Pliny); elementaris_A = mkA "elementaris" "elementaris" "elementare" ; -- [XXXFO] :: elementary, rudimentary; engaged in learning rudiments; elementarius_A = mkA "elementarius" "elementaria" "elementarium" ; -- [XXXFO] :: elementary, rudimentary; engaged in learning rudiments; @@ -17316,12 +18648,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg elephas_M_N = mkN "elephas" "elephantis " masculine ; -- [XXXFO] :: elephant; ivory; large variety of lobster, large sea creature; elephantiasis; elevatio_F_N = mkN "elevatio" "elevationis " feminine ; -- [EXXDX] :: raising, lifting up; elevo_V = mkV "elevare" ; -- [XXXDX] :: lift up, raise; alleviate; lessen; make light of; --- IGNORED eleyson_V : V1 eleyson, undeclined -- [EEHDX] :: have mercy (upon us); (Greek imperative); --- SLASHSTUFF eligibilis_A : A2 eligibilis, eligibile, eligibilior -or -us, eligibilissimus -a -um -- [FXXFM] :: desirable; eligible; + eleyson_V = constV "eleyson" ; -- [EEHDX] :: have mercy (upon us); (Greek imperative); + elicio_V2 = mkV2 (mkV "elicere" "elicio" "elicui" "elicitus ") ; -- [XXXDX] :: draw/pull out/forth, entice, elicit, coax; + elido_V2 = mkV2 (mkV "elidere" "elido" "elisi" "elisus ") ; -- [XXXDX] :: strike or dash out; expel; shatter; crush out; strangle; destroy; + eligibilis_A = mkA "eligibilis" ; -- [FXXFM] :: desirable; eligible; + eligo_V2 = mkV2 (mkV "eligere" "eligo" "elegi" "electus ") ; -- [XXXAX] :: pick out, choose; elimate_Adv = mkAdv "elimate" ; -- [FXXEE] :: clearly, exactly; eliminator_M_N = mkN "eliminator" "eliminatoris " masculine ; -- [EEXEE] :: purifier, cleanser; elimino_V = mkV "eliminare" ; -- [XXXEC] :: carry out of doors; [w/dicta => to blab]; elimo_V2 = mkV2 (mkV "elimare") ; -- [XXXDO] :: make/remove by filing; polish w/file; file off; produce/write w/care/polish; + elingo_V2 = mkV2 (mkV "elingere" "elingo" "elinxi" "elinctus ") ; -- [XXXFO] :: lick clean; lick up (Ecc); elinguis_A = mkA "elinguis" "elinguis" "elingue" ; -- [XGXEC] :: speechless or without eloquence; eliquatorius_A = mkA "eliquatorius" "eliquatoria" "eliquatorium" ; -- [GXXEK] :: elegant; refined; eliquo_V = mkV "eliquare" ; -- [GXXEK] :: refine (an industrial product); @@ -17343,13 +18679,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg eloquenter_Adv =mkAdv "eloquenter" "eloquentius" "eloquentissime" ; -- [XXXEO] :: eloquently; eloquentia_F_N = mkN "eloquentia" ; -- [XXXBX] :: eloquence; eloquium_N_N = mkN "eloquium" ; -- [XGXCO] :: eloquence; speech, utterance/word; manner of speaking, diction; pronouncement; + eloquor_V = mkV "eloqui" "eloquor" "elocutus sum " ; -- [XXXBX] :: speak out, utter; eluceo_V = mkV "elucere" ; -- [XXXDX] :: shine forth; show itself; be manifest; + elucesco_V = mkV "elucescere" "elucesco" nonExist nonExist; -- [EXXEE] :: begin to be light; shine forth (Erasmus); elucido_V2 = mkV2 (mkV "elucidare") ; -- [EXXFS] :: light; enlighten; eluctor_V = mkV "eluctari" ; -- [XXXDX] :: force a way through; surmount a difficulty; elucubro_V = mkV "elucubrare" ; -- [XXXDX] :: compose at night; burn the midnight oil over, spend the night working; elucubror_V = mkV "elucubrari" ; -- [XXXDX] :: compose at night; burn the midnight oil over, spend the night working; --- IGNORED elul_N : N1 elul, undeclined -- N -- [EXQEW] :: Elul; sixth month of the Jewish ecclesiastical year; + eludo_V2 = mkV2 (mkV "eludere" "eludo" "elusi" "elusus ") ; -- [XXXDX] :: elude, escape from; parry; baffle; cheat; frustrate; mock, make fun of; + elul_N = constN "elul" neuter ; -- [EXQEW] :: Elul; sixth month of the Jewish ecclesiastical year; elumbis_A = mkA "elumbis" "elumbis" "elumbe" ; -- [XXXEC] :: weak, feeble; + eluo_V2 = mkV2 (mkV "eluere" "eluo" "elui" "elutus ") ; -- [XXXDX] :: wash clean; wash away, clear oneself (of); elutorius_A = mkA "elutorius" "elutoria" "elutorium" ; -- [GXXEK] :: washing; eluvies_F_N = mkN "eluvies" "eluviei " feminine ; -- [XXXEC] :: flowing out, discharge; a flowing over, flood; eluvio_F_N = mkN "eluvio" "eluvionis " feminine ; -- [XXXEC] :: inundation; @@ -17363,6 +18703,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg emaneo_V = mkV "emanere" ; -- [XXXEO] :: stay away (from); stay out/beyond; absent oneself; emano_V = mkV "emanare" ; -- [XXXDX] :: flow out; arise, emanate from, become known; emarceo_V = mkV "emarcere" ; -- [XXXEE] :: decay, wither; + emarcesco_V = mkV "emarcescere" "emarcesco" "emarcui" nonExist; -- [XXXEO] :: shrink/decay/wither/dwindle/pine away; disappear (L+S); [~ cor meum => fainted]; emax_A = mkA "emax" "emacis"; -- [XXXDX] :: fond/overfond of buying; embamma_N_N = mkN "embamma" "embammatis " neuter ; -- [FXXEK] :: sauce; emblem_N_N = mkN "emblem" "emblematis " neuter ; -- [XTXEC] :: inlaid or mosaic work; @@ -17380,13 +18721,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg emendatio_F_N = mkN "emendatio" "emendationis " feminine ; -- [XXXCO] :: correction, removal of errors; amendment; criticism; improvement; amends; emendico_V2 = mkV2 (mkV "emendicare") ; -- [XXXFO] :: beg, solicit, obtain by begging; emendo_V = mkV "emendare" ; -- [XXXBX] :: correct, emend, repair; improve, free from errors; + ementior_V = mkV "ementiri" "ementior" "ementitus sum " ; -- [XXXDX] :: lie, feign, falsify, invent; emercor_V = mkV "emercari" ; -- [XXXCO] :: bribe; win (over) by bribing; win/buy up/procure favors by bribes; emereo_V = mkV "emerere" ; -- [XXXBO] :: earn, obtain by service, merit, deserve; emerge; complete/serve out one's time; emereor_V = mkV "emereri" ; -- [XXXBO] :: earn, obtain by service, merit, deserve; emerge; complete/serve out one's time; + emergo_V2 = mkV2 (mkV "emergere" "emergo" "emersi" "emersus ") ; -- [XXXDX] :: rise up out of the water, emerge; escape; appear; arrive; emerita_F_N = mkN "emerita" ; -- [XXXEE] :: retired woman; emeritum_N_N = mkN "emeritum" ; -- [XXXFO] :: pension; pension given to discharged soldiers; veteran's reward; emeritus_A = mkA "emeritus" "emerita" "emeritum" ; -- [XXXCS] :: past service, worn/burnt out, unfit; veteran; that has finished work; deserving; emeritus_M_N = mkN "emeritus" ; -- [XXXES] :: discharged veteran, soldier who has completed his service, exempt; retired man; + emetior_V = mkV "emetiri" "emetior" "emensus sum " ; -- [XXXDX] :: measure out; pass through; emico_V = mkV "emicare" ; -- [XXXBO] :: |appear suddenly/quickly; make sudden movement up/out; give a jump; stand out; emigro_V = mkV "emigrare" ; -- [XXXDX] :: move out; depart; eminens_A = mkA "eminens" "eminentis"; -- [XXXBO] :: eminent/distinguished/notable; lofty/towering; prominent/projecting; foreground; @@ -17404,22 +18748,29 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg emissorium_N_N = mkN "emissorium" ; -- [GTXEK] :: emitter; emissorius_A = mkA "emissorius" "emissoria" "emissorium" ; -- [GTXEK] :: emitting; emistrum_N_N = mkN "emistrum" ; -- [GTXEK] :: emitter; --- IGNORED emo_V : V1 emo, emere, additional, forms -- [XXXDX] :: buy; gain, acquire, obtain; + emitto_V2 = mkV2 (mkV "emittere" "emitto" "emisi" "emissus ") ; -- [XXXBX] :: hurl; let go; utter; send out; drive; force; cast; discharge; expel; publish; + emo_V2 = mkV2 (mkV "emere" "emo" "emi" "emptus ") ; -- [XXXBX] :: buy; gain, acquire, obtain; emoderor_V = mkV "emoderari" ; -- [XXXFO] :: soothe, restrain; (passion); emodulor_V = mkV "emodulari" ; -- [XPXFO] :: set (poetry) to a certain rhythm; + emolior_V = mkV "emoliri" "emolior" "emolitus sum " ; -- [XXXDO] :: achieve, carry through (hard task); remove w/effort; force/heave out/up; + emollio_V2 = mkV2 (mkV "emollire" "emollio" "emollivi" "emollitus ") ; -- [XXXDX] :: soften; enervate, mellow; emolumentum_N_N = mkN "emolumentum" ; -- [XXXDX] :: advantage, benefit; emoneo_V2 = mkV2 (mkV "emonere") ; -- [XXXFO] :: exhort; admonish earnestly; warn (Ecc); + emorior_V = mkV "emori" "emorior" "emortuus sum " ; -- [XXXDX] :: die, die off, perish; die out; decease, pass away; emortualis_A = mkA "emortualis" "emortualis" "emortuale" ; -- [XXXFO] :: pertaining to death; [dies ~ => day of one's death; campana ~ => death knell]; emoveo_V = mkV "emovere" ; -- [XXXDX] :: move away, remove, dislodge; empathia_F_N = mkN "empathia" ; -- [GXXEK] :: empathy; --- TODO emphasis_N : N1 emphasis, emphasos/is -- F -- [XGXES] :: emphasis; stress; + emphasis_1_N = mkN "emphasis" "emphasis" feminine ; -- [XGXES] :: emphasis; stress; + emphasis_2_N = mkN "emphasis" "emphasos" feminine ; -- [XGXES] :: emphasis; stress; emphatice_Adv = mkAdv "emphatice" ; -- [GXXEK] :: emphatically; bombastically; emphaticus_A = mkA "emphaticus" "emphatica" "emphaticum" ; -- [FXXEE] :: emphatic; grandiloquent; --- TODO emphyteusis_N : N1 emphyteusis, emphyteuseos/is -- F -- [DLXES] :: emphyteusis (permanent land tenure for farming/rent); E:lease on church goods; + emphyteusis_1_N = mkN "emphyteusis" "emphyteuseis" feminine ; -- [DLXES] :: emphyteusis (permanent land tenure for farming/rent); E:lease on church goods; + emphyteusis_2_N = mkN "emphyteusis" "emphyteuseos" feminine ; -- [DLXES] :: emphyteusis (permanent land tenure for farming/rent); E:lease on church goods; emphyteuta_F_N = mkN "emphyteuta" ; -- [EEXFE] :: lessee; (of church goods); emphyteuta_M_N = mkN "emphyteuta" ; -- [ELXES] :: permanent land tenant; lessee in tenure of emphytensis; emphyteuticus_A = mkA "emphyteuticus" "emphyteutica" "emphyteuticum" ; -- [DLXFS] :: pertaining to emphyteusis (tenure for farming/rent or lease on church goods); --- TODO emphyteutis_N : N1 emphyteutis, emphyteutos/is -- F -- [ELXES] :: permanent land tenure; + emphyteutis_1_N = mkN "emphyteutis" "emphyteutis" feminine ; -- [ELXES] :: permanent land tenure; + emphyteutis_2_N = mkN "emphyteutis" "emphyteutos" feminine ; -- [ELXES] :: permanent land tenure; empiricus_A = mkA "empiricus" "empirica" "empiricum" ; -- [GXXEK] :: empirical; empiricus_M_N = mkN "empiricus" ; -- [XXXEC] :: unscientific physician, empiric; empirismus_M_N = mkN "empirismus" ; -- [GXXEK] :: empiricism; @@ -17439,6 +18790,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg emunctorium_N_N = mkN "emunctorium" ; -- [XXXEE] :: snuffer (for trimming candles and lamps); emundatio_F_N = mkN "emundatio" "emundationis " feminine ; -- [XXXES] :: cleansing, cleaning; emundo_V2 = mkV2 (mkV "emundare") ; -- [XXXCO] :: clean thoroughly, free of dirt/impurity; make quite clean (L+S); cleanse/purify; + emungo_V2 = mkV2 (mkV "emungere" "emungo" "emunxi" "emunctus ") ; -- [XXXDX] :: wipe the nose; trick, swindle; + emunio_V2 = mkV2 (mkV "emunire" "emunio" "emunivi" "emunitus ") ; -- [XXXDX] :: fortify; make roads through; en_Interj = ss "en" ; -- [XXXBX] :: behold! see! lo! here! hey! look at this!; enarmonicon_N_N = mkN "enarmonicon" "enarmonici " neuter ; -- [DDHES] :: enharmonic; (kind of melody in Greek music); enarmonicus_A = mkA "enarmonicus" "enarmonica" "enarmonicum" ; -- [DDHES] :: enharmonic; (of kind of melody in Greek music); @@ -17479,10 +18832,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg enhydris_F_N = mkN "enhydris" "enhydridis " feminine ; -- [DAXNS] :: water-snake (Pliny); enico_V2 = mkV2 (mkV "enicare") ; -- [XXXCO] :: kill/slay; deprive of life; kill off; exhaust/wear out, plague/torture to death; enigma_N_N = mkN "enigma" "enigmatis " neuter ; -- [FXXCE] :: puzzle, enigma, riddle, obscure expression/saying; --- enim_Conj : Conj enim -- [XXXAX] :: namely (postpos.); indeed; in fact; for; I mean, for instance, that is to say; --- enimvero_Conj : Conj enimvero -- [XXXBO] :: to be sure, certainly; well, upon by word; but, on the other hand; what is more; + enim_Conj = mkConj "enim" missing ; -- [XXXAX] :: namely (postpos.); indeed; in fact; for; I mean, for instance, that is to say; + enimvero_Conj = mkConj "enimvero" missing ; -- [XXXBO] :: to be sure, certainly; well, upon by word; but, on the other hand; what is more; eniteo_V = mkV "enitere" ; -- [XXXDX] :: shine forth/out; be outstanding/conspicuous; --- TODO enitesco_V : V2 enitesco, enitescere, enitui, - -- Declension: 3rd -- Comment: [XXXDX] :: become bright, gleam; stand out; + enitesco_V2 = mkV2 (mkV "enitescere" "enitesco" "enitui" nonExist ) ; -- [XXXDX] :: become bright, gleam; stand out; + enitor_V = mkV "eniti" "enitor" "enixus sum " ; -- [XXXDX] :: bring forth, bear, give birth to; struggle upwards, mount, climb, strive; enixe_Adv =mkAdv "enixe" "enixius" "enixissime" ; -- [XXXCO] :: earnestly, assiduously, with strenuous efforts; eno_V = mkV "enare" ; -- [XXXDX] :: swim out; enodate_Adv =mkAdv "enodate" "enodatius" "enodatissime" ; -- [XXXFS] :: clearly; plainly; @@ -17505,6 +18859,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg entomologia_F_N = mkN "entomologia" ; -- [GSXEK] :: entomology; entomologus_M_N = mkN "entomologus" ; -- [GSXEK] :: entomologist; enubilo_V2 = mkV2 (mkV "enubilare") ; -- [FXXEE] :: make clear; + enubo_V2 = mkV2 (mkV "enubere" "enubo" "enupsi" "enuptus ") ; -- [XXXDX] :: marry out of ones rank/outside one's community (women); marry and leave home; enucleatio_F_N = mkN "enucleatio" "enucleationis " feminine ; -- [FXXFM] :: elucidation; enucleatus_A = mkA "enucleatus" "enucleata" "enucleatum" ; -- [XXXEC] :: straightforward, simple, clear, plain; enucleo_V2 = mkV2 (mkV "enucleare") ; -- [XXXEC] :: take out the kernel/nut, shell; explain in detail; @@ -17514,9 +18869,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg enuntiatio_F_N = mkN "enuntiatio" "enuntiationis " feminine ; -- [XXXEZ] :: proposition (Collins); enuntio_V = mkV "enuntiare" ; -- [XXXDX] :: reveal; say; disclose; report; speak out, express, declare; enuntio_V2 = mkV2 (mkV "enuntiare") ; -- [XXXCO] :: reveal/divulge/make known/disclose; speak out, express/state/assert; articulate; + enutrio_V2 = mkV2 (mkV "enutrire" "enutrio" "enutrivi" "enutritus ") ; -- [XXXCO] :: nurture, rear (offspring); enzymum_N_N = mkN "enzymum" ; -- [GSXEK] :: enzyme; eo_Adv = mkAdv "eo" ; -- [XXXBO] :: |there, to/toward that place; in that direction; to that object/point/stage; --- TODO eo_V : V1 eo, ire, ivi(ii), itus -- [XXXAX] :: go, walk; march, advance; pass; flow; pass (time); ride; sail; + eo_1_V = mkV "ire" "eo" "ivi" "itus" ; -- [XXXAX] :: go, walk; march, advance; pass; flow; pass (time); ride; sail; + eo_2_V = mkV "ire" "eo" "ii" "itus" ; -- [XXXAX] :: go, walk; march, advance; pass; flow; pass (time); ride; sail; eodem_Adv = mkAdv "eodem" ; -- [XXXDX] :: to the same place/purpose; eparchia_F_N = mkN "eparchia" ; -- [EEHFE] :: eparchy, diocese (in Eastern Church); epastus_A = mkA "epastus" "epasta" "epastum" ; -- [XXXEC] :: eaten up; @@ -17525,15 +18882,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ephebiceus_A = mkA "ephebiceus" "ephebicea" "ephebiceum" ; -- [XXXFO] :: suitable for adolescent/teen boy(s); ephebus_M_N = mkN "ephebus" ; -- [XXHCO] :: boy (Greek) at age of puberty; youth; adolescent (age 18-20 by Athenian law); ephemeris_F_N = mkN "ephemeris" "ephemeridis " feminine ; -- [XXXEC] :: journal, diary; newspaper (Cal); --- IGNORED ephi_N : N1 ephi, undeclined -- N -- [EEQFE] :: ephah, Jewish dry measure; (ten gomor, over twenty bushels); + ephi_N = constN "ephi" neuter ; -- [EEQFE] :: ephah, Jewish dry measure; (ten gomor, over twenty bushels); ephippiatus_A = mkA "ephippiatus" "ephippiata" "ephippiatum" ; -- [XXXDX] :: riding with a saddle; ephippium_N_N = mkN "ephippium" ; -- [XXXDX] :: pad saddle, horse blanket (to ride on); --- IGNORED ephod_N : N1 ephod, undeclined -- N -- [DEQES] :: part of clothing of a Jewish priest; + ephod_N = constN "ephod" neuter ; -- [DEQES] :: part of clothing of a Jewish priest; ephoebias_M_N = mkN "ephoebias" "ephoebiae " masculine ; -- [EXXFW] :: body of youth; group of adolescent boys; ephoebus_M_N = mkN "ephoebus" ; -- [EXXFW] :: boy (Greek) at age of puberty; youth; adolescent (age 18-20 by Athenian law); ephorus_M_N = mkN "ephorus" ; -- [XLHEC] :: ephor, a Spartan magistrate; --- IGNORED ephphatha_V2 : V3 ephphatha, undeclined -- Type: TRANS -- Comment: [EEQFE] :: be thou opened; (Mark 7:34); (Aramaic); --- IGNORED ephpheta_V2 : V3 ephpheta, undeclined -- Type: TRANS -- Comment: [EEQFE] :: be thou opened; (Mark 7:34); (Aramaic); + ephphatha_V2 = mkV2 (constV "ephphatha") ; -- Comment: [EEQFE] :: be thou opened; (Mark 7:34); (Aramaic); + ephpheta_V2 = mkV2 (constV "ephpheta") ; -- Comment: [EEQFE] :: be thou opened; (Mark 7:34); (Aramaic); epibaticus_A = mkA "epibaticus" "epibatica" "epibaticum" ; -- [GXXEK] :: of travelers; epichirema_N_N = mkN "epichirema" "epichirematis " neuter ; -- [XGXFS] :: type of argument; epicinium_N_N = mkN "epicinium" ; -- [EXXFW] :: aftermath, afterwards; (victory); @@ -17546,7 +18903,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg epidicticus_A = mkA "epidicticus" "epidictica" "epidicticum" ; -- [XXXEC] :: for display; epidipnis_F_N = mkN "epidipnis" "epidipnidis " feminine ; -- [XXXEC] :: dessert; epigonation_N_N = mkN "epigonation" "epigonatii " neuter ; -- [FEHFE] :: ornament on bishop's cincture in Greek rite; --- TODO epigramma_N : N1 epigramma, epigrammatos/is -- N -- [XPXDO] :: inscription/epitaph; short poem/epigram; mark tattooed on criminal; + epigramma_1_N = mkN "epigramma" "epigrammatis" neuter ; -- [XPXDO] :: inscription/epitaph; short poem/epigram; mark tattooed on criminal; + epigramma_2_N = mkN "epigramma" "epigrammatos" neuter ; -- [XPXDO] :: inscription/epitaph; short poem/epigram; mark tattooed on criminal; epigramma_N_N = mkN "epigramma" "epigrammatis " neuter ; -- [XXXCO] :: inscription/epitaph; short poem/epigram; mark tattooed on criminal; epigrammatum_N_N = mkN "epigrammatum" ; -- [XXXFO] :: inscription/epitaph; short poem/epigram; mark tattooed on criminal; (DAT/ABL P); epigraphia_F_N = mkN "epigraphia" ; -- [GXXEK] :: epigraphy; @@ -17600,12 +18958,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg epos_N_N = mkN "epos" "- " neuter ; -- [XXXDX] :: epic poem (only in NOM and ACC S); epoto_V = mkV "epotare" ; -- [XXXCO] :: drink down/up, quaff, drain; absorb; swallow/suck up; empty (vessel); engulf; epotus_A = mkA "epotus" "epota" "epotum" ; -- [XXXDX] :: drunk up/down, drained; exhausted; absorbed, swallowed up; --- IGNORED eppheta_V : V1 eppheta, undeclined -- [EEQFW] :: be thou opened (Mark 7:34); (Aramaic); + eppheta_V = constV "eppheta" ; -- [EEQFW] :: be thou opened (Mark 7:34); (Aramaic); eptheca_F_N = mkN "eptheca" ; -- [FXXEN] :: addition; epula_F_N = mkN "epula" ; -- [XXXBX] :: courses (pl.), food, dishes of food; dinner; banquet; feast for the eyes; epulor_V = mkV "epulari" ; -- [XXXDX] :: dine sumptuously, feast; epulum_N_N = mkN "epulum" ; -- [XXXDX] :: feast; solemn or public banquet; entertainment; --- IGNORED eq_N : N1 eq., abb. -- M -- [XXXDX] :: knight (eques); abb. eq.; member of the equestrian order; + eq_N = constN "eq." masculine ; -- [XXXDX] :: knight (eques); abb. eq.; member of the equestrian order; equa_F_N = mkN "equa" ; -- [XXXDX] :: mare; eques_M_N = mkN "eques" "equitis " masculine ; -- [XXXBO] :: |knight (abb. eq.); (wealthy enough to own his own horse); horse (Bee); equester_A = mkA "equester" "equestris" "equestre" ; -- [XXXBO] :: equestrian, mounted on horse; of/belonging to/consisting of horseman/cavalry; @@ -17625,23 +18983,27 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg equus_M_N = mkN "equus" ; -- [XXXAX] :: horse; steed; era_F_N = mkN "era" ; -- [XXXDX] :: mistress; lady of the house; woman in relation to her servants; Lady; eradico_V = mkV "eradicare" ; -- [XXXDX] :: root out,eradicate; + erado_V2 = mkV2 (mkV "eradere" "erado" "erasi" "erasus ") ; -- [XXXCO] :: scrape away/clean/smooth, pare; erase/delete; erase/strike (name in disgrace); + ercisco_V2 = mkV2 (mkV "erciscere" "ercisco" nonExist nonExist) ; -- [XLXEC] :: divide an inheritance; erectio_F_N = mkN "erectio" "erectionis " feminine ; -- [XXXEO] :: erection, lifting p; act of placing in upright position; permit to travel; --- SLASHSTUFF erectus_A : A2 erectus, erecta -um, erectior -or -us, erectissimus -a -um -- [XXXBO] :: upright, erect; perpendicular; confident/bold/assured; noble; attentive/alert; + erectus_A = mkA "erectus" ; -- [XXXBO] :: upright, erect; perpendicular; confident/bold/assured; noble; attentive/alert; eremita_M_N = mkN "eremita" ; -- [DEXFS] :: hermit, eremite; anchorite; recluse; eremiticus_A = mkA "eremiticus" "eremitica" "eremiticum" ; -- [FEXFF] :: hermit-like, pertaining to/living like hermit; solitary, secluded, reclusive; eremitis_A = mkA "eremitis" "eremidis"; -- [DEXFS] :: solitary, secluded, recluse; pertaining to/living like hermit; eremus_A = mkA "eremus" "erema" "eremum" ; -- [DXXCS] :: waste, desert; eremus_M_N = mkN "eremus" ; -- [DXXCS] :: wilderness, wasteland, desert; ereptio_F_N = mkN "ereptio" "ereptionis " feminine ; -- [XXXDS] :: seizure; forcible taking; - erga_Acc_Prep = mkPrep "erga" Acc ; -- [XXXBX] :: towards, opposite (friendly); + erga_Acc_Prep = mkPrep "erga" acc ; -- [XXXBX] :: towards, opposite (friendly); ergastilus_M_N = mkN "ergastilus" ; -- [XXXDX] :: jailer in a ergastulum/workhouse/penitentiary; ergastulum_N_N = mkN "ergastulum" ; -- [XXXDX] :: prison; prison on estate where refractory slaves worked in chains; workhouse; ergo_Adv = mkAdv "ergo" ; -- [XXXAX] :: therefore; well, then, now; erica_F_N = mkN "erica" ; -- [GXXEK] :: heather; ericius_M_N = mkN "ericius" ; -- [XAXEO] :: hedgehog; beam thickly studded with iron spikes as a military barrier; + erigo_V2 = mkV2 (mkV "erigere" "erigo" "erexi" "erectus ") ; -- [XXXBX] :: raise, erect, build; rouse, excite, stimulate; erilis_A = mkA "erilis" "erilis" "erile" ; -- [XXXDX] :: of a master or mistress; erinaceus_M_N = mkN "erinaceus" ; -- [XAXEO] :: hedgehog; erinacius_M_N = mkN "erinacius" ; -- [EAXEW] :: hedgehog (of genus Erinaceus); porcupine (of genus Hystrix) (Ecc); + eripio_V2 = mkV2 (mkV "eripere" "eripio" "eripui" "ereptus ") ; -- [XXXAX] :: snatch away, take by force; rescue; eris_M_N = mkN "eris" "eris " masculine ; -- [XAXFO] :: hedgehog; erithacus_M_N = mkN "erithacus" ; -- [FXXEK] :: robin; ermellineus_A = mkA "ermellineus" "ermellinea" "ermellineum" ; -- [FXXFE] :: of ermine; @@ -17659,17 +19021,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg erronee_Adv = mkAdv "erronee" ; -- [GXXEK] :: erroneously; erroneus_A = mkA "erroneus" "erronea" "erroneum" ; -- [XXXEO] :: wandering (planets); straying; vagrant; wrong, erroneous (Ecc); error_M_N = mkN "error" "erroris " masculine ; -- [XXXDX] :: wandering; error; winding, maze; uncertainty; deception; --- TODO erubesco_V : V2 erubesco, erubescere, erubui, - -- Declension: 3rd -- Comment: [XXXBX] :: redden, blush, blush at; blush for shame, be ashamed of; + erubesco_V2 = mkV2 (mkV "erubescere" "erubesco" "erubui" nonExist ) ; -- [XXXBX] :: redden, blush, blush at; blush for shame, be ashamed of; eruca_F_N = mkN "eruca" ; -- [XXXEO] :: rocket (rocquette), cruciformous herb (Eruca sativa); (salad/aphrodisiac); eructo_V = mkV "eructare" ; -- [XXXDX] :: bring up noisily; discharge violently; eructuo_V = mkV "eructuare" ; -- [FXXFM] :: gush forth; erudero_V = mkV "eruderare" ; -- [XXXFS] :: clear from rubbish; + erudio_V2 = mkV2 (mkV "erudire" "erudio" "erudivi" "eruditus ") ; -- [XXXBX] :: educate, teach, instruct; eruditio_F_N = mkN "eruditio" "eruditionis " feminine ; -- [XGXCO] :: instruction/teaching/education; learning/erudition; taught knowledge; culture; eruditus_A = mkA "eruditus" "erudita" "eruditum" ; -- [XXXDX] :: learned, skilled; - erugo_V2 = mkV2 (mkV "erugare") ; -- [XXXNO] :: take wrinkles/creases from; + erugo_V2 = mkV2 (mkV "erugere" "erugo" nonExist "eructus ") ; -- [XXXEO] :: disgorge noisily (food/drink); erumpnus_A = mkA "erumpnus" "erumpna" "erumpnum" ; -- [FXXFM] :: distressful; + erumpo_V2 = mkV2 (mkV "erumpere" "erumpo" "erupi" "eruptus ") ; -- [XXXAO] :: |break out (of); burst/sally/spring/issue forth/out/on; sprout; erupt; erungion_N_N = mkN "erungion" "erungii " neuter ; -- [XAXNO] :: sea holly; genus of prickly plants; (Eryngium maritimum and allies); erungium_N_N = mkN "erungium" ; -- [XAXNO] :: sea holly; genus of prickly plants; (Eryngium maritimum and allies); + eruo_V2 = mkV2 (mkV "eruere" "eruo" "erui" "erutus ") ; -- [XXXDX] :: pluck/dig/root up, overthrow, destroy; elicit; eruptio_F_N = mkN "eruptio" "eruptionis " feminine ; -- [XXXDX] :: sortie, rush, sally, sudden rush of troops from a position; erus_M_N = mkN "erus" ; -- [XXXDX] :: master, owner; erutor_M_N = mkN "erutor" "erutoris " masculine ; -- [FXXEE] :: rescuer; @@ -17684,6 +19049,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg erythinus_M_N = mkN "erythinus" ; -- [DAXNS] :: red sea-mullet (Pliny); esca_F_N = mkN "esca" ; -- [XXXBX] :: food, meat; a dish prepared for the table; victuals; bait (for fish/animals); escarius_A = mkA "escarius" "escaria" "escarium" ; -- [XXXEC] :: relating to food or bait; + escendo_V2 = mkV2 (mkV "escendere" "escendo" "escendi" "escensus ") ; -- [XXXDX] :: ascend, go up, mount; eschaeta_F_N = mkN "eschaeta" ; -- [FLXFJ] :: escheat; property lapsed to lord(if owner dies without heir); eschatologia_F_N = mkN "eschatologia" ; -- [FSXFE] :: eschatology, study of final things; study of end of world; eschatologicus_A = mkA "eschatologicus" "eschatologica" "eschatologicum" ; -- [FSXFE] :: eschatological, pertaining to end (of world); @@ -17696,6 +19062,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg essedarius_A = mkA "essedarius" "essedaria" "essedarium" ; -- [XXXDX] :: of or belonging to a war chariot; essedarius_M_N = mkN "essedarius" ; -- [XXXDX] :: gladiator, soldier fighting from a chariot; essedum_N_N = mkN "essedum" ; -- [XXXDX] :: war chariot (two wheeled); light traveling carriage; + essendio_V2 = mkV2 (mkV "essendire" "essendio" nonExist nonExist) ; -- [DEXEZ] :: make real; endow with essence; essendum_N_N = mkN "essendum" ; -- [EEXEE] :: being; (gerund of esse); [essendi/essendo => of/in being]; essentia_F_N = mkN "essentia" ; -- [XSXCO] :: essence, substance, being, actuality, essential thing; existing entity, whole; essential_N_N = mkN "essential" "essentialis " neuter ; -- [ESXEM] :: essential qualities (pl.); @@ -17703,6 +19070,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg essentialiter_Adv = mkAdv "essentialiter" ; -- [DXXES] :: essentially; essentificatio_F_N = mkN "essentificatio" "essentificationis " feminine ; -- [EEXEM] :: realization, making real; essentifico_V2 = mkV2 (mkV "essentificare") ; -- [DEXEM] :: make real; endow with essence; + essentio_V2 = mkV2 (mkV "essentire" "essentio" "essensi" "essensus ") ; -- [DEXEM] :: make real; endow with essence; essoniator_M_N = mkN "essoniator" "essoniatoris " masculine ; -- [FLXFJ] :: one who essoins, one who excuses court absence; essonio_V2 = mkV2 (mkV "essoniare") ; -- [FLXFJ] :: essoin, excuse court absence; essonium_N_N = mkN "essonium" ; -- [FLXFJ] :: essoin, excuse for court absence; @@ -17721,14 +19089,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg esurienter_Adv = mkAdv "esurienter" ; -- [XXXFO] :: hungrily, ravenously; esuries_F_N = mkN "esuries" "esuriei " feminine ; -- [EXXES] :: hunger; esurio_M_N = mkN "esurio" "esurionis " masculine ; -- [XXXEO] :: hungry man/person; + esurio_V2 = mkV2 (mkV "esurire" "esurio" "esurivi" "esuritus ") ; -- [XXXDX] :: be hungry, hunger; want to eat, desire food; desire eagerly; esuritio_F_N = mkN "esuritio" "esuritionis " feminine ; -- [XXXDO] :: hunger; state of hunger; hungering (L+S); esuritor_M_N = mkN "esuritor" "esuritoris " masculine ; -- [XXXFO] :: hungry man/person; one suffering from hunger; esus_M_N = mkN "esus" "esus " masculine ; -- [XXXEO] :: eating, taking of food; --- et_Conj : Conj et -- [XXXAX] :: and, and even; also, even; (et ... et = both ... and); + et_Conj = mkConj "et" missing ; -- [XXXAX] :: and, and even; also, even; (et ... et = both ... and); etas_F_N = mkN "etas" "etatis " feminine ; -- [EXXAO] :: lifetime, age, generation; period; stage, period of life, time, era; --- IGNORED etc_N : N1 etc., abb. -- N -- [GXXBZ] :: etcetra, and so forth; abb. etc.; (in use in modern Latin texts if not before); --- etenim_Conj : Conj etenim -- [XXXBX] :: and indeed, because, since, as a matter of fact (independent reason, emphasis); --- SLASHSTUFF eternus_A : A2 eternus, eterna -um, eternior -or -us, eternissimus -a -um -- [EXXAO] :: eternal, everlasting, imperishable; perpetual; having no beginning/end; + etc_N = constN "etc." neuter ; -- [GXXBZ] :: etcetra, and so forth; abb. etc.; (in use in modern Latin texts if not before); + etenim_Conj = mkConj "etenim" missing ; -- [XXXBX] :: and indeed, because, since, as a matter of fact (independent reason, emphasis); + eternus_A = mkA "eternus" ; -- [EXXAO] :: eternal, everlasting, imperishable; perpetual; having no beginning/end; etesia_M_N = mkN "etesia" ; -- [XXXDX] :: etesian winds (pl.), NW winds blowing during dog days in Eastern Mediterranean; etheca_F_N = mkN "etheca" ; -- [FEXEE] :: portico (pl.); gallery; ethica_F_N = mkN "ethica" ; -- [XXXFE] :: ethics; moral philosophy; science of right and wrong; @@ -17745,12 +19114,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ethologia_F_N = mkN "ethologia" ; -- [XGXEO] :: characterization, delineation of character; character sketch; ethnology (Ecc); ethologicus_A = mkA "ethologicus" "ethologica" "ethologicum" ; -- [GXXEE] :: ethnological, of ethnology; ethologus_M_N = mkN "ethologus" ; -- [XDXEO] :: mimic, one who portrays character with gestures; --- etiam_Conj : Conj etiam -- [XXXAO] :: |now too, as yet, still, even now; yet again; likewise; (particle); (et-iam); + etiam_Conj = mkConj "etiam" missing ; -- [XXXAO] :: |now too, as yet, still, even now; yet again; likewise; (particle); (et-iam); etiamnum_Adv = mkAdv "etiamnum" ; -- [XXXDX] :: even now, still, yet; etiamnunc_Adv = mkAdv "etiamnunc" ; -- [XXXDX] :: even now, still, yet; --- etiamsi_Conj : Conj etiamsi -- [XXXDX] :: even if, although; --- etiamtum_Conj : Conj etiamtum -- [XXXDX] :: even then; yet; --- etsi_Conj : Conj etsi -- [XXXBX] :: although, though, even if; albeit; I know that but; + etiamsi_Conj = mkConj "etiamsi" missing ; -- [XXXDX] :: even if, although; + etiamtum_Conj = mkConj "etiamtum" missing ; -- [XXXDX] :: even then; yet; + etsi_Conj = mkConj "etsi" missing ; -- [XXXBX] :: although, though, even if; albeit; I know that but; etymologia_F_N = mkN "etymologia" ; -- [XGXEC] :: etymology; eu_Interj = ss "eu" ; -- [XXXDX] :: well done! bravo!; splendid! (sometimes ironic); eucharis_A = mkA "eucharis" "eucharis" "euchare" ; -- [EXXEP] :: gracious; @@ -17791,9 +19160,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg eutyches_A = mkA "eutyches" "eutychetis"; -- [FXXFM] :: fortunate; euus_M_N = mkN "euus" "euus " masculine ; -- [XXXDO] :: eating; taking of food; evacuo_V2 = mkV2 (mkV "evacuare") ; -- [XXXEO] :: empty (vessel); purge, evacuate (bowels); + evado_V2 = mkV2 (mkV "evadere" "evado" "evasi" "evasus ") ; -- [XXXBX] :: evade, escape; avoid; evagino_V2 = mkV2 (mkV "evaginare") ; -- [FXXDB] :: unsheathe; evagor_V = mkV "evagari" ; -- [XXXDX] :: wander off/out/forth/to and fro, stray; maneuver; spread, overstep; --- TODO evalesco_V : V2 evalesco, evalescere, evalui, - -- Declension: 3rd -- Comment: [XXXDX] :: increase in strength; prevail, have sufficient strength (to); + evalesco_V2 = mkV2 (mkV "evalescere" "evalesco" "evalui" nonExist ) ; -- [XXXDX] :: increase in strength; prevail, have sufficient strength (to); + evanesco_V = mkV "evanescere" "evanesco" "evanui" nonExist; -- [XXXCO] :: vanish/disappear; pass/fade/die (away/out); lapse; become weak/void/forgotten; evangeliarum_N_N = mkN "evangeliarum" ; -- [EEXFE] :: book of Gospels; evangelicus_A = mkA "evangelicus" "evangelica" "evangelicum" ; -- [EEXES] :: evangelical; of/pertaining to the Gospel; evangelista_M_N = mkN "evangelista" ; -- [EEXES] :: preacher (of the Gospel); evangelist; @@ -17803,19 +19174,27 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg evangelizator_M_N = mkN "evangelizator" "evangelizatoris " masculine ; -- [EEXES] :: preacher (of the Gospel); evangelist; evangelizo_V = mkV "evangelizare" ; -- [EEXCS] :: preach/declare/proclaim (the Gospel); evangelize, win to Gospel by preaching; evanidus_A = mkA "evanidus" "evanida" "evanidum" ; -- [XXXDX] :: vanishing, passing away; + evanno_V2 = mkV2 (mkV "evannere" "evanno" nonExist nonExist) ; -- [XAXFO] :: winnow out; cast out (the chaff from fan leaving the grain); evans_A = mkA "evans" "evantis"; -- [XEXES] :: crying Euhan!; (surname of Bacchus); + evanuo_V = mkV "evanuere" "evanuo" nonExist nonExist; -- [FXXEE] :: become vain/empty/foolish; evaporatio_F_N = mkN "evaporatio" "evaporationis " feminine ; -- [XSXFS] :: evaporation; evasio_F_N = mkN "evasio" "evasionis " feminine ; -- [XXXEE] :: escape; deliverance; going out; evasion; evasto_V = mkV "evastare" ; -- [XXXDX] :: devastate; evectio_F_N = mkN "evectio" "evectionis " feminine ; -- [XLXES] :: ascension, flight, soaring aloft; permit to travel by public post; + eveho_V2 = mkV2 (mkV "evehere" "eveho" "evexi" "evectus ") ; -- [XXXBX] :: carry away, convey out; carry up; exalt; jut out, project; + evello_V2 = mkV2 (mkV "evellere" "evello" "evelli" "evulsus ") ; -- [XXXDX] :: pull/pluck/tear/root out; + evenio_V2 = mkV2 (mkV "evenire" "evenio" "eveni" "eventus ") ; -- [XXXAX] :: come out/about/forth; happen; turn out; + evenit_V0 = mkV0 "evenit"; -- [XXXDX] :: it happens, it turns out; come out, come forth; eventilatus_A = mkA "eventilatus" "eventilata" "eventilatum" ; -- [DXXFS] :: scattered; dissipated; eventilo_V2 = mkV2 (mkV "eventilare") ; -- [XXXEO] :: winnow thoroughly; fan away; fan (L+S); set in motion (air); eventum_N_N = mkN "eventum" ; -- [XXXDX] :: occurrence, event; issue, outcome; eventus_M_N = mkN "eventus" "eventus " masculine ; -- [XXXDX] :: outcome, result, success; event, occurrence; chance, fate, accident; everbero_V = mkV "everberare" ; -- [XXXDX] :: beat violently; everriculum_N_N = mkN "everriculum" ; -- [XXXEO] :: fishing-net, drag-net; clean sweep; brush (Cal); + everro_V2 = mkV2 (mkV "everrere" "everro" "everri" "eversus ") ; -- [XXXCO] :: sweep/clean out (room/litter); sweep (sea) with dragnet; net (by dragging); eversio_F_N = mkN "eversio" "eversionis " feminine ; -- [XXXCO] :: destruction; overturning/upsetting; expulsion/turning out; revolution (Cal); eversor_M_N = mkN "eversor" "eversoris " masculine ; -- [XXXDX] :: one who destroys or overthrows; + everto_V2 = mkV2 (mkV "evertere" "everto" "everti" "eversus ") ; -- [XXXBX] :: overturn, turn upside down; overthrow, destroy, ruin; evestigatus_A = mkA "evestigatus" "evestigata" "evestigatum" ; -- [XXXEC] :: tracked out, discovered; evictio_F_N = mkN "evictio" "evictionis " feminine ; -- [XXXCO] :: eviction; recovery at law in virtue of superior title; evidens_A = mkA "evidens" "evidentis"; -- [XXXDX] :: apparent, evident; @@ -17823,6 +19202,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg evidentia_F_N = mkN "evidentia" ; -- [XXXCO] :: evidence; obviousness; vividness; quality of being manifest/evident; evigilatio_F_N = mkN "evigilatio" "evigilationis " feminine ; -- [XXXEE] :: awakening; evigilo_V = mkV "evigilare" ; -- [XXXDX] :: be wakeful; watch throughout the night; devise or study with careful attention; + evilesco_V = mkV "evilescere" "evilesco" "evilui" nonExist; -- [XXXDO] :: become vile/worthless/despicable; cheapen; + evincio_V2 = mkV2 (mkV "evincere" "evincio" "evinxi" "evinctus ") ; -- [XXXDX] :: bind, bind up/around; wind around; wreathe round; + evinco_V2 = mkV2 (mkV "evincere" "evinco" "evici" "evictus ") ; -- [XXXDX] :: overcome, conquer, subdue, overwhelm, defeat utterly; prevail, bring to pass; eviratus_A = mkA "eviratus" "evirata" "eviratum" ; -- [XXXES] :: effeminate; eviro_V = mkV "evirare" ; -- [XXXES] :: deprive of virility; weaken; eviscero_V = mkV "eviscerare" ; -- [XXXDX] :: disembowel; eviscerate; @@ -17836,17 +19218,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg evolo_V = mkV "evolare" ; -- [XXXDX] :: fly away, fly up/out/forth; rush out/forth; evolutio_F_N = mkN "evolutio" "evolutionis " feminine ; -- [XXXEO] :: development, unfolding; action of reading through; evolution (Ecc); evolutivus_A = mkA "evolutivus" "evolutiva" "evolutivum" ; -- [GXXEE] :: evolutionary; --- IGNORED evovae_N : N1 evovae, undeclined -- N -- [FDXFE] :: evovae; (meaningless word used in choral books to show some vowel sounds); + evolvo_V2 = mkV2 (mkV "evolvere" "evolvo" "evolvi" "evolutus ") ; -- [XXXDX] :: roll out, unroll; disclose, unfold; extricate; pursue; explain; + evomo_V2 = mkV2 (mkV "evomere" "evomo" "evomui" "evomitus ") ; -- [XXXDX] :: vomit out; + evovae_N = constN "evovae" neuter ; -- [FDXFE] :: evovae; (meaningless word used in choral books to show some vowel sounds); evulgatio_F_N = mkN "evulgatio" "evulgationis " feminine ; -- [XXXEE] :: publication, making known, divulging; evulgo_V = mkV "evulgare" ; -- [XXXDX] :: make public, divulge; evulsio_F_N = mkN "evulsio" "evulsionis " feminine ; -- [DXXES] :: pulling out; eradication, utter destruction; extinction (Souter); - ex_Abl_Prep = mkPrep "ex" Abl ; -- [XXXAX] :: out of, from; by reason of; according to; because of, as a result of; + ex_Abl_Prep = mkPrep "ex" abl ; -- [XXXAX] :: out of, from; by reason of; according to; because of, as a result of; exacerbatio_F_N = mkN "exacerbatio" "exacerbationis " feminine ; -- [EXXES] :: provocation; exasperation; + exacerbesco_V = mkV "exacerbescere" "exacerbesco" nonExist nonExist; -- [XXXFO] :: become irritated/exasperated/angry; exacerbo_V2 = mkV2 (mkV "exacerbare") ; -- [XXXCO] :: irritate/exasperate, enrage/provoke; aggravate/make worse; grieve, afflict; exactio_F_N = mkN "exactio" "exactionis " feminine ; -- [XLXCO] :: |expulsion; supervision, enforcement; precise execution; extraction (tax/debt); exactitudo_F_N = mkN "exactitudo" "exactitudinis " feminine ; -- [GXXEK] :: accuracy; exactor_M_N = mkN "exactor" "exactoris " masculine ; -- [XXXDX] :: expeller; exactor; collector of taxes; exactus_A = mkA "exactus" "exacta" "exactum" ; -- [XXXBX] :: exact, accurate; + exacuo_V2 = mkV2 (mkV "exacuere" "exacuo" "exacui" "exacutus ") ; -- [XXXDX] :: make sharp or pointed; stimulate; exacutio_F_N = mkN "exacutio" "exacutionis " feminine ; -- [XXXFO] :: action of sharpening to a point; exacutus_A = mkA "exacutus" "exacuta" "exacutum" ; -- [XXXEE] :: sharpened; stimulated; exadversum_Adv = mkAdv "exadversum" ; -- [XXXEC] :: opposite; @@ -17867,11 +19253,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg exanimis_A = mkA "exanimis" "exanimis" "exanime" ; -- [XXXDX] :: dead; lifeless; breathless, terrified, dismayed; exanimo_V = mkV "exanimare" ; -- [XXXDX] :: kill, deprive of life; scare, alarm greatly; tire, exhaust; be out of breath; exanimus_A = mkA "exanimus" "exanima" "exanimum" ; -- [XXXDX] :: dead; lifeless; --- TODO exanthema_N : N1 exanthema, exanthematos/is -- N -- [XXXFO] :: pustule; pimple, zit; eruption on the skin; + exanthema_1_N = mkN "exanthema" "exanthematis" neuter ; -- [XXXFO] :: pustule; pimple, zit; eruption on the skin; + exanthema_2_N = mkN "exanthema" "exanthematos" neuter ; -- [XXXFO] :: pustule; pimple, zit; eruption on the skin; exantlo_V = mkV "exantlare" ; -- [EXXEE] :: exhaust; endure; bar; suffer much from toil; + exaperio_V2 = mkV2 (mkV "exaperire" "exaperio" "exaperui" "exapertus ") ; -- [XXXEE] :: disclose; explain; disentangle; exarchia_F_N = mkN "exarchia" ; -- [EEHFE] :: exarchy; (Eastern Church people not in eparchy, committed to exarch bishop); exarchus_M_N = mkN "exarchus" ; -- [EEHFE] :: exarch; (Eastern Church bishop governing exarchy); --- TODO exaresco_V : V2 exaresco, exarescere, exarui, - -- Declension: 3rd -- Comment: [XXXDX] :: dry up; + exardesco_V = mkV "exardescere" "exardesco" "exarsi" "exarsus "; -- [XXXDX] :: flare/blaze up; break out; glow; rage; be provoked, enraged; be exasperated; + exardo_V = mkV "exardere" "exardo" "exarsi" "exarsus "; -- [XXXCE] :: kindle; inflame; break out; + exaresco_V2 = mkV2 (mkV "exarescere" "exaresco" "exarui" nonExist ) ; -- [XXXDX] :: dry up; exarmo_V2 = mkV2 (mkV "exarmare") ; -- [XWXCO] :: |dismantle/remove ship's tackle; deprive beasts of their natural weapons; exaro_V = mkV "exarare" ; -- [XXXDX] :: plow or dig up; plow; note down (by scratching the wax on the tablets); exasperatio_F_N = mkN "exasperatio" "exasperationis " feminine ; -- [XXXEO] :: irritation; exasperation (Ecc); bitterness; @@ -17882,6 +19272,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg exauctoro_V = mkV "exauctorare" ; -- [XXXDX] :: release or dismiss from military service; exaudibilis_A = mkA "exaudibilis" "exaudibilis" "exaudibile" ; -- [XXXEE] :: worthy of being heard; exaudiens_A = mkA "exaudiens" "exaudientis"; -- [XXXIO] :: that listens to or heeds (prayers/supplication); understanding, listening; + exaudio_V2 = mkV2 (mkV "exaudire" "exaudio" "exaudivi" "exauditus ") ; -- [XXXBX] :: hear clearly; comply with, heed; hear from afar; understand; exauditio_F_N = mkN "exauditio" "exauditionis " feminine ; -- [XXXEE] :: favorable answer to prayer; exauditor_M_N = mkN "exauditor" "exauditoris " masculine ; -- [XEXIO] :: one who listens (favorably/graciously) to prayer; exauguratio_F_N = mkN "exauguratio" "exaugurationis " feminine ; -- [XXXEC] :: profanation, desecration; @@ -17893,15 +19284,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg excalfactorius_A = mkA "excalfactorius" "excalfactoria" "excalfactorium" ; -- [XXXES] :: warming; heating (Pliny); excambium_N_N = mkN "excambium" ; -- [FLXFJ] :: excambion; exchange/barter (espec. of land); excandescentia_F_N = mkN "excandescentia" ; -- [XXXEC] :: heat, irascibility; + excandesco_V = mkV "excandescere" "excandesco" "excandui" nonExist; -- [XXXCO] :: catch fire, burst into flame; blaze (w/light); flare up, burn w/rage/anger; excardinatio_F_N = mkN "excardinatio" "excardinationis " feminine ; -- [FEXFE] :: excardination; (transfer of cleric to another diocese/consecrated life); excardino_V2 = mkV2 (mkV "excardinare") ; -- [FEXFE] :: excardinate; (transfer of cleric to another diocese/consecrated life); excarnifico_V2 = mkV2 (mkV "excarnificare") ; -- [XXXCO] :: torture, punish; torment/torture mentally; hack/cut/tear to pieces (L+S); excarpus_M_N = mkN "excarpus" ; -- [FGXFY] :: abstract; excavo_V2 = mkV2 (mkV "excavare") ; -- [XXXCO] :: hollow/scoop out, make hollow; produce/make/form by excavation/hollowing out; + excedo_V2 = mkV2 (mkV "excedere" "excedo" "excessi" "excessus ") ; -- [XXXBX] :: pass, withdraw, exceed; go away/out/beyond; die; excellens_A = mkA "excellens" "excellentis"; -- [XXXBX] :: distinguished, excellent; excellenter_Adv = mkAdv "excellenter" ; -- [XXXDX] :: excellently; excellentia_F_N = mkN "excellentia" ; -- [XXXDX] :: excellence, superiority; merit; --- TODO excello_V : V2 excello, excellere, -, excelsus -- Declension: 3rd -- Comment: [XXXDX] :: be eminent/preeminent; excel; + excello_V = mkV "excellere" "excello" "excelsus" ; -- [XXXDX] :: be eminent/preeminent; excel; excelsa_F_N = mkN "excelsa" ; -- [EEXEP] :: citadel; excelse_Adv =mkAdv "excelse" "excelsius" "excelsissime" ; -- [XXXDO] :: preeminently, outstandingly; in elevated/sublime manner; at/to high elevation; excelsitas_F_N = mkN "excelsitas" "excelsitatis " feminine ; -- [XXXEO] :: loftiness; height; preeminence; sublimity; @@ -17915,14 +19308,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg exceptorium_N_N = mkN "exceptorium" ; -- [XXXIO] :: receptacle (for water), tank, cistern; reservoir (Ecc); exceptus_A = mkA "exceptus" "excepta" "exceptum" ; -- [FXXEE] :: only; excepted; excerebro_V2 = mkV2 (mkV "excerebrare") ; -- [EXXFS] :: brain, bash the head in; deprive of brains; make senseless; stupefy; + excerpo_V2 = mkV2 (mkV "excerpere" "excerpo" "excerpsi" "excerptus ") ; -- [XXXDX] :: pick out; select; excerptio_F_N = mkN "excerptio" "excerptionis " feminine ; -- [XXXFO] :: extract, excerpt; excerptum_N_N = mkN "excerptum" ; -- [XXXFO] :: extract, excerpt; excessivus_A = mkA "excessivus" "excessiva" "excessivum" ; -- [GXXEK] :: excessive; excessus_M_N = mkN "excessus" "excessus " masculine ; -- [XXXCO] :: departure; death; digression; departure from standard; B:protuberance; excess; excetra_F_N = mkN "excetra" ; -- [XXXEC] :: snake, viper; excidium_N_N = mkN "excidium" ; -- [XXXCO] :: military destruction (of towns/armies); ruin/demolition; subversion/overthrow; --- TODO excido_V : V2 excido, excidere, excidi, - -- Declension: 3rd -- Comment: [XXXBX] :: perish; disappear; escape, fall out; be deprived of; lose control of senses; + excido_V2 = mkV2 (mkV "excidere" "excido" "excidi" "excisus ") ; -- [XXXDX] :: cut out/off/down; raze, destroy; excieo_V = mkV "exciere" ; -- [XXXDX] :: rouse; call out send for; summon; evoke; + excindo_V2 = mkV2 (mkV "excindere" "excindo" "excidi" "excissus ") ; -- [XXXCO] :: demolish/destroy, raze to ground (town/building); exterminate/destroy (people); + excio_V2 = mkV2 (mkV "excire" "excio" "excivi" "excitus ") ; -- [XXXDX] :: rouse; call out send for; summon; evoke; + excipio_V2 = mkV2 (mkV "excipere" "excipio" "excepi" "exceptus ") ; -- [XXXAX] :: take out; remove; follow; receive; ward off, relieve; excipulum_N_N = mkN "excipulum" ; -- [GXXEK] :: bin; excisus_M_N = mkN "excisus" "excisus " masculine ; -- [FXXEE] :: cut, cutting, slip, piece; excito_V = mkV "excitare" ; -- [XXXBX] :: wake up, stir up; cause; raise, erect; incite; excite, arouse; @@ -17931,23 +19328,30 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg exclamo_V = mkV "exclamare" ; -- [XXXBX] :: exclaim, shout; cry out, call out; exclaustratio_F_N = mkN "exclaustratio" "exclaustrationis " feminine ; -- [FEXFE] :: exclaustration; (permission to remain outside cloister for definite period); exclaustratus_A = mkA "exclaustratus" "exclaustrata" "exclaustratum" ; -- [FEXFE] :: exclaustrated; (being outside cloister with permission); + excludo_V2 = mkV2 (mkV "excludere" "excludo" "exclusi" "exclusus ") ; -- [XXXBX] :: shut out, shut off; remove; exclude; hinder, prevent; exclusa_F_N = mkN "exclusa" ; -- [GXXEK] :: sluice; exclusio_F_N = mkN "exclusio" "exclusionis " feminine ; -- [XXXEO] :: exclusion, keeping out; shutting out; debarring; exclusive_Adv = mkAdv "exclusive" ; -- [FXXEE] :: exclusively; exclusivus_A = mkA "exclusivus" "exclusiva" "exclusivum" ; -- [FXXEE] :: exclusive; excogitatio_F_N = mkN "excogitatio" "excogitationis " feminine ; -- [XXXEO] :: thinking out, conniving, devising; invention (Ecc); excogito_V = mkV "excogitare" ; -- [XXXDX] :: think out; devise, invent, contrive; + excolo_V2 = mkV2 (mkV "excolere" "excolo" "excolui" "excultus ") ; -- [XXXDX] :: improve; develop, honor; excommunicatio_F_N = mkN "excommunicatio" "excommunicationis " feminine ; -- [EEXDE] :: excommunication; censure excluding from Church/community/communion w/faithful); excommunico_V2 = mkV2 (mkV "excommunicare") ; -- [EEXDE] :: excommunicate; (exclude Catholic from communion w/faithful); + excoquo_V2 = mkV2 (mkV "excoquere" "excoquo" "excoxi" "excoctus ") ; -- [XXXDX] :: boil; temper (by heat); boil away; dry up, parch; excorio_V2 = mkV2 (mkV "excoriare") ; -- [DXXCS] :: strip of skin/covering; flay, skin, strip; excors_A = mkA "excors" "excordis"; -- [XXXDX] :: silly, stupid; excrementum_N_N = mkN "excrementum" ; -- [XXXDX] :: excrement; spittle, mucus; + excresco_V2 = mkV2 (mkV "excrescere" "excresco" "excrevi" "excretus ") ; -- [XXXDX] :: grow out or up; grow up; grow; excrucio_V = mkV "excruciare" ; -- [XXXDX] :: torture; torment; excubia_F_N = mkN "excubia" ; -- [XXXCO] :: watching (pl.); keeping of a watch/guard/vigil; the watch, soldiers on guard; excubitor_M_N = mkN "excubitor" "excubitoris " masculine ; -- [XXXDX] :: sentinel; watchman; excubo_V = mkV "excubare" ; -- [XXXDX] :: sleep/lie in the open/out of doors; keep watch; be attentive; + excudo_V2 = mkV2 (mkV "excudere" "excudo" "excudi" "excusus ") ; -- [XXXDX] :: strike out; forge; fashion; print (Erasmus); exculco_V = mkV "exculcare" ; -- [XXXDX] :: trample down; + exculpo_V2 = mkV2 (mkV "exculpere" "exculpo" "exculpsi" "exculptus ") ; -- [XXXEM] :: carve out; erase; (see exsculpo; source Latham, but pre-dates medieval times); excuratus_A = mkA "excuratus" "excurata" "excuratum" ; -- [XXXEC] :: carefully seen to; + excurro_V2 = mkV2 (mkV "excurrere" "excurro" "excurri" "excursus ") ; -- [XXXDX] :: run out; make an excursion; sally; extend; project; excursatio_F_N = mkN "excursatio" "excursationis " feminine ; -- [DXXES] :: sally; onset; attack, charge (Sax); incursion; excursio_F_N = mkN "excursio" "excursionis " feminine ; -- [XXXDX] :: running forth; sally; excursus_M_N = mkN "excursus" "excursus " masculine ; -- [XXXDX] :: running forth, onset, charge, excursion, sally, sudden raid; @@ -17958,17 +19362,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg excussio_F_N = mkN "excussio" "excussionis " feminine ; -- [EXXEE] :: interrogation, examination; act of shaking (down); excusso_V2 = mkV2 (mkV "excussare") ; -- [FXXAE] :: excuse/justify/explain; make excuse for/plead as excuse; allege; absolve/exempt; excussus_A = mkA "excussus" "excussa" "excussum" ; -- [FEXEE] :: cast out; thrown down/out; + excutio_V2 = mkV2 (mkV "excutere" "excutio" "excussi" "excussus ") ; -- [XXXBX] :: shake out or off; cast out; search, examine; execo_V2 = mkV2 (mkV "execare") ; -- [XXXCO] :: cut out/off; remove/make (hole) by cutting; cut, make cut in; castrate; execrabilis_A = mkA "execrabilis" "execrabilis" "execrabile" ; -- [FXXEE] :: detestable; accursed; execramentum_N_N = mkN "execramentum" ; -- [EEXEE] :: accursed thing; increase, excess (Latham); excrement; [~ auri => gold fillings]; execratio_F_N = mkN "execratio" "execrationis " feminine ; -- [XXXDX] :: imprecation, curse; --- SLASHSTUFF execribilis_A : A2 execribilis, execribile, execribilior -or -us, execribilissimus -a -um -- [XXXCO] :: accursed, detestable; of/belonging to cursing; + execribilis_A = mkA "execribilis" ; -- [XXXCO] :: accursed, detestable; of/belonging to cursing; execror_V = mkV "execrari" ; -- [XXXDX] :: curse; detest; executio_F_N = mkN "executio" "executionis " feminine ; -- [XXXCO] :: performance, carrying out; enforcement (law), act to right wrong; discussion; + executo_V2 = mkV2 (mkV "executere" "executo" "execui" "executus ") ; -- [FXXEW] :: |execute, carry out (duty); go through, rehearse; pursue; develop (topic); executor_M_N = mkN "executor" "executoris " masculine ; -- [XXXDO] :: executor, one who carries out task; performer; avenger; executorius_A = mkA "executorius" "executoria" "executorium" ; -- [XXXEE] :: executive; executrix_F_N = mkN "executrix" "executricis " feminine ; -- [XXXDE] :: executor (female), one who carries out task; performer; avenger; --- TODO exedo_V : V1 exedo, exesse, -, - -- [XXXDX] :: eat up, consume; hollow; + exedo_1_V2 = mkV2 (mkV "exesse" "exedo" nonExist nonExist) ; -- [XXXDX] :: eat up, consume; hollow; + exedo_2_V2 = mkV2 (mkV "exedere" "exedo" "exedi" "exesus ") ; -- [XXXDX] :: eat up, consume; hollow; exedra_F_N = mkN "exedra" ; -- [XXXEC] :: hall for conversation or debate; exeges_F_N = mkN "exeges" "exegesis " feminine ; -- [GGXFM] :: exposition; exegesis (16th C); exegeta_C_N = mkN "exegeta" ; -- [FEXEE] :: exegete, interpreter/expounder of Scripture/difficult passages; @@ -17992,11 +19399,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg exequiale_N_N = mkN "exequiale" "exequialis " neuter ; -- [XXXEO] :: funeral rites (pl.); exequialis_A = mkA "exequialis" "exequialis" "exequiale" ; -- [XXXEO] :: funeral-, of/related to funeral, of/belonging to funeral rites; exequior_V = mkV "exequiari" ; -- [XXXFO] :: follow in funeral procession to the grave; attend at the grave; + exequor_V = mkV "exequi" "exequor" "executus sum " ; -- [XXXBO] :: |persist in; execute, carry out; rehearse; attain, arrive at, accomplish; exercens_F_N = mkN "exercens" "exercentis " feminine ; -- [XXXEE] :: operator; worker; doer, performer; exercens_M_N = mkN "exercens" "exercentis " masculine ; -- [XXXEE] :: operator; worker; doer, performer; exerceo_V = mkV "exercere" ; -- [XXXAX] :: exercise, train, drill, practice; enforce, administer; cultivate; exercitatio_F_N = mkN "exercitatio" "exercitationis " feminine ; -- [XXXDX] :: exercise, training, practice; discipline; --- SLASHSTUFF exercitatus_A : A2 exercitatus, exercitata -um, exercitatior -or -us, exercitatissimus -a -um -- [XXXDX] :: trained, practiced, skilled; disciplined; troubled; + exercitatus_A = mkA "exercitatus" ; -- [XXXDX] :: trained, practiced, skilled; disciplined; troubled; exercitium_N_N = mkN "exercitium" ; -- [XXXCO] :: exercise; training; practice; proficiency/skill; written exercises (pl.); exercito_V = mkV "exercitare" ; -- [XXXDX] :: practice, exercise, train hard, keep at work; exercitor_M_N = mkN "exercitor" "exercitoris " masculine ; -- [XXXEO] :: trainer; exerciser; sports trainer (Cal); @@ -18004,10 +19412,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg exercitrix_A = mkA "exercitrix" "exercitricis"; -- [XXXFO] :: exercise-, that exercises (body); exercitualis_A = mkA "exercitualis" "exercitualis" "exercituale" ; -- [FWXFS] :: belonging to an army; army-derived; exercitus_M_N = mkN "exercitus" "exercitus " masculine ; -- [XXXAX] :: army, infantry; swarm, flock; + exero_V2 = mkV2 (mkV "exerere" "exero" "exerui" "exertus ") ; -- [XXXDX] :: stretch forth; thrust out (of land); put out (plant); lay bare, uncover (body); exerro_V = mkV "exerrare" ; -- [XXXFO] :: wander off (from one's course); exerto_V = mkV "exertare" ; -- [XXXES] :: stretch out; uncover; exfornicatus_A = mkA "exfornicatus" "exfornicata" "exfornicatum" ; -- [FXXEE] :: given to fornication; + exfugio_V2 = mkV2 (mkV "exfugere" "exfugio" "exfugi" "exfugitus ") ; -- [XXXAO] :: flee/escape; run/slip/keep away (from), eschew/avoid; baffle, escape notice; exhalo_V = mkV "exhalare" ; -- [XXXDX] :: breathe out; evaporate; die; + exhaurio_V2 = mkV2 (mkV "exhaurire" "exhaurio" "exhausi" "exhaustus ") ; -- [XXXDX] :: draw out; drain, drink up, empty; exhaust, impoverish; remove; end; exhaustus_A = mkA "exhaustus" "exhausta" "exhaustum" ; -- [FXXEE] :: exhausted; exhedra_F_N = mkN "exhedra" ; -- [FXXFX] :: conversation-hall; hall with seats; (exedra); exheredatio_F_N = mkN "exheredatio" "exheredationis " feminine ; -- [XXXEO] :: disinheritance; act of disinheriting; @@ -18021,7 +19432,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg exhonoratio_F_N = mkN "exhonoratio" "exhonorationis " feminine ; -- [FXXEE] :: shame; exhonoro_V2 = mkV2 (mkV "exhonorare") ; -- [EXXES] :: dishonor; despise; exhorreo_V = mkV "exhorrere" ; -- [XXXFO] :: shudder; be terrified; --- TODO exhorresco_V : V2 exhorresco, exhorrescere, exhorrui, - -- Declension: 3rd -- Comment: [XXXDX] :: shudder; be terrified, tremble at; + exhorresco_V2 = mkV2 (mkV "exhorrescere" "exhorresco" "exhorrui" nonExist ) ; -- [XXXDX] :: shudder; be terrified, tremble at; exhortatio_F_N = mkN "exhortatio" "exhortationis " feminine ; -- [XXXCO] :: exhortation, action of admonishing/encouraging; inducement; exhortativus_A = mkA "exhortativus" "exhortativa" "exhortativum" ; -- [XXXEC] :: of exhortation; exhorto_V = mkV "exhortare" ; -- [XXXDX] :: encourage; @@ -18030,16 +19441,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg exico_V2 = mkV2 (mkV "exicare") ; -- [XXXCO] :: cut out/off; remove/make (hole) by cutting; cut, make cut in; castrate; exide_Adv = mkAdv "exide" ; -- [EXXDX] :: from then on; exigentia_F_N = mkN "exigentia" ; -- [FXXEE] :: urgency, exigency; emergency; + exigo_V2 = mkV2 (mkV "exigere" "exigo" "exegi" "exactus ") ; -- [XXXBX] :: drive out, expel; finish; examine, weigh; exiguitas_F_N = mkN "exiguitas" "exiguitatis " feminine ; -- [XXXDX] :: smallness, paucity; shortness; scarcity; exiguus_A = mkA "exiguus" "exigua" "exiguum" ; -- [XXXBX] :: small; meager; dreary; a little, a bit of; scanty, petty, short, poor; --- SLASHSTUFF exilis_A : A2 exilis, exile, exilior -or -us, exilissimus -a -um -- [XXXDX] :: small, thin; poor; + exilio_V = mkV "exilire" "exilio" "exilui" nonExist; -- [XXXBO] :: spring/leap/burst forth/out, leap up, start up, bound; emerge into existence; + exilis_A = mkA "exilis" ; -- [XXXDX] :: small, thin; poor; exilitas_F_N = mkN "exilitas" "exilitatis " feminine ; -- [XXXCO] :: thinness/leanness/narrowness; meager/poorness; small/shortness; dryness (style); exiliter_Adv = mkAdv "exiliter" ; -- [XXXEZ] :: feebly (Collins); exilium_N_N = mkN "exilium" ; -- [XXXCO] :: exile, banishment; place of exile/retreat (L+S); exiles (pl.), those exiled; exim_Adv = mkAdv "exim" ; -- [XXXBO] :: thence; after that, next in order, thereafter, then; furthermore; by that cause; eximietas_F_N = mkN "eximietas" "eximietatis " feminine ; -- [FXXEM] :: excellence(title); uncommonness (Nelson); eximius_A = mkA "eximius" "eximia" "eximium" ; -- [XXXCO] :: |outstanding/exceptional/remarkable; distinct; selected/choice (best victim); + eximo_V2 = mkV2 (mkV "eximere" "eximo" "exemi" "exemptus ") ; -- [XXXBO] :: remove/extract, take/lift out/off/away; banish, get rid of; free/save/release; exin_Adv = mkAdv "exin" ; -- [XXXBO] :: thence; after that, next in order, thereafter, then; furthermore; by that cause; + exinanio_V2 = mkV2 (mkV "exinanire" "exinanio" "exinanivi" "exinanitus ") ; -- [XXXCO] :: empty, remove contents of; strip; despoil; drain, dry, pour out; weaken/exhaust; exinanitio_F_N = mkN "exinanitio" "exinanitionis " feminine ; -- [XXXEO] :: purging, emptying out; weakening process; emptiness (Ecc); exinde_Adv = mkAdv "exinde" ; -- [XXXBO] :: thence; after that, next in order, thereafter, then; furthermore; by that cause; existentia_F_N = mkN "existentia" ; -- [FXXEF] :: existence; that by which essence becomes actual; @@ -18048,6 +19463,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg existimatio_F_N = mkN "existimatio" "existimationis " feminine ; -- [XXXBO] :: opinion (good); reputation/name; esteem; judgment/view/estimation; credit; existimator_M_N = mkN "existimator" "existimatoris " masculine ; -- [XXXDO] :: judge; critic, one who forms an opinion; existimo_V2 = mkV2 (mkV "existimare") ; -- [XXXBO] :: value/esteem; form/hold opinion/view; think/suppose; estimate; judge/consider; + existo_V2 = mkV2 (mkV "existere" "existo" "existiti" "existitus ") ; -- [XXXDX] :: step forth, appear; arise; become; prove to be; be (Bee); existumatio_F_N = mkN "existumatio" "existumationis " feminine ; -- [XXXBO] :: opinion (good/public); reputation/name; (forming of) judgment/view; credit; existumator_M_N = mkN "existumator" "existumatoris " masculine ; -- [XXXDO] :: judge; critic, one who forms an opinion; existumo_V2 = mkV2 (mkV "existumare") ; -- [XXXBO] :: value/esteem; form/hold opinion/view; think/suppose; estimate; judge/consider; @@ -18059,7 +19475,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg exitus_M_N = mkN "exitus" "exitus " masculine ; -- [XXXBX] :: exit, departure; end, solution; death; outlet, mouth (of river); exlex_A = mkA "exlex" "exlegis"; -- [XXXEC] :: bound by no law, lawless, reckless; exoculo_V2 = mkV2 (mkV "exoculare") ; -- [XXXEO] :: blind, put out/deprive of eyes/sight; + exolesco_V = mkV "exolescere" "exolesco" "exolevi" "exoletus "; -- [XXXCO] :: grow up, become adult; grow stale, deteriorate; die out/fade away; be forgotten; exoletus_M_N = mkN "exoletus" ; -- [XXXEO] :: male prostitute; + exolvo_V2 = mkV2 (mkV "exolvere" "exolvo" "exolvi" "exolutus ") ; -- [XXXBO] :: |set free, release; end, do away with; pay; award; release; perform/discharge; exomologesis_F_N = mkN "exomologesis" "exomologesis " feminine ; -- [FEXEE] :: confession of sin; exonero_V = mkV "exonerare" ; -- [XXXDX] :: unload, disburden, discharge; exopto_V = mkV "exoptare" ; -- [XXXDX] :: long for; @@ -18071,10 +19489,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg exorcistatus_M_N = mkN "exorcistatus" "exorcistatus " masculine ; -- [FEXFE] :: exorcist, third of four lesser orders of Catholic Church; (no longer exists); exorcistus_M_N = mkN "exorcistus" ; -- [EEXCV] :: exorcist; cleric of minor orders (second level from top/deacon); exorcizo_V2 = mkV2 (mkV "exorcizare") ; -- [FEXEE] :: exorcise; + exordior_V = mkV "exordiri" "exordior" "exorsus sum " ; -- [XXXDX] :: begin, commence; exordium_N_N = mkN "exordium" ; -- [XXXDX] :: beginning; introduction, preface; + exorior_V = mkV "exoriri" "exorior" "exortus sum " ; -- [XXXBX] :: come out, come forth; bring; appear; rise, begin, spring up; cheer up; exornatio_F_N = mkN "exornatio" "exornationis " feminine ; -- [XXXEZ] :: embellishment (Collins); exornatulus_A = mkA "exornatulus" "exornatula" "exornatulum" ; -- [XXXFO] :: prettily dressed; --- SLASHSTUFF exornatus_A : A2 exornatus, exornata -um, exornatior -or -us, exornatissimus -a -um -- [XXXFO] :: ornamented; embellished; + exornatus_A = mkA "exornatus" ; -- [XXXFO] :: ornamented; embellished; exorno_V = mkV "exornare" ; -- [XXXDX] :: furnish with, adorn, embellish; exoro_V2 = mkV2 (mkV "exorare") ; -- [XXXBO] :: persuade, obtain/win over by entreaty, prevail upon; beg, plead, entreat; exors_A = mkA "exors" "exortis"; -- [XXXDX] :: without share in; exempt from lottery; @@ -18086,34 +19506,43 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg exosus_A = mkA "exosus" "exosa" "exosum" ; -- [XXXDX] :: hating; exotericus_A = mkA "exotericus" "exoterica" "exotericum" ; -- [XXXFS] :: external; exoteric; exoticus_A = mkA "exoticus" "exotica" "exoticum" ; -- [XXXEC] :: foreign, outlandish, exotic; --- TODO expallesco_V : V2 expallesco, expallescere, expallui, - -- Declension: 3rd -- Comment: [XXXDX] :: turn pale, turn very pale; go white as a ghost; + expallesco_V2 = mkV2 (mkV "expallescere" "expallesco" "expallui" nonExist ) ; -- [XXXDX] :: turn pale, turn very pale; go white as a ghost; expallidus_A = mkA "expallidus" "expallida" "expallidum" ; -- [XXXFO] :: very/exceedingly pale/wan; expalpo_V2 = mkV2 (mkV "expalpare") ; -- [XXXEC] :: coax out; + expando_V2 = mkV2 (mkV "expandere" "expando" "expandi" "expassus ") ; -- [XXXAX] :: spread out, expand; expound; expansio_F_N = mkN "expansio" "expansionis " feminine ; -- [XXXEE] :: expansion; spreading out; expatior_V = mkV "expatiari" ; -- [XXXDX] :: wander from the course; spread out; --- TODO expavesco_V : V2 expavesco, expavescere, expavi, - -- Declension: 3rd -- Comment: [XXXDX] :: become frightened; + expavesco_V2 = mkV2 (mkV "expavescere" "expavesco" "expavi" nonExist ) ; -- [XXXDX] :: become frightened; expectatio_F_N = mkN "expectatio" "expectationis " feminine ; -- [XXXDX] :: expectation; suspense; expecto_V = mkV "expectare" ; -- [XXXDX] :: await, expect; anticipate; hope for; expectoro_V = mkV "expectorare" ; -- [BXXFS] :: banish from mind; + expedio_V2 = mkV2 (mkV "expedire" "expedio" "expedivi" "expeditus ") ; -- [XXXBX] :: disengage, loose, set free; be expedient; procure, obtain, make ready; expeditio_F_N = mkN "expeditio" "expeditionis " feminine ; -- [XXXDX] :: expedition, campaign; rapid march; account; proof by elimination; --- SLASHSTUFF expeditus_A : A2 expeditus, expedita -um, expeditior -or -us, expeditissimus -a -um -- [XXXDX] :: unencumbered; without baggage; light armed; + expeditus_A = mkA "expeditus" ; -- [XXXDX] :: unencumbered; without baggage; light armed; expeditus_M_N = mkN "expeditus" ; -- [XXXDX] :: light armed soldier; expedius_A = mkA "expedius" "expedia" "expedium" ; -- [XXXDX] :: free, easy; ready; ready for action; without baggage; unencumbered; + expello_V2 = mkV2 (mkV "expellere" "expello" "expuli" "expulsus ") ; -- [XXXBX] :: drive out, expel, banish; disown, reject; expendiendus_A = mkA "expendiendus" "expendienda" "expendiendum" ; -- [FXXFE] :: settled; disentangled; + expendo_V2 = mkV2 (mkV "expendere" "expendo" "expendi" "expensus ") ; -- [XXXDX] :: pay; pay out; weigh, judge; pay a penalty; expensa_F_N = mkN "expensa" ; -- [XXXCO] :: expenditure, money paid out; (assume pecunia); expenses (Bee); expensio_F_N = mkN "expensio" "expensionis " feminine ; -- [XXXEE] :: expense; expenditure; expensum_N_N = mkN "expensum" ; -- [XXXCO] :: expenditure, money paid out; expenses (Bee); expensus_A = mkA "expensus" "expensa" "expensum" ; -- [XXXCO] :: paid out (money); entered into one's account as paid; + expergefacio_V2 = mkV2 (mkV "expergefacere" "expergefacio" "expergefeci" "expergefactus ") ; -- [XXXCO] :: awaken/wake up (from sleep); rouse/arouse (from inactivity); excite/stir up; expergefio_V = mkV "expergeferi" ; -- [XXXCO] :: be awakened/aroused/excited; (expergefacio PASS); + expergiscor_V = mkV "expergisci" "expergiscor" "experrectus sum " ; -- [XXXDX] :: awake; bestir oneself; experiens_A = mkA "experiens" "experientis"; -- [XXXDX] :: active, enterprising (w/GEN); experientia_F_N = mkN "experientia" ; -- [XXXDX] :: trial, experiment; experience; experimentalis_A = mkA "experimentalis" "experimentalis" "experimentale" ; -- [GXXEK] :: experimental; experimentum_N_N = mkN "experimentum" ; -- [XXXDX] :: trial, experiment, experience; + experior_V = mkV "experiri" "experior" "expertus sum " ; -- [XXXDX] :: test, put to the test; find out; attempt, try; prove, experience; expers_A = mkA "expers" "expertis"; -- [XXXDX] :: free from (w/GEN); without; lacking experience; immune from; experta_F_N = mkN "experta" ; -- [XXXFE] :: expert, she who has experience; expertus_A = mkA "expertus" "experta" "expertum" ; -- [XXXEO] :: well-proved, tested; shown to be true; expertus_M_N = mkN "expertus" "expertus " masculine ; -- [XXXFE] :: expert, one who has experience; -- TODO expes_A : A2 expes, (gen.), - -- [XXXDX] :: hopeless (only NOM S); without hope; + expetesso_V2 = mkV2 (mkV "expetessere" "expetesso" nonExist nonExist) ; -- [XXXEC] :: desire, wish for; + expeto_V2 = mkV2 (mkV "expetere" "expeto" "expetivi" "expetitus ") ; -- [XXXDX] :: ask for; desire; aspire to; demand; happen; fall on (person); expiatio_F_N = mkN "expiatio" "expiationis " feminine ; -- [XXXCO] :: atonement, expiation, purification; expiatorius_A = mkA "expiatorius" "expiatoria" "expiatorium" ; -- [EXXEE] :: satisfactory; expiatory, expiating; expilo_V = mkV "expilare" ; -- [XXXDX] :: plunder, rob, despoil; @@ -18123,6 +19552,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg explanatio_F_N = mkN "explanatio" "explanationis " feminine ; -- [XXXDO] :: exposition, setting out/enunciating clearly in words; explanation (Ecc); explano_V = mkV "explanare" ; -- [XXXDX] :: explain; explanto_V2 = mkV2 (mkV "explantare") ; -- [XXXEO] :: uproot, pull up/out/off (plant/shoot); cast out (Ecc); + explaudo_V2 = mkV2 (mkV "explaudere" "explaudo" "explausi" "explausus ") ; -- [XDXCO] :: drive (actor) off stage by clapping; scare off; reject (claim); eject/cast out; explementum_N_N = mkN "explementum" ; -- [XXXEC] :: filling, stuffing; expleo_V = mkV "explere" ; -- [XXXBX] :: fill out; fill, fill up, complete, finish; satisfy, satiate; expletio_F_N = mkN "expletio" "expletionis " feminine ; -- [XXXFO] :: fulfillment; process of perfecting; completion; satisfaction; obedience (to); @@ -18131,9 +19561,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg explicatio_F_N = mkN "explicatio" "explicationis " feminine ; -- [XXXCO] :: |planning (buildings, etc.), laying out; uncoiling; method/style of exposition; explicativus_A = mkA "explicativus" "explicativa" "explicativum" ; -- [XXXEE] :: explanatory; explicite_Adv = mkAdv "explicite" ; -- [XXXFO] :: clearly, without ambiguity; plainly, explicitly (Ecc); --- SLASHSTUFF explicitus_A : A2 explicitus, explicita -um, explicitior -or -us, explicitissimus -a -um -- [XXXEO] :: clear, straightforward, explicit, plain; + explicitus_A = mkA "explicitus" ; -- [XXXEO] :: clear, straightforward, explicit, plain; explico_V = mkV "explicare" ; -- [XXXDX] :: unfold, extend; set forth, explain; explodeo_V = mkV "explodere" ; -- [GWXEK] :: explode; + explodo_V2 = mkV2 (mkV "explodere" "explodo" "explosi" "explosus ") ; -- [XDXCO] :: drive (actor) off stage by clapping; scare off; reject (claim); eject/cast out; exploratio_F_N = mkN "exploratio" "explorationis " feminine ; -- [XXXDO] :: investigation, searching out; examination, exploration; reconnaissance unit; exploratior_A = mkA "exploratior" "exploratior" "exploratius" ; -- [XXXEZ] :: explored; explorator_M_N = mkN "explorator" "exploratoris " masculine ; -- [XXXCO] :: investigator, one who searches out; scout, spy; @@ -18141,23 +19572,28 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg explosio_F_N = mkN "explosio" "explosionis " feminine ; -- [GWXEK] :: explosion; explosivus_A = mkA "explosivus" "explosiva" "explosivum" ; -- [GWXEK] :: exploding; expolio_V = mkV "expoliare" ; -- [XXXDX] :: plunder; + expolio_V2 = mkV2 (mkV "expolire" "expolio" "expolivi" "expolitus ") ; -- [XXXDX] :: polish; refine; expolitor_M_N = mkN "expolitor" "expolitoris " masculine ; -- [XXXEE] :: polisher; exponens_M_N = mkN "exponens" "exponentis " masculine ; -- [GSXEK] :: exponent (math.); exponentialis_A = mkA "exponentialis" "exponentialis" "exponentiale" ; -- [GXXEK] :: exponential; + expono_V2 = mkV2 (mkV "exponere" "expono" "exposui" "expositus ") ; -- [XXXBX] :: set/put forth/out; abandon, expose; publish; explain, relate; disembark; + exporrigo_V2 = mkV2 (mkV "exporrigere" "exporrigo" "exporrexi" "exporrectus ") ; -- [XXXCO] :: stretch/spread out; smooth (brow); extend; expand, widen scope of (idea); exportaticius_A = mkA "exportaticius" "exportaticia" "exportaticium" ; -- [GXXEK] :: of export; exportator_M_N = mkN "exportator" "exportatoris " masculine ; -- [GXXEK] :: exporter; exporto_V = mkV "exportare" ; -- [XXXDX] :: export, carry out; --- TODO exposco_V : V2 exposco, exposcere, expoposci, - -- Declension: 3rd -- Comment: [XXXDX] :: request, ask for, demand; demand the surrender of; + exposco_V2 = mkV2 (mkV "exposcere" "exposco" "expoposci" nonExist ) ; -- [XXXDX] :: request, ask for, demand; demand the surrender of; expositio_F_N = mkN "expositio" "expositionis " feminine ; -- [GXXEK] :: |exhibition (of art, of objects); expostulatio_F_N = mkN "expostulatio" "expostulationis " feminine ; -- [XXXDX] :: complaint, protest; expostulo_V = mkV "expostulare" ; -- [XXXDX] :: demand, call for, remonstrate, complain about; expresse_Adv =mkAdv "expresse" "expressius" "expressissime" ; -- [XXXDO] :: expressly, for express purpose; clearly, distinctly; pointedly; w/precision; expressim_Adv = mkAdv "expressim" ; -- [XXXFO] :: explicitly; clearly; expressly; expressio_F_N = mkN "expressio" "expressionis " feminine ; -- [XXXEO] :: expulsion/forcing out; elevating section (watermain); molding; expression (Ecc) --- SLASHSTUFF expressus_A : A2 expressus, expressa -um, expressior -or -us, expressissimus -a -um -- [XXXDO] :: distinct/clear/plain/visible/prominent, clearly defined; closely modeled on; + expressus_A = mkA "expressus" ; -- [XXXDO] :: distinct/clear/plain/visible/prominent, clearly defined; closely modeled on; + exprimo_V2 = mkV2 (mkV "exprimere" "exprimo" "expressi" "expressus ") ; -- [XXXBX] :: squeeze, squeeze/press out; imitate, copy; portray; pronounce, express; exprobrabilis_A = mkA "exprobrabilis" "exprobrabilis" "exprobrabile" ; -- [EXXEE] :: worthy of reproach; exprobratio_F_N = mkN "exprobratio" "exprobrationis " feminine ; -- [XXXDX] :: reproaching, reproach; exprobro_V2 = mkV2 (mkV "exprobrare") ; -- [XXXCO] :: reproach, upbraid, reprove; bring up as reproach (against person DAT); + expromo_V2 = mkV2 (mkV "expromere" "expromo" "exprompsi" "expromptus ") ; -- [XXXCO] :: bring/take out (from store), put out; put to use, put in play; disclose, reveal; expropriatio_F_N = mkN "expropriatio" "expropriationis " feminine ; -- [FLXFM] :: renunciation; deprivation (of property); expugnabilis_A = mkA "expugnabilis" "expugnabilis" "expugnabile" ; -- [XXXDX] :: open to assault; expugnatio_F_N = mkN "expugnatio" "expugnationis " feminine ; -- [XXXDX] :: storming, taking by storm; assault; @@ -18166,12 +19602,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg expugno_V = mkV "expugnare" ; -- [XXXDX] :: assault, storm; conquer, plunder; accomplish; persuade; expulsio_F_N = mkN "expulsio" "expulsionis " feminine ; -- [XXXDS] :: driving-out; expulsion; expultrix_F_N = mkN "expultrix" "expultricis " feminine ; -- [XXXEC] :: one who drives out; + expuo_V2 = mkV2 (mkV "expuere" "expuo" "expui" "exputus ") ; -- [XXXDX] :: spit out; eject; rid oneself of; expurgatio_F_N = mkN "expurgatio" "expurgationis " feminine ; -- [XXXEO] :: justification, vindication; excuse; action of cleaning; expurgatus_A = mkA "expurgatus" "expurgata" "expurgatum" ; -- [XXXEE] :: expurgated; purified, cleaned up; expurgo_V = mkV "expurgare" ; -- [XXXDX] :: cleanse, purify; exculpate; expurigatio_F_N = mkN "expurigatio" "expurigationis " feminine ; -- [XXXFO] :: justification, vindication; excuse; action of cleaning; exquaesitio_F_N = mkN "exquaesitio" "exquaesitionis " feminine ; -- [EXXES] :: research, inquiry, investigation; seeking for; desiring; exquaesitor_M_N = mkN "exquaesitor" "exquaesitoris " masculine ; -- [XXXFO] :: searcher; investigator, researcher; + exquiro_V2 = mkV2 (mkV "exquirere" "exquiro" "exquisivi" "exquisitus ") ; -- [XXXDX] :: seek out, search for, hunt up; inquire into; exquisitio_F_N = mkN "exquisitio" "exquisitionis " feminine ; -- [XXXEE] :: research, inquiry, investigation; exquisitor_M_N = mkN "exquisitor" "exquisitoris " masculine ; -- [DXXES] :: searcher; investigator, researcher; exsanguis_A = mkA "exsanguis" "exsanguis" "exsangue" ; -- [XXXDX] :: bloodless, pale, wan, feeble; frightened; @@ -18180,51 +19618,64 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg exsaturatus_A = mkA "exsaturatus" "exsaturata" "exsaturatum" ; -- [XXXEE] :: filled, satisfied, sated, having enough; exsaturo_V = mkV "exsaturare" ; -- [XXXDX] :: satisfy, sate, glut; exscidium_N_N = mkN "exscidium" ; -- [XXXCS] :: military destruction (of towns/armies); ruin/demolition; subversion/overthrow; + exscindo_V2 = mkV2 (mkV "exscindere" "exscindo" "exscidi" "exscissus ") ; -- [XXXCO] :: demolish/destroy, raze to ground (town/building); exterminate/destroy (people); exscreo_V2 = mkV2 (mkV "exscreare") ; -- [XXXEC] :: cough out/up; + exscribo_V2 = mkV2 (mkV "exscribere" "exscribo" "exscripsi" "exscriptus ") ; -- [XXXDX] :: copy, write out; + exsculpo_V2 = mkV2 (mkV "exsculpere" "exsculpo" "exsculpsi" "exsculptus ") ; -- [XXXES] :: carve out; erase; exseco_V2 = mkV2 (mkV "exsecare") ; -- [XXXCO] :: cut out/off; remove/make (hole) by cutting; cut, make cut in; castrate; exsecrabilis_A = mkA "exsecrabilis" "exsecrabilis" "exsecrabile" ; -- [XXXDX] :: detestable; accursed; exsecramentum_N_N = mkN "exsecramentum" ; -- [EEXEE] :: accursed thing; increase, excess (Latham); excrement; [~ auri => gold fillings]; exsecrandus_A = mkA "exsecrandus" "exsecranda" "exsecrandum" ; -- [FXXEE] :: detestable; exsecratio_F_N = mkN "exsecratio" "exsecrationis " feminine ; -- [XXXDX] :: imprecation, curse; --- SLASHSTUFF exsecribilis_A : A2 exsecribilis, exsecribile, exsecribilior -or -us, exsecribilissimus -a -um -- [XXXCO] :: accursed, detestable; of/belonging to cursing; + exsecribilis_A = mkA "exsecribilis" ; -- [XXXCO] :: accursed, detestable; of/belonging to cursing; exsecror_V = mkV "exsecrari" ; -- [XXXDX] :: curse; detest; exsectio_F_N = mkN "exsectio" "exsectionis " feminine ; -- [XXXEC] :: cutting out; exsecutio_F_N = mkN "exsecutio" "exsecutionis " feminine ; -- [XXXCO] :: performance, carrying out; enforcement (law), act to right wrong; discussion; exsecutivus_A = mkA "exsecutivus" "exsecutiva" "exsecutivum" ; -- [FXXDE] :: executive; ministerial (Cal); + exsecuto_V2 = mkV2 (mkV "exsecutere" "exsecuto" "exsecui" "exsecutus ") ; -- [FXXEW] :: |execute, carry out (duty); go through, rehearse; pursue; develop (topic); exsecutor_M_N = mkN "exsecutor" "exsecutoris " masculine ; -- [XXXDO] :: executor, one who carries out task; performer; avenger; exsecutrix_F_N = mkN "exsecutrix" "exsecutricis " feminine ; -- [XXXDE] :: executor (female), one who carries out task; performer; avenger; exsequia_F_N = mkN "exsequia" ; -- [XEXCO] :: funeral procession/rites (pl.), obsequies; [~as ire => attend funeral]; exsequiale_N_N = mkN "exsequiale" "exsequialis " neuter ; -- [XXXEO] :: funeral rites (pl.); exsequialis_A = mkA "exsequialis" "exsequialis" "exsequiale" ; -- [XXXEO] :: funeral-, of/related to a funeral or funeral rites; exsequior_V = mkV "exsequiari" ; -- [XXXFO] :: follow in funeral procession to the grave; attend at the grave; + exsequor_V = mkV "exsequi" "exsequor" "exsecutus sum " ; -- [XXXBO] :: |persist in; execute, carry out; rehearse; attain, arrive at, accomplish; + exsero_V2 = mkV2 (mkV "exserere" "exsero" "exserui" "exsertus ") ; -- [XXXDX] :: stretch forth; thrust out (of land); put out (plants); lay bare, uncover (body); exserto_V = mkV "exsertare" ; -- [XXXES] :: stretch out; uncover; exsicco_V = mkV "exsiccare" ; -- [XXXDX] :: dry up; empty (vessel); exsico_V2 = mkV2 (mkV "exsicare") ; -- [XXXCO] :: cut out/off; remove/make (hole) by cutting; cut, make cut in; castrate; + exsilio_V = mkV "exsilire" "exsilio" "exsilui" nonExist; -- [XXXBO] :: spring/leap/burst forth/out, leap up, start up, bound; emerge into existence; exsilium_N_N = mkN "exsilium" ; -- [XXXBO] :: exile, banishment; place of exile/retreat (L+S); exiles (pl.), those exiled; exsistentia_F_N = mkN "exsistentia" ; -- [FXXEF] :: existence; that by which essence becomes actual; exsistimatio_F_N = mkN "exsistimatio" "exsistimationis " feminine ; -- [XXXBO] :: opinion (good); reputation/name; esteem; judgment/view/estimation; credit; --- TODO exsisto_V : V2 exsisto, exsistere, exstiti, - -- Declension: 3rd -- Comment: [XXXAX] :: step out, come forth, emerge, appear, stand out, project; arise; come to light; + exsisto_V2 = mkV2 (mkV "exsistere" "exsisto" "exstiti" nonExist ) ; -- [XXXAX] :: step out, come forth, emerge, appear, stand out, project; arise; come to light; + exsolvo_V2 = mkV2 (mkV "exsolvere" "exsolvo" "exsolvi" "exsolutus ") ; -- [XXXBO] :: |set free, release; end, do away with; pay; award; release; perform/discharge; exsomnis_A = mkA "exsomnis" "exsomnis" "exsomne" ; -- [XXXEC] :: sleepless, wakeful; exsors_A = mkA "exsors" "exsortis"; -- [XXXDX] :: without share in exempt from lottery; exspatior_V = mkV "exspatiari" ; -- [XXXDX] :: digress, go from the course, wander from the way, spread, extend; exspectatio_F_N = mkN "exspectatio" "exspectationis " feminine ; -- [XXXDX] :: expectation; suspense; exspecto_V = mkV "exspectare" ; -- [XXXAX] :: lookout for, await; expect, anticipate, hope for; + exspergo_V2 = mkV2 (mkV "exspergere" "exspergo" nonExist "exspersus ") ; -- [XXXEC] :: sprinkle, scatter; -- TODO exspes_A : A2 exspes, (gen.), - -- [XXXDX] :: hopeless (only NOM S); exspiro_V = mkV "exspirare" ; -- [XXXDX] :: breathe out, exhale; expire; cease, die; --- TODO exsplendesco_V : V2 exsplendesco, exsplendescere, exsplendui, - -- Declension: 3rd -- Comment: [XXXDX] :: glitter; shine; become conspicuous; + exsplendesco_V2 = mkV2 (mkV "exsplendescere" "exsplendesco" "exsplendui" nonExist ) ; -- [XXXDX] :: glitter; shine; become conspicuous; exspolio_V = mkV "exspoliare" ; -- [XXXDX] :: pillage, rob, plunder; + exspuo_V2 = mkV2 (mkV "exspuere" "exspuo" "exspui" "exsputus ") ; -- [XXXDX] :: spit out; eject; rid oneself of; exstasia_F_N = mkN "exstasia" ; -- [FEXEF] :: rapture; ecstasy; trance; + exstasis_1_N = mkN "exstasis" "exstasis" feminine ; -- [DXXES] :: terror; amazement; ecstasy; + exstasis_2_N = mkN "exstasis" "exstasos" feminine ; -- [DXXES] :: terror; amazement; ecstasy; exstasis_F_N = mkN "exstasis" "exstasis " feminine ; -- [FEXDF] :: rapture; ecstasy; trance; --- TODO exstasis_N : N1 exstasis, exstasos/is -- F -- [DXXES] :: terror; amazement; ecstasy; exstaticus_A = mkA "exstaticus" "exstatica" "exstaticum" ; -- [FEXEM] :: ecstatic; exsterno_V = mkV "exsternare" ; -- [XXXDX] :: terrify greatly, frighten; madden; exstimulo_V = mkV "exstimulare" ; -- [XXXDX] :: goad; stimulate; exstinctio_F_N = mkN "exstinctio" "exstinctionis " feminine ; -- [XWXEE] :: annihilation, slaughter; extinction; dissolution; exstinctivus_A = mkA "exstinctivus" "exstinctiva" "exstinctivum" ; -- [XXXEE] :: extinguishing, annihilating; exstinctor_M_N = mkN "exstinctor" "exstinctoris " masculine ; -- [XWXEE] :: destroyer, annihilator; + exstinguo_V2 = mkV2 (mkV "exstinguere" "exstinguo" "exstinxi" "exstinctus ") ; -- [XXXBX] :: put out, extinguish, quench; kill, destroy; exstirpo_V2 = mkV2 (mkV "exstirpare") ; -- [XXXEC] :: root out, extirpate; pull/pluck out/up by roots; eradicate root and branch; exsto_V = mkV "exstare" ; -- [XXXBX] :: stand forth/out; exist; be extant/visible; be on record; exstructio_F_N = mkN "exstructio" "exstructionis " feminine ; -- [XXXFS] :: building-up; erection; adorning; + exstruo_V2 = mkV2 (mkV "exstruere" "exstruo" "exstruxi" "exstructus ") ; -- [XXXBX] :: pile/build up, raise, build, construct; exsudo_V = mkV "exsudare" ; -- [XXXDX] :: exude; sweat out; exsuffatio_F_N = mkN "exsuffatio" "exsuffationis " feminine ; -- [XXXEE] :: act of blowing; exsufflator_M_N = mkN "exsufflator" "exsufflatoris " masculine ; -- [DXXFS] :: one who blows at/upon; mocker; despiser; @@ -18241,25 +19692,29 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg exsuperabilis_A = mkA "exsuperabilis" "exsuperabilis" "exsuperabile" ; -- [XXXDX] :: able to be overcome; exsupero_V = mkV "exsuperare" ; -- [XXXDX] :: excel; overtop; surpass; overpower; exsurdo_V = mkV "exsurdare" ; -- [XXXEC] :: deafen; make dull or blunt (taste); + exsurgo_V = mkV "exsurgere" "exsurgo" "exsurrexi" "exsurrectus "; -- [XXXBO] :: |rise (to one's feet/from bed/moon/in revolt); stand/rear/get up; come to being; exsurrectio_F_N = mkN "exsurrectio" "exsurrectionis " feminine ; -- [EXXFS] :: arising; exsuscito_V = mkV "exsuscitare" ; -- [XXXDX] :: awaken; kindle; stir up, excite; extasia_F_N = mkN "extasia" ; -- [FEXEF] :: rapture; ecstasy; trance; + extasis_1_N = mkN "extasis" "extasis" feminine ; -- [DXXES] :: terror; amazement; ecstasy; + extasis_2_N = mkN "extasis" "extasos" feminine ; -- [DXXES] :: terror; amazement; ecstasy; extasis_F_N = mkN "extasis" "extasis " feminine ; -- [FEXDF] :: rapture; ecstasy; trance; --- TODO extasis_N : N1 extasis, extasos/is -- F -- [DXXES] :: terror; amazement; ecstasy; extaticus_A = mkA "extaticus" "extatica" "extaticum" ; -- [FEXEM] :: ecstatic; extemplo_Adv = mkAdv "extemplo" ; -- [XXXDX] :: immediately, forthwith; extemporalis_A = mkA "extemporalis" "extemporalis" "extemporale" ; -- [XXXEO] :: unpremeditated, extempore, ad-lib; of a person speaking off the cuff; extemporalitas_F_N = mkN "extemporalitas" "extemporalitatis " feminine ; -- [XGXFO] :: ability to speak/compose extemporaneously; extemporaliter_Adv = mkAdv "extemporaliter" ; -- [DGXFS] :: unpremeditatedly, extemporaneously; off the cuff; at the moment; + extendo_V2 = mkV2 (mkV "extendere" "extendo" "extendi" "extentus ") ; -- [XXXAO] :: |make even/straight/smooth; stretch out in death, (PASS) lie full length; extensio_F_N = mkN "extensio" "extensionis " feminine ; -- [XXXFO] :: span, hand-elbow; extension/stretching/spreading (L+S); swelling/tumor; strain; extensor_M_N = mkN "extensor" "extensoris " masculine ; -- [DXXES] :: stretcher; one who stretches/extends; torturer (using rack); extensus_A = mkA "extensus" "extensa" "extensum" ; -- [XXXFX] :: lengthened (vowel); wide, extended, extensive (L+S); prolonged, drawn out; extensus_M_N = mkN "extensus" "extensus " masculine ; -- [XXXFO] :: extent; stretch; (of eagle's wings); extentero_V2 = mkV2 (mkV "extenterare") ; -- [EXXFW] :: cut open; extenuo_V = mkV "extenuare" ; -- [XXXDX] :: make thin; diminish; --- SLASHSTUFF exter_A : A2 exter, extera -um, exterior -or -us, extremus -a -um -- [XXXCO] :: outer/external; outward; on outside, far; of another country, foreign; strange; + exter_A = mkA "exter" ; -- [XXXCO] :: outer/external; outward; on outside, far; of another country, foreign; strange; extera_F_N = mkN "extera" ; -- [XXXEE] :: foreigner (female); extergeo_V2 = mkV2 (mkV "extergere") ; -- [XXXEE] :: wipe; wipe dry; wipe away; + extergo_V2 = mkV2 (mkV "extergere" "extergo" "extersi" "extersus ") ; -- [FXXEE] :: wipe; wipe dry; wipe away; exteritio_F_N = mkN "exteritio" "exteritionis " feminine ; -- [EXXEP] :: corruption; destruction (Vulgate 4 Ezra 15:39); exterius_Adv = mkAdv "exterius" ; -- [EXXEE] :: outwardly; externally; exterminator_M_N = mkN "exterminator" "exterminatoris " masculine ; -- [XXXEE] :: destroyer; exterminator; @@ -18268,28 +19723,31 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg externo_V = mkV "externare" ; -- [XXXDX] :: terrify greatly, frighten; madden; externus_A = mkA "externus" "externa" "externum" ; -- [XXXBX] :: outward, external; foreign, strange; exterreo_V = mkV "exterrere" ; -- [XXXDX] :: strike with terror, scare; --- SLASHSTUFF exterus_A : A2 exterus, extera -um, exterior -or -us, extimus -a -um -- [DXXES] :: outer/external; outward; on outside, far; of another country, foreign; strange; + exterus_A = mkA "exterus" ; -- [DXXES] :: outer/external; outward; on outside, far; of another country, foreign; strange; exterus_M_N = mkN "exterus" ; -- [XXXEE] :: foreigner (male); --- TODO extimesco_V : V2 extimesco, extimescere, extimui, - -- Declension: 3rd -- Comment: [XXXDX] :: take fright, be alarmed, dread; + extimesco_V2 = mkV2 (mkV "extimescere" "extimesco" "extimui" nonExist ) ; -- [XXXDX] :: take fright, be alarmed, dread; extimulo_V = mkV "extimulare" ; -- [XXXDX] :: goad; stimulate; extimum_N_N = mkN "extimum" ; -- [XXXEO] :: outside; end; extimus_A = mkA "extimus" "extima" "extimum" ; -- [XXXCO] :: outermost; farthest; end/utmost edge of; extinctio_F_N = mkN "extinctio" "extinctionis " feminine ; -- [FXXFM] :: |quenching (esp. of lime, Latham); L:debt-discharge; extinctorium_N_N = mkN "extinctorium" ; -- [EXXEE] :: candlesnuffer; extinguisher; + extinguo_V2 = mkV2 (mkV "extinguere" "extinguo" "extinxi" "extinctus ") ; -- [XWXDX] :: quench, extinguish; kill; destroy; extispex_M_N = mkN "extispex" "extispicis " masculine ; -- [XEXFO] :: soothsayer who practices divination by observation of entrails of victim; + extispicio_V2 = mkV2 (mkV "extispicere" "extispicio" "extipexi" nonExist) ; -- [XEXFW] :: examination of entrails or sacrificial victims as means of divination; extispicum_N_N = mkN "extispicum" ; -- [XEXEO] :: examination of entrails or sacrificial victims as means of divination; extispicus_M_N = mkN "extispicus" ; -- [XEXIO] :: one who practices divination by observation of entrails; exto_V = mkV "extare" ; -- [XXXDX] :: stand out or forth, project be visible, exist, be on record; extollentia_F_N = mkN "extollentia" ; -- [FXXEE] :: insolence; haughtiness; pride; --- TODO extollo_V : V2 extollo, extollere, -, - -- Declension: 3rd -- Comment: [XXXBX] :: raise; lift up; extol, advance; erect (building); + extollo_V = mkV "extollere" "extollo" nonExist nonExist ; -- [XXXBX] :: raise; lift up; extol, advance; erect (building); extorqueo_V = mkV "extorquere" ; -- [XXXBX] :: extort; tear away, twist away; twist/wrench out; extorris_A = mkA "extorris" "extorris" "extorre" ; -- [XXXDX] :: exiled; - extra_Acc_Prep = mkPrep "extra" Acc ; -- [XXXAX] :: outside of, beyond, without, beside; except; + extra_Acc_Prep = mkPrep "extra" acc ; -- [XXXAX] :: outside of, beyond, without, beside; except; extra_Adv = mkAdv "extra" ; -- [XXXDX] :: outside; extractio_F_N = mkN "extractio" "extractionis " feminine ; -- [GXXEK] :: extraction; extractum_N_N = mkN "extractum" ; -- [GSXEK] :: extract (chemistry); extraculum_N_N = mkN "extraculum" ; -- [GXXEK] :: corkscrew; extradiocesanus_A = mkA "extradiocesanus" "extradiocesana" "extradiocesanum" ; -- [FEXFE] :: extradiocesan, outside diocese; + extraho_V2 = mkV2 (mkV "extrahere" "extraho" "extraxi" "extractus ") ; -- [XXXBX] :: drag out; prolong; rescue, extract; remove; extrajudicialis_A = mkA "extrajudicialis" "extrajudicialis" "extrajudiciale" ; -- [ELXEE] :: extrajudicial; outside court; outside course of law; not legally authorized; extrajudicialiter_Adv = mkAdv "extrajudicialiter" ; -- [ELXFE] :: extrajudicially; outside court/law; extramuranus_A = mkA "extramuranus" "extramurana" "extramuranum" ; -- [XXXEE] :: beyond (city) walls; without walls; @@ -18310,9 +19768,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg extrinsecus_Adv = mkAdv "extrinsecus" ; -- [XXXCO] :: from without/outside; externally; from extraneous source; w/no inside knowledge; extritio_F_N = mkN "extritio" "extritionis " feminine ; -- [EXXFP] :: destruction; exhausting wear; misery (Vulgate); extructio_F_N = mkN "extructio" "extructionis " feminine ; -- [XXXFS] :: building-up; erection; adorning; + extrudo_V2 = mkV2 (mkV "extrudere" "extrudo" "extrusi" "extrusus ") ; -- [XXXDX] :: thrust out; draw out; + extruo_V2 = mkV2 (mkV "extruere" "extruo" "extruxi" "extructus ") ; -- [XXXDX] :: pile up; build up, raise; extum_N_N = mkN "extum" ; -- [XXXDX] :: bowels (pl.); entrails of animals (esp. heart, lungs, liver) for divination; extumum_N_N = mkN "extumum" ; -- [XXXEO] :: outside; the end; extumus_A = mkA "extumus" "extuma" "extumum" ; -- [XXXCO] :: outermost; farthest; end/utmost edge of; + extundo_V2 = mkV2 (mkV "extundere" "extundo" "extudi" "extusus ") ; -- [XXXDX] :: beat or strike out produce with effort; exturbo_V = mkV "exturbare" ; -- [XXXDX] :: drive away, put away a wife; exubero_V = mkV "exuberare" ; -- [XXXDX] :: surge or gush up; be abundant, be fruitful; exudo_V = mkV "exudare" ; -- [XXXDX] :: exude; sweat out; @@ -18324,16 +19785,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg exulto_V = mkV "exultare" ; -- [XXXDX] :: jump about; let oneself go; exult; exululo_V = mkV "exululare" ; -- [XXXDX] :: invoke with howls; exundo_V = mkV "exundare" ; -- [XXXDX] :: gush forth; overflow with; + exuo_V2 = mkV2 (mkV "exuere" "exuo" "exui" "exutus ") ; -- [XXXBX] :: pull off; undress, take off; strip, deprive of; lay aside, cast off; exuperabilis_A = mkA "exuperabilis" "exuperabilis" "exuperabile" ; -- [XXXDX] :: able to be overcome; exupero_V = mkV "exuperare" ; -- [XXXDX] :: excel; overtop; surpass; overpower; exurgeo_V2 = mkV2 (mkV "exurgere") ; -- [XXXEO] :: squeeze out; + exurgo_V = mkV "exurgere" "exurgo" "exurrexi" "exurrectus "; -- [XXXBO] :: |rise (to one's feet/from bed/moon/in revolt); stand/rear/get up; come to being; + exuro_V2 = mkV2 (mkV "exurere" "exuro" "exussi" "exustus ") ; -- [XXXBO] :: burn (up/out/completely); destroy/devastate by fire; dry up, parch; scald; exuvia_F_N = mkN "exuvia" ; -- [XXXDX] :: things stripped off (pl.); spoils, booty; memento, something of another's; --- IGNORED f_N : N1 f., abb. -- C -- [XXXDX] :: son/daughter; filius/filia, abb. f.; + f_F_N = constN "f." feminine ; -- [XXXDX] :: son/daughter; filius/filia, abb. f.; + f_M_N = constN "f." masculine ; -- [XXXDX] :: son/daughter; filius/filia, abb. f.; faba_F_N = mkN "faba" ; -- [XXXCO] :: bean (plant/seed); bead, pellet (resembling bean); fabella_F_N = mkN "fabella" ; -- [XXXDX] :: story, fable; play; faber_A = mkA "faber" "fabra" "fabrum" ; -- [XXXDX] :: skillful; ingenious; of craftsman/workman/artisan or his work; faber_M_N = mkN "faber" ; -- [XXXDX] :: workman, artisan; smith; carpenter; fabre_Adv = mkAdv "fabre" ; -- [XXXES] :: skillfully; ingeniously; in workmanlike manner; + fabrefacio_V2 = mkV2 (mkV "fabrefacere" "fabrefacio" "fabrefeci" "fabrefactus ") ; -- [XXXEC] :: make or fashion skillfully; fabrefio_V = mkV "fabreferi" ; -- [DXXEC] :: be made or fashioned skillfully; (fabrefacio PASS); fabrica_F_N = mkN "fabrica" ; -- [XXXBO] :: |workshop, factory; workmanship; plan, device; trick; fabricatio_F_N = mkN "fabricatio" "fabricationis " feminine ; -- [XXXEE] :: structure; something made; act of making; factory-mark (Cal); @@ -18351,13 +19817,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fabulor_V = mkV "fabulari" ; -- [XXXCO] :: talk (familiarly), chat, converse; invent a story, make up a fable; fabulositas_F_N = mkN "fabulositas" "fabulositatis " feminine ; -- [EXXFS] :: fabulous invention (Pliny); fabulosus_A = mkA "fabulosus" "fabulosa" "fabulosum" ; -- [XXXDX] :: storied, fabulous; celebrated in story; + facesso_V2 = mkV2 (mkV "facessere" "facesso" "facessi" "facessitus ") ; -- [XXXDX] :: do; perpetrate; go away; facetia_F_N = mkN "facetia" ; -- [XXXDX] :: wit (pl.), joke; facetus_A = mkA "facetus" "faceta" "facetum" ; -- [XXXDX] :: witty, humorous; clever, adept; fachirus_M_N = mkN "fachirus" ; -- [GXXEK] :: fakir; facialis_A = mkA "facialis" "facialis" "faciale" ; -- [GXXEK] :: facial; facies_F_N = mkN "facies" "faciei " feminine ; -- [XXXAX] :: shape, face, look; presence, appearance; beauty; achievement; facile_Adv =mkAdv "facile" "facilius" "facillime" ; -- [XXXBO] :: easily, readily, without difficulty; generally, often; willingly; heedlessly; --- SLASHSTUFF facilis_A : A2 facilis, facile, facilior -or -us, facillimus -a -um -- [XXXAX] :: easy, easy to do, without difficulty, ready, quick, good natured, courteous; + facilis_A = mkA "facilis" ; -- [XXXAX] :: easy, easy to do, without difficulty, ready, quick, good natured, courteous; facilitas_F_N = mkN "facilitas" "facilitatis " feminine ; -- [XXXDX] :: facility; readiness; good nature; levity; courteousness; faciliter_Adv = mkAdv "faciliter" ; -- [XXXFO] :: easily; (cited as example of pedantry by Quintilianus); facilumed_Adv = mkAdv "facilumed" ; -- [XXXIO] :: easily, readily, without difficulty; generally, often; willingly; heedlessly; @@ -18367,7 +19834,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg facinorose_Adv = mkAdv "facinorose" ; -- [FXXEN] :: viciously; scandalously; (from facinosus); facinorosus_A = mkA "facinorosus" "facinorosa" "facinorosum" ; -- [XXXEC] :: wicked, criminal; vicious; facinus_N_N = mkN "facinus" "facinoris " neuter ; -- [XXXBX] :: deed; crime; outrage; --- IGNORED facio_V : V1 facio, facere, additional, forms -- [XXXBX] :: do, make; create; acquire; cause, bring about, fashion; compose; accomplish; + facio_V2 = mkV2 (mkV "facere" "facio" "feci" "factus ") ; -- [XXXAO] :: |||compose/write; classify; provide; do/perform; commit crime; suppose/imagine; facticius_A = mkA "facticius" "facticia" "facticium" ; -- [FXXEM] :: artificial; skillfully-made; factio_F_N = mkN "factio" "factionis " feminine ; -- [XXXDX] :: party, faction; partisanship; factiosus_A = mkA "factiosus" "factiosa" "factiosum" ; -- [XXXDX] :: factious, seditious, turbulent; @@ -18433,6 +19900,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fallacitas_F_N = mkN "fallacitas" "fallacitatis " feminine ; -- [XXXFO] :: deceptiveness; untrustworthiness; deceit, artifice (L+S); fallaciter_Adv =mkAdv "fallaciter" "fallacius" "fallicissime" ; -- [XXXDO] :: deceptively/deceitfully, with intent to deceive; falsely, in misleading manner; fallax_A = mkA "fallax" "fallacis"; -- [XXXBO] :: deceitful, treacherous; misleading, deceptive; false, fallacious; spurious; + fallo_V2 = mkV2 (mkV "fallere" "fallo" "fefelli" "falsus ") ; -- [XXXAX] :: deceive; slip by; disappoint; be mistaken, beguile, drive away; fail; cheat; falsarius_M_N = mkN "falsarius" ; -- [XXXEE] :: forger; falsidicus_A = mkA "falsidicus" "falsidica" "falsidicum" ; -- [XXXEC] :: lying; falsificatio_F_N = mkN "falsificatio" "falsificationis " feminine ; -- [GXXEK] :: falsification; @@ -18445,7 +19913,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg falsus_A = mkA "falsus" "falsa" "falsum" ; -- [XXXAX] :: wrong, lying, fictitious, spurious, false, deceiving, feigned, deceptive; falx_F_N = mkN "falx" "falcis " feminine ; -- [XXXBX] :: sickle. scythe; pruning knife; curved blade; hook for tearing down walls; fama_F_N = mkN "fama" ; -- [XXXAX] :: rumor; reputation; tradition; fame, public opinion, ill repute; report, news; --- SLASHSTUFF famelicus_A : A2 famelicus, famelica -um, famelicior -or -us, famelicissimus -a -um -- [XXXCO] :: famished, starved; hungry; + famelicus_A = mkA "famelicus" ; -- [XXXCO] :: famished, starved; hungry; famen_N_N = mkN "famen" "faminis " neuter ; -- [FXXEM] :: utterance, articulation; word (Nelson); fames_F_N = mkN "fames" "famis " feminine ; -- [XXXAX] :: hunger; famine; want; craving; famigerabilis_A = mkA "famigerabilis" "famigerabilis" "famigerabile" ; -- [XXXES] :: famous, celebrated; @@ -18457,8 +19925,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg familiaris_M_N = mkN "familiaris" "familiaris " masculine ; -- [XXXCO] :: member of household (family/servant/esp. slave); familiar acquaintance/friend; familiaritas_F_N = mkN "familiaritas" "familiaritatis " feminine ; -- [XXXDX] :: intimacy; close friendship; familiarity; familiariter_Adv = mkAdv "familiariter" ; -- [XXXDX] :: on friendly terms; --- SLASHSTUFF familicus_A : A2 familicus, familica -um, familicior -or -us, familicissimus -a -um -- [FXXDE] :: famished, starved; hungry; --- SLASHSTUFF famosus_A : A2 famosus, famosa -um, famosior -or -us, famosissimus -a -um -- [XXXCO] :: famous, noted, renowned; talked of; infamous, notorious; slanderous, libelous; + familicus_A = mkA "familicus" ; -- [FXXDE] :: famished, starved; hungry; + famosus_A = mkA "famosus" ; -- [XXXCO] :: famous, noted, renowned; talked of; infamous, notorious; slanderous, libelous; famula_F_N = mkN "famula" ; -- [XXXDX] :: slave (female), maid, handmaiden, maid-servant; temple attendant; famulamen_N_N = mkN "famulamen" "famulaminis " neuter ; -- [FXXFM] :: servanthood; famularis_A = mkA "famularis" "famularis" "famulare" ; -- [XXXDX] :: of slaves, servile; @@ -18480,6 +19948,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg far_N_N = mkN "far" "farris " neuter ; -- [XXXDX] :: husked wheat; grain, spelt; coarse meal, grits; sacrificial meal; dog's bread; farciatura_F_N = mkN "farciatura" ; -- [FXXEE] :: insertion; farcimen_N_N = mkN "farcimen" "farciminis " neuter ; -- [XXXDX] :: sausage; + farcio_V2 = mkV2 (mkV "farcire" "farcio" "farsi" "fartus ") ; -- [XXXDX] :: stuff, fill up/completely; gorge oneself; insert as stuffing, cram (into); farina_F_N = mkN "farina" ; -- [XXXDX] :: flour/meal (for dough/pastry); stuff persons made of; dust/powder (grinding); farinatus_A = mkA "farinatus" "farinata" "farinatum" ; -- [GXXEK] :: powdery; flour-like; farinula_F_N = mkN "farinula" ; -- [EXXEE] :: fine flour; small amount of flour; @@ -18488,7 +19957,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg farreus_A = mkA "farreus" "farrea" "farreum" ; -- [XXXDX] :: made of spelt or wheat ("corn") or meal; fars_F_N = mkN "fars" "fartis " feminine ; -- [XXXEO] :: stuffing; minced meat; farsia_F_N = mkN "farsia" ; -- [EEXFE] :: insertion into parts of Mass; --- IGNORED fas_N : N1 fas, undeclined -- N -- [XXXBX] :: divine/heaven's law/will/command; that which is right/lawful/moral/allowed; + fas_N = constN "fas" neuter ; -- [XXXBX] :: divine/heaven's law/will/command; that which is right/lawful/moral/allowed; fascea_F_N = mkN "fascea" ; -- [XXXBO] :: band/strip; ribbon; B:bandage; streak/band of cloud; headband/filet; sash (Ecc); fascia_F_N = mkN "fascia" ; -- [XXXBO] :: band/strip; ribbon; B:bandage; streak/band of cloud; headband/filet; sash (Ecc); fasciculus_M_N = mkN "fasciculus" ; -- [XXXDX] :: little bundle/packet; bunch (of flowers); @@ -18502,6 +19971,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fascisticus_A = mkA "fascisticus" "fascistica" "fascisticum" ; -- [GXXEK] :: fascist; faseolus_M_N = mkN "faseolus" ; -- [XAXES] :: kidney-bean; (see also phaseolus); fasianus_A = mkA "fasianus" "fasiana" "fasianum" ; -- [XAXES] :: pheasant; (phasianus); + fastidio_V2 = mkV2 (mkV "fastidire" "fastidio" "fastidivi" "fastiditus ") ; -- [XXXDX] :: disdain; be scornful; feel aversion to, be squeamish; fastidiosus_A = mkA "fastidiosus" "fastidiosa" "fastidiosum" ; -- [XXXDX] :: squeamish; exacting; disdainful; nauseating; fastidium_N_N = mkN "fastidium" ; -- [XXXDX] :: loathing, disgust; squeamishness; scornful contempt, pride; fastidiousness; fastigatus_A = mkA "fastigatus" "fastigata" "fastigatum" ; -- [XXXDX] :: pointed, sharp; wedge shaped; sloping, descending; @@ -18525,7 +19995,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fatigatus_A = mkA "fatigatus" "fatigata" "fatigatum" ; -- [XXXEE] :: weary; fatigo_V = mkV "fatigare" ; -- [XXXBX] :: weary, tire, fatigue; harass; importune; overcome; fatiloqua_F_N = mkN "fatiloqua" ; -- [XXXEC] :: prophetess; --- TODO fatisco_V : V2 fatisco, fatiscere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: gape, crack; crack open, part asunder; grow weak or exhausted, droop; + fatisco_V = mkV "fatiscere" "fatisco" nonExist nonExist ; -- [XXXDX] :: gape, crack; crack open, part asunder; grow weak or exhausted, droop; + fatiscor_V = mkV "fatisci" "fatiscor" nonExist ; -- [XXXDX] :: gape, crack; crack open, part asunder; grow weak or exhausted, droop; fatua_F_N = mkN "fatua" ; -- [XXXEE] :: fool (female); fatue_Adv = mkAdv "fatue" ; -- [XXXEE] :: foolishly; fatuitas_F_N = mkN "fatuitas" "fatuitatis " feminine ; -- [FXXEM] :: foolishness; folly; @@ -18540,15 +20011,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg faux_F_N = mkN "faux" "faucis " feminine ; -- [XXXAO] :: pharynx (usu pl.), gullet/throat/neck/jaws/maw; narrow pass/shaft/strait; chasm; faveo_V = mkV "favere" ; -- [XXXDX] :: favor (w/DAT), befriend, support, back up; favilla_F_N = mkN "favilla" ; -- [XXXBX] :: glowing ashes, embers; spark; ashes; + favillesco_V = mkV "favillescere" "favillesco" "favillescui" nonExist; -- [EXXES] :: be reduced to ashes; favisor_M_N = mkN "favisor" "favisoris " masculine ; -- [XXXEO] :: patron, protector; admirer; supporter, partisan; favitor_M_N = mkN "favitor" "favitoris " masculine ; -- [XXXCS] :: patron, protector; admirer; supporter, partisan; favonius_M_N = mkN "favonius" ; -- [GXXEK] :: hair dryer; favor_M_N = mkN "favor" "favoris " masculine ; -- [XXXDX] :: favor, goodwill; bias; applause; --- SLASHSTUFF favorabilis_A : A2 favorabilis, favorabile, favorabilior -or -us, favorabilissimus -a -um -- [XXXBO] :: popular, treated/regarded with favor, favored; win favor, conciliatory; + favorabilis_A = mkA "favorabilis" ; -- [XXXBO] :: popular, treated/regarded with favor, favored; win favor, conciliatory; favorabiliter_Adv =mkAdv "favorabiliter" "favorabilius" "favorabilissime" ; -- [XLXCO] :: so as to win favor; stretching a point to favor one side, indulgently; favus_M_N = mkN "favus" ; -- [XXXDX] :: honeycomb; fax_F_N = mkN "fax" "facis " feminine ; -- [XPXAX] :: torch, firebrand, fire; flame of love; torment; --- IGNORED fe_N : N1 fe, undeclined -- N -- [DEQEW] :: pe; (17th letter of Hebrew alphabet); (transliterate as P or F); + fe_N = constN "fe" neuter ; -- [DEQEW] :: pe; (17th letter of Hebrew alphabet); (transliterate as P or F); febricito_V = mkV "febricitare" ; -- [XBXDO] :: have fever, be feverish, be ill of a fever; febricula_F_N = mkN "febricula" ; -- [XXXEC] :: slight fever, feverishness; febris_F_N = mkN "febris" "febris " feminine ; -- [XXXDX] :: fever, attack of fever; @@ -18558,16 +20030,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fecundatio_F_N = mkN "fecundatio" "fecundationis " feminine ; -- [XXXEE] :: fertilization; act of making fertile/fruitful/productive; fecunditas_F_N = mkN "fecunditas" "fecunditatis " feminine ; -- [XXXFE] :: fruitfulness; fecundo_V2 = mkV2 (mkV "fecundare") ; -- [XXXEO] :: make fertile/fruitful; --- SLASHSTUFF fecundus_A : A2 fecundus, fecunda -um, fecundior -or -us, fecundissimus -a -um -- [XXXBO] :: fertile, fruitful; productive (of offspring), prolific; abundant; imaginative; + fecundus_A = mkA "fecundus" ; -- [XXXBO] :: fertile, fruitful; productive (of offspring), prolific; abundant; imaginative; feditas_F_N = mkN "feditas" "feditatis " feminine ; -- [FXXFM] :: filthy object; nuisance; fedus_M_N = mkN "fedus" ; -- [BAXEO] :: kid, young goat; two stars in constellation Auriga (Charioteer), "The Kid"; fefello_V = mkV "fefellare" ; -- [FXXEN] :: be failed(by); be disappointed(with); feficius_A = mkA "feficius" "feficia" "feficium" ; -- [DEXDS] :: deifies, who makes one a god; consecrated, sacred; [lues ~ => epilepsy]; --- IGNORED fel_A : A2 fel., abb. -- [FEXEE] :: happy; [fel. (felis) mem. (memoriae)/rec. (recordationis) => of happy memory]; + fel_A = constA "fel" ; -- [FEXEE] :: happy; [fel. (felis) mem. (memoriae)/rec. (recordationis) => of happy memory]; fel_N_N = mkN "fel" "fellis " neuter ; -- [XBXCC] :: gall, bile; poison; bitterness, venom; gall bladder; feles_F_N = mkN "feles" "felis " feminine ; -- [XAXCO] :: cat; marten/ferret/polecat/wild cat; mouser; inveigler, seducer, tom-cat; thief; felicitas_F_N = mkN "felicitas" "felicitatis " feminine ; -- [XXXDX] :: luck, good fortune; happiness; feliciter_Adv = mkAdv "feliciter" ; -- [XXXDX] :: happily; + felio_V = mkV "felire" "felio" "felivi" "felitus "; -- [XAXFO] :: roar/cry (expressing the cry of a leopard); felis_F_N = mkN "felis" "felis " feminine ; -- [XAXEO] :: cat; marten/ferret/polecat/wild cat; mouser; inveigler, seducer, tom-cat; thief; felix_A = mkA "felix" "felicis"; -- [XXXAX] :: happy; blessed; fertile; favorable; lucky; successful, fruitful; fellato_V = mkV "fellatare" ; -- [FXXFQ] :: suck (milk) (from); fellate, practice fellatio; (active participant); @@ -18606,7 +20079,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg feoffator_M_N = mkN "feoffator" "feoffatoris " masculine ; -- [FLXFJ] :: enfeoffor; one who settles land under feudal system; feoffatus_M_N = mkN "feoffatus" ; -- [FLXFJ] :: enfeofee; land recipient by fief under feudal system; feoffo_V = mkV "feoffare" ; -- [FLXFJ] :: enfeoff, infeft (Scot.); invest with fief; put in legal possession; --- IGNORED fer_N : N1 fer., abb. -- F -- [FXXEE] :: weekday; abb. of feria; [(w/ordinals) quintus feria => fifth day/Thursday]; + fer_N = constN "fer." feminine ; -- [FXXEE] :: weekday; abb. of feria; [(w/ordinals) quintus feria => fifth day/Thursday]; fera_F_N = mkN "fera" ; -- [XXXDX] :: wild beast/animal; feralis_A = mkA "feralis" "feralis" "ferale" ; -- [XXXDX] :: funereal; deadly, fatal; feraliter_Adv = mkAdv "feraliter" ; -- [XXXEE] :: in savage manner; @@ -18626,7 +20099,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fericulum_N_N = mkN "fericulum" ; -- [XXXBE] :: food tray; dish, course; food; bread; bier (Ecc); litter; ferina_F_N = mkN "ferina" ; -- [XXXDX] :: game, flesh of wild animals; ferinus_A = mkA "ferinus" "ferina" "ferinum" ; -- [XXXDX] :: of wild beasts; --- TODO ferio_V : V2 ferio, ferire, -, - -- Declension: 4th -- Comment: [XXXBX] :: hit, strike; strike a bargain; kill, slay; + ferio_V = mkV "ferire" "ferio" nonExist nonExist ; -- [XXXBX] :: hit, strike; strike a bargain; kill, slay; ferior_V = mkV "feriari" ; -- [EXXDE] :: rest from work/labor; keep/celebrate holiday; feritas_F_N = mkN "feritas" "feritatis " feminine ; -- [XXXBO] :: wildness, barbaric/savage/uncultivated state; savagery, ferocity; brutality; ferito_V = mkV "feritare" ; -- [FXXFY] :: strike, deal blows; fight; @@ -18637,6 +20110,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fermentum_N_N = mkN "fermentum" ; -- [XXXCO] :: fermentation, leavening (process/cause); yeast; ferment/passion; sour/spoil; fero_V = mkV "ferre" "fero" "tuli" "latus " ; -- Comment: [XXXAX] :: bring, bear; tell/speak of; consider; carry off, win, receive, produce; get; ferocia_F_N = mkN "ferocia" ; -- [XXXDX] :: fierceness, ferocity; insolence; + ferocio_V = mkV "ferocire" "ferocio" nonExist nonExist; -- [XXXDO] :: rampage, act in a fierce/violent/savage manner; ferocitas_F_N = mkN "ferocitas" "ferocitatis " feminine ; -- [XXXDX] :: fierceness, savageness, excessive spirits; aggressiveness; ferociter_Adv =mkAdv "ferociter" "ferocius" "ferocissime" ; -- [XXXCO] :: fiercely/ferociously/aggressively; arrogantly/insolently/defiantly; boldly; ferox_A = mkA "ferox" "ferocis"; -- [XXXAX] :: wild, bold; warlike; cruel; defiant, arrogant; @@ -18660,7 +20134,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ferrum_N_N = mkN "ferrum" ; -- [XXXAX] :: iron; any tool of iron; weapon, sword; ferrumen_N_N = mkN "ferrumen" "ferruminis " neuter ; -- [EXXFS] :: cement; solder; glue; iron-rust (Pliny); ferrumino_V = mkV "ferruminare" ; -- [XXXES] :: cement, solder; glue; bind; --- SLASHSTUFF fertilis_A : A2 fertilis, fertile, fertilior -or -us, fertilissimus -a -um -- [XXXDX] :: fertile, fruitful; abundant; + fertilis_A = mkA "fertilis" ; -- [XXXDX] :: fertile, fruitful; abundant; fertilisatio_F_N = mkN "fertilisatio" "fertilisationis " feminine ; -- [GXXEK] :: fertilization; fertilitas_F_N = mkN "fertilitas" "fertilitatis " feminine ; -- [XXXDX] :: fruitfulness, fertility; fertum_N_N = mkN "fertum" ; -- [XEXEC] :: sacrificial cake; @@ -18668,10 +20142,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ferumino_V = mkV "feruminare" ; -- [XXXES] :: cement, solder; glue; bind; ferus_A = mkA "ferus" "fera" "ferum" ; -- [XXXAX] :: wild, savage; uncivilized; untamed; fierce; ferus_C_N = mkN "ferus" ; -- [XXXDX] :: wild beast/animal; wild/untamed horse/boar; + fervefacio_V2 = mkV2 (mkV "fervefacere" "fervefacio" "fervefeci" "fervefactus ") ; -- [XXXDX] :: heat; melt; boil; make (intensely) hot; fervens_A = mkA "fervens" "ferventis"; -- [XXXDX] :: red hot, boiling hot; burning; inflamed, impetuous; fervent/zealous (Bee); ferveo_V = mkV "fervere" ; -- [XXXAO] :: |be warm/aroused/inflamed/feverish, reek (w/blood); be active/busy/agitated; --- TODO fervesco_V : V2 fervesco, fervescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: grow hot; + fervesco_V = mkV "fervescere" "fervesco" nonExist nonExist ; -- [XXXDX] :: grow hot; fervidus_A = mkA "fervidus" "fervida" "fervidum" ; -- [XXXDX] :: glowing; boiling hot; fiery, torrid, roused, fervid; hot blooded; + fervo_V = mkV "fervere" "fervo" "fervi" nonExist; -- [XXXAO] :: |be warm/aroused/inflamed/feverish, reek (w/blood); be active/busy/agitated; fervor_M_N = mkN "fervor" "fervoris " masculine ; -- [XXXDX] :: heat, boiling heat; boiling, fermenting; ardor, passion, fury; intoxication; fessus_A = mkA "fessus" "fessa" "fessum" ; -- [XXXAX] :: tired, wearied, fatigued, exhausted; worn out, weak, feeble, infirm, sick; festinanter_Adv =mkAdv "festinanter" "festinantius" "festinissime" ; -- [XXXCO] :: promptly, speedily, quickly; with (excessive/undue) haste; hurriedly; @@ -18684,7 +20160,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg festive_Adv =mkAdv "festive" "festivius" "festivissime" ; -- [XXXCO] :: festively, with feasting; delightfully, neatly; amusingly, humorously, wittily; festivitas_F_N = mkN "festivitas" "festivitatis " feminine ; -- [XXXBO] :: festivity, feast; conviviality, charm; heart's delight; humor (speaker), wit; festiviter_Adv = mkAdv "festiviter" ; -- [XXXEO] :: gaily, festively; wittily; --- SLASHSTUFF festivus_A : A2 festivus, festiva -um, festivior -or -us, festivissimus -a -um -- [XXXBO] :: feast/festive (day); excellent/fine; jovial, genial; lively (speech), witty; + festivus_A = mkA "festivus" ; -- [XXXBO] :: feast/festive (day); excellent/fine; jovial, genial; lively (speech), witty; festuca_F_N = mkN "festuca" ; -- [XXXDX] :: straw; stalk (used in manumission); ram for beating down earth, piledriver; festucula_F_N = mkN "festucula" ; -- [XXXDX] :: chaff; festum_N_N = mkN "festum" ; -- [XXXBX] :: holiday; festival; feast day; day in memory of saint/event (usu. pl.) (Bee); @@ -18734,11 +20210,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fideicommissarius_M_N = mkN "fideicommissarius" ; -- [XLXEO] :: of fideicommissa/conferring by will requesting executor to deliver to 3rd party; fideicommissum_N_N = mkN "fideicommissum" ; -- [XLXDO] :: bequest in form of request rather than command to heir (to act/pass on); trust; fideicommissus_A = mkA "fideicommissus" "fideicommissa" "fideicommissum" ; -- [XLXEO] :: entrusted; conferred by will requesting executor to deliver to third party; + fideicommitto_V2 = mkV2 (mkV "fideicommittere" "fideicommitto" "fideicommisi" "fideicommissus ") ; -- [ELXES] :: leave by will; bequeath; fideiubeo_V2 = mkV2 (mkV "fideiubere") ; -- [XLXDO] :: become surety; go bail; guarantee; fideiussor_M_N = mkN "fideiussor" "fideiussoris " masculine ; -- [XLXEO] :: guarantor, one who gives surety or goes bail; fidejussorius_A = mkA "fidejussorius" "fidejussoria" "fidejussorium" ; -- [ELXFS] :: of surety; fidelia_F_N = mkN "fidelia" ; -- [XXXFS] :: earthen pot (esp. for whitewash); --- SLASHSTUFF fidelis_A : A2 fidelis, fidele, fidelior -or -us, fidelissimus -a -um -- [XXXBO] :: faithful/loyal/devoted; true/trustworthy/dependable/reliable; constant/lasting; + fidelis_A = mkA "fidelis" ; -- [XXXBO] :: faithful/loyal/devoted; true/trustworthy/dependable/reliable; constant/lasting; fidelitas_F_N = mkN "fidelitas" "fidelitatis " feminine ; -- [XXXDX] :: faithfulness, fidelity; fideliter_Adv =mkAdv "fideliter" "fidelius" "fidelissime" ; -- [EEXEP] :: |with reliance on God; fidens_A = mkA "fidens" "fidentis"; -- [XXXDX] :: confident; bold; @@ -18748,6 +20225,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fidicinus_A = mkA "fidicinus" "fidicina" "fidicinum" ; -- [XXXEC] :: of lute playing; fidicula_F_N = mkN "fidicula" ; -- [XXXEC] :: little lyre or lute (usu. pl.); an instrument for torture; fidis_F_N = mkN "fidis" "fidis " feminine ; -- [XXXBO] :: chord, instrument string; constellation Lyra; stringed instrument (pl.); lyre; + fido_1_V2 = mkV2 (mkV "fidere" "fido" "fisus") Dat_Prep ;-- [XXXDX] :: trust (in), have confidence (in) (w/DAT or ABL); + fido_2_V2 = mkV2 (mkV "fidere" "fido" "fisus") Abl_Prep ;-- [XXXDX] :: trust (in), have confidence (in) (w/DAT or ABL); fiducia_F_N = mkN "fiducia" ; -- [XXXDX] :: trust, confidence; faith, reliance; courage; fiducialiter_Adv =mkAdv "fiducialiter" "fiducialius" "fiducialissime" ; -- [XXXES] :: confidently, with confidence; boldly (Souter); faithfully; fiduciarius_A = mkA "fiduciarius" "fiduciaria" "fiduciarium" ; -- [XXXDX] :: holding on trust; held on trust; @@ -18755,6 +20234,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg figilina_F_N = mkN "figilina" ; -- [XTXCO] :: pottery-work; pottery (pl.), potter's workshop; figlina_F_N = mkN "figlina" ; -- [XTXCO] :: pottery-work; pottery (pl.), potter's workshop; figmentum_N_N = mkN "figmentum" ; -- [XXXDO] :: figment, fiction, invention, unreality; thing formed/devised; image; + figo_V2 = mkV2 (mkV "figere" "figo" "fixi" "fixus ") ; -- [XXXBX] :: fasten, fix; pierce, transfix; establish; figulina_F_N = mkN "figulina" ; -- [XTXCO] :: pottery-work; pottery (pl.), potter's workshop; figulus_M_N = mkN "figulus" ; -- [XXXCO] :: potter; maker of earthenware vessels; figura_F_N = mkN "figura" ; -- [XXXBX] :: shape, form, figure, image; beauty; style; figure of speech; @@ -18781,8 +20261,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg finaliter_Adv = mkAdv "finaliter" ; -- [FXXDM] :: finally; purposefully; finalus_A = mkA "finalus" "finala" "finalum" ; -- [FXXEO] :: of/concerned w/boundaries; limited/bounded (Souter); of ultimate goal; finctus_A = mkA "finctus" "fincta" "finctum" ; -- [EXXEW] :: produced, formed, created; [primus/prior finctus => first-formed/original]; - fine_Abl_Prep = mkPrep "fine" Abl ; -- [XXXDX] :: up to; - fini_Abl_Prep = mkPrep "fini" Abl ; -- [XXXDX] :: up to; + findo_V2 = mkV2 (mkV "findere" "findo" "fidi" "fissus ") ; -- [XXXDX] :: split, cleave, divide; + fine_Abl_Prep = mkPrep "fine" abl ; -- [XXXDX] :: up to; + fingo_V2 = mkV2 (mkV "fingere" "fingo" "fixi" "finctus ") ; -- [XXXEO] :: ||make up (story/excuse); pretend, pose; forge, counterfeit; act insincerely; + fini_Abl_Prep = mkPrep "fini" abl ; -- [XXXDX] :: up to; + finio_V2 = mkV2 (mkV "finire" "finio" "finivi" "finitus ") ; -- [XXXBX] :: limit, end; finish; determine, define; mark out the boundaries; finis_F_N = mkN "finis" "finis " feminine ; -- [XXXAX] :: boundary, end, limit, goal; (pl.) country, territory, land; finis_M_N = mkN "finis" "finis " masculine ; -- [XXXAX] :: boundary, end, limit, goal; (pl.) country, territory, land; finitimus_A = mkA "finitimus" "finitima" "finitimum" ; -- [XXXDX] :: neighboring, bordering, adjoining; @@ -18799,7 +20282,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg firmiter_Adv = mkAdv "firmiter" ; -- [XXXDX] :: really, strongly, firmly; steadfastly; firmitudo_F_N = mkN "firmitudo" "firmitudinis " feminine ; -- [XXXDX] :: stability; strength; firmo_V = mkV "firmare" ; -- [XXXBX] :: strengthen, harden; support; declare; prove, confirm, establish; --- SLASHSTUFF firmus_A : A2 firmus, firma -um, firmior -or -us, firmissimus -a -um -- [XXXAO] :: |loyal/staunch/true/constant; stable/mature; valid/convincing/well founded; + firmus_A = mkA "firmus" ; -- [XXXAO] :: |loyal/staunch/true/constant; stable/mature; valid/convincing/well founded; fiscale_N_N = mkN "fiscale" "fiscalis " neuter ; -- [XLXEO] :: revenues/monies (pl.) due to imperial treasury; fiscalis_A = mkA "fiscalis" "fiscalis" "fiscale" ; -- [XLXDO] :: of/connected with imperial treasury/revenues; fiscal, of money; fiscella_F_N = mkN "fiscella" ; -- [XXXDX] :: small wicker-basket; @@ -18817,12 +20300,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg flabellum_N_N = mkN "flabellum" ; -- [XXXEC] :: small fan; flabrum_N_N = mkN "flabrum" ; -- [XXXDX] :: gusts/blasts of wind (pl.); breezes; flacceo_V = mkV "flaccere" ; -- [XXXEC] :: be flabby; fail. flag; + flaccesco_V = mkV "flaccescere" "flaccesco" "flaccui" nonExist; -- [XXXEC] :: begin to flag, become flabby; flaccidus_A = mkA "flaccidus" "flaccida" "flaccidum" ; -- [XXXDX] :: flaccid, flabby; flagello_V2 = mkV2 (mkV "flagellare") ; -- [XXXCO] :: flog, whip, lash, scourge; strike repeatedly; thresh/flail (grain); "whip up"; flagellum_N_N = mkN "flagellum" ; -- [XXXBO] :: whip, lash, scourge; thong (javelin); vine shoot; arm/tentacle (of polyp); flagitatio_F_N = mkN "flagitatio" "flagitationis " feminine ; -- [XXXDX] :: importunate request, demand; flagitator_M_N = mkN "flagitator" "flagitatoris " masculine ; -- [XXXDX] :: importuner, dun; --- SLASHSTUFF flagitiosus_A : A2 flagitiosus, flagitiosa -um, flagitiosior -or -us, flagitiosissimus -a -um -- [XXXDX] :: disgraceful, shameful; infamous, scandalous; profligate, dissolute; + flagitiosus_A = mkA "flagitiosus" ; -- [XXXDX] :: disgraceful, shameful; infamous, scandalous; profligate, dissolute; flagitium_N_N = mkN "flagitium" ; -- [XXXDX] :: shame, disgrace; scandal, shameful act, outrage, disgraceful thing; scoundrel; flagito_V = mkV "flagitare" ; -- [XXXDX] :: demand urgently; require; entreat, solicit, press, dun, importune; flagrans_A = mkA "flagrans" "flagrantis"; -- [XXXBO] :: |burning (w/desire), ardent/passionate; outrageous (crime), monstrous, flagrant; @@ -18853,12 +20337,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg flatus_M_N = mkN "flatus" "flatus " masculine ; -- [XXXDX] :: blowing; snorting; breath; breeze; flavedo_F_N = mkN "flavedo" "flavedinis " feminine ; -- [FXXFM] :: yellowness; yellow-color; flaveo_V = mkV "flavere" ; -- [XXXDX] :: be yellow or gold-colored; --- TODO flavesco_V : V2 flavesco, flavescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: become/turn yellow/gold; + flavesco_V = mkV "flavescere" "flavesco" nonExist nonExist ; -- [XXXDX] :: become/turn yellow/gold; flavitas_F_N = mkN "flavitas" "flavitatis " feminine ; -- [FXXEM] :: yellowness; glitter; flavor_F_N = mkN "flavor" "flavoris " feminine ; -- [GXXFT] :: yellowness; (Erasmus); flavus_A = mkA "flavus" "flava" "flavum" ; -- [XXXBX] :: yellow, golden, gold colored; flaxen, blond; golden-haired (Latham); flebile_Adv = mkAdv "flebile" ; -- [XXXDO] :: lamentably, dolefully, tearfully; flebilis_A = mkA "flebilis" "flebilis" "flebile" ; -- [XXXBO] :: lamentable, causing/worthy of/accompanied by tears; doleful, tearful, weeping; + flecto_V2 = mkV2 (mkV "flectere" "flecto" "flexi" "flexus ") ; -- [XXXBX] :: bend, curve, bow; turn, curl; persuade, prevail on, soften; fleo_V = mkV "flere" ; -- [XXXAX] :: cry for; cry, weep; fletus_M_N = mkN "fletus" "fletus " masculine ; -- [XXXDX] :: weeping, crying, tears; wailing; lamenting; flexanimus_A = mkA "flexanimus" "flexanima" "flexanimum" ; -- [XXXFS] :: head-swaying; moving; touched; moved; @@ -18867,14 +20352,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg flexilis_A = mkA "flexilis" "flexilis" "flexile" ; -- [XXXDX] :: pliant, pliable, supple; flexiloquus_A = mkA "flexiloquus" "flexiloqua" "flexiloquum" ; -- [XXXEC] :: equivocal, ambiguous; flexipes_A = mkA "flexipes" "flexipedis"; -- [XXXEC] :: crooked-footed, twining; --- SLASHSTUFF flexuosus_A : A2 flexuosus, flexuosa -um, flexuosior -or -us, flexuosissimus -a -um -- [XXXCO] :: curved; with many curves in it, full of bends/turns; winding/sinuous/tortuous; + flexuosus_A = mkA "flexuosus" ; -- [XXXCO] :: curved; with many curves in it, full of bends/turns; winding/sinuous/tortuous; flexus_M_N = mkN "flexus" "flexus " masculine ; -- [XXXDX] :: turning, winding; swerve; bend; turning point; flictus_M_N = mkN "flictus" "flictus " masculine ; -- [XXXEC] :: striking together, dashing against; + fligo_V2 = mkV2 (mkV "fligere" "fligo" nonExist nonExist) ; -- [XXXEC] :: beat or dash down; flo_V = mkV "flare" ; -- [XXXDX] :: breathe; blow; + floccifacio_V2 = mkV2 (mkV "floccifacere" "floccifacio" "floccifeci" "floccifactus ") ; -- [XXXFS] :: consider unimportant; + floccipendo_V2 = mkV2 (mkV "floccipendere" "floccipendo" "floccipependi" "floccipensus ") ; -- [XXXDO] :: take (little) account of, consider of no/any importance); (usu. negative); floccus_M_N = mkN "floccus" ; -- [XXXCO] :: tuft/wisp of wool; [(non) ~i facere/pendere => to consider of no importance]; florens_A = mkA "florens" "florentis"; -- [XXXDX] :: blooming/in bloom, flowering; flowery, bright/shining; flourishing, prosperous; floreo_V = mkV "florere" ; -- [XXXAX] :: flourish, blossom, be prosperous; be in one's prime; --- TODO floresco_V : V2 floresco, florescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: (begin to) blossom; increase in physical vigor or renown; + floresco_V = mkV "florescere" "floresco" nonExist nonExist ; -- [XXXDX] :: (begin to) blossom; increase in physical vigor or renown; floreus_A = mkA "floreus" "florea" "floreum" ; -- [XXXDX] :: flowery; floridus_A = mkA "floridus" "florida" "floridum" ; -- [XXXBX] :: blooming; flowery; florid; florifer_A = mkA "florifer" "florifera" "floriferum" ; -- [XXXEO] :: flowery; flower bearing, producing flowers; carrying flowers; @@ -18896,6 +20384,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fluidus_A = mkA "fluidus" "fluida" "fluidum" ; -- [XXXDX] :: liquid; soft, feeble; fluito_V = mkV "fluitare" ; -- [XXXDX] :: float; flow; waver; flumen_N_N = mkN "flumen" "fluminis " neuter ; -- [XXXBO] :: river, stream; any flowing fluid; flood; onrush; [adverso ~ => against current]; + fluo_V2 = mkV2 (mkV "fluere" "fluo" "fluxi" "fluxus ") ; -- [XXXAX] :: flow, stream; emanate, proceed from; fall gradually; fluorescens_A = mkA "fluorescens" "fluorescentis"; -- [GXXEK] :: fluorescent; fluorescentia_F_N = mkN "fluorescentia" ; -- [GXXEK] :: fluorescence; flustrum_N_N = mkN "flustrum" ; -- [EXXDM] :: stream; ford; swell (pl.), rough sea; calm, quiet state of sea (OLD); @@ -18917,6 +20406,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg focus_M_N = mkN "focus" ; -- [XXXBX] :: hearth, fireplace; altar; home, household, family; cook stove (Cal); fodico_V = mkV "fodicare" ; -- [XXXEC] :: dig, jog; [w/latus => dig in the ribs]; fodina_F_N = mkN "fodina" ; -- [XTXFS] :: mine; pit; + fodio_V2 = mkV2 (mkV "fodere" "fodio" "fodi" "fossus ") ; -- [XXXBX] :: dig, dig out/up; stab; fodorus_M_N = mkN "fodorus" ; -- [FWXFY] :: sheath; fodrum_N_N = mkN "fodrum" ; -- [FAXFM] :: lead fother, load/cartload/ton of lead; fodder, forage, straw; fodrus_M_N = mkN "fodrus" ; -- [FWXFY] :: sheath; @@ -18929,7 +20419,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg foedifragus_A = mkA "foedifragus" "foedifraga" "foedifragum" ; -- [XLXEO] :: treacherous, perfidious; league-breaking; that breaks treaties/agreements; foeditas_F_N = mkN "foeditas" "foeditatis " feminine ; -- [XXXCO] :: |deformity; ugliness/unsightliness; disgrace/shame/infamy; foedo_V2 = mkV2 (mkV "foedare") ; -- [XXXBO] :: |||make (punishment) horrible/barbarous; mangle/hack/mutilate, ravage (land); --- SLASHSTUFF foedus_A : A2 foedus, foeda -um, foedior -or -us, foedissimus -a -um -- [XXXAO] :: |||atrocious, beastly, shocking; repugnant to refined/civilized taste/feelings; + foedus_A = mkA "foedus" ; -- [XXXAO] :: |||atrocious, beastly, shocking; repugnant to refined/civilized taste/feelings; foedus_N_N = mkN "foedus" "foederis " neuter ; -- [XLXAO] :: ||bond/tie (friendship/kinship/hospitality); law/limit (imposed by nature/fate); foenum_N_N = mkN "foenum" ; -- [FXXCE] :: hay; foenus_N_N = mkN "foenus" "foenoris " neuter ; -- [XXXCE] :: interest (on capital), usury; profit, gain; advantage; @@ -18982,6 +20472,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg forinsecus_Adv = mkAdv "forinsecus" ; -- [XXXDX] :: on the outside; foris_Adv = mkAdv "foris" ; -- [XXXAX] :: out of doors, abroad; foris_F_N = mkN "foris" "foris " feminine ; -- [XXXBX] :: door, gate; (the two leaves of) a folding door (pl.); double door; entrance; + forisfacio_V2 = mkV2 (mkV "forisfacere" "forisfacio" "forisfeci" "forisfactus ") ; -- [FLXFJ] :: forfeit; forma_F_N = mkN "forma" ; -- [XXXAX] :: form, figure, appearance; beauty; mold, pattern; formabilis_A = mkA "formabilis" "formabilis" "formabile" ; -- [DEXFS] :: shapeable, formable; that can be formed/fashioned; able to be formed; formalis_A = mkA "formalis" "formalis" "formale" ; -- [GXXEK] :: |formal; @@ -18992,20 +20483,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg formica_F_N = mkN "formica" ; -- [XXXDX] :: ant; formidabilis_A = mkA "formidabilis" "formidabilis" "formidabile" ; -- [XXXDX] :: terrifying; formidilose_Adv =mkAdv "formidilose" "formidilosius" "formidilosissime" ; -- [FXXFN] :: terribly, dreadfully; alarming; in a frightening manner; fearfully/timorously; --- SLASHSTUFF formidilosus_A : A2 formidilosus, formidilosa -um, formidilosior -or -us, formidilosissimus -a -um -- [FXXEN] :: terrible, scary; dangerous, alarming; formidable; fearful/timorous/frightened; + formidilosus_A = mkA "formidilosus" ; -- [FXXEN] :: terrible, scary; dangerous, alarming; formidable; fearful/timorous/frightened; formido_F_N = mkN "formido" "formidinis " feminine ; -- [XXXCO] :: |rope strung with feathers used by hunters to scare game; formido_V = mkV "formidare" ; -- [XXXCO] :: dread, fear, be afraid of; be afraid for (the safety of) (w/DAT); formidolose_Adv =mkAdv "formidolose" "formidolosius" "formidolosissime" ; -- [XXXEO] :: terribly, dreadfully; alarming; in a frightening manner; fearfully/timorously; --- SLASHSTUFF formidolosus_A : A2 formidolosus, formidolosa -um, formidolosior -or -us, formidolosissimus -a -um -- [XXXCO] :: terrible, scary; dangerous, alarming; formidable; fearful/timorous/frightened; + formidolosus_A = mkA "formidolosus" ; -- [XXXCO] :: terrible, scary; dangerous, alarming; formidable; fearful/timorous/frightened; formidulose_Adv =mkAdv "formidulose" "formidulosius" "formidulosissime" ; -- [XXXEO] :: terribly, dreadfully; alarming; in a frightening manner; fearfully/timorously; --- SLASHSTUFF formidulosus_A : A2 formidulosus, formidulosa -um, formidulosior -or -us, formidulosissimus -a -um -- [XXXCO] :: terrible, scary; dangerous, alarming; formidable; fearful/timorous/frightened; + formidulosus_A = mkA "formidulosus" ; -- [XXXCO] :: terrible, scary; dangerous, alarming; formidable; fearful/timorous/frightened; formo_V = mkV "formare" ; -- [XXXBX] :: form, shape, fashion, model; formonse_Adv =mkAdv "formonse" "formonsius" "formonsissime" ; -- [XXXEO] :: beautifully, in a beautiful manner; formonsulus_A = mkA "formonsulus" "formonsula" "formonsulum" ; -- [XXXFO] :: pretty; --- SLASHSTUFF formonsus_A : A2 formonsus, formonsa -um, formonsior -or -us, formonsissimus -a -um -- [XXXBO] :: beautiful, finely formed, handsome, fair; having fine appearance/form; + formonsus_A = mkA "formonsus" ; -- [XXXBO] :: beautiful, finely formed, handsome, fair; having fine appearance/form; formose_Adv =mkAdv "formose" "formosius" "formosissime" ; -- [XXXEO] :: beautifully, in a beautiful manner; formosulus_A = mkA "formosulus" "formosula" "formosulum" ; -- [XXXFO] :: pretty; --- SLASHSTUFF formosus_A : A2 formosus, formosa -um, formosior -or -us, formosissimus -a -um -- [XXXCO] :: beautiful, finely formed, handsome, fair; having fine appearance/form; + formosus_A = mkA "formosus" ; -- [XXXCO] :: beautiful, finely formed, handsome, fair; having fine appearance/form; formula_F_N = mkN "formula" ; -- [XXXAO] :: ||system (of teaching); legal position, status; terms/provisions (law/compact); fornacula_F_N = mkN "fornacula" ; -- [XXXEC] :: little oven; fornax_F_N = mkN "fornax" "fornacis " feminine ; -- [XXXCO] :: furnace/oven/kiln; (baths/smelting/limestone/brick); (goddess of ovens?); @@ -19031,7 +20522,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg forticulus_A = mkA "forticulus" "forticula" "forticulum" ; -- [XXXEC] :: fairly bold; fortificatio_F_N = mkN "fortificatio" "fortificationis " feminine ; -- [FEXDF] :: strengthening, fortifying; fortification; [~ missa => celebration of mass]; fortifico_V2 = mkV2 (mkV "fortificare") ; -- [FXXDF] :: strengthen, fortify, make strong; --- SLASHSTUFF fortis_A : A2 fortis, forte, fortior -or -us, fortissimus -a -um -- [XXXAX] :: strong, powerful, mighty, vigorous, firm, steadfast, courageous, brave, bold; + fortis_A = mkA "fortis" ; -- [XXXAX] :: strong, powerful, mighty, vigorous, firm, steadfast, courageous, brave, bold; fortiter_Adv =mkAdv "fortiter" "fortius" "fortissime" ; -- [XXXDX] :: strongly; bravely; boldly; fortitudo_F_N = mkN "fortitudo" "fortitudinis " feminine ; -- [XXXBX] :: strength, courage, valor; firmness; fortuito_Adv = mkAdv "fortuito" ; -- [XXXDX] :: accidentally, by chance, fortuitously; casually; @@ -19040,7 +20531,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fortuitus_A = mkA "fortuitus" "fortuita" "fortuitum" ; -- [XXXDX] :: casual, accidental, fortuitous, happening by chance; fortuna_F_N = mkN "fortuna" ; -- [XXXAX] :: chance, luck, fate; prosperity; condition, wealth, property; fortunate_Adv = mkAdv "fortunate" ; -- [XXXDX] :: fortunately; --- SLASHSTUFF fortunatus_A : A2 fortunatus, fortunata -um, fortunatior -or -us, fortunatissimus -a -um -- [XXXBX] :: lucky, fortunate; rich, wealthy; happy; blessed; + fortunatus_A = mkA "fortunatus" ; -- [XXXBX] :: lucky, fortunate; rich, wealthy; happy; blessed; fortunium_N_N = mkN "fortunium" ; -- [FXXFM] :: fortune; blessing; fortuno_V2 = mkV2 (mkV "fortunare") ; -- [XXXEC] :: make happy, bless, prosper; foruitus_A = mkA "foruitus" "foruita" "foruitum" ; -- [XXXDX] :: casual; accidental; @@ -19057,6 +20548,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fossor_M_N = mkN "fossor" "fossoris " masculine ; -- [XXXDX] :: one who digs the ground; fovea_F_N = mkN "fovea" ; -- [XXXDX] :: pit, pitfall; foveo_V = mkV "fovere" ; -- [XXXBX] :: keep warm; favor, cherish, maintain, foster; + fracesco_V = mkV "fracescere" "fracesco" "fracui" nonExist; -- [XXXEO] :: become soft/mushy; become mellow/tractable (L+S); spoil, rot, become rancid; fractio_F_N = mkN "fractio" "fractionis " feminine ; -- [GSXEK] :: fraction (math.); fragilis_A = mkA "fragilis" "fragilis" "fragile" ; -- [XXXBX] :: brittle, frail; impermanent; fragilitas_F_N = mkN "fragilitas" "fragilitatis " feminine ; -- [XXXDX] :: brittleness; frailty; @@ -19073,6 +20565,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg framea_F_N = mkN "framea" ; -- [XWGEO] :: spear used by the Germani; francomurarius_M_N = mkN "francomurarius" ; -- [GXXEK] :: freemason; francus_M_N = mkN "francus" ; -- [GXXEK] :: franc (currency); + frango_V2 = mkV2 (mkV "frangere" "frango" "fregi" "fractus ") ; -- [XXXAX] :: break, shatter, crush; dishearten, subdue, weaken; move, discourage; frater_M_N = mkN "frater" "fratris " masculine ; -- [XXXAX] :: brother; cousin; fraterculus_M_N = mkN "fraterculus" ; -- [XXXEO] :: little brother; fraternitas_F_N = mkN "fraternitas" "fraternitatis " feminine ; -- [XXXDO] :: brotherhood, fraternity; the relationship of brothers; @@ -19081,7 +20574,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fraudo_V2 = mkV2 (mkV "fraudare") ; -- [XXXBO] :: |embezzle, take (money) dishonestly, steal; violate; evade/trick intent of law; fraudulenter_Adv =mkAdv "fraudulenter" "fraudulentius" "fraudulentissime" ; -- [XXXCO] :: fraudulently, deceitfully; dishonestly; falsely; fraudulentia_F_N = mkN "fraudulentia" ; -- [XXXFO] :: fraud, deceit; dishonesty; knavery; deceitfulness; disposition to defraud; --- SLASHSTUFF fraudulentus_A : A2 fraudulentus, fraudulenta -um, fraudulentior -or -us, fraudulentissimus -a -um -- [XXXCO] :: fraudulent, deceitful; dishonest; false; + fraudulentus_A = mkA "fraudulentus" ; -- [XXXCO] :: fraudulent, deceitful; dishonest; false; fraudulosus_A = mkA "fraudulosus" "fraudulosa" "fraudulosum" ; -- [XXXFO] :: fraudulent, deceitful; dishonest; false; fraus_F_N = mkN "fraus" "fraudis " feminine ; -- [XXXBX] :: fraud; trickery, deceit; imposition, offense, crime; delusion; fraxineus_A = mkA "fraxineus" "fraxinea" "fraxineum" ; -- [XXXDX] :: of ash; ashen; @@ -19090,8 +20583,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fremebundus_A = mkA "fremebundus" "fremebunda" "fremebundum" ; -- [XXXEC] :: roaring, murmuring; fremitus_A = mkA "fremitus" "fremita" "fremitum" ; -- [XXXDX] :: roaring, noisy; shouting, raging, growling, snorting, howling; fremitus_M_N = mkN "fremitus" "fremitus " masculine ; -- [XXXDX] :: roar, loud noise; shouting; resounding; rushing, murmuring, humming; growl; + fremo_V2 = mkV2 (mkV "fremere" "fremo" "fremui" "fremitus ") ; -- [XXXDX] :: roar; growl; rage; murmur, clamor for; fremor_M_N = mkN "fremor" "fremoris " masculine ; -- [XXXDX] :: low/confused noise/roaring, murmur; frendeo_V = mkV "frendere" ; -- [XXXDX] :: gnash the teeth, grind up small; + frendo_V2 = mkV2 (mkV "frendere" "frendo" "frendui" "fresus ") ; -- [XXXDX] :: gnash the teeth, grind up small; freno_V = mkV "frenare" ; -- [XXXDX] :: brake, curb, restrain, check; frenum_N_N = mkN "frenum" ; -- [XXXAO] :: bridle/harness/rein/bit; harnessed horses/team; check/restraint/brake; mastery; frenus_M_N = mkN "frenus" ; -- [XXXAO] :: bridle/harness/rein/bit; harnessed horses/team; check/restraint/brake; mastery; @@ -19108,14 +20603,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg frictio_F_N = mkN "frictio" "frictionis " feminine ; -- [XBXFO] :: friction; massage; frigdor_M_N = mkN "frigdor" "frigdoris " masculine ; -- [DXXFS] :: cold; chill (esp. of feverish person) (Souter); frigeo_V = mkV "frigere" ; -- [XXXDX] :: be cold; lack vigor; get cold reception; fail to win favor; fall flat (words); --- TODO frigesco_V : V2 frigesco, frigescere, frixi, - -- Declension: 3rd -- Comment: [XXXDX] :: become cold, cool, lose heat; slaken, abate, fall off/flat; + frigesco_V2 = mkV2 (mkV "frigescere" "frigesco" "frixi" nonExist ) ; -- [XXXDX] :: become cold, cool, lose heat; slaken, abate, fall off/flat; frigidarium_N_N = mkN "frigidarium" ; -- [XTXDS] :: cold room (of baths); larder; refrigerator (Cal); frigidarius_A = mkA "frigidarius" "frigidaria" "frigidarium" ; -- [XXXES] :: cooling; of cooling; frigidulus_A = mkA "frigidulus" "frigidula" "frigidulum" ; -- [XXXEC] :: somewhat cold or faint; --- SLASHSTUFF frigidus_A : A2 frigidus, frigida -um, frigidior -or -us, frigidissimus -a -um -- [XXXBX] :: cold, cool, chilly, frigid; lifeless, indifferent, dull; + frigidus_A = mkA "frigidus" ; -- [XXXBX] :: cold, cool, chilly, frigid; lifeless, indifferent, dull; + frigo_V2 = mkV2 (mkV "frigere" "frigo" "frixi" "frictus ") ; -- [XXXCO] :: roast, parch; fry (L+S); frigor_M_N = mkN "frigor" "frigoris " masculine ; -- [DXXES] :: cold; chill (esp. of feverish person) (Souter); frigus_N_N = mkN "frigus" "frigoris " neuter ; -- [XXXAX] :: cold; cold weather, winter; frost; frigusculum_N_N = mkN "frigusculum" ; -- [DXXES] :: slight cold; coolness/disagreement between man and wife; (frigus-culus); + friguttio_V = mkV "friguttire" "friguttio" nonExist nonExist; -- [XXXEO] :: utter broken sounds; stutter, stammer; + fringulio_V = mkV "fringulire" "fringulio" nonExist nonExist; -- [XXXEO] :: utter broken sounds; twitter/chirp (birds); stutter, stammer; + fringultio_V = mkV "fringultire" "fringultio" nonExist nonExist; -- [XXXEO] :: utter broken sounds; twitter/chirp (birds); stutter, stammer; frio_V2 = mkV2 (mkV "friare") ; -- [XXXEC] :: rub; crumble; frisiatus_A = mkA "frisiatus" "frisiata" "frisiatum" ; -- [FXXEE] :: embroidered; w/frieze (Whitaker) fritillus_M_N = mkN "fritillus" ; -- [XXXEC] :: dice-box; @@ -19128,7 +20627,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fromo_V = mkV "fromare" ; -- [XXXEZ] :: throw up; frondator_M_N = mkN "frondator" "frondatoris " masculine ; -- [XAXDX] :: pruner; frondeo_V = mkV "frondere" ; -- [XAXCO] :: have/put forth leaves, be in leaf; be leafy/full of trees (place); (in spirit); --- TODO frondesco_V : V2 frondesco, frondescere, -, - -- Declension: 3rd -- Comment: [XAXDX] :: become leafy, shoot; put forth leaves; + frondesco_V = mkV "frondescere" "frondesco" nonExist nonExist ; -- [XAXDX] :: become leafy, shoot; put forth leaves; frondeus_A = mkA "frondeus" "frondea" "frondeum" ; -- [XAXDX] :: leafy; frondifer_A = mkA "frondifer" "frondifera" "frondiferum" ; -- [XAXEC] :: leaf-bearing, leafy; frondosus_A = mkA "frondosus" "frondosa" "frondosum" ; -- [XAXDX] :: leafy, abounding in foliage; @@ -19140,13 +20639,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fructifero_V = mkV "fructiferare" ; -- [EXXFP] :: bear fruit; (Vulgate 4 Ezra 16:25/26); fructifico_V = mkV "fructificare" ; -- [XXXEO] :: sprout, produce new growth (plants); bear (new) fruit (L+S); increase (Douay); fructuarius_A = mkA "fructuarius" "fructuaria" "fructuarium" ; -- [XXXEC] :: fruit-bearing, fruitful; --- SLASHSTUFF fructuosus_A : A2 fructuosus, fructuosa -um, fructuosior -or -us, fructuosissimus -a -um -- [XXXDX] :: fruitful, productive, abounding in fruit; profitable, advantageous; + fructuosus_A = mkA "fructuosus" ; -- [XXXDX] :: fruitful, productive, abounding in fruit; profitable, advantageous; fructus_M_N = mkN "fructus" "fructus " masculine ; -- [XXXAX] :: produce, crops; fruit; profit; enjoyment; reward; frucuosus_A = mkA "frucuosus" "frucuosa" "frucuosum" ; -- [XXXDX] :: fruitful; profitable; --- SLASHSTUFF frugalis_A : A2 frugalis, frugale, frugalior -or -us, frugalissimus -a -um -- [XXXCO] :: worthy/honest/deserving; thrifty/frugal/simple; temperate/sober; of vegetables; + frugalis_A = mkA "frugalis" ; -- [XXXCO] :: worthy/honest/deserving; thrifty/frugal/simple; temperate/sober; of vegetables; frugalitas_F_N = mkN "frugalitas" "frugalitatis " feminine ; -- [XXXDX] :: frugality; economy; honesty; frugaliter_Adv =mkAdv "frugaliter" "frugalius" "frugalissime" ; -- [XXXCO] :: simply, frugally, economically; soberly; in a restrained manner; --- IGNORED frugi_A : A2 frugi, undeclined -- [XXXCO] :: worthy/honest/deserving; virtuous; thrifty/frugal; temperate/sober; useful/fit; + frugi_A = constA "frugi" ; -- [XXXCO] :: worthy/honest/deserving; virtuous; thrifty/frugal; temperate/sober; useful/fit; frugifer_A = mkA "frugifer" "frugifera" "frugiferum" ; -- [XXXDX] :: fruit-bearing, fertile; frugiferens_A = mkA "frugiferens" "frugiferentis"; -- [XAXEC] :: fruitful, fertile; frugilegus_A = mkA "frugilegus" "frugilega" "frugilegum" ; -- [XXXEC] :: collecting grain; @@ -19157,7 +20656,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg frumentator_M_N = mkN "frumentator" "frumentatoris " masculine ; -- [XXXDX] :: forager; frumentor_V = mkV "frumentari" ; -- [XXXDX] :: get grain, forage; frumentum_N_N = mkN "frumentum" ; -- [XXXBX] :: grain; crops; - fruor_V = mkV "fruari" ; -- [XXXBX] :: enjoy, profit by, delight in (w/ABL); + frunesco_V = mkV "frunescere" "frunesco" nonExist nonExist; -- [EXXCW] :: enjoy; have the pleasure of; + fruniscor_V = mkV "frunisci" "fruniscor" "frunitus sum " ; -- [XXXCO] :: enjoy; have the pleasure of; + fruor_V = mkV "frui" "fruor" "fructus sum " ; -- [XXXDX] :: enjoy (proceeds/socially/sexually), profit by, delight in (w/ABL); frustatim_Adv = mkAdv "frustatim" ; -- [XXXDX] :: into pieces; frustillatim_Adv = mkAdv "frustillatim" ; -- [XXXEC] :: bit by bit; frustra_Adv = mkAdv "frustra" ; -- [XXXAX] :: in vain; for nothing, to no purpose; @@ -19180,19 +20681,22 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg fucus_M_N = mkN "fucus" ; -- [XXXBO] :: dye; (as cosmetic) rouge; bee-glue, propolis; presence/disguise/sham; seaweed; fuga_F_N = mkN "fuga" ; -- [GDXEK] :: |fugue (music); fugax_A = mkA "fugax" "fugacis"; -- [XXXDX] :: flying swiftly; swift; avoiding, transitory; + fugio_V2 = mkV2 (mkV "fugere" "fugio" "fugi" "fugitus ") ; -- [XXXAX] :: flee, fly, run away; avoid, shun; go into exile; fugitivus_A = mkA "fugitivus" "fugitiva" "fugitivum" ; -- [XXXDX] :: fugitive; fugitivus_M_N = mkN "fugitivus" ; -- [XXXDX] :: fugitive; deserter; runaway slave; fugo_V = mkV "fugare" ; -- [XXXBX] :: put to flight, rout; chase away; drive into exile; fulcimen_N_N = mkN "fulcimen" "fulciminis " neuter ; -- [XXXEC] :: prop, support, pillar; fulcimentum_N_N = mkN "fulcimentum" ; -- [FXXFM] :: book-rest; + fulcio_V2 = mkV2 (mkV "fulcire" "fulcio" "fulsi" "fultus ") ; -- [XXXBX] :: prop up, support; fulcrum_N_N = mkN "fulcrum" ; -- [XXXDX] :: head or back-support of a couch; bed post; foot of a couch; sole of the foot; fulgens_A = mkA "fulgens" "fulgentis"; -- [XXXCO] :: flashing, gleaming/glittering, resplendent; brilliant (white); bright, splendid; fulgenter_Adv =mkAdv "fulgenter" "fulgentius" "fulgentissime" ; -- [XXXNO] :: resplendently; brilliantly; splendidly; glitteringly (L+S); fulgeo_V = mkV "fulgere" ; -- [XXXBX] :: flash, shine; glow, gleam, glitter, shine forth, be bright; --- TODO fulgesco_V : V2 fulgesco, fulgescere, -, - -- Declension: 3rd -- Comment: [XXXFS] :: flash; glitter; + fulgesco_V = mkV "fulgescere" "fulgesco" nonExist nonExist ; -- [XXXFS] :: flash; glitter; fulgidus_A = mkA "fulgidus" "fulgida" "fulgidum" ; -- [XXXEC] :: shining, gleaming, glittering; fulgor_M_N = mkN "fulgor" "fulgoris " masculine ; -- [XXXBO] :: brightness/brilliance/radiance; splendor/glory; flame/flash; lightening/meteor; fulgueo_V = mkV "fulguere" ; -- [XXXCO] :: glitter/flash/shine brightly, gleam; be brilliant/bright/resplendent; light up; + fulguo_V = mkV "fulguere" "fulguo" "fulgsi" nonExist; -- [XXXCO] :: glitter/flash/shine brightly, gleam; be brilliant/bright/resplendent; light up; fulgur_N_N = mkN "fulgur" "fulguris " neuter ; -- [XXXDX] :: lightning, flashing, brightness; [pubica ~ => things blasted by lightning]; fulgurator_M_N = mkN "fulgurator" "fulguratoris " masculine ; -- [XEXEC] :: priest who interpreted omens from lightning; fulguratus_A = mkA "fulguratus" "fulgurata" "fulguratum" ; -- [XEXEO] :: struck by lightening; (also of eloquence); @@ -19247,6 +20751,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg funditus_Adv = mkAdv "funditus" ; -- [XXXBO] :: utterly/completely/without exception; from the bottom/to the ground/by the root; fundius_Adv = mkAdv "fundius" ; -- [XXXDX] :: from the very bottom; utterly, totally; fundo_V = mkV "fundare" ; -- [XXXBX] :: establish, found, begin; lay the bottom, lay a foundation; confirm; + fundo_V2 = mkV2 (mkV "fundere" "fundo" "fudi" "fusus ") ; -- [XXXAX] :: pour, cast (metals); scatter, shed, rout; fundus_M_N = mkN "fundus" ; -- [XAXBX] :: farm; piece of land, estate; bottom, lowest part; foundation; an authority; funebre_N_N = mkN "funebre" "funebris " neuter ; -- [XXXDX] :: funeral rites (pl.); funebris_A = mkA "funebris" "funebris" "funebre" ; -- [XXXDX] :: funeral, deadly, fatal; funereal; @@ -19255,6 +20760,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg funesto_V = mkV "funestare" ; -- [XXXDX] :: pollute by murder; funestus_A = mkA "funestus" "funesta" "funestum" ; -- [XXXDX] :: deadly, fatal; sad; calamitous; destructive; funginus_A = mkA "funginus" "fungina" "funginum" ; -- [XXXEC] :: of a mushroom; + fungor_V = mkV "fungi" "fungor" "functus sum " ; -- [XXXBX] :: perform, execute, discharge (duty); be engaged in (w/ABL of function); fungosus_A = mkA "fungosus" "fungosa" "fungosum" ; -- [XXXFS] :: spongy; fungous; fungus_M_N = mkN "fungus" ; -- [XXXDX] :: fungus; mushroom; funiculus_M_N = mkN "funiculus" ; -- [XXXEC] :: thin rope, cord, string; @@ -19278,7 +20784,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg furiosus_A = mkA "furiosus" "furiosa" "furiosum" ; -- [XXXDX] :: furious, mad, frantic, wild; furnax_F_N = mkN "furnax" "furnacis " feminine ; -- [XXXCO] :: furnace/oven/kiln; (baths/smelting/limestone/brick); (goddess of ovens?); furnus_M_N = mkN "furnus" ; -- [XXXDX] :: oven, bakery; --- TODO furo_V : V2 furo, furere, -, - -- Declension: 3rd -- Comment: [XXXBX] :: rave, rage; be mad/furious; be wild; + furo_V = mkV "furere" "furo" nonExist nonExist ; -- [XXXBX] :: rave, rage; be mad/furious; be wild; furor_M_N = mkN "furor" "furoris " masculine ; -- [XPXBX] :: madness, rage, fury, frenzy; passionate love; furor_V = mkV "furari" ; -- [XXXBX] :: steal; plunder; furs_F_N = mkN "furs" "furis " feminine ; -- [DXXFP] :: thief, robber; robber bee; the Devil (personified); @@ -19303,6 +20809,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg futatim_Adv = mkAdv "futatim" ; -- [XXXEC] :: abundantly; futilis_A = mkA "futilis" "futilis" "futile" ; -- [XXXDX] :: vain; worthless; futtilis_A = mkA "futtilis" "futtilis" "futtile" ; -- [XXXDX] :: vain; worthless; + futuo_V2 = mkV2 (mkV "futuere" "futuo" "futui" "fututus ") ; -- [XXXDX] :: have sexual relations with (woman); (rude); futurismus_M_N = mkN "futurismus" ; -- [GXXEK] :: futurism; futurologus_M_N = mkN "futurologus" ; -- [GXXEK] :: futurologist; futurus_A = mkA "futurus" "futura" "futurum" ; -- [XXXAX] :: about to be; future; @@ -19348,6 +20855,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ganea_F_N = mkN "ganea" ; -- [XXXDX] :: common eating house (resort of undesirable characters); gluttonous eating; ganeo_M_N = mkN "ganeo" "ganeonis " masculine ; -- [XXXDX] :: glutton, debauchee; ganeum_N_N = mkN "ganeum" ; -- [XXXDX] :: common eating house (resort of undesirable characters); gluttonous eating; + gannio_V = mkV "gannire" "gannio" nonExist nonExist; -- [XXXDS] :: whimper, snarl (of dogs); snarl (people), speak in ill natured/hostile manner; gannitus_M_N = mkN "gannitus" "gannitus " masculine ; -- [XXXDO] :: |grumbling/muttering; murmuring; amorous utterance; chattering (L+S); chirping; gaola_F_N = mkN "gaola" ; -- [FLXFJ] :: jail/gaol; garba_F_N = mkN "garba" ; -- [FAXFM] :: sheaf (of grain, of arrows); @@ -19356,6 +20864,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg gargarisso_V = mkV "gargarissare" ; -- [XBXDO] :: gargle; gargarizatio_F_N = mkN "gargarizatio" "gargarizationis " feminine ; -- [XBXEO] :: gargling, action of gargling; gargarizo_V = mkV "gargarizare" ; -- [XBXDO] :: gargle; + garrio_V2 = mkV2 (mkV "garrire" "garrio" "garrivi" "garritus ") ; -- [XXXDX] :: chatter/prattle/jabber; talk rapidly; talk/write nonsense; (birds/instruments); garritus_M_N = mkN "garritus" "garritus " masculine ; -- [XXXFO] :: chattering (of birds); garrulitas_F_N = mkN "garrulitas" "garrulitatis " feminine ; -- [XXXDO] :: talkativeness, loquacity; chattering (Collins); garrulus_A = mkA "garrulus" "garrula" "garrulum" ; -- [XXXBO] :: talkative, loquacious; chattering, garrulous; blabbing; that betrays secrets; @@ -19421,6 +20930,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg gemmeus_A = mkA "gemmeus" "gemmea" "gemmeum" ; -- [XXXDX] :: set with precious stones; gemmifer_A = mkA "gemmifer" "gemmifera" "gemmiferum" ; -- [XAXEC] :: bearing or producing seeds; gemmo_V = mkV "gemmare" ; -- [XAXCO] :: bud, come into bud, put out buds; + gemo_V2 = mkV2 (mkV "gemere" "gemo" "gemui" "gemitus ") ; -- [XXXBX] :: moan, groan; lament (over); grieve that; give out a hollow sound (music, hit); gena_F_N = mkN "gena" ; -- [XXXAX] :: cheeks (pl.); eyes; genealogia_F_N = mkN "genealogia" ; -- [DXXES] :: genealogy; genealogicus_A = mkA "genealogicus" "genealogica" "genealogicum" ; -- [GXXEK] :: genealogical; @@ -19430,6 +20940,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg generalis_M_N = mkN "generalis" "generalis " masculine ; -- [GWXEK] :: general (military rank); generalitas_F_N = mkN "generalitas" "generalitatis " feminine ; -- [DXXES] :: generality; generaliter_Adv = mkAdv "generaliter" ; -- [XXXDX] :: generally, in general; + generasco_V = mkV "generascere" "generasco" nonExist nonExist; -- [XXXFO] :: come to birth; be generated/produced (L+S); generatim_Adv = mkAdv "generatim" ; -- [XXXDX] :: by tribes/kinds; generally; generatio_F_N = mkN "generatio" "generationis " feminine ; -- [XXXCO] :: generation, action/process of procreating, begetting; generation of men/family; generativus_A = mkA "generativus" "generativa" "generativum" ; -- [GXXEK] :: generative; @@ -19455,7 +20966,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg genitor_M_N = mkN "genitor" "genitoris " masculine ; -- [XXXBX] :: father; creator; originator; genitus_A = mkA "genitus" "genita" "genitum" ; -- [EEXDX] :: begotten; engendered; genius_M_N = mkN "genius" ; -- [XXXDX] :: guardian spirit; taste, inclination; appetite; talent; prophetic skill; --- TODO geno_V : V2 geno, genere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: give birth to, bring forth, bear; beget; be born (PASSIVE); + geno_V = mkV "genere" "geno" nonExist nonExist ; -- [XXXDX] :: give birth to, bring forth, bear; beget; be born (PASSIVE); genocidium_N_N = mkN "genocidium" ; -- [HLXDE] :: genocide; genoma_N_N = mkN "genoma" "genomatis " neuter ; -- [HSXEK] :: genome; gens_F_N = mkN "gens" "gentis " feminine ; -- [XXXAX] :: tribe, clan; nation, people; Gentiles; @@ -19471,6 +20982,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg genu_N_N = mkN "genu" "genus " neuter ; -- [XXXBX] :: knee; genual_N_N = mkN "genual" "genualis " neuter ; -- [XXXDX] :: leggings (pl.); genuale_N_N = mkN "genuale" "genualis " neuter ; -- [FEHFE] :: ornament on bishop's cincture in Greek rite; + genuflecto_V2 = mkV2 (mkV "genuflectere" "genuflecto" "genuflexi" "genuflexus ") ; -- [EEXDX] :: kneel (down); genuflect; bend the knee; genuine_Adv = mkAdv "genuine" ; -- [XXXFO] :: truly; genuinus_A = mkA "genuinus" "genuina" "genuinum" ; -- [XXXDO] :: natural, inborn, innate; native; genuine, authentic; genuinus_M_N = mkN "genuinus" ; -- [XBXCO] :: back-tooth, molar; wisdom tooth; @@ -19500,6 +21012,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg germinalis_A = mkA "germinalis" "germinalis" "germinale" ; -- [GXXEK] :: germinal; germinatio_F_N = mkN "germinatio" "germinationis " feminine ; -- [XAXDS] :: sprouting forth; germination; a shoot; germino_V = mkV "germinare" ; -- [XXXEC] :: sprout forth; + gero_V2 = mkV2 (mkV "gerere" "gero" "gessi" "gestus ") ; -- [XXXAX] :: bear, carry, wear; carry on; manage, govern; (se gerere = to conduct oneself); gerontocomium_N_N = mkN "gerontocomium" ; -- [GXXEK] :: old men's asylum; gerontotrophium_N_N = mkN "gerontotrophium" ; -- [GXXEK] :: old men's hospice; gerra_F_N = mkN "gerra" ; -- [XXXDO] :: wicker-work screen/hurdle; wattled twigs (pl.); [gerrae => trifles, nonsense!]; @@ -19512,6 +21025,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg gestamen_N_N = mkN "gestamen" "gestaminis " neuter ; -- [XXXDX] :: something worn or carried on the body; gestatio_F_N = mkN "gestatio" "gestationis " feminine ; -- [XXXES] :: bearing, wearing; be carried; place to take air; gesticulor_V = mkV "gesticulari" ; -- [XXXDX] :: gesticulate; make mimic or pantomimic movements; + gestio_V2 = mkV2 (mkV "gestire" "gestio" "gestivi" "gestitus ") ; -- [XXXDX] :: be eager, wish passionately; gesticulate, express strong feeling, exult; gestito_V = mkV "gestitare" ; -- [XXXCS] :: carry often; wear often; gesto_V = mkV "gestare" ; -- [XXXBX] :: bear, carry; wear; gestum_N_N = mkN "gestum" ; -- [XXXDX] :: what has been carried out, a business; deeds (pl.), exploits; @@ -19521,16 +21035,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg gibberosus_A = mkA "gibberosus" "gibberosa" "gibberosum" ; -- [XXXDX] :: humpbacked; gibbus_A = mkA "gibbus" "gibba" "gibbum" ; -- [XXXDX] :: bulging, protuberant; gibbus_M_N = mkN "gibbus" ; -- [XXXDX] :: protuberance/lump on the body; + gigno_V2 = mkV2 (mkV "gignere" "gigno" "genui" "genitus ") ; -- [XXXAX] :: give birth to, bring forth, bear; beget; be born (PASSIVE); gilbus_A = mkA "gilbus" "gilba" "gilbum" ; -- [EXXES] :: pale yellow; dun-colored (OLD); gilda_F_N = mkN "gilda" ; -- [FLXDM] :: guild; association; guild meeting; guild-house; gildo_M_N = mkN "gildo" "gildonis " masculine ; -- [FXXFM] :: camp-follower; gilvus_A = mkA "gilvus" "gilva" "gilvum" ; -- [XXXES] :: pale yellow; dun-colored (OLD); --- IGNORED gimel_N : N1 gimel, undeclined -- N -- [DEQEW] :: gimel; (3rd letter of Hebrew alphabet); (transliterate as G); + gimel_N = constN "gimel" neuter ; -- [DEQEW] :: gimel; (3rd letter of Hebrew alphabet); (transliterate as G); gingiber_N_N = mkN "gingiber" "gingiberis " neuter ; -- [GXXEK] :: ginger; gingiva_F_N = mkN "gingiva" ; -- [XXXDX] :: gum (in which the teeth are set); --- IGNORED git_N : N1 git, undeclined -- N -- [XAXCO] :: black cumin (Nigella sativa); Roman coriander (L+S); melanthion/melanspermon; --- IGNORED gith_N : N1 gith, undeclined -- N -- [EAXCS] :: black cumin (Nigella sativa); Roman coriander (L+S); melanthion/melanspermon; --- IGNORED gitti_N : N1 gitti, undeclined -- N -- [XAXCO] :: black cumin (Nigella sativa); Roman coriander (L+S); melanthion/melanspermon; + git_N = constN "git" neuter ; -- [XAXCO] :: black cumin (Nigella sativa); Roman coriander (L+S); melanthion/melanspermon; + gith_N = constN "gith" neuter ; -- [EAXCS] :: black cumin (Nigella sativa); Roman coriander (L+S); melanthion/melanspermon; + gitti_N = constN "gitti" neuter ; -- [XAXCO] :: black cumin (Nigella sativa); Roman coriander (L+S); melanthion/melanspermon; glaba_F_N = mkN "glaba" ; -- [XXXDX] :: clod; cultivated soil; lump, mass; glaber_A = mkA "glaber" "glabra" "glabrum" ; -- [XXXDX] :: hairless, smooth; glabrio_F_N = mkN "glabrio" "glabrionis " feminine ; -- [FXXFM] :: hairless-person; ringworm; L:Glabrio (Roman surname); @@ -19559,7 +21074,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg glesum_N_N = mkN "glesum" ; -- [XXXEC] :: amber; gleucinus_A = mkA "gleucinus" "gleucina" "gleucinum" ; -- [XAXES] :: made-from-must; glis_M_N = mkN "glis" "gliris " masculine ; -- [XXXDX] :: dormouse; --- TODO glisco_V : V2 glisco, gliscere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: swell; increase in power or violence; + glisco_V = mkV "gliscere" "glisco" nonExist nonExist ; -- [XXXDX] :: swell; increase in power or violence; globalis_A = mkA "globalis" "globalis" "globale" ; -- [GXXEK] :: global; globosus_A = mkA "globosus" "globosa" "globosum" ; -- [XXXDX] :: round, spherical; globulus_M_N = mkN "globulus" ; -- [XXXDX] :: globule; button (Cal); @@ -19577,7 +21092,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg gloriola_F_N = mkN "gloriola" ; -- [XXXEC] :: little glory; glorior_V = mkV "gloriari" ; -- [XXXBX] :: boast, brag; glory, pride oneself; gloriose_Adv =mkAdv "gloriose" "gloriosius" "gloriosissime" ; -- [XXXDX] :: gloriously, magnificently; pompously, boastfully; --- SLASHSTUFF gloriosus_A : A2 gloriosus, gloriosa -um, gloriosior -or -us, gloriosissimus -a -um -- [XXXBX] :: glorious, full of glory; famous, renowned; boastful, conceited; ostentatious; + gloriosus_A = mkA "gloriosus" ; -- [XXXBX] :: glorious, full of glory; famous, renowned; boastful, conceited; ostentatious; glosa_F_N = mkN "glosa" ; -- [FGXFO] :: glossary, collection/list of unfamiliar/unusual words (needing interpretation); glosarium_N_N = mkN "glosarium" ; -- [XGXFO] :: unusual word requiring explanation (contemptuous diminutive); glosema_N_N = mkN "glosema" "glosematis " neuter ; -- [XGXEO] :: unusual word requiring interpretation; collection/list (pl.) of such words; @@ -19586,25 +21101,30 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg glottologia_F_N = mkN "glottologia" ; -- [GGXEK] :: linguistics; glottologicus_A = mkA "glottologicus" "glottologica" "glottologicum" ; -- [GGXEK] :: linguistic; glubeo_V = mkV "glubere" ; -- [XAXFO] :: shed its bark; (of a tree); + glubo_V2 = mkV2 (mkV "glubere" "glubo" "glupsi" "gluptus ") ; -- [XAXDO] :: peel; strip the bark from; rob; gluma_F_N = mkN "gluma" ; -- [XAXFO] :: husks of grain; barley husks (pl.) (L+S); gluten_N_N = mkN "gluten" "glutinis " neuter ; -- [XXXDO] :: glue, paste; gum; adhesive; solder (Douay); connecting tie/band/bond (L+S); glutinator_M_N = mkN "glutinator" "glutinatoris " masculine ; -- [XXXEC] :: one who glues books, a bookbinder; glutino_V = mkV "glutinare" ; -- [XXXES] :: glue; B:join (espec. wounds); glutinosus_A = mkA "glutinosus" "glutinosa" "glutinosum" ; -- [XXXDO] :: viscous, sticky, glutinous; full of/smeared with glue; rich in gelatin (food); glutinum_N_N = mkN "glutinum" ; -- [XXXCO] :: glue, paste; gum; adhesive; solder (Douay); connecting tie/band/bond (L+S); + glutio_V2 = mkV2 (mkV "glutire" "glutio" nonExist nonExist) ; -- [XXXEC] :: swallow, gulp down; gluto_M_N = mkN "gluto" "glutonis " masculine ; -- [XXXEC] :: glutton; + gluttio_V2 = mkV2 (mkV "gluttire" "gluttio" nonExist nonExist) ; -- [XXXEC] :: swallow, gulp down; glutto_M_N = mkN "glutto" "gluttonis " masculine ; -- [XXXEC] :: glutton; glyconius_A = mkA "glyconius" "glyconia" "glyconium" ; -- [XPXES] :: Glyconic; type of poetic meter; glycyrrhiza_F_N = mkN "glycyrrhiza" ; -- [DAXNS] :: licorice root (Pliny); glycyrrhizon_N_N = mkN "glycyrrhizon" "glycyrrhizi " neuter ; -- [DAXNS] :: licorice root (Pliny); gnaritas_F_N = mkN "gnaritas" "gnaritatis " feminine ; -- [FXXEN] :: knowledge; gnarus_A = mkA "gnarus" "gnara" "gnarum" ; -- [XXXDX] :: having knowledge or experience of; known; + gnascor_V = mkV "gnasci" "gnascor" "gnatus sum " ; -- [XXXAO] :: |be born/begotten/formed/destined; rise (stars), dawn; start, originate; arise; gnata_F_N = mkN "gnata" ; -- [XXXCO] :: daughter; gnatus_M_N = mkN "gnatus" ; -- [XXXCO] :: son; child; children (pl.); gnecos_F_N = mkN "gnecos" "gneci " feminine ; -- [XAXEO] :: safflower (Carthamus tinctorius); similar thistle; + gnosco_V2 = mkV2 (mkV "gnoscere" "gnosco" "gnovi" "gnotus ") ; -- [XXXAO] :: |examine, study, inspect; try (case); recognize, accept as valid/true; recall; gobio_M_N = mkN "gobio" "gobionis " masculine ; -- [XAXFO] :: small fish; (of the gudgeon kind); (used for bait); (Gobio); gobius_M_N = mkN "gobius" ; -- [XAXCO] :: small fish; (of the gudgeon kind); (used for bait); (Gobio); --- IGNORED gomor_N : N1 gomor, undeclined -- N -- [DEQFW] :: gomor/gomer/omer, Jewish dry measure; (over two bushels); + gomor_N = constN "gomor" neuter ; -- [DEQFW] :: gomor/gomer/omer, Jewish dry measure; (over two bushels); gonger_M_N = mkN "gonger" ; -- [XAXDO] :: conger eel; sea eel (L+S); gorilla_M_N = mkN "gorilla" ; -- [GXXEK] :: gorilla; gorytos_M_N = mkN "gorytos" "goryti " masculine ; -- [XWXDO] :: quiver, case holding arrows; @@ -19613,13 +21133,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg grabattus_M_N = mkN "grabattus" ; -- [XXXCO] :: cot, camp bed, pallet; low couch or bed; (usu.) mean/wretched bed/couch; grabatus_M_N = mkN "grabatus" ; -- [XXXCO] :: cot, camp bed, pallet; low couch or bed; (usu.) mean/wretched bed/couch; gracia_F_N = mkN "gracia" ; -- [EXXAO] :: |favor/goodwill/kindness/friendship; influence; gratitude; thanks (pl.); Graces; --- SLASHSTUFF gracilis_A : A2 gracilis, gracile, gracilior -or -us, gracillimus -a -um -- [XXXDX] :: slender, thin, slim, slight; fine, narrow; modest, unambitious, simple, plain; + gracilis_A = mkA "gracilis" ; -- [XXXDX] :: slender, thin, slim, slight; fine, narrow; modest, unambitious, simple, plain; gracilitas_F_N = mkN "gracilitas" "gracilitatis " feminine ; -- [XXXEZ] :: slimness, leanness (Collins); graculus_M_N = mkN "graculus" ; -- [XXXDX] :: jackdaw; gradalis_A = mkA "gradalis" "gradalis" "gradale" ; -- [DXXFS] :: step-by-step; gradarius_A = mkA "gradarius" "gradaria" "gradarium" ; -- [XXXEC] :: going step by step; gradatim_Adv = mkAdv "gradatim" ; -- [XXXDX] :: step by step, by degrees; gradatio_F_N = mkN "gradatio" "gradationis " feminine ; -- [XGXEC] :: climax; (rhetoric); + gradior_V = mkV "gradi" "gradior" "gressus sum " ; -- [XXXDX] :: walk, step, take steps, go, advance; gradual_M_N = mkN "gradual" "gradualis " masculine ; -- [FEXEM] :: gradual (hymn); gradualis_A = mkA "gradualis" "gradualis" "graduale" ; -- [FXXEM] :: of degree; gradualitas_F_N = mkN "gradualitas" "gradualitatis " feminine ; -- [FXXEM] :: grade, degree; @@ -19645,11 +21166,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg granatus_A = mkA "granatus" "granata" "granatum" ; -- [XXXDX] :: containing many seeds; [only malum/pomum granatum => pomegranate fruit/tree]; granatus_M_N = mkN "granatus" "granatus " masculine ; -- [XXXDX] :: production of a crop; grandaevus_A = mkA "grandaevus" "grandaeva" "grandaevum" ; -- [XXXDX] :: of great age, old; --- TODO grandesco_V : V2 grandesco, grandescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: grow, increase in size or quantity; + grandesco_V = mkV "grandescere" "grandesco" nonExist nonExist ; -- [XXXDX] :: grow, increase in size or quantity; grandiculus_A = mkA "grandiculus" "grandicula" "grandiculum" ; -- [XXXEC] :: rather large; grandifer_A = mkA "grandifer" "grandifera" "grandiferum" ; -- [XXXEC] :: producing great profits; grandiloquus_A = mkA "grandiloquus" "grandiloqua" "grandiloquum" ; -- [XXXEC] :: speaking grandly; boastful; grandinat_V0 = mkV0 "grandinat" ; -- [XXXEC] :: it hails; + grandio_V2 = mkV2 (mkV "grandire" "grandio" nonExist nonExist) ; -- [XXXEC] :: increase; grandis_A = mkA "grandis" "grandis" "grande" ; -- [XXXAX] :: full-grown, grown up; large, great, grand, tall, lofty; powerful; aged, old; grandisculus_A = mkA "grandisculus" "grandiscula" "grandisculum" ; -- [FXXFE] :: somewhat grownup, a little older; granditas_F_N = mkN "granditas" "granditatis " feminine ; -- [XXXEO] :: grandeur; elevation (of style); advanced condition/greatness (of person's age); @@ -19667,8 +21189,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg graphia_F_N = mkN "graphia" ; -- [HSXEK] :: -graphy; recording of instrument measurements; (usu. w/specifying prefix); graphice_F_N = mkN "graphice" "graphices " feminine ; -- [XXXFO] :: art of painting; graphicus_A = mkA "graphicus" "graphica" "graphicum" ; -- [XXXEO] :: worthy of painting (people), perfect of kind; exquisite; picturesque, artistic; + graphis_1_N = mkN "graphis" "graphidis" feminine ; -- [XXXEO] :: instrument for drawing/painting; + graphis_2_N = mkN "graphis" "graphidos" feminine ; -- [XXXEO] :: instrument for drawing/painting; graphis_F_N = mkN "graphis" "graphidis " feminine ; -- [XXXEO] :: instrument for drawing/painting; --- TODO graphis_N : N1 graphis, graphidos/is -- F -- [XXXEO] :: instrument for drawing/painting; graphium_N_N = mkN "graphium" ; -- [HSXEK] :: -graph; recording/measuring instrument; (usu. w/specifying prefix); grassator_M_N = mkN "grassator" "grassatoris " masculine ; -- [XXXCO] :: vagabond; footpad, highway robber; grassor_V = mkV "grassari" ; -- [XXXDX] :: march on, advance; roam in search of victims, prowl; proceed; run riot; @@ -19691,13 +21214,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg gratulatio_F_N = mkN "gratulatio" "gratulationis " feminine ; -- [XXXDX] :: congratulation; rejoicing; gratulatorie_Adv = mkAdv "gratulatorie" ; -- [FXXFE] :: congratulatory, in congratulatory manner; gratulor_V = mkV "gratulari" ; -- [XXXDX] :: congratulate; rejoice, be glad; thank, give/render thanks; --- SLASHSTUFF gratus_A : A2 gratus, grata -um, gratior -or -us, gratissimus -a -um -- [XXXAX] :: pleasing, acceptable, agreeable, welcome; dear, beloved; grateful, thankful; + gratus_A = mkA "gratus" ; -- [XXXAX] :: pleasing, acceptable, agreeable, welcome; dear, beloved; grateful, thankful; graulatio_F_N = mkN "graulatio" "graulationis " feminine ; -- [XXXDX] :: congratulation; rejoicing, joy; gravamen_N_N = mkN "gravamen" "gravaminis " neuter ; -- [DXXES] :: trouble, annoyance; physical inconvenience; burden; gravanter_Adv = mkAdv "gravanter" ; -- [FXXFE] :: with difficulty; gravate_Adv =mkAdv "gravate" "gravatius" "gravatissime" ; -- [XXXDO] :: grudgingly; reluctantly, unwillingly; with difficulty; gravatim_Adv = mkAdv "gravatim" ; -- [XXXEO] :: grudgingly, reluctantly; --- SLASHSTUFF gravatus_A : A2 gravatus, gravata -um, gravatior -or -us, gravatissimus -a -um -- [XXXEE] :: heavy; loaded down; + gravatus_A = mkA "gravatus" ; -- [XXXEE] :: heavy; loaded down; gravedinosus_A = mkA "gravedinosus" "gravedinosa" "gravedinosum" ; -- [XBXEC] :: subject to colds; gravedo_F_N = mkN "gravedo" "gravedinis " feminine ; -- [XXXDX] :: cold in the head, catarrh; graveolens_A = mkA "graveolens" "graveolentis"; -- [XXXEC] :: strong-smelling, rank; @@ -19706,7 +21229,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg gravido_V2 = mkV2 (mkV "gravidare") ; -- [XXXDO] :: impregnate, make pregnant; load/weigh down, burden (Ecc); oppress, incommode; gravidor_V = mkV "gravidari" ; -- [XXXEE] :: become pregnant; grow heavy; gravidus_A = mkA "gravidus" "gravida" "gravidum" ; -- [XXXBO] :: pregnant, heavy with child; laden/swollen/teeming; weighed down; rich/abundant; --- SLASHSTUFF gravis_A : A2 gravis, grave, gravior -or -us, gravissimus -a -um -- [XXXAX] :: heavy; painful; important; serious; pregnant; grave, oppressive, burdensome; + gravis_A = mkA "gravis" ; -- [XXXAX] :: heavy; painful; important; serious; pregnant; grave, oppressive, burdensome; gravitas_F_N = mkN "gravitas" "gravitatis " feminine ; -- [XXXBX] :: weight; dignity; gravity; importances, oppressiveness; pregnancy; sickness; graviter_Adv = mkAdv "graviter" ; -- [XXXDX] :: violently; deeply; severely; reluctantly; [ferre ~ => to be vexed/upset]; gravito_V = mkV "gravitare" ; -- [GXXEK] :: revolve; @@ -19729,22 +21252,26 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg griphus_M_N = mkN "griphus" ; -- [XXXFS] :: riddle; enigma; grippa_F_N = mkN "grippa" ; -- [GBXEK] :: flu; griseus_A = mkA "griseus" "grisea" "griseum" ; -- [FXXEM] :: gray; + groccio_V = mkV "groccire" "groccio" nonExist nonExist; -- [XAXEO] :: croak/caw (like a raven); groma_F_N = mkN "groma" ; -- [XTXEO] :: instrument for taking bearings to fix lines of orientation; (surveying); grossitudo_F_N = mkN "grossitudo" "grossitudinis " feminine ; -- [DXXES] :: thickness; --- SLASHSTUFF grossus_A : A2 grossus, grossa -um, grossior -or -us, grossissimus -a -um -- [EXXDB] :: great/large, thick; coarse, gross; + grossus_A = mkA "grossus" ; -- [EXXDB] :: great/large, thick; coarse, gross; grossus_C_N = mkN "grossus" ; -- [XAXCO] :: young/green/immature/abortive fig; gruis_F_N = mkN "gruis" "gruis " feminine ; -- [XXXDX] :: crane; large bird; siege engine; gruis_M_N = mkN "gruis" "gruis " masculine ; -- [XXXDX] :: crane; large bird; siege engine; gruma_F_N = mkN "gruma" ; -- [XSXES] :: surveyor's rod; (also groma); grumus_M_N = mkN "grumus" ; -- [XXXES] :: little heap (of soil); + grundio_V = mkV "grundire" "grundio" nonExist nonExist; -- [XXXEC] :: grunt like a pig; + grunnio_V = mkV "grunnire" "grunnio" nonExist nonExist; -- [XXXEC] :: grunt like a pig; grunnitus_M_N = mkN "grunnitus" "grunnitus " masculine ; -- [XXXEC] :: grunting of a pig; grus_F_N = mkN "grus" "gruis " feminine ; -- [GTXEK] :: crane (machine); grus_M_N = mkN "grus" "gruis " masculine ; -- [XXXDX] :: crane; large bird; siege engine; --- IGNORED gry_N : N1 gry, undeclined -- N -- [XXXEC] :: scrap, crumb; + gry_N = constN "gry" neuter ; -- [XXXEC] :: scrap, crumb; gryllographus_M_N = mkN "gryllographus" ; -- [GXXEK] :: caricaturist; cartoonist; gryllus_M_N = mkN "gryllus" ; -- [XXXEO] :: cricket; grasshopper; cartoon, comic illustration; caricature (Cal); grypho_M_N = mkN "grypho" "gryphonis " masculine ; -- [FYXFM] :: griffin; --- TODO gryps_N : N1 gryps, grypos/is -- M -- [XYXDO] :: griffin; + gryps_1_N = mkN "gryps" "grypis" masculine ; -- [XYXDO] :: griffin; + gryps_2_N = mkN "gryps" "grypos" masculine ; -- [XYXDO] :: griffin; grypus_M_N = mkN "grypus" ; -- [XYXDO] :: griffin; guarra_F_N = mkN "guarra" ; -- [FWXEM] :: war; retaliation, feud; gubernaculum_N_N = mkN "gubernaculum" ; -- [XWXCO] :: helm, rudder, steering oar of ship; helm of "ship of state"; government; @@ -19760,7 +21287,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg gulda_F_N = mkN "gulda" ; -- [FLXDM] :: guild; association; guild meeting; guild-house; gulosus_A = mkA "gulosus" "gulosa" "gulosum" ; -- [XXXEC] :: gluttonous; gumia_F_N = mkN "gumia" ; -- [XXXES] :: glutton; gourmand; --- IGNORED gummi_N : N1 gummi, undeclined -- N -- [XAXCO] :: gum, vicid secretion from trees; + gummi_N = constN "gummi" neuter ; -- [XAXCO] :: gum, vicid secretion from trees; gumminosus_A = mkA "gumminosus" "gumminosa" "gumminosum" ; -- [XAXNO] :: gummy, full of gum; gummis_F_N = mkN "gummis" "gummis " feminine ; -- [XAXCO] :: gum, vicid secretion from trees; gummitio_F_N = mkN "gummitio" "gummitionis " feminine ; -- [XXXFO] :: application of gum; @@ -19795,7 +21322,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg gynaecius_M_N = mkN "gynaecius" ; -- [DLHFS] :: overseer of seraglio/harem; gynaecologia_F_N = mkN "gynaecologia" ; -- [GBXEK] :: gynecology; gynaecologus_M_N = mkN "gynaecologus" ; -- [GBXEK] :: gynecologist; --- TODO gynaeconitis_N : N1 gynaeconitis, gynaeconitidos/is -- F -- [XXHEO] :: women's apartment/quarters in Greek house; + gynaeconitis_1_N = mkN "gynaeconitis" "gynaeconitidis" feminine ; -- [XXHEO] :: women's apartment/quarters in Greek house; + gynaeconitis_2_N = mkN "gynaeconitis" "gynaeconitidos" feminine ; -- [XXHEO] :: women's apartment/quarters in Greek house; gypsatus_A = mkA "gypsatus" "gypsata" "gypsatum" ; -- [XXXDX] :: plastered; covered with gypsum; (slave) chalked for sale; gypso_V2 = mkV2 (mkV "gypsare") ; -- [XXXEC] :: cover with gypsum; gypsum_N_N = mkN "gypsum" ; -- [XXXEC] :: gypsum; plaster figure; @@ -19841,8 +21369,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg haereditas_F_N = mkN "haereditas" "haereditatis " feminine ; -- [XXXBX] :: inheritance, possession; hereditary succession; generation; heirship; haereo_V = mkV "haerere" ; -- [XXXBX] :: stick, adhere, cling to; hesitate; be in difficulties (sticky situation?); haeresiarcha_M_N = mkN "haeresiarcha" ; -- [FEXFE] :: heresiarch, archheretic; founder/leader of a heresy; + haeresis_1_N = mkN "haeresis" "haereseis" feminine ; -- [XEXDO] :: philosophical/religious school of thought/sect; heresy/heretical doctrine (L+S); + haeresis_2_N = mkN "haeresis" "haereseos" feminine ; -- [XEXDO] :: philosophical/religious school of thought/sect; heresy/heretical doctrine (L+S); haeresis_F_N = mkN "haeresis" "haeresis " feminine ; -- [XEXDO] :: philosophical/religious school of thought/sect; heresy/heretical doctrine (L+S); --- TODO haeresis_N : N1 haeresis, haereseos/is -- F -- [XEXDO] :: philosophical/religious school of thought/sect; heresy/heretical doctrine (L+S); haereticus_A = mkA "haereticus" "haeretica" "haereticum" ; -- [EEXDS] :: heretical, of/belonging to heretical religious doctrines; haereticus_M_N = mkN "haereticus" ; -- [EEXDS] :: heretic; teacher of false doctrine (Dif); haesitatio_F_N = mkN "haesitatio" "haesitationis " feminine ; -- [XXXFS] :: hesitation, hesitating; stammering; resolution; @@ -19871,7 +21400,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg halucinatio_F_N = mkN "halucinatio" "halucinationis " feminine ; -- [XXXEO] :: wandering in mind, idle dream, delusion; idle/aimless behavior (w/mentis); halucinor_V = mkV "halucinari" ; -- [XXXDX] :: wander in mind, talk idly/unreasonably, ramble, dream; wander; hama_F_N = mkN "hama" ; -- [XXXDO] :: bucket; water bucket; (esp. fireman's bucket); --- TODO hamadryas_N : N1 hamadryas, hamadryados/is -- F -- [XXXDX] :: wood-nymph, hamadryad, dryad; + hamadryas_1_N = mkN "hamadryas" "hamadryadis" feminine ; -- [XXXDX] :: wood-nymph, hamadryad, dryad; + hamadryas_2_N = mkN "hamadryas" "hamadryados" feminine ; -- [XXXDX] :: wood-nymph, hamadryad, dryad; hamatus_A = mkA "hamatus" "hamata" "hamatum" ; -- [XXXDX] :: hooked; hamiota_M_N = mkN "hamiota" ; -- [XAXEC] :: angler; hammonitrum_N_N = mkN "hammonitrum" ; -- [XXENS] :: natron (sesquicarbonate of soda) mingled with sand; @@ -19933,24 +21463,26 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg hauddum_Adv = mkAdv "hauddum" ; -- [XXXEO] :: not yet; not at all as yet; haudquaquam_Adv = mkAdv "haudquaquam" ; -- [XXXCO] :: by no means, in no way; not at all; hauquaquam_Adv = mkAdv "hauquaquam" ; -- [XXXCO] :: by no means, in no way; not at all; + haurio_V2 = mkV2 (mkV "haurire" "haurio" "hausi" "haustus ") ; -- [XXXBX] :: draw up/out; drink, swallow, drain, exhaust; haustrum_N_N = mkN "haustrum" ; -- [XXXEC] :: pump; haustus_M_N = mkN "haustus" "haustus " masculine ; -- [XXXDX] :: drink; draught; drawing (of water); haut_Adv = mkAdv "haut" ; -- [XXXCL] :: not, not at all, by no means; not (as a particle); have_Interj = ss "have" ; -- [XXXDX] :: hail!, formal expression of greetings; havens_A = mkA "havens" "haventis"; -- [XXXCW] :: willing, eager, anxious; covetous; haveo_V = mkV "havere" ; -- [XXXCL] :: |be eager/anxious (w/INF); desire, wish for, long after, crave; --- IGNORED he_N : N1 he, undeclined -- N -- [DEQEW] :: he; (5th letter of Hebrew alphabet); (transliterate as H); + he_N = constN "he" neuter ; -- [DEQEW] :: he; (5th letter of Hebrew alphabet); (transliterate as H); hebdomada_F_N = mkN "hebdomada" ; -- [EXXFE] :: |week, seven days; Jewish week, one Sabbath to next; weekly gathering/duty rota; hebdomadarius_A = mkA "hebdomadarius" "hebdomadaria" "hebdomadarium" ; -- [XXXFE] :: lasting a week; hebdomadarius_M_N = mkN "hebdomadarius" ; -- [FEXFE] :: choir official serving for a week; + hebdomas_1_N = mkN "hebdomas" "hebdomadis" feminine ; -- [EXXDE] :: |week, seven days; Jewish week, one Sabbath to next; weekly gathering/duty rota; + hebdomas_2_N = mkN "hebdomas" "hebdomados" feminine ; -- [EXXDE] :: |week, seven days; Jewish week, one Sabbath to next; weekly gathering/duty rota; hebdomas_F_N = mkN "hebdomas" "hebdomadis " feminine ; -- [EXXCS] :: |week, seven days; Jewish week, one Sabbath to next; weekly gathering/duty rota; --- TODO hebdomas_N : N1 hebdomas, hebdomados/is -- F -- [EXXDE] :: |week, seven days; Jewish week, one Sabbath to next; weekly gathering/duty rota; hebenius_A = mkA "hebenius" "hebenia" "hebenium" ; -- [FXXEE] :: ebony-, of ebony; hebenum_N_N = mkN "hebenum" ; -- [XXXFO] :: ebony (wood or tree of genus Diospyrus); hebenus_C_N = mkN "hebenus" ; -- [XXXDO] :: ebony (wood or tree of genus Diospyrus); hebeo_V = mkV "hebere" ; -- [XXXCO] :: be blunt; be sluggish/inactive; grow dim/faint, die down; (of feelings); hebes_A = mkA "hebes" "hebetis"; -- [XXXDX] :: blunt, dun; languid; stupid; --- TODO hebesco_V : V2 hebesco, hebescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: grow blunt or feeble; + hebesco_V = mkV "hebescere" "hebesco" nonExist nonExist ; -- [XXXDX] :: grow blunt or feeble; hebeto_V2 = mkV2 (mkV "hebetare") ; -- [XXXBO] :: blunt, deaden, make dull/faint/dim/torpid/inactive (light/plant/senses), weaken; hebetudo_F_N = mkN "hebetudo" "hebetudinis " feminine ; -- [FXXDV] :: sluggishness, sloth, inertness; dullness; dimness (color/light); feebleness; hebria_F_N = mkN "hebria" ; -- [DXXFS] :: wine vessel; @@ -20002,13 +21534,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg hendecasyllabus_M_N = mkN "hendecasyllabus" ; -- [XXXDX] :: verses consisting of eleven syllables (pl.); heortologia_F_N = mkN "heortologia" ; -- [FXXFE] :: science of feasts; hepatitis_F_N = mkN "hepatitis" "hepatitidis " feminine ; -- [GBXEK] :: hepatitis; --- TODO heptas_N : N1 heptas, heptados/is -- F -- [XSHEE] :: seven (Greek); + heptas_1_N = mkN "heptas" "heptadis" feminine ; -- [XSHEE] :: seven (Greek); + heptas_2_N = mkN "heptas" "heptados" feminine ; -- [XSHEE] :: seven (Greek); hepteris_F_N = mkN "hepteris" "hepteris " feminine ; -- [XWXEC] :: galley with seven banks of oars; hera_F_N = mkN "hera" ; -- [XXXDX] :: mistress; lady of the house; woman in relation to her servants; Lady; herba_F_N = mkN "herba" ; -- [XAXAX] :: herb, grass; herbaceus_A = mkA "herbaceus" "herbacea" "herbaceum" ; -- [XAXFS] :: grassy; grass-colored(Pliny); herbagium_N_N = mkN "herbagium" ; -- [FLXEM] :: right of pasturage; --- TODO herbesco_V : V2 herbesco, herbescere, -, - -- Declension: 3rd -- Comment: [XAXEC] :: grow into blades or stalks; + herbesco_V = mkV "herbescere" "herbesco" nonExist nonExist ; -- [XAXEC] :: grow into blades or stalks; herbicidum_N_N = mkN "herbicidum" ; -- [GXXEK] :: herbicide; herbidus_A = mkA "herbidus" "herbida" "herbidum" ; -- [XXXDX] :: grassy; herbifer_A = mkA "herbifer" "herbifera" "herbiferum" ; -- [XXXDX] :: full of grass or herbs; bearing magical or medicinal plants; @@ -20016,6 +21549,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg herbisectrum_N_N = mkN "herbisectrum" ; -- [GXXEK] :: lawn mower; herbosus_A = mkA "herbosus" "herbosa" "herbosum" ; -- [XXXEC] :: grassy; herbula_F_N = mkN "herbula" ; -- [XXXEC] :: little herb; + hercisco_V2 = mkV2 (mkV "herciscere" "hercisco" nonExist nonExist) ; -- [XLXEC] :: divide an inheritance; hercle_Interj = ss "hercle" ; -- [XXXDX] :: By Hercules!; assuredly, indeed; herctum_N_N = mkN "herctum" ; -- [XXXEC] :: inheritance; [herctum ciere => to divide an inheritance]; hercule_Interj = ss "hercule" ; -- [XXXDX] :: by Hercules!; assuredly, indeed; @@ -20048,7 +21582,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg heroicus_A = mkA "heroicus" "heroica" "heroicum" ; -- [XXXDX] :: heroic, epic; heroina_F_N = mkN "heroina" ; -- [XYXEO] :: heroine (mythical); heroine_F_N = mkN "heroine" "heroines " feminine ; -- [XYXEO] :: heroine (mythical); --- TODO herois_N : N1 herois, heroidos/is -- F -- [XYXCO] :: heroine (mythical); + herois_1_N = mkN "herois" "heroidis" feminine ; -- [XYXCO] :: heroine (mythical); + herois_2_N = mkN "herois" "heroidos" feminine ; -- [XYXCO] :: heroine (mythical); heros_M_N = mkN "heros" "herois " masculine ; -- [XXXDX] :: hero; demigod; (only sing.); herous_A = mkA "herous" "heroa" "heroum" ; -- [XXXDX] :: heroic; herus_M_N = mkN "herus" ; -- [FXXEE] :: master, lord; owner, proprietor; @@ -20061,8 +21596,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg heterogeneus_A = mkA "heterogeneus" "heterogenea" "heterogeneum" ; -- [FXXFM] :: heterogeneous; heterogenia_F_N = mkN "heterogenia" ; -- [FXXFM] :: heterogeneity; heterosexualis_A = mkA "heterosexualis" "heterosexualis" "heterosexuale" ; -- [HBXEE] :: heterosexual; --- IGNORED heth_N : N1 heth, undeclined -- N -- [DEQEW] :: het; (8th letter of Hebrew alphabet); (transliterate as CH); --- IGNORED hethanim_N : N1 hethanim, undeclined -- N -- [EEQFW] :: Ethanim; ancient Hebrew seventh month; (meaning flowing rivers); + heth_N = constN "heth" neuter ; -- [DEQEW] :: het; (8th letter of Hebrew alphabet); (transliterate as CH); + hethanim_N = constN "hethanim" neuter ; -- [EEQFW] :: Ethanim; ancient Hebrew seventh month; (meaning flowing rivers); heu_Interj = ss "heu" ; -- [XXXAX] :: oh! ah! alas! (an expression of dismay or pain); heuristicus_A = mkA "heuristicus" "heuristica" "heuristicum" ; -- [GXXEK] :: heuristic; heus_Interj = ss "heus" ; -- [XXXDX] :: hey!, ho!, ho there!, listen!; @@ -20074,7 +21609,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg hexametrus_M_N = mkN "hexametrus" ; -- [XPXEO] :: hexameter line; verse in hexameter; hexapeda_F_N = mkN "hexapeda" ; -- [GXXEK] :: height (measure of length); hexaphorum_N_N = mkN "hexaphorum" ; -- [XXXES] :: six-man litter; --- TODO hexas_N : N1 hexas, hexados/is -- F -- [XSHFE] :: six (Greek); + hexas_1_N = mkN "hexas" "hexadis" feminine ; -- [XSHFE] :: six (Greek); + hexas_2_N = mkN "hexas" "hexados" feminine ; -- [XSHFE] :: six (Greek); hexeris_F_N = mkN "hexeris" "hexeris " feminine ; -- [XWXEC] :: galley with six banks of oars; hiacinthina_F_N = mkN "hiacinthina" ; -- [FXXEE] :: amethyst; dark-colored precious stone; hiacinthinus_A = mkA "hiacinthinus" "hiacinthina" "hiacinthinum" ; -- [FXXEE] :: of/belonging to hyacinth; hyacinth-colored/violet/blue/sapphire/purple; @@ -20103,14 +21639,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg hieronica_M_N = mkN "hieronica" ; -- [XEXFO] :: winner in (religious festival) games; hierotheca_F_N = mkN "hierotheca" ; -- [EEXEE] :: reliquary; hierus_A = mkA "hierus" "hiera" "hierum" ; -- [XXXEO] :: sacred/supernatural; [hiera botane => vervain, medicinal/sacred plant]; --- SLASHSTUFF hilaris_A : A2 hilaris, hilare, hilarior -or -us, hilarissimus -a -um -- [XXXBX] :: cheerful, lively, light-hearted; + hilaresco_V = mkV "hilarescere" "hilaresco" nonExist nonExist; -- [XXXEO] :: be/become cheerful/joyful; + hilaris_A = mkA "hilaris" ; -- [XXXBX] :: cheerful, lively, light-hearted; + hilarisco_V = mkV "hilariscere" "hilarisco" nonExist nonExist; -- [XXXFO] :: be/become cheeerful/joyful; hilaritas_F_N = mkN "hilaritas" "hilaritatis " feminine ; -- [XXXDX] :: cheerfulness, lightheartedness; hilaro_V2 = mkV2 (mkV "hilarare") ; -- [XXXCO] :: cheer, gladden; give cheerful appearance to; hilarulus_A = mkA "hilarulus" "hilarula" "hilarulum" ; -- [XXXEC] :: gay, cheerful; --- SLASHSTUFF hilarus_A : A2 hilarus, hilara -um, hilarior -or -us, hilarissimus -a -um -- [XXXDX] :: cheerful, lively, light-hearted; + hilarus_A = mkA "hilarus" ; -- [XXXDX] :: cheerful, lively, light-hearted; hilum_N_N = mkN "hilum" ; -- [XXXEC] :: trifle; (with negative) not a whit, not in the least; --- IGNORED hin_N : N1 hin, undeclined -- N -- [ESQFW] :: hin (Hebrew liquid measure, little less than 5 liters); (Vulgate Exodus 29:40); + hin_N = constN "hin" neuter ; -- [ESQFW] :: hin (Hebrew liquid measure, little less than 5 liters); (Vulgate Exodus 29:40); hinc_Adv = mkAdv "hinc" ; -- [XXXAX] :: from here, from this source/cause; hence, henceforth; + hinnio_V2 = mkV2 (mkV "hinnire" "hinnio" "hinnivi" "hinnitus ") ; -- [XXXDX] :: neigh; hinnitus_M_N = mkN "hinnitus" "hinnitus " masculine ; -- [XXXDX] :: neighing; hinnuleus_M_N = mkN "hinnuleus" ; -- [XAXEO] :: fawn; young of the deer; hinnulus_M_N = mkN "hinnulus" ; -- [XAXEO] :: hinny (offspring of she-ass and stallion OLD); fawn; roe deer (KJames); @@ -20164,7 +21703,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg holisatrum_N_N = mkN "holisatrum" ; -- [XAXEX] :: HOLISATR; (some kind of foodstuff, eg herb); holitorius_A = mkA "holitorius" "holitoria" "holitorium" ; -- [XAXEC] :: of herbs; [w/forum => vegetable market]; holocaustoma_N_N = mkN "holocaustoma" "holocaustomatis " neuter ; -- [DEQES] :: whole burnt offering, sacrifice wholly consumed by fire; holocaust; (Hebrew); --- TODO holocaustosis_N : N1 holocaustosis, holocaustosos/is -- F -- [EEQFW] :: whole burnt offering, sacrifice wholly consumed by fire; holocaust; (Hebrew); + holocaustosis_1_N = mkN "holocaustosis" "holocaustosis" feminine ; -- [EEQFW] :: whole burnt offering, sacrifice wholly consumed by fire; holocaust; (Hebrew); + holocaustosis_2_N = mkN "holocaustosis" "holocaustosos" feminine ; -- [EEQFW] :: whole burnt offering, sacrifice wholly consumed by fire; holocaust; (Hebrew); holocaustum_N_N = mkN "holocaustum" ; -- [DEQES] :: whole burnt offering, sacrifice wholly consumed by fire; holocaust; (Hebrew); holocautom_N_N = mkN "holocautom" "holocautomatis " neuter ; -- [DEQEE] :: whole burnt offering, sacrifice wholly consumed by fire; holocaust; (Hebrew); holosericum_N_N = mkN "holosericum" ; -- [FXXEE] :: silk; velvet; @@ -20199,19 +21739,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg honeste_Adv = mkAdv "honeste" ; -- [XXXDX] :: honorably; decently; honesto_V = mkV "honestare" ; -- [XXXDX] :: honor (with); adorn, grace; honestor_V = mkV "honestari" ; -- [FXXEE] :: be earnest/serious/grave; --- SLASHSTUFF honestus_A : A2 honestus, honesta -um, honestior -or -us, honestissimus -a -um -- [XXXAX] :: distinguished, reputable, respected, honorable, upright, honest; worthy; + honestus_A = mkA "honestus" ; -- [XXXAX] :: distinguished, reputable, respected, honorable, upright, honest; worthy; honor_M_N = mkN "honor" "honoris " masculine ; -- [XXXAO] :: honor; respect/regard; mark of esteem, reward; dignity/grace; public office; honorabilis_A = mkA "honorabilis" "honorabilis" "honorabile" ; -- [XXXEO] :: honorific, conferring honor; honored; honorable, that procures honor/esteem; honorabiliter_Adv = mkAdv "honorabiliter" ; -- [XXXES] :: honorably; honorarium_N_N = mkN "honorarium" ; -- [FXXDE] :: stipend; honorarium; reimbursement; honorarius_A = mkA "honorarius" "honoraria" "honorarium" ; -- [XXXDX] :: complimentary, supplied voluntarily; honorate_Adv =mkAdv "honorate" "honoratius" "honoratissime" ; -- [XXXDO] :: honorably, with honor; in honorable fashion; decently (Ecc); nobly; --- SLASHSTUFF honoratus_A : A2 honoratus, honorata -um, honoratior -or -us, honoratissimus -a -um -- [XXXBO] :: honored/respected/esteemed/distinguished; honorable; conferring honor; + honoratus_A = mkA "honoratus" ; -- [XXXBO] :: honored/respected/esteemed/distinguished; honorable; conferring honor; honorificatus_A = mkA "honorificatus" "honorificata" "honorificatum" ; -- [XXXEE] :: honorable; that does honor; conferring honor; honorifice_Adv =mkAdv "honorifice" "honorificentius" "honorificentissime" ; -- [XXXCO] :: honorably; respectfully; with honor/respect; honorificentia_F_N = mkN "honorificentia" ; -- [EXXFS] :: honoring; doing of honor; honorifico_V2 = mkV2 (mkV "honorificare") ; -- [DXXES] :: honor; do honor to; confer honor; --- SLASHSTUFF honorificus_A : A2 honorificus, honorifica -um, honorificentior -or -us, honorificentissimus -a - -- [XXXCO] :: honorific; that does honor; conferring/showing honor; + honorificus_A = mkA "honorificus" ; -- [XXXCO] :: honorific; that does honor; conferring/showing honor; honoro_V = mkV "honorare" ; -- [XXXBX] :: respect, honor; honorus_A = mkA "honorus" "honora" "honorum" ; -- [XXXDX] :: conferring honor; honos_M_N = mkN "honos" "honoris " masculine ; -- [BXXAO] :: honor; respect/regard; mark of esteem, reward; dignity/grace; public office; @@ -20229,7 +21769,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg hordiacius_A = mkA "hordiacius" "hordiacia" "hordiacium" ; -- [XAXCO] :: barley-, of/connected to barley; (used as term of contempt); hordiarius_A = mkA "hordiarius" "hordiaria" "hordiarium" ; -- [XAXCS] :: barley-, of/connected to barley; [~ pira => pears ripening w/barley]; horia_F_N = mkN "horia" ; -- [XWXEC] :: small fishing boat; --- TODO horizon_N : N1 horizon, horizontos/is -- M -- [XSXEO] :: horizon; line on celestial sphere corresponding to horizon; + horizon_1_N = mkN "horizon" "horizontis" masculine ; -- [XSXEO] :: horizon; line on celestial sphere corresponding to horizon; + horizon_2_N = mkN "horizon" "horizontos" masculine ; -- [XSXEO] :: horizon; line on celestial sphere corresponding to horizon; horizontalis_A = mkA "horizontalis" "horizontalis" "horizontale" ; -- [GSXEM] :: horizontal; horizontaliter_Adv = mkAdv "horizontaliter" ; -- [GXXEM] :: horizontally; horminum_N_N = mkN "horminum" ; -- [XAXNS] :: clary-herb; sage (Pliny); @@ -20242,9 +21783,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg horoma_N_N = mkN "horoma" "horomatis " neuter ; -- [DEXEZ] :: vision; horrendus_A = mkA "horrendus" "horrenda" "horrendum" ; -- [XXXDX] :: horrible, dreadful, terrible; horreo_V = mkV "horrere" ; -- [XXXAX] :: dread, shrink from, shudder at; stand on end, bristle; have rough appearance; --- TODO horresco_V : V2 horresco, horrescere, horrui, - -- Declension: 3rd -- Comment: [XXXDX] :: dread, become terrified; bristle up; begin to shake/tremble/shudder/shiver; + horresco_V2 = mkV2 (mkV "horrescere" "horresco" "horrui" nonExist ) ; -- [XXXDX] :: dread, become terrified; bristle up; begin to shake/tremble/shudder/shiver; horreum_N_N = mkN "horreum" ; -- [XXXDX] :: storehouse; barn; --- SLASHSTUFF horribilis_A : A2 horribilis, horribile, horribilior -or -us, horribilissimus -a -um -- [XXXDX] :: awful, horrible, terrible; monstrous; rough; + horribilis_A = mkA "horribilis" ; -- [XXXDX] :: awful, horrible, terrible; monstrous; rough; horridulus_A = mkA "horridulus" "horridula" "horridulum" ; -- [XXXEC] :: somewhat rough, unadorned; horridus_A = mkA "horridus" "horrida" "horridum" ; -- [XXXBX] :: wild, frightful, rough, bristly, standing on end, unkempt; grim; horrible; horrifer_A = mkA "horrifer" "horrifera" "horriferum" ; -- [XXXDX] :: awful, horrible, dreadful; frightening, chilling, exciting terror; @@ -20286,10 +21827,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg hostilitas_F_N = mkN "hostilitas" "hostilitatis " feminine ; -- [XXXEE] :: hostility, enmity; hostiliter_Adv = mkAdv "hostiliter" ; -- [XWXCO] :: in an unfriendly/hostile way, in the manner of an enemy; hostimentum_N_N = mkN "hostimentum" ; -- [XXXEC] :: compensation, requital; --- TODO hostio_V : V2 hostio, hostire, -, - -- Declension: 4th -- Comment: [XXXEC] :: requite, recompense; + hostio_V = mkV "hostire" "hostio" nonExist nonExist ; -- [XXXEC] :: requite, recompense; hostis_F_N = mkN "hostis" "hostis " feminine ; -- [XXXDX] :: enemy (of the state); stranger, foreigner; the enemy (pl.); hostis_M_N = mkN "hostis" "hostis " masculine ; -- [XXXDX] :: enemy (of the state); stranger, foreigner; the enemy (pl.); --- IGNORED hu_N : N1 hu, undeclined -- N -- [EXQFW] :: what (Hebrew); (food from God for wandering Jews); [man hu => what is this]; + hu_N = constN "hu" neuter ; -- [EXQFW] :: what (Hebrew); (food from God for wandering Jews); [man hu => what is this]; huc_Adv = mkAdv "huc" ; -- [XXXAX] :: here, to this place; to this point; huccine_Adv = mkAdv "huccine" ; -- [XXXCE] :: so far; to this point; hucusque_Adv = mkAdv "hucusque" ; -- [XXXCO] :: thus far, to this point, up to this time; hitherto; to this extent; @@ -20304,7 +21845,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg humanitus_Adv = mkAdv "humanitus" ; -- [XXXDO] :: kindly, reasonably; moderately; in manner becoming man; in the way of humans; humano_V2 = mkV2 (mkV "humanare") ; -- [DEXES] :: make human; (in PASSIVE of the incarnation of Christ); humanum_N_N = mkN "humanum" ; -- [XXXDX] :: human affairs (pl.), concerns of men; events of life; --- SLASHSTUFF humanus_A : A2 humanus, humana -um, humanior -or -us, humanissimus -a -um -- [XXXAX] :: human; kind; humane, civilized, refined; [~ hostiae => human sacrifice]; + humanus_A = mkA "humanus" ; -- [XXXAX] :: human; kind; humane, civilized, refined; [~ hostiae => human sacrifice]; humecto_V2 = mkV2 (mkV "humectare") ; -- [XXXEE] :: moisten; humectus_A = mkA "humectus" "humecta" "humectum" ; -- [XXXEC] :: moist; humens_A = mkA "humens" "humentis"; -- [XXXDX] :: moist, wet; @@ -20318,7 +21859,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg humidus_A = mkA "humidus" "humida" "humidum" ; -- [XXXDX] :: damp, moist, dank, wet, humid; humiliatio_F_N = mkN "humiliatio" "humiliationis " feminine ; -- [DXXES] :: humiliation, humbling; humilio_V2 = mkV2 (mkV "humiliare") ; -- [DXXCS] :: humble; abase; humiliate (Def); --- SLASHSTUFF humilis_A : A2 humilis, humile, humilior -or -us, humillimus -a -um -- [XXXAX] :: low, lowly, small, slight, base, mean, humble, obscure, poor, insignificant; + humilis_A = mkA "humilis" ; -- [XXXAX] :: low, lowly, small, slight, base, mean, humble, obscure, poor, insignificant; humilitas_F_N = mkN "humilitas" "humilitatis " feminine ; -- [XXXBO] :: |lowness (position/rank); shortness; humbleness; submissiveness; humility (Bee); humiliter_Adv =mkAdv "humiliter" "humilius" "humillime" ; -- [XXXCO] :: abjectly, in a submissive manner; low, at low elevation; humbly, meanly (Cas); humo_V = mkV "humare" ; -- [XXXDX] :: inter, bury; @@ -20353,8 +21894,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg hydropicus_A = mkA "hydropicus" "hydropica" "hydropicum" ; -- [XBXCO] :: dropsical, suffering from dropsy; hydropisis_F_N = mkN "hydropisis" "hydropisis " feminine ; -- [XBXNO] :: dropsy; hydroplanum_N_N = mkN "hydroplanum" ; -- [GTXEK] :: seaplane; + hydrops_1_N = mkN "hydrops" "hydropis" masculine ; -- [XBXEO] :: dropsy; + hydrops_2_N = mkN "hydrops" "hydropos" masculine ; -- [XBXEO] :: dropsy; hydrops_M_N = mkN "hydrops" "hydropis " masculine ; -- [XBXEO] :: dropsy; --- TODO hydrops_N : N1 hydrops, hydropos/is -- M -- [XBXEO] :: dropsy; hydrosphaera_F_N = mkN "hydrosphaera" ; -- [GTXEK] :: hydrosphere; hydrostatica_F_N = mkN "hydrostatica" ; -- [GSXEK] :: hydrostatic; hydrostaticus_A = mkA "hydrostaticus" "hydrostatica" "hydrostaticum" ; -- [GSXEK] :: hydrostatic; @@ -20440,15 +21982,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ibex_F_N = mkN "ibex" "ibicis " feminine ; -- [XAXNO] :: ibex; (species of wild mountain goat w/large ridged recurved diverging horns); ibi_Adv = mkAdv "ibi" ; -- [XXXAX] :: there, in that place; thereupon; ibidem_Adv = mkAdv "ibidem" ; -- [XXXDX] :: in that very place; at that very instant; + ibis_1_N = mkN "ibis" "ibis" feminine ; -- [EXXEW] :: ibis; (sacred Egyptian bird); + ibis_2_N = mkN "ibis" "ibos" feminine ; -- [EXXEW] :: ibis; (sacred Egyptian bird); ibis_F_N = mkN "ibis" "ibis " feminine ; -- [XAXCO] :: ibis; (sacred Egyptian bird); --- TODO ibis_N : N1 ibis, ibos/is -- F -- [EXXEW] :: ibis; (sacred Egyptian bird); ibiscum_N_N = mkN "ibiscum" ; -- [XAXEO] :: marsh mallow; (Althea officinalis); (shrubby herb, grows near salt marshes); ibix_M_N = mkN "ibix" "ibicis " masculine ; -- [XAXNO] :: ibex; (species of wild mountain goat w/large ridged recurved diverging horns); ichneumon_M_N = mkN "ichneumon" "ichneumonis " masculine ; -- [XAEDO] :: ichneumon; parasitic fly; [Herpestes ichneumon => weasel-like Egyptian animal]; ichnographia_F_N = mkN "ichnographia" ; -- [GTXEK] :: plan (drawing); ichnographice_Adv = mkAdv "ichnographice" ; -- [GTXEK] :: planned; with aid of plan; + icio_V2 = mkV2 (mkV "icere" "icio" "ici" "ictus ") ; -- [XXXDX] :: hit, strike; smite, stab, sting; [foedus ~ => conclude/make a treaty, league]; + ico_V2 = mkV2 (mkV "icere" "ico" "ici" "ictus ") ; -- [XXXDX] :: hit, strike; smite, stab, sting; [foedus ~ => conclude/make a treaty, league]); icon_F_N = mkN "icon" "iconis " feminine ; -- [XXXEO] :: giving an exact image (of work of art); life-size (L+S); of an image; --- TODO iconastasis_N : N1 iconastasis, iconastaseos/is -- F -- [XXXEE] :: iconostasis, partition separating sanctuary from body of Greek church; + iconastasis_1_N = mkN "iconastasis" "iconastaseis" feminine ; -- [XXXEE] :: iconostasis, partition separating sanctuary from body of Greek church; + iconastasis_2_N = mkN "iconastasis" "iconastaseos" feminine ; -- [XXXEE] :: iconostasis, partition separating sanctuary from body of Greek church; iconismus_M_N = mkN "iconismus" ; -- [XXXEO] :: specification of identifying marks on person; representation by image; imagery; icosaedron_N_N = mkN "icosaedron" "icosaedri " neuter ; -- [FSXFM] :: icosahedron; (solid figure with 20 sides); ictericus_A = mkA "ictericus" "icterica" "ictericum" ; -- [XBXEC] :: jaundiced; @@ -20492,23 +22038,24 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg idolum_N_N = mkN "idolum" ; -- [DEXFP] :: |idol-temple; idolatry, paganism (Souter); fetish (Cal); idonee_Adv = mkAdv "idonee" ; -- [XXXDO] :: suitably; satisfactorily, in a satisfactory manner; appropriately; adequately; idoneus_A = mkA "idoneus" "idonea" "idoneum" ; -- [XXXBO] :: |substantial, solvent; having money to meet obligations, backed by resources; --- IGNORED idos_N : N1 idos, undeclined -- N -- [BXHFO] :: form; visible aspect of object; + idos_N = constN "idos" neuter ; -- [BXHFO] :: form; visible aspect of object; iens_A = mkA "iens" "euntis"; -- [XXXBO] :: going; (PRES PPL of eo); --- igitur_Conj : Conj igitur -- [XXXAO] :: therefore (postpositive), so/then; consequently; accordingly; well/in that case; + igitur_Conj = mkConj "igitur" missing ; -- [XXXAO] :: therefore (postpositive), so/then; consequently; accordingly; well/in that case; ignarus_A = mkA "ignarus" "ignara" "ignarum" ; -- [XXXBX] :: ignorant; unaware, having no experience of; senseless; strange; ignavia_F_N = mkN "ignavia" ; -- [XXXDX] :: idleness, laziness; faintheartedness; --- SLASHSTUFF ignavus_A : A2 ignavus, ignava -um, ignavior -or -us, ignavissimus -a -um -- [XXXBO] :: lazy/idle/sluggish; spiritless; cowardly, faint-hearted; ignoble, mean; useless; --- TODO ignesco_V : V2 ignesco, ignescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: take fire, kindle; become inflamed (with passion); + ignavus_A = mkA "ignavus" ; -- [XXXBO] :: lazy/idle/sluggish; spiritless; cowardly, faint-hearted; ignoble, mean; useless; + ignesco_V = mkV "ignescere" "ignesco" nonExist nonExist ; -- [XXXDX] :: take fire, kindle; become inflamed (with passion); igneus_A = mkA "igneus" "ignea" "igneum" ; -- [XXXDX] :: fiery, hot; ardent; igniculus_M_N = mkN "igniculus" ; -- [XXXEC] :: little fire, flame, spark; ignifer_A = mkA "ignifer" "ignifera" "igniferum" ; -- [XXXDX] :: bearing or containing fire; ignigena_M_N = mkN "ignigena" ; -- [XXXEC] :: born of fire; + ignio_V2 = mkV2 (mkV "ignire" "ignio" "ignivi" "ignitus ") ; -- [EXXFS] :: ignite; make red-hot; ignipes_A = mkA "ignipes" "ignipedis"; -- [XXXEC] :: fiery-footed; ignipotens_A = mkA "ignipotens" "ignipotentis"; -- [XXXDX] :: god/ruler of fire, potent in fire; applied to Vulcan; ignis_M_N = mkN "ignis" "ignis " masculine ; -- [XXXAX] :: fire, brightness; passion, glow of passion; ignistitium_N_N = mkN "ignistitium" ; -- [GXXEK] :: cease-fire; ignitabulum_N_N = mkN "ignitabulum" ; -- [GXXEK] :: lighter; --- SLASHSTUFF ignitus_A : A2 ignitus, ignita -um, ignitior -or -us, ignitissimus -a -um -- [XXXEO] :: containing fire; + ignitus_A = mkA "ignitus" ; -- [XXXEO] :: containing fire; ignobilis_A = mkA "ignobilis" "ignobilis" "ignobile" ; -- [XXXDX] :: ignoble; unknown, obscure; of low birth; ignobilitas_F_N = mkN "ignobilitas" "ignobilitatis " feminine ; -- [XXXDX] :: obscurity, want of fame; low birth; ignominia_F_N = mkN "ignominia" ; -- [XXXDX] :: disgrace, ignominy, dishonor; @@ -20519,6 +22066,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ignorantio_F_N = mkN "ignorantio" "ignorantionis " feminine ; -- [FXXCE] :: ignorance; lack of knowledge; absence of data on which to make judgment; ignoratio_F_N = mkN "ignoratio" "ignorationis " feminine ; -- [XXXCO] :: ignorance; lack of knowledge; absence of data on which to make judgment; ignoro_V = mkV "ignorare" ; -- [XXXAX] :: not know; be unfamiliar with; disregard; ignore; be ignorant of; + ignosco_V2 = mkV2 (mkV "ignoscere" "ignosco" "ignovi" "ignotus ") ; -- [XXXBX] :: pardon, forgive (with DAT); ignotus_A = mkA "ignotus" "ignota" "ignotum" ; -- [XXXAX] :: unknown, strange; unacquainted with, ignorant of; ile_N_N = mkN "ile" "ilis " neuter ; -- [XXXDX] :: groin, private parts; side of body from hips to groin (pl.), loin; guts; ilex_F_N = mkN "ilex" "ilicis " feminine ; -- [XXXDX] :: holm-oak, great scarlet oak, tree or wood; its acorn; @@ -20529,6 +22077,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ilict_Adv = mkAdv "ilict" ; -- [XXXCO] :: you may go, off with you (dismissal); it's all over/up (dismay); at once; iligneus_A = mkA "iligneus" "ilignea" "iligneum" ; -- [XXXFS] :: oaken; of helm oak; ilignus_A = mkA "ilignus" "iligna" "ilignum" ; -- [XXXDX] :: of the holm-oak, great scarlet oak, or its wood; + illabor_V = mkV "illabi" "illabor" "illapsus sum " ; -- [XXXCO] :: slide/glide/flow (into), move smoothly; fall/sink (on to); illaboro_V = mkV "illaborare" ; -- [XXXFO] :: work (at); (w/DAT); illac_Adv = mkAdv "illac" ; -- [XXXDX] :: that way; illacrimabilis_A = mkA "illacrimabilis" "illacrimabilis" "illacrimabile" ; -- [XXXDX] :: unlamented; inexorable; @@ -20557,11 +22106,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg illiberalitas_F_N = mkN "illiberalitas" "illiberalitatis " feminine ; -- [XXXFO] :: stinginess, meanness, lack of generosity; illiberaliter_Adv = mkAdv "illiberaliter" ; -- [XXXEO] :: stingily, meanly, ungenerously; in manner unworthy of free man; illic_Adv = mkAdv "illic" ; -- [XXXBX] :: in that place, there, over there; + illicio_V2 = mkV2 (mkV "illicere" "illicio" "illexi" "illectus ") ; -- [XXXDX] :: allure, entice; illicitus_A = mkA "illicitus" "illicita" "illicitum" ; -- [XXXDX] :: forbidden, unlawful, illicit; illico_Adv = mkAdv "illico" ; -- [EXXBE] :: immediately; on the spot, in that very place; + illido_V2 = mkV2 (mkV "illidere" "illido" "illisi" "illisus ") ; -- [XXXBO] :: strike/beat/dash/push against/on; injure by crushing; drive (teeth into); illigo_V = mkV "illigare" ; -- [XXXDX] :: bind, fasten, tie up; illim_Adv = mkAdv "illim" ; -- [XXXDO] :: thence, from there; from that place/source/quarter; illinc_Adv = mkAdv "illinc" ; -- [XXXDX] :: there, in that place, on that side; from there; + illinio_V2 = mkV2 (mkV "illinire" "illinio" "illinevi" "illinitus ") ; -- [XXXCS] :: smear on; spread on; besmear; + illino_V2 = mkV2 (mkV "illinere" "illino" "illevi" "illitus ") ; -- [XXXDX] :: smear over; anoint; illiteratus_A = mkA "illiteratus" "illiterata" "illiteratum" ; -- [XXXES] :: unlettered; illiterate; (illitteratus); illitteratissimus_A = mkA "illitteratissimus" "illitteratissima" "illitteratissimum" ; -- [XXXDS] :: unlettered; illiterate; unwritten; illo_Adv = mkAdv "illo" ; -- [XXXDX] :: there, thither, to that place/point; @@ -20569,7 +22122,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg illotus_A = mkA "illotus" "illota" "illotum" ; -- [XXXFS] :: unwashed; dirty; illuc_Adv = mkAdv "illuc" ; -- [XXXAX] :: there, thither, to that place/point; illuceo_V = mkV "illucere" ; -- [XXXEO] :: illuminate, shine on; --- TODO illucesco_V : V2 illucesco, illucescere, illuxi, - -- Declension: 3rd -- Comment: [XXXDX] :: begin to dawn; + illucesco_V2 = mkV2 (mkV "illucescere" "illucesco" "illuxi" nonExist ) ; -- [XXXDX] :: begin to dawn; + illudo_V2 = mkV2 (mkV "illudere" "illudo" "illusi" "illusus ") ; -- [XXXBX] :: mock, ridicule, speak mockingly of; fool, dupe; use for sexual pleasure; illuminatio_F_N = mkN "illuminatio" "illuminationis " feminine ; -- [XXXFO] :: glory, illustriousness; enlightening (Ecc); lighting/illumination; illuminator_M_N = mkN "illuminator" "illuminatoris " masculine ; -- [GXXEK] :: illuminator; illumino_V = mkV "illuminare" ; -- [GXXEK] :: illuminate; color; @@ -20579,7 +22133,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg illusor_M_N = mkN "illusor" "illusoris " masculine ; -- [DXXES] :: scoffer; mocker; illusorius_A = mkA "illusorius" "illusoria" "illusorium" ; -- [DXXES] :: ironical; of a scoffer/mocking character; illustre_Adv =mkAdv "illustre" "illustrius" "illustrissime" ; -- [XXXEO] :: with clarity; clearly, distinctly, perspicuously (L+S); --- SLASHSTUFF illustris_A : A2 illustris, illustre, illustrior -or -us, illustrissimus -a -um -- [XXXBO] :: bright, shining, brilliant; clear, lucid; illustrious, distinguished, famous; + illustris_A = mkA "illustris" ; -- [XXXBO] :: bright, shining, brilliant; clear, lucid; illustrious, distinguished, famous; illustro_V2 = mkV2 (mkV "illustrare") ; -- [XXXBO] :: illuminate, light up; give glory; embellish; make clear, elucidate; enlighten; illutus_A = mkA "illutus" "illuta" "illutum" ; -- [XXXFS] :: unwashed; dirty; illuvies_F_N = mkN "illuvies" "illuviei " feminine ; -- [XXXDX] :: dirt, filth; filthy condition; @@ -20591,15 +22145,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg imaginor_V = mkV "imaginari" ; -- [XXXEC] :: imagine, conceive, picture to oneself; imago_F_N = mkN "imago" "imaginis " feminine ; -- [XXXAX] :: likeness, image, appearance; statue; idea; echo; ghost, phantom; imaguncula_F_N = mkN "imaguncula" ; -- [XXXEO] :: small image; statuette; --- SLASHSTUFF imbecillis_A : A2 imbecillis, imbecille, imbecillior -or -us, imbecillissimus -a -um -- [XXXAO] :: weak/feeble; delicate (plant); fragile; ineffective; lacking in power/resources; + imbecillis_A = mkA "imbecillis" ; -- [XXXAO] :: weak/feeble; delicate (plant); fragile; ineffective; lacking in power/resources; imbecillitas_F_N = mkN "imbecillitas" "imbecillitatis " feminine ; -- [XXXDX] :: weakness, feebleness; moral/intellectual weakness; --- SLASHSTUFF imbecillus_A : A2 imbecillus, imbecilla -um, imbecillior -or -us, imbecillissimus -a -um -- [XXXAO] :: weak/feeble; delicate (plant); fragile; ineffective; lacking in power/resources; + imbecillus_A = mkA "imbecillus" ; -- [XXXAO] :: weak/feeble; delicate (plant); fragile; ineffective; lacking in power/resources; imbellis_A = mkA "imbellis" "imbellis" "imbelle" ; -- [XXXDX] :: unwarlike; not suited or ready for war; imber_M_N = mkN "imber" "imbris " masculine ; -- [XXXBO] :: rain, shower, storm; shower of liquid/snow/hail/missiles; water (in general); imberbis_A = mkA "imberbis" "imberbis" "imberbe" ; -- [XXXDX] :: beardless; imberbus_A = mkA "imberbus" "imberba" "imberbum" ; -- [XXXEC] :: beardless; + imbibo_V2 = mkV2 (mkV "imbibere" "imbibo" "imbibi" "imbitus ") ; -- [XXXCO] :: drink in, imbibe; assimilate; absorb into one's mind, conceive; + imbito_V2 = mkV2 (mkV "imbitere" "imbito" nonExist nonExist) ; -- [XXXFO] :: enter;; go into; imbrex_F_N = mkN "imbrex" "imbricis " feminine ; -- [XXXDX] :: tile; imbrifer_A = mkA "imbrifer" "imbrifera" "imbriferum" ; -- [XXXDX] :: rain-bringing, rainy; + imbuo_V2 = mkV2 (mkV "imbuere" "imbuo" "imbui" "imbutus ") ; -- [XXXBX] :: wet, soak, dip; give initial instruction (in); imitabilis_A = mkA "imitabilis" "imitabilis" "imitabile" ; -- [XXXDX] :: that may be imitated; imitamen_N_N = mkN "imitamen" "imitaminis " neuter ; -- [XXXDX] :: imitation; copy; imitamentum_N_N = mkN "imitamentum" ; -- [XXXEC] :: imitating, imitation; @@ -20610,14 +22167,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg imitor_V = mkV "imitari" ; -- [XXXAO] :: imitate/copy/mimic; follow; make an imitation/reproduction; resemble; simulate; immaculabilis_A = mkA "immaculabilis" "immaculabilis" "immaculabile" ; -- [DXXFS] :: that cannot be stained; unable to be stained/blemished/defiled; immaculatus_A = mkA "immaculatus" "immaculata" "immaculatum" ; -- [XXXDO] :: immaculate/unstained/spotless/without blemish; undefiled/pure/chaste; blameless; --- TODO immadesco_V : V2 immadesco, immadescere, immadui, - -- Declension: 3rd -- Comment: [XXXDX] :: become wet or moist; --- SLASHSTUFF immanis_A : A2 immanis, immane, immanior -or -us, immanissimus -a -um -- [XXXAO] :: huge/vast/immense/tremendous/extreme/monstrous; inhuman/savage/brutal/frightful; + immadesco_V2 = mkV2 (mkV "immadescere" "immadesco" "immadui" nonExist ) ; -- [XXXDX] :: become wet or moist; + immanis_A = mkA "immanis" ; -- [XXXAO] :: huge/vast/immense/tremendous/extreme/monstrous; inhuman/savage/brutal/frightful; immanitas_F_N = mkN "immanitas" "immanitatis " feminine ; -- [XXXCO] :: brutality, savage character, frightfulness; huge/vast size; barbarity; monster; immansuetus_A = mkA "immansuetus" "immansueta" "immansuetum" ; -- [XXXDX] :: savage; immarcescibilis_A = mkA "immarcescibilis" "immarcescibilis" "immarcescibile" ; -- [FXXEM] :: unfading; unwithering; immaterialis_A = mkA "immaterialis" "immaterialis" "immateriale" ; -- [FXXEE] :: immaterial; immaturus_A = mkA "immaturus" "immatura" "immaturum" ; -- [XXXDX] :: unripe, immature, untimely; --- SLASHSTUFF immediatus_A : A2 immediatus, immediata -um, immediatior -or -us, immediatissimus -a -um -- [EXXEP] :: absolute (contraries), non-mediated; next; + immediatus_A = mkA "immediatus" ; -- [EXXEP] :: absolute (contraries), non-mediated; next; immedicabilis_A = mkA "immedicabilis" "immedicabilis" "immedicabile" ; -- [XXXDX] :: incurable; immemor_A = mkA "immemor" "immemoris"; -- [XXXBO] :: forgetful (by nature); lacking memory; heedless (of obligations/consequences); immemorabilis_A = mkA "immemorabilis" "immemorabilis" "immemorabile" ; -- [BXXES] :: unmentionable; indescribable; @@ -20628,6 +22185,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg immensurabilis_A = mkA "immensurabilis" "immensurabilis" "immensurabile" ; -- [EXXFP] :: immeasurable; immensus_A = mkA "immensus" "immensa" "immensum" ; -- [XXXBO] :: immeasurable, immense/vast/boundless/unending; infinitely great; innumerable; immerens_A = mkA "immerens" "immerentis"; -- [XXXDX] :: undeserving (of ill treatment), blameless; + immergo_V2 = mkV2 (mkV "immergere" "immergo" "immersi" "immersus ") ; -- [XXXDX] :: dip; plunge; (se immergere (with in + acc.) = to plunge into, to insinuate; immerito_Adv = mkAdv "immerito" ; -- [XXXDX] :: unjustly; without cause; immeritus_A = mkA "immeritus" "immerita" "immeritum" ; -- [XXXBO] :: undeserving; undeserved, unmerited; immersabilis_A = mkA "immersabilis" "immersabilis" "immersabile" ; -- [XXXEC] :: unsinkable, that cannot be sunk; @@ -20635,6 +22193,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg immigratio_F_N = mkN "immigratio" "immigrationis " feminine ; -- [GXXEK] :: immigration; immigro_V = mkV "immigrare" ; -- [XXXDX] :: move (into); immineo_V = mkV "imminere" ; -- [XXXBX] :: threaten, be a threat (to); overhang, be imminent; with DAT; + imminuo_V2 = mkV2 (mkV "imminuere" "imminuo" "imminui" "imminutus ") ; -- [XXXDX] :: diminish; impair; abbreviate (Col); immisceo_V = mkV "immiscere" ; -- [XXXDX] :: mix in, mingle; confuse; immiserabilis_A = mkA "immiserabilis" "immiserabilis" "immiserabile" ; -- [XXXEC] :: unpitied; immisericorditer_Adv = mkAdv "immisericorditer" ; -- [XXXEC] :: unmercifully; @@ -20643,7 +22202,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg immissio_F_N = mkN "immissio" "immissionis " feminine ; -- [XXXEO] :: insertion/engrafting, action of putting/sending in, of allowing to enter; immistrum_N_N = mkN "immistrum" ; -- [GXXEK] :: unit (of electricity); immistus_A = mkA "immistus" "immista" "immistum" ; -- [XXXDS] :: mixed; unmixed; (= immixtus); --- SLASHSTUFF immitis_A : A2 immitis, immite, immitior -or -us, immitissimus -a -um -- [XXXBX] :: cruel, rough, harsh, sour; rude, rough; severe, stern; inexorable; savage; + immitis_A = mkA "immitis" ; -- [XXXBX] :: cruel, rough, harsh, sour; rude, rough; severe, stern; inexorable; savage; + immitto_V2 = mkV2 (mkV "immittere" "immitto" "immisi" "immissus ") ; -- [XXXBX] :: send in/to/into/against; cause to go; insert; hurl/throw in; let go/in; allow; immixtus_A = mkA "immixtus" "immixta" "immixtum" ; -- [XXXDS] :: mixed; unmixed; (vpar of immisceo = mixed; late ADJ form = unmixed); immo_Adv = mkAdv "immo" ; -- [XXXBX] :: no indeed (contradiction); on the contrary, more correctly; indeed, nay more; immobilis_A = mkA "immobilis" "immobilis" "immobile" ; -- [XXXBO] :: |unwieldy/cumbersome; imperturbable/emotionally unmoved; steadfast; slow to act; @@ -20660,15 +22220,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg immolatitius_A = mkA "immolatitius" "immolatitia" "immolatitium" ; -- [DXXES] :: of/for a sacrifice; immolitus_A = mkA "immolitus" "immolita" "immolitum" ; -- [XXXEC] :: built up, erected; immolo_V = mkV "immolare" ; -- [XXXDX] :: sacrifice, offer (victim) in sacrifice; sprinkle with sacred meal; immolate; + immorior_V = mkV "immori" "immorior" "immortuus sum " ; -- [XXXDX] :: die (in a particular place, position, etc) (w/DAT); immorsus_A = mkA "immorsus" "immorsa" "immorsum" ; -- [XXXEC] :: bitten, stimulated; immortalifico_V = mkV "immortalificare" ; -- [GXXEK] :: immortalize; immortalis_A = mkA "immortalis" "immortalis" "immortale" ; -- [XXXBO] :: immortal, not subject to death; eternal, everlasting, perpetual; imperishable; immortalis_M_N = mkN "immortalis" "immortalis " masculine ; -- [XEXDO] :: immortal, god; immortalitas_F_N = mkN "immortalitas" "immortalitatis " feminine ; -- [XXXCO] :: immortality; divinity, being a god; indestructibility; permanence; remembrance; immotus_A = mkA "immotus" "immota" "immotum" ; -- [XXXDX] :: unmoved, unchanged; immovable; inflexible; + immugio_V2 = mkV2 (mkV "immugire" "immugio" "immugivi" "immugitus ") ; -- [XXXDX] :: bellow; resound inwardly; roar in/on; immulatio_F_N = mkN "immulatio" "immulationis " feminine ; -- [EEXDX] :: offering; immunditia_F_N = mkN "immunditia" ; -- [XXXDO] :: dirtiness/untidiness; foulness (moral); lust/wantonness; dirty conditions (pl.); immundus_A = mkA "immundus" "immunda" "immundum" ; -- [XXXCO] :: dirty, filthy, foul; (morally); unclean, impure; untidy/slovenly/squalid; evil; + immunio_V2 = mkV2 (mkV "immunire" "immunio" "immunivi" "immunitus ") ; -- [XWXFO] :: strengthen (garrison); immunis_A = mkA "immunis" "immunis" "immune" ; -- [XXXDX] :: free from taxes/tribute, exempt; immune; immunitas_F_N = mkN "immunitas" "immunitatis " feminine ; -- [XXXDX] :: immunity, freedom from taxes; immunitus_A = mkA "immunitus" "immunita" "immunitum" ; -- [XXXEC] :: unfortified; unpaved; @@ -20680,15 +22243,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg immutilatus_A = mkA "immutilatus" "immutilata" "immutilatum" ; -- [XXXES] :: maimed; mutilated; L:unmutilated; immuto_V = mkV "immutare" ; -- [XXXDX] :: change, alter, transform; imo_Adv = mkAdv "imo" ; -- [XXXDX] :: no indeed (contradiction); on the contrary, more correctly; indeed, nay more; --- IGNORED imp_N : N1 imp., abb. -- M -- [XXXDX] :: emperor (abb.); general; ruler; commander (-in-chief); + imp_N = constN "imp." masculine ; -- [XXXDX] :: emperor (abb.); general; ruler; commander (-in-chief); impacatus_A = mkA "impacatus" "impacata" "impacatum" ; -- [XXXDX] :: not pacified; impaciencia_F_N = mkN "impaciencia" ; -- [FXXCO] :: impatience; inability/unwillingness to endure/bear; impassivity/lack of emotion; impacificus_A = mkA "impacificus" "impacifica" "impacificum" ; -- [DWXFS] :: not peaceful, not inclined to peace; impages_F_N = mkN "impages" "impagis " feminine ; -- [XTXEO] :: crosspiece; batten (on door, etc.); framework/border around panel of door; impar_A = mkA "impar" "imparis"; -- [XXXAO] :: unequal (size/number/rank/esteem); uneven, odd; inferior; not a match (for); --- SLASHSTUFF imparatus_A : A2 imparatus, imparata -um, imparatior -or -us, imparatissimus -a -um -- [XXXDX] :: not prepared; unready; + imparatus_A = mkA "imparatus" ; -- [XXXDX] :: not prepared; unready; imparilitas_F_N = mkN "imparilitas" "imparilitatis " feminine ; -- [XXXFS] :: inequality; difference; --- SLASHSTUFF impassibilis_A : A2 impassibilis, impassibile, impassibilior -or -us, impassibilissimus -a -um -- [DXXES] :: passionless; incapable of passion/suffering; insensible; + impartio_V2 = mkV2 (mkV "impartire" "impartio" "impartivi" "impartitus ") ; -- [XXXDS] :: bestow, impart, give a share (of); communicate (w/DAT); (=impertio); + impassibilis_A = mkA "impassibilis" ; -- [DXXES] :: passionless; incapable of passion/suffering; insensible; impassibilitas_F_N = mkN "impassibilitas" "impassibilitatis " feminine ; -- [DEXES] :: incapacity for suffering, impassibility; apathy, insensibility (Def); impassibiliter_Adv = mkAdv "impassibiliter" ; -- [DXXFS] :: without passion; impastus_A = mkA "impastus" "impasta" "impastum" ; -- [XXXEC] :: unfed, hungry; @@ -20697,9 +22261,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg impatientia_F_N = mkN "impatientia" ; -- [XXXCO] :: impatience; inability/unwillingness to endure/bear; impassivity/lack of emotion; impavidus_A = mkA "impavidus" "impavida" "impavidum" ; -- [XXXDX] :: fearless, intrepid; impedimentum_N_N = mkN "impedimentum" ; -- [XXXDX] :: hindrance, impediment; heavy baggage (of an army) (pl.); --- SLASHSTUFF impeditus_A : A2 impeditus, impedita -um, impeditior -or -us, impeditissimus -a -um -- [XXXBO] :: hindered/obstructed/encumbered/hampered; difficult/impeded; inaccessible; + impedio_V2 = mkV2 (mkV "impedire" "impedio" "impedivi" "impeditus ") ; -- [XXXBX] :: hinder, impede, hamper, obstruct, prevent from (w/ne, quin, or quominus); + impeditus_A = mkA "impeditus" ; -- [XXXBO] :: hindered/obstructed/encumbered/hampered; difficult/impeded; inaccessible; + impello_V2 = mkV2 (mkV "impellere" "impello" "impuli" "impulsus ") ; -- [XXXAO] :: drive/persuade/impel; urge on/action; push/thrust/strike against; overthrow; impendeo_V = mkV "impendere" ; -- [XXXBX] :: overhang, hang over; threaten; be imminent, impend; (w/DAT); impendium_N_N = mkN "impendium" ; -- [XXXCO] :: expense, expenditure, payment; cost, outlay; + impendo_V2 = mkV2 (mkV "impendere" "impendo" "impendi" "impensus ") ; -- [XXXDX] :: expend, spend; devote (to); impenetrabilis_A = mkA "impenetrabilis" "impenetrabilis" "impenetrabile" ; -- [XXXEC] :: impenetrable; impensa_F_N = mkN "impensa" ; -- [XXXDX] :: expense, outlay, cost; impense_Adv =mkAdv "impense" "impensius" "impensissime" ; -- [XXXDX] :: without stint; lavishly, exceedingly, greatly, very much; eagerly, zealously; @@ -20730,6 +22297,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg imperscrutabilis_A = mkA "imperscrutabilis" "imperscrutabilis" "imperscrutabile" ; -- [DXXES] :: impenetrable; inscrutable; impersonalis_A = mkA "impersonalis" "impersonalis" "impersonale" ; -- [XXXCS] :: impersonal; imperterritus_A = mkA "imperterritus" "imperterrita" "imperterritum" ; -- [XXXDX] :: fearless; + impertio_V2 = mkV2 (mkV "impertire" "impertio" "impertivi" "impertitus ") ; -- [XXXDX] :: bestow, impart, give a share (of); communicate (w/DAT); imperturbabilis_A = mkA "imperturbabilis" "imperturbabilis" "imperturbabile" ; -- [FXXFY] :: undisturbable; cannot be disturbed; imperturbatus_A = mkA "imperturbatus" "imperturbata" "imperturbatum" ; -- [XXXEC] :: undisturbed, calm; impervius_A = mkA "impervius" "impervia" "impervium" ; -- [XXXDX] :: impassable, not to be traversed; @@ -20737,7 +22305,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg impetiginosus_A = mkA "impetiginosus" "impetiginosa" "impetiginosum" ; -- [XBXFO] :: suffering from impetigo; (pustular skin disease, scaly skin eruption); impetigo_F_N = mkN "impetigo" "impetiginis " feminine ; -- [XBXCO] :: impetigo; (pustular skin disease, scaly skin eruption); (also on bark of fig); impetitio_F_N = mkN "impetitio" "impetitionis " feminine ; -- [FXXDV] :: action of attacking/assaulting/assailing; (also as legal term); + impeto_V2 = mkV2 (mkV "impetere" "impeto" "impetivi" "impetitus ") ; -- [XXXEO] :: attack, assail; rush upon (L+S); accuse; impetrabilis_A = mkA "impetrabilis" "impetrabilis" "impetrabile" ; -- [XXXDX] :: easy to achieve or obtain; + impetrio_V = mkV "impetrire" "impetrio" "impetrivi" "impetritus "; -- [XEXDS] :: seek by auspices; impetro_V = mkV "impetrare" ; -- [XXXBX] :: obtain/procure (by asking/request/entreaty); succeed/achieve/be granted; obtain; impetus_M_N = mkN "impetus" "impetus " masculine ; -- [XXXAX] :: attack, assault, charge; attempt; impetus, vigor; violent mental urge, fury; impexus_A = mkA "impexus" "impexa" "impexum" ; -- [XXXDX] :: uncombed; @@ -20745,6 +22315,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg impiger_A = mkA "impiger" "impigra" "impigrum" ; -- [XXXDX] :: active, energetic; impigre_Adv = mkAdv "impigre" ; -- [XXXCO] :: actively, energetically,smartly; impilium_N_N = mkN "impilium" ; -- [GXXEK] :: sock; + impingo_V2 = mkV2 (mkV "impingere" "impingo" "impegi" "impactus ") ; -- [XXXDX] :: thrust, strike or dash against; impinguo_V = mkV "impinguare" ; -- [XXXES] :: fatten, make fat/sleek; become fat/thick; anoint (with oil) (Douay); impio_V2 = mkV2 (mkV "impiare") ; -- [XXXES] :: render impervious; stain with sin; impirius_A = mkA "impirius" "impiria" "impirium" ; -- [FXXEN] :: fiery; @@ -20766,11 +22337,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg implico_V2 = mkV2 (mkV "implicare") ; -- [XXXAO] :: ||||(PASS) be intimately associated/connected/related/bound; be a tangle/maze; imploro_V = mkV "implorare" ; -- [XXXDX] :: appeal to, invoke; beg, beseech, implore; ask for help/favor/protection; implumis_A = mkA "implumis" "implumis" "implume" ; -- [XXXDX] :: unfledged; + impluo_V2 = mkV2 (mkV "impluere" "impluo" "implui" "implutus ") ; -- [XXXES] :: rain; rain upon; impluvium_N_N = mkN "impluvium" ; -- [XXXDX] :: basin in atrium floor to receive rain-water from roof; impoene_Adv = mkAdv "impoene" ; -- [XXXFS] :: without punishment; safely; (= impune); impolite_Adv = mkAdv "impolite" ; -- [XXXEC] :: roughly, crudely; impolitus_A = mkA "impolitus" "impolita" "impolitum" ; -- [XXXEC] :: rough, unpolished; impollutus_A = mkA "impollutus" "impolluta" "impollutum" ; -- [XXXEC] :: undefiled; + impono_V2 = mkV2 (mkV "imponere" "impono" "imposui" "impositus ") ; -- [XXXAX] :: impose, put upon; establish; inflict; assign/place in command; set; importo_V = mkV "importare" ; -- [XXXDX] :: bring in, convey; import; bring about, cause; importunitas_F_N = mkN "importunitas" "importunitatis " feminine ; -- [XXXDX] :: persistent lack of consideration for others; relentlessness; importunus_A = mkA "importunus" "importuna" "importunum" ; -- [XXXDX] :: inconvenient; annoying; rude; monstrous, unnatural; ruthless, cruel, hard; @@ -20794,6 +22367,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg impressorius_A = mkA "impressorius" "impressoria" "impressorium" ; -- [GXXEK] :: of printing; imprimeo_V = mkV "imprimere" ; -- [GXXEK] :: print (a book); imprimis_Adv = mkAdv "imprimis" ; -- [XXXBO] :: in the first place, first, chiefly; especially, above all, more than any other; + imprimo_V2 = mkV2 (mkV "imprimere" "imprimo" "impressi" "impressus ") ; -- [XXXDX] :: impress, imprint; press upon; stamp; imprisonamentum_N_N = mkN "imprisonamentum" ; -- [FLXFJ] :: imprisonment; imprisono_V = mkV "imprisonare" ; -- [FLXFJ] :: imprison; improbitas_F_N = mkN "improbitas" "improbitatis " feminine ; -- [XXXCO] :: wickedness unscrupulousness, dishonesty; shamelessness; want of principle; @@ -20839,7 +22413,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg impunis_A = mkA "impunis" "impunis" "impune" ; -- [XXXFO] :: unpunished; impunitas_F_N = mkN "impunitas" "impunitatis " feminine ; -- [XXXDX] :: impunity; freedom from punishment; safety; impunite_Adv = mkAdv "impunite" ; -- [XXXDX] :: with impunity; without punishment/restraint; safely, unharmed; freely; --- SLASHSTUFF impunitus_A : A2 impunitus, impunita -um, impunitior -or -us, impunitissimus -a -um -- [XXXDX] :: unpunished, unrestrained, unbridled; safe, secure, free from danger; + impunitus_A = mkA "impunitus" ; -- [XXXDX] :: unpunished, unrestrained, unbridled; safe, secure, free from danger; impuratus_A = mkA "impuratus" "impurata" "impuratum" ; -- [XXXEC] :: vile, infamous; impure_Adv =mkAdv "impure" "impurius" "impurissime" ; -- [XXXDX] :: basely, shamefully, vilely, infamously; impurely; impuritas_F_N = mkN "impuritas" "impuritatis " feminine ; -- [XXXFO] :: impurity; foulness; @@ -20853,8 +22427,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg imputribilis_A = mkA "imputribilis" "imputribilis" "imputribile" ; -- [DXXES] :: incorruptible, not liable to decay; imputribiliter_Adv = mkAdv "imputribiliter" ; -- [DXXFS] :: incorruptibly; imus_A = mkA "imus" "ima" "imum" ; -- [XXXDX] :: inmost, deepest, bottommost, last; (inferus); [~ vox => highest treble]; - in_Abl_Prep = mkPrep "in" Abl ; -- [XXXAX] :: in, on, at (space); in accordance with/regard to/the case of; within (time); - in_Acc_Prep = mkPrep "in" Acc ; -- [XXXAX] :: into; about, in the mist of; according to, after (manner); for; to, among; + in_Abl_Prep = mkPrep "in" abl ; -- [XXXAX] :: in, on, at (space); in accordance with/regard to/the case of; within (time); + in_Acc_Prep = mkPrep "in" acc ; -- [XXXAX] :: into; about, in the mist of; according to, after (manner); for; to, among; ina_F_N = mkN "ina" ; -- [XXXEO] :: fiber; sinew, tendon; strip; papyrus/paper fiber; inabruptus_A = mkA "inabruptus" "inabrupta" "inabruptum" ; -- [XXXFO] :: unbroken; not broken off (L+S); inabsolutus_A = mkA "inabsolutus" "inabsoluta" "inabsolutum" ; -- [XXXFO] :: unfinished; incomplete; imperfect; @@ -20870,15 +22444,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inaequabilis_A = mkA "inaequabilis" "inaequabilis" "inaequabile" ; -- [XXXCO] :: uneven/broken (ground); unequal/varying in amount/rate/etc; inaequabilitas_F_N = mkN "inaequabilitas" "inaequabilitatis " feminine ; -- [XXXEO] :: lack of uniformity; irregularity; inaequabiliter_Adv = mkAdv "inaequabiliter" ; -- [XXXEO] :: unevenly; without regularity or uniformity; --- SLASHSTUFF inaequalis_A : A2 inaequalis, inaequale, inaequalior -or -us, inaequalissimus -a -um -- [XXXBO] :: uneven; unequal; not smooth/level (surface); irregular (shape); patchy/variable; + inaequalis_A = mkA "inaequalis" ; -- [XXXBO] :: uneven; unequal; not smooth/level (surface); irregular (shape); patchy/variable; inaequalitas_F_N = mkN "inaequalitas" "inaequalitatis " feminine ; -- [XXXCO] :: irregularity of shape/distribution; patchiness/unevenness; inequality; inequity; inaequaliter_Adv = mkAdv "inaequaliter" ; -- [XXXCO] :: unevenly, w/irregular outline/distribution; unequally; w/disparity of treatment; inaequo_V2 = mkV2 (mkV "inaequare") ; -- [XXXEO] :: make equal; make level; make even (L_S); inaestimabilis_A = mkA "inaestimabilis" "inaestimabilis" "inaestimabile" ; -- [XXXDX] :: |undeserving of valuation (phil.); not to be judged, unaccountable; valueless; inaestimatus_A = mkA "inaestimatus" "inaestimata" "inaestimatum" ; -- [XLXFS] :: not rated; untaxed; inaestuo_V = mkV "inaestuare" ; -- [XXXES] :: rage; + inalbesco_V = mkV "inalbescere" "inalbesco" nonExist nonExist; -- [XXXES] :: become pale; inalbo_V2 = mkV2 (mkV "inalbare") ; -- [XXXDS] :: whiten; brighten; inamabilis_A = mkA "inamabilis" "inamabilis" "inamabile" ; -- [XXXDX] :: disagreeable, unattractive; + inamaresco_V = mkV "inamarescere" "inamaresco" nonExist nonExist; -- [XXXFO] :: become bitter/distasteful;; inamarico_V2 = mkV2 (mkV "inamaricare") ; -- [DXXFS] :: embitter; inambitiosus_A = mkA "inambitiosus" "inambitiosa" "inambitiosum" ; -- [XXXEC] :: unpretentious; inambulo_V = mkV "inambulare" ; -- [XXXDX] :: walk up and down; @@ -20894,12 +22470,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inanimentum_N_N = mkN "inanimentum" ; -- [BXXFO] :: emptiness; inanimis_A = mkA "inanimis" "inanimis" "inanime" ; -- [XXXIO] :: |filled with life; (from Greek); inanimus_A = mkA "inanimus" "inanima" "inanimum" ; -- [XXXCO] :: lifeless, inanimate; without/deprived of/not endowed with breath; + inanio_V2 = mkV2 (mkV "inanire" "inanio" "inanivi" "inanitus ") ; -- [XXXDX] :: empty; inanis_A = mkA "inanis" "inanis" "inane" ; -- [XXXAX] :: void, empty, hollow; vain; inane, foolish; inanloquium_N_N = mkN "inanloquium" ; -- [FXXEE] :: vain talk; inaquosum_N_N = mkN "inaquosum" ; -- [DXXFS] :: arid/desert/dry places (pl.); inaquosus_A = mkA "inaquosus" "inaquosa" "inaquosum" ; -- [DXXES] :: arid, dry, lacking water; inaratus_A = mkA "inaratus" "inarata" "inaratum" ; -- [XXXDX] :: unplowed, untilled; --- TODO inardesco_V : V2 inardesco, inardescere, inarsi, - -- Declension: 3rd -- Comment: [XXXDX] :: kindle, take fire; become glowing; + inardesco_V2 = mkV2 (mkV "inardescere" "inardesco" "inarsi" nonExist ) ; -- [XXXDX] :: kindle, take fire; become glowing; inargento_V2 = mkV2 (mkV "inargentare") ; -- [XXXES] :: overlay with silver; inaro_V2 = mkV2 (mkV "inarare") ; -- [XXXES] :: plow in; cultivate; inartificiale_Adv = mkAdv "inartificiale" ; -- [XXXDS] :: inartificially; not by rule; @@ -20907,6 +22484,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inaspectus_A = mkA "inaspectus" "inaspecta" "inaspectum" ; -- [XXXFS] :: unseen; inassuetus_A = mkA "inassuetus" "inassueta" "inassuetum" ; -- [XXXDX] :: unaccustomed; inattenuatus_A = mkA "inattenuatus" "inattenuata" "inattenuatum" ; -- [XXXEC] :: undiminished, unimpaired; + inaudio_V2 = mkV2 (mkV "inaudire" "inaudio" "inaudivi" "inauditus ") ; -- [XXXES] :: hear of; learn; inauditus_A = mkA "inauditus" "inaudita" "inauditum" ; -- [XXXDX] :: unheard (of ), novel, new; inauguralis_A = mkA "inauguralis" "inauguralis" "inaugurale" ; -- [GXXEK] :: inaugural; inauguro_V = mkV "inaugurare" ; -- [XXXDX] :: take omens by the flight of birds; consecrate by augury; @@ -20914,15 +22492,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inauro_V = mkV "inaurare" ; -- [XXXDX] :: gild, make rich; inauspicatus_A = mkA "inauspicatus" "inauspicata" "inauspicatum" ; -- [XXXEC] :: without auspices; inausus_A = mkA "inausus" "inausa" "inausum" ; -- [XXXDX] :: not ventured, unattempted, undared; --- SLASHSTUFF inbecillis_A : A2 inbecillis, inbecille, inbecillior -or -us, inbecillissimus -a -um -- [XXXAO] :: weak/feeble; delicate (plant); fragile; ineffective; lacking in power/resources; + inbecillis_A = mkA "inbecillis" ; -- [XXXAO] :: weak/feeble; delicate (plant); fragile; ineffective; lacking in power/resources; inbecillitas_F_N = mkN "inbecillitas" "inbecillitatis " feminine ; -- [XXXDX] :: weakness, feebleness; moral/intellectual weakness; --- SLASHSTUFF inbecillus_A : A2 inbecillus, inbecilla -um, inbecillior -or -us, inbecillissimus -a -um -- [XXXAO] :: weak/feeble; delicate (plant); fragile; ineffective; lacking in power/resources; + inbecillus_A = mkA "inbecillus" ; -- [XXXAO] :: weak/feeble; delicate (plant); fragile; ineffective; lacking in power/resources; inbellis_A = mkA "inbellis" "inbellis" "inbelle" ; -- [XXXDX] :: unwarlike, peaceful, unfit for war; + inbibo_V2 = mkV2 (mkV "inbibere" "inbibo" "inbibi" "inbitus ") ; -- [XXXCO] :: drink in, imbibe; assimilate; absorb into one's mind, conceive; + inbito_V2 = mkV2 (mkV "inbitere" "inbito" nonExist nonExist) ; -- [XXXFO] :: enter;; go into; incaeduus_A = mkA "incaeduus" "incaedua" "incaeduum" ; -- [XXXDX] :: not felled, not cut down (of woods); --- TODO incalesco_V : V2 incalesco, incalescere, incalui, - -- Declension: 3rd -- Comment: [XXXDX] :: grow hot; become heated; + incalesco_V2 = mkV2 (mkV "incalescere" "incalesco" "incalui" nonExist ) ; -- [XXXDX] :: grow hot; become heated; incallidus_A = mkA "incallidus" "incallida" "incallidum" ; -- [XXXDX] :: not shrewd, simple; --- TODO incandesco_V : V2 incandesco, incandescere, incandui, - -- Declension: 3rd -- Comment: [XXXDX] :: grow warm, be heated, glow, become red-hot; --- TODO incanesco_V : V2 incanesco, incanescere, incanui, - -- Declension: 3rd -- Comment: [XXXDX] :: turn gray or hoary; + incandesco_V2 = mkV2 (mkV "incandescere" "incandesco" "incandui" nonExist ) ; -- [XXXDX] :: grow warm, be heated, glow, become red-hot; + incanesco_V2 = mkV2 (mkV "incanescere" "incanesco" "incanui" nonExist ) ; -- [XXXDX] :: turn gray or hoary; incantamen_N_N = mkN "incantamen" "incantaminis " neuter ; -- [FEXFL] :: charm; incantamentum_N_N = mkN "incantamentum" ; -- [XDXDS] :: charm; spell; incantatio_F_N = mkN "incantatio" "incantationis " feminine ; -- [DEXCS] :: enchantment; spell; incantation (Def); (false) statement (Souter); @@ -20950,12 +22530,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg incassum_Adv = mkAdv "incassum" ; -- [XXXCS] :: in vain; uselessly; without aim/purpose/effect; to no purpose; incastigatus_A = mkA "incastigatus" "incastigata" "incastigatum" ; -- [XXXEC] :: unchastised; incautus_A = mkA "incautus" "incauta" "incautum" ; -- [XXXES] :: incautious; unexpected; + incedo_V2 = mkV2 (mkV "incedere" "incedo" "incessi" "incessus ") ; -- [XXXBX] :: advance, march; approach; step, walk, march along; inceleber_A = mkA "inceleber" "incelebris" "incelebre" ; -- [DXXES] :: not celebrated; not famous; incelebratus_A = mkA "incelebratus" "incelebrata" "incelebratum" ; -- [XXXDX] :: unrecorded; incenatus_A = mkA "incenatus" "incenata" "incenatum" ; -- [XXXEO] :: without dinner, dinerless; not having dined; without having supped (Erasmus); incendiarius_A = mkA "incendiarius" "incendiaria" "incendiarium" ; -- [XXXNS] :: fire-, fire-raising, incendiary; [~ avis => firebird]; incendiarius_M_N = mkN "incendiarius" ; -- [XXXEO] :: arsonist; fire-raiser; incendiary; incendium_N_N = mkN "incendium" ; -- [XXXBO] :: |incendiary missile; meteor; P:flames (pl.); [annonae ~ => high price of grain]; + incendo_V2 = mkV2 (mkV "incendere" "incendo" "incendi" "incensus ") ; -- [XXXAO] :: ||inspire, fire, rouse, excite, inflame; provoke, incense, aggravate; incensarium_N_N = mkN "incensarium" ; -- [EEXDE] :: censer, vessel in which incense is burnt; thurible; incensatio_F_N = mkN "incensatio" "incensationis " feminine ; -- [EEXFS] :: instrument playing; X:enchantment; E:incensing, perfuming with incense (Ecc); incensio_F_N = mkN "incensio" "incensionis " feminine ; -- [XXXEO] :: firing, burning, igniting, act of setting on fire; @@ -20973,11 +22555,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inceptio_F_N = mkN "inceptio" "inceptionis " feminine ; -- [XXXDO] :: start, beginning; undertaking, enterprise; incepto_V = mkV "inceptare" ; -- [XXXDS] :: begin; undertake; attempt; inceptum_N_N = mkN "inceptum" ; -- [XXXDX] :: beginning, undertaking; + incerno_V2 = mkV2 (mkV "incernere" "incerno" nonExist nonExist) ; -- [XXXES] :: sift; scatter with sieve; incero_V2 = mkV2 (mkV "incerare") ; -- [XXXES] :: smear over; E:attach wax tablet to; incerto_V2 = mkV2 (mkV "incertare") ; -- [XXXES] :: render uncertain; incertus_A = mkA "incertus" "incerta" "incertum" ; -- [XXXAX] :: uncertain; unsure, inconstant, variable; doubtful; incessabilis_A = mkA "incessabilis" "incessabilis" "incessabile" ; -- [DXXES] :: incessant, unceasing; incessanter_Adv = mkAdv "incessanter" ; -- [DXXES] :: incessantly, unceasingly; + incesso_V2 = mkV2 (mkV "incessere" "incesso" "incesivi" "incessus ") ; -- [XXXDX] :: assault, attack; reproach, abuse; incessus_M_N = mkN "incessus" "incessus " masculine ; -- [XXXDX] :: walking; advance; procession; incesto_V = mkV "incestare" ; -- [XXXDX] :: pollute, defile; incestuose_Adv = mkAdv "incestuose" ; -- [FXXFM] :: incestuously; lewdly; @@ -20991,13 +22575,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg incidenter_Adv = mkAdv "incidenter" ; -- [FXXEE] :: incidentally; incidentia_F_N = mkN "incidentia" ; -- [FSXDM] :: incident/occurrence/happening; incidence (light ray); appurtenance; incidentium_N_N = mkN "incidentium" ; -- [FSXDM] :: incidents/occurrences (pl.); remarks/observations; matters involved; + incido_V2 = mkV2 (mkV "incidere" "incido" "incidi" "incisus ") ; -- [XXXBX] :: |cut into, cut open; inscribe, engrave inscription; break off; inciens_A = mkA "inciens" "incientis"; -- [XXXES] :: pregnant; with young; incilis_A = mkA "incilis" "incilis" "incile" ; -- [XXXEC] :: ditch, trench; incilo_V = mkV "incilare" ; -- [XXXEC] :: blame, scold; incineratio_F_N = mkN "incineratio" "incinerationis " feminine ; -- [GXXEK] :: incineration; incinero_V = mkV "incinerare" ; -- [FXXFM] :: burn to ashes; --- TODO incino_V : V2 incino, incinere, -, - -- Declension: 3rd -- Comment: [XXXEC] :: sing; --- TODO incipisso_V : V2 incipisso, incipissere, -, - -- Declension: 3rd -- Comment: [BXXES] :: begin; (archaic form of incipio); + incingo_V2 = mkV2 (mkV "incingere" "incingo" "incinxi" "incinctus ") ; -- [XXXDX] :: gird (with); wrap (tightly) round (with); + incino_V = mkV "incinere" "incino" nonExist nonExist ; -- [XXXEC] :: sing; + incipio_V2 = mkV2 (mkV "incipere" "incipio" "incepi" "inceptus ") ; -- [XXXAX] :: begin; start, undertake; + incipisso_V = mkV "incipissere" "incipisso" nonExist nonExist ; -- [BXXES] :: begin; (archaic form of incipio); incircum_Adv = mkAdv "incircum" ; -- [XXXFS] :: round about; (L+S calls it PREP); incircumcisio_F_N = mkN "incircumcisio" "incircumcisionis " feminine ; -- [EEXFP] :: absence of circumcision; incircumcisus_A = mkA "incircumcisus" "incircumcisa" "incircumcisum" ; -- [EEXDS] :: uncircumcised; w/foreskin intact (Souter); uncorrected/uncleansed; sinning; @@ -21023,9 +22610,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inclinatio_F_N = mkN "inclinatio" "inclinationis " feminine ; -- [XXXDX] :: act of leaning, tendency, inclination; inclino_V = mkV "inclinare" ; -- [XXXBX] :: bend; lower; incline; decay; grow worse; set (of the sun); deject; inclinus_A = mkA "inclinus" "inclina" "inclinum" ; -- [EXXFW] :: leaning; (Douay); --- SLASHSTUFF inclitus_A : A2 inclitus, inclita -um, inclitior -or -us, inclitissimus -a -um -- [XXXDX] :: celebrated, renowned, famous, illustrious, glorious; --- SLASHSTUFF inclutus_A : A2 inclutus, incluta -um, inclutior -or -us, inclutissimus -a -um -- [XXXDX] :: celebrated, renowned, famous, illustrious, glorious; --- SLASHSTUFF inclytus_A : A2 inclytus, inclyta -um, inclytior -or -us, inclytissimus -a -um -- [XXXBX] :: celebrated, renowned, famous, illustrious, glorious; + inclitus_A = mkA "inclitus" ; -- [XXXDX] :: celebrated, renowned, famous, illustrious, glorious; + includo_V2 = mkV2 (mkV "includere" "includo" "inclusi" "inclusus ") ; -- [XXXBX] :: shut up/in, imprison, enclose; include; + inclutus_A = mkA "inclutus" ; -- [XXXDX] :: celebrated, renowned, famous, illustrious, glorious; + inclytus_A = mkA "inclytus" ; -- [XXXBX] :: celebrated, renowned, famous, illustrious, glorious; incogitabilis_A = mkA "incogitabilis" "incogitabilis" "incogitabile" ; -- [XXXES] :: inconsiderate; inconceivable; incogitans_A = mkA "incogitans" "incogitantis"; -- [XXXEC] :: inconsiderate, thoughtless; incogitantia_F_N = mkN "incogitantia" ; -- [XXXEC] :: thoughtlessness; @@ -21036,7 +22624,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg incola_C_N = mkN "incola" ; -- [XXXDX] :: inhabitant; resident, dweller; resident alien; foreigner (Plater); incolatus_A = mkA "incolatus" "incolata" "incolatum" ; -- [EXXFP] :: unfiltered, unstrained; unpurified; incolatus_M_N = mkN "incolatus" "incolatus " masculine ; -- [XXXIO] :: residence (in a town) without citizenship; status of resident alien; (exile?); - incolo_V = mkV "incolere" "incolo" "incolui" nonExist ; - -- Declension: 3rd -- Comment: [XXXCO] :: live, dwell/reside (in); inhabit; sojourn; + incolo_V = mkV "incolare" ; -- [EXXEP] :: live, dwell/reside (in); inhabit; sojourn; + incolo_V2 = mkV2 (mkV "incolere" "incolo" "incolui" nonExist ) ; -- [XXXCO] :: live, dwell/reside (in); inhabit; sojourn; incolomis_A = mkA "incolomis" "incolomis" "incolome" ; -- [FXXFM] :: unharmed, uninjured; alive, safe; unimpaired; (= incolumis); incolumis_A = mkA "incolumis" "incolumis" "incolume" ; -- [XXXBX] :: unharmed, uninjured; alive, safe; unimpaired; incolumitas_F_N = mkN "incolumitas" "incolumitatis " feminine ; -- [XXXDX] :: safety; @@ -21048,7 +22637,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg incommoditas_F_N = mkN "incommoditas" "incommoditatis " feminine ; -- [XXXCO] :: disadvantage, inconvenience, importunity; importunity; misfortune; incommodo_V = mkV "incommodare" ; -- [XXXCO] :: inconvenience, obstruct, hinder; be inconvenient/troublesome, cause difficulty; incommodum_N_N = mkN "incommodum" ; -- [XXXBO] :: disadvantage, inconvenience, setback, harm, detriment; defeat/disaster; ailment; --- SLASHSTUFF incommodus_A : A2 incommodus, incommoda -um, incommodior -or -us, incommodissimus -a -um -- [XXXBO] :: inconvenient, troublesome, annoying; disadvantageous; disagreeable; disobliging; + incommodus_A = mkA "incommodus" ; -- [XXXBO] :: inconvenient, troublesome, annoying; disadvantageous; disagreeable; disobliging; incommutabilis_A = mkA "incommutabilis" "incommutabilis" "incommutabile" ; -- [XXXEO] :: unchangeable; immutable; incommutabilitas_F_N = mkN "incommutabilitas" "incommutabilitatis " feminine ; -- [EXXFP] :: unchangeableness; incommutabiliter_Adv = mkAdv "incommutabiliter" ; -- [EXXEP] :: without change; @@ -21082,7 +22671,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inconruptio_F_N = mkN "inconruptio" "inconruptionis " feminine ; -- [EEXES] :: incorruptibility, imperishability; inconruptivus_A = mkA "inconruptivus" "inconruptiva" "inconruptivum" ; -- [EEXFS] :: incorruptible, imperishable; inconruptorius_A = mkA "inconruptorius" "inconruptoria" "inconruptorium" ; -- [EEXFS] :: incorruptible, imperishable; --- SLASHSTUFF inconruptus_A : A2 inconruptus, inconrupta -um, inconruptior -or -us, inconruptissimus -a -um -- [XXXBO] :: intact, uncorrupted, unspoiled/untainted; genuine; pure; chaste; imperishable; + inconruptus_A = mkA "inconruptus" ; -- [XXXBO] :: intact, uncorrupted, unspoiled/untainted; genuine; pure; chaste; imperishable; inconsequens_A = mkA "inconsequens" "inconsequentis"; -- [EXXES] :: inconsequent; not logically connected; inconsequenter_Adv = mkAdv "inconsequenter" ; -- [EXXES] :: inconsequentially; illogically; inconsequentia_F_N = mkN "inconsequentia" ; -- [DGXES] :: inconsequence; lack of logical connection; @@ -21108,6 +22697,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inconveniens_A = mkA "inconveniens" "inconvenientis"; -- [XXXEC] :: not suiting, dissimilar; inconvenienter_Adv = mkAdv "inconvenienter" ; -- [DXXES] :: unsuitably; ill-matchedly; inconveniently; inconvenientia_F_N = mkN "inconvenientia" ; -- [XXXFS] :: inconsistency; + incoquo_V2 = mkV2 (mkV "incoquere" "incoquo" "incoxi" "incoctus ") ; -- [XXXDX] :: boil in or down; boil; incorporalis_A = mkA "incorporalis" "incorporalis" "incorporale" ; -- [XXXDO] :: incorporeal; intangible; immaterial; not having body/substance; unearthly; incorporatio_F_N = mkN "incorporatio" "incorporationis " feminine ; -- [DXXDS] :: incorporating, embodying; incorporation (w/public funds); paying into treasury; incorporeus_A = mkA "incorporeus" "incorporea" "incorporeum" ; -- [FXXEX] :: incorporeal; intangible; immaterial; not having body/substance; unearthly; @@ -21122,10 +22712,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg incorruptio_F_N = mkN "incorruptio" "incorruptionis " feminine ; -- [EEXES] :: incorruptibility, imperishability; incorruptivus_A = mkA "incorruptivus" "incorruptiva" "incorruptivum" ; -- [EEXFS] :: incorruptible, imperishable; incorruptorius_A = mkA "incorruptorius" "incorruptoria" "incorruptorium" ; -- [EEXFS] :: incorruptible, imperishable; --- SLASHSTUFF incorruptus_A : A2 incorruptus, incorrupta -um, incorruptior -or -us, incorruptissimus -a -um -- [XXXBO] :: intact, uncorrupted, unspoiled/untainted; genuine; pure; chaste; imperishable; + incorruptus_A = mkA "incorruptus" ; -- [XXXBO] :: intact, uncorrupted, unspoiled/untainted; genuine; pure; chaste; imperishable; incrassatus_A = mkA "incrassatus" "incrassata" "incrassatum" ; -- [DXXFS] :: fattened; incrasso_V2 = mkV2 (mkV "incrassare") ; -- [DXXEF] :: fatten; make thick/stout; --- TODO increbresco_V : V2 increbresco, increbrescere, increbrui, - -- Declension: 3rd -- Comment: [XXXDX] :: become stronger or more intense; spread; + increbresco_V2 = mkV2 (mkV "increbrescere" "increbresco" "increbrui" nonExist ) ; -- [XXXDX] :: become stronger or more intense; spread; incredibilis_A = mkA "incredibilis" "incredibilis" "incredibile" ; -- [XXXBX] :: incredible; extraordinary; incredulitas_F_N = mkN "incredulitas" "incredulitatis " feminine ; -- [XXXFO] :: disbelief, incredulity; unbelief (Christian sense) (Souter); incredulus_A = mkA "incredulus" "incredula" "incredulum" ; -- [XXXDX] :: unbelieving, disbelieving, incredulous; disobedient; @@ -21135,20 +22725,22 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg increpito_V = mkV "increpitare" ; -- [XXXDX] :: chide, utter (noisy) reproaches at; increpo_V = mkV "increpare" ; -- [XXXBO] :: rattle, snap, clash, roar, twang, make noise; (alarm/danger); strike noisily; increpo_V2 = mkV2 (mkV "increpare") ; -- [XXXBO] :: rebuke, chide, reprove; protest at/indignantly, complain loudly/scornfully; --- TODO incresco_V : V2 incresco, increscere, increvi, - -- Declension: 3rd -- Comment: [XXXDX] :: grow (in or upon); grow, swell, increase, be augmented; be swollen; + incresco_V2 = mkV2 (mkV "increscere" "incresco" "increvi" nonExist ) ; -- [XXXDX] :: grow (in or upon); grow, swell, increase, be augmented; be swollen; incruentatus_A = mkA "incruentatus" "incruentata" "incruentatum" ; -- [XWXFO] :: not stained with blood; bloodless, without shedding of blood; w/no casualties; incruentus_A = mkA "incruentus" "incruenta" "incruentum" ; -- [XWXCO] :: not stained with blood; bloodless, without shedding of blood; w/no casualties; incrusto_V2 = mkV2 (mkV "incrustare") ; -- [XXXCO] :: cover (with a layer), coat, line, daub; give an ornamental layer to, encrust; incubatio_F_N = mkN "incubatio" "incubationis " feminine ; -- [XXXES] :: brooding; incubation; lying on eggs; L:unlawful possession; incubito_V = mkV "incubitare" ; -- [XXXCS] :: lie upon; brood; incubo_V = mkV "incubare" ; -- [XXXBX] :: lie in or on (w/DAT); sit upon; brood over; keep a jealous watch (over); + incudo_V2 = mkV2 (mkV "incudere" "incudo" "incudi" "incusus ") ; -- [XXXDX] :: hammer out; inculco_V = mkV "inculcare" ; -- [XXXDX] :: force upon, impress, drive home; inculpatus_A = mkA "inculpatus" "inculpata" "inculpatum" ; -- [XXXEC] :: unblamed, blameless; inculte_Adv =mkAdv "inculte" "incultius" "incultissime" ; -- [XXXDX] :: roughly, uncouthly, coarsely; without refinement/manners/style; --- SLASHSTUFF incultus_A : A2 incultus, inculta -um, incultior -or -us, incultissimus -a -um -- [XXXDX] :: uncultivated (land), overgrown; unkempt; rough, uncouth; uncourted; + incultus_A = mkA "incultus" ; -- [XXXDX] :: uncultivated (land), overgrown; unkempt; rough, uncouth; uncourted; incultus_M_N = mkN "incultus" "incultus " masculine ; -- [XXXDX] :: want of cultivation or refinement, uncouthness, disregard; incumberamentum_N_N = mkN "incumberamentum" ; -- [FLXFJ] :: encumberment; misfortune, annoyance, mishap, trouble; Satanic temptation; incumbero_V = mkV "incumberare" ; -- [FLXFJ] :: encumber; + incumbo_V2 = mkV2 (mkV "incumbere" "incumbo" "incumbui" "incumbitus ") ; -- [XXXBX] :: lean forward/over/on, press on; attack, apply force; fall on (one's sword); incumbramentum_N_N = mkN "incumbramentum" ; -- [FLXFJ] :: incumberment; misfortune, annoyance, mishap, trouble; Satanic temptation; incumbro_V = mkV "incumbrare" ; -- [FXXFM] :: obstruct; block; incunabulum_N_N = mkN "incunabulum" ; -- [GXXEK] :: |early (<1500) printed books (pl.); (Cal); @@ -21160,16 +22752,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg incuria_F_N = mkN "incuria" ; -- [XXXDX] :: carelessness, neglect; incuriose_Adv =mkAdv "incuriose" "incuriosius" "incuriousissime" ; -- [XXXDX] :: carelessly, negligently, indifferently; incuriosus_A = mkA "incuriosus" "incuriosa" "incuriosum" ; -- [XXXDX] :: careless/negligent; indifferent; paying no attention, off guard, unsuspecting; + incurro_V2 = mkV2 (mkV "incurrere" "incurro" "incurri" "incursus ") ; -- [XXXBX] :: run into or towards, attack, invade; meet (with); befall; incursio_F_N = mkN "incursio" "incursionis " feminine ; -- [XXXDX] :: onrush, attack, raid; incursion; incursito_V2 = mkV2 (mkV "incursitare") ; -- [XXXES] :: rush upon; attack; incurso_V = mkV "incursare" ; -- [XXXDX] :: strike/run/dash against, attack; make raids upon; incursus_M_N = mkN "incursus" "incursus " masculine ; -- [XXXDX] :: assault, attack; raid; + incurvesco_V = mkV "incurvescere" "incurvesco" nonExist nonExist; -- [XXXES] :: bend down; incurvicervicus_A = mkA "incurvicervicus" "incurvicervica" "incurvicervicum" ; -- [XXXFS] :: with crooked neck; incurvo_V = mkV "incurvare" ; -- [XXXDX] :: make crooked or bent; cause to bend down; incurvus_A = mkA "incurvus" "incurva" "incurvum" ; -- [XXXDX] :: crooked, curved; incus_F_N = mkN "incus" "incudis " feminine ; -- [XXXCO] :: anvil; (also medical for the inner ear bone); incuso_V = mkV "incusare" ; -- [XXXDX] :: accuse, blame, criticize, condemn; incustoditus_A = mkA "incustoditus" "incustodita" "incustoditum" ; -- [XXXDX] :: not watched over; unsupervised; + incutio_V2 = mkV2 (mkV "incutere" "incutio" "incussi" "incussus ") ; -- [XXXDX] :: strike on or against; instill; indagatio_F_N = mkN "indagatio" "indagationis " feminine ; -- [XXXDO] :: act of tracking down/searching out; investigation; indagator_M_N = mkN "indagator" "indagatoris " masculine ; -- [XXXEO] :: tracker, searcher, one who tracks down; investigator, explorer (Cas); indagatrix_F_N = mkN "indagatrix" "indagatricis " feminine ; -- [XXXEO] :: tracker, searcher (female); investigator, explorer; @@ -21177,6 +22772,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg indago_F_N = mkN "indago" "indaginis " feminine ; -- [XXXDX] :: ring of huntsmen/nets/troops/forts; encircling with snares; tracking down; indago_V2 = mkV2 (mkV "indagare") ; -- [XXXCO] :: track down, hunt out; search out, try to find/procure by seeking; investigate; indamnatus_A = mkA "indamnatus" "indamnata" "indamnatum" ; -- [XXXES] :: uncondemned; (= indemnatus); + indaudio_V2 = mkV2 (mkV "indaudire" "indaudio" "indaudivi" "indauditus ") ; -- [BXXES] :: hear of; learn; (archaic form of inaudio); inde_Adv = mkAdv "inde" ; -- [XXXAX] :: thence, thenceforth; from that place/time/cause; thereupon; indebitus_A = mkA "indebitus" "indebita" "indebitum" ; -- [XXXDX] :: that is not owed, not due; indecens_A = mkA "indecens" "indecentis"; -- [XXXEC] :: unbecoming, unseemly, unsightly; @@ -21218,6 +22814,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg indicatorius_A = mkA "indicatorius" "indicatoria" "indicatorium" ; -- [GXXEK] :: indicating; indicium_N_N = mkN "indicium" ; -- [XXXBX] :: evidence (before a court); information, proof; indication; indico_V = mkV "indicare" ; -- [XXXAX] :: point out, show, indicate, expose, betray, reveal; inform against, accuse; + indico_V2 = mkV2 (mkV "indicere" "indico" "indixi" "indictus ") ; -- [XXXDX] :: declare publicly; proclaim, announce; appoint; summon; indictio_F_N = mkN "indictio" "indictionis " feminine ; -- [XXXES] :: |valuation/value/price; indicating/setting/rating value; indictus_A = mkA "indictus" "indicta" "indictum" ; -- [XXXDX] :: not said/mentioned; (~ cause, without the case's being pleaded); unheard; indidem_Adv = mkAdv "indidem" ; -- [XXXDX] :: from the same place, source or origin; @@ -21238,12 +22835,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg indignitas_F_N = mkN "indignitas" "indignitatis " feminine ; -- [XXXDX] :: vileness, baseness, shamelessness; outrageousness; indignity, humiliation; indigniter_Adv =mkAdv "indigniter" "indiligentius" "indiligentissime" ; -- [XXXIO] :: undeservedly; unjustly; unworthily; indignor_V = mkV "indignari" ; -- [XXXBX] :: deem unworthy, scorn, regard with indignation, resent, be indignant; --- SLASHSTUFF indignus_A : A2 indignus, indigna -um, indignior -or -us, indignissimus -a -um -- [XXXBS] :: unworthy, undeserving, undeserved; unbecoming; shameful; intolerable; cruel; + indignus_A = mkA "indignus" ; -- [XXXBS] :: unworthy, undeserving, undeserved; unbecoming; shameful; intolerable; cruel; indigus_A = mkA "indigus" "indiga" "indigum" ; -- [XXXDX] :: having need (to); lacking; needy; indiguus_A = mkA "indiguus" "indigua" "indiguum" ; -- [DXXES] :: needing; in want; indiligens_A = mkA "indiligens" "indiligentis"; -- [XXXCO] :: careless, negligent; inattentive; neglected, not cared for; indiligenter_Adv =mkAdv "indiligenter" "indiligentius" "indiligentissime" ; -- [XXXEO] :: carelessly, negligently; inattentively; indiligentia_F_N = mkN "indiligentia" ; -- [XXXDO] :: negligence, want of care; want of concern (for); + indipiscor_V = mkV "indipisci" "indipiscor" "indeptus sum " ; -- [XXXDX] :: overtake; acquire; indirectus_A = mkA "indirectus" "indirecta" "indirectum" ; -- [XXXFS] :: not direct; (L+S - false reading of inde recte); indireptus_A = mkA "indireptus" "indirepta" "indireptum" ; -- [XXXEC] :: unpillaged; indisciplinate_Adv = mkAdv "indisciplinate" ; -- [DXXFS] :: disorderly, in an undisciplined manner; @@ -21276,21 +22874,24 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg indivisibiliter_Adv = mkAdv "indivisibiliter" ; -- [EXXEP] :: in indivisible condition; indivisio_F_N = mkN "indivisio" "indivisionis " feminine ; -- [EGXEP] :: indivisible item; that cannot be divided; indivisus_A = mkA "indivisus" "indivisa" "indivisum" ; -- [XXXCO] :: undivided, not split/cloven; indivisible; held in common/jointly/in equal parts; + indo_V2 = mkV2 (mkV "indere" "indo" "indedi" "inditus ") ; -- [XXXDX] :: put in or on; introduce; indocilis_A = mkA "indocilis" "indocilis" "indocile" ; -- [XXXDX] :: unteachable, ignorant; indoctus_A = mkA "indoctus" "indocta" "indoctum" ; -- [XXXDX] :: untaught; unlearned, ignorant, untrained; indolentia_F_N = mkN "indolentia" ; -- [XXXEC] :: freedom from pain; indoles_F_N = mkN "indoles" "indolis " feminine ; -- [XXXDX] :: innate character; inborn quality; --- TODO indolesco_V : V2 indolesco, indolescere, indolui, - -- Declension: 3rd -- Comment: [XXXDX] :: feel pain of mind; grieve; + indolesco_V2 = mkV2 (mkV "indolescere" "indolesco" "indolui" nonExist ) ; -- [XXXDX] :: feel pain of mind; grieve; indomabilis_A = mkA "indomabilis" "indomabilis" "indomabile" ; -- [BXXFS] :: untamable; indomitus_A = mkA "indomitus" "indomita" "indomitum" ; -- [XXXBX] :: untamed; untamable, fierce; + indormio_V2 = mkV2 (mkV "indormire" "indormio" "indormivi" "indormitus ") ; -- [XXXDX] :: sleep (in or over); indotatus_A = mkA "indotatus" "indotata" "indotatum" ; -- [XXXDX] :: not provided with a dowry; indotia_F_N = mkN "indotia" ; -- [XXXEO] :: truce (pl.), armistice, cessation of hostilities; respite, period of grace; indubitabilis_A = mkA "indubitabilis" "indubitabilis" "indubitabile" ; -- [XXXEO] :: indisputable, indubitable, not admitting to doubt; indubitanter_Adv = mkAdv "indubitanter" ; -- [XXXFO] :: indubitably, indisputably, beyond all doubt; indubitate_Adv = mkAdv "indubitate" ; -- [XXXEO] :: indisputably, beyond all doubt; --- SLASHSTUFF indubitatus_A : A2 indubitatus, indubitata -um, indubitatior -or -us, indubitatissimus -a -um -- [XXXCO] :: unquestionable, certain, indisputable; undoubted; not hesitated over, confident; + indubitatus_A = mkA "indubitatus" ; -- [XXXCO] :: unquestionable, certain, indisputable; undoubted; not hesitated over, confident; indubito_V = mkV "indubitare" ; -- [XXXDX] :: have misgivings (about); indubius_A = mkA "indubius" "indubia" "indubium" ; -- [XXXEC] :: not doubtful, certain; + induco_V2 = mkV2 (mkV "inducere" "induco" "induxi" "inductus ") ; -- [XXXBX] :: lead in, bring in (performers); induce, influence; introduce; inductio_F_N = mkN "inductio" "inductionis " feminine ; -- [XXXDX] :: leading or bringing in; application; indulgens_A = mkA "indulgens" "indulgentis"; -- [XXXCO] :: indulgent; kind, mild; gracious; bestowing favor; partial/addicted to (doing); indulgenter_Adv =mkAdv "indulgenter" "indulgentius" "indulgentissime" ; -- [XXXDO] :: indulgently; leniently; graciously; kindly; so as to show favor; @@ -21302,8 +22903,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg indultum_N_N = mkN "indultum" ; -- [FEXEE] :: |dispensation; privilege granted for something not permitted by Church law; indultus_M_N = mkN "indultus" ; -- [DXXES] :: leave; permission; indumentum_N_N = mkN "indumentum" ; -- [XXXDO] :: garment, robe; something put on; (mask, sauce); + induo_V2 = mkV2 (mkV "induere" "induo" "indui" "indutus ") ; -- [XXXAX] :: put on, clothe, cover; dress oneself in; [se induere => to impale oneself]; induoia_F_N = mkN "induoia" ; -- [XXXDO] :: truce (pl.), armistice, cessation of hostilities; respite, period of grace; indupeditus_A = mkA "indupeditus" "indupedita" "indupeditum" ; -- [XXXFS] :: hindered/hampered; difficult/impeded; inaccessible; (= impeditus); + induresco_V = mkV "indurescere" "induresco" "indurui" nonExist; -- [XXXCO] :: harden, set, become hard/tough/robust; become firmly established/inflexible; induro_V = mkV "indurare" ; -- [XXXDX] :: make hard; indusiatus_A = mkA "indusiatus" "indusiata" "indusiatum" ; -- [BXXFS] :: undergarment-wearing; indusium_N_N = mkN "indusium" ; -- [XXXEO] :: outer tunic; shirt (Ecc); woman's undergarment (L+S); shift; @@ -21313,7 +22916,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg industrie_Adv =mkAdv "industrie" "industrius" "industrissime" ; -- [XXXEO] :: industriously; diligently; assiduously; vigorously; industriose_Adv =mkAdv "industriose" "industriosius" "industriosissime" ; -- [XXXEO] :: industriously; diligently; assiduously; vigorously; industriosus_A = mkA "industriosus" "industriosa" "industriosum" ; -- [XXXES] :: very active; industrious; --- SLASHSTUFF industrius_A : A2 industrius, industria -um, industrior -or -us, industrissimus -a -um -- [XXXFO] :: industrious, diligent; active; zealous; assiduous; + industrius_A = mkA "industrius" ; -- [XXXFO] :: industrious, diligent; active; zealous; assiduous; indutia_F_N = mkN "indutia" ; -- [XXXCO] :: truce (pl.), armistice, cessation of hostilities; respite, period of grace; indutio_V = mkV "indutiare" ; -- [FLXFM] :: grant stay; E:clothe in monk's habit; indutrix_F_N = mkN "indutrix" "indutricis " feminine ; -- [GXXEK] :: model; @@ -21328,10 +22931,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inelegans_A = mkA "inelegans" "inelegantis"; -- [XXXDX] :: lacking in taste; clumsy, infelicitous; ineluctabilis_A = mkA "ineluctabilis" "ineluctabilis" "ineluctabile" ; -- [XXXDX] :: from which there is no escape; inemendabilis_A = mkA "inemendabilis" "inemendabilis" "inemendabile" ; -- [EXXFS] :: unamendable; incorrigible; + inemorior_V = mkV "inemori" "inemorior" "inemortuus sum " ; -- [XXXFO] :: die amid/in/at; die in contemplation of; (w/DAT); inemptus_A = mkA "inemptus" "inempta" "inemptum" ; -- [XXXDX] :: not bought; inenarrabilis_A = mkA "inenarrabilis" "inenarrabilis" "inenarrabile" ; -- [XXXDX] :: indescribable; --- TODO ineo_V : V1 ineo, inire, inivi(ii), initus -- [XXXBX] :: enter; undertake; begin; go in; enter upon; [consilium ~ => form a plan]; --- TODO ineptio_V : V2 ineptio, ineptire, -, - -- Declension: 4th -- Comment: [XXXDX] :: play the fool, trifle; + ineo_1_V2 = mkV2 (mkV "inire" "ineo" "inivi" "initus"); -- [XXXBX] :: enter; undertake; begin; go in; enter upon; [consilium ~ => form a plan]; + ineo_2_V2 = mkV2 (mkV "inire" "ineo" "inii" "initus"); -- [XXXBX] :: enter; undertake; begin; go in; enter upon; [consilium ~ => form a plan]; + ineptio_V = mkV "ineptire" "ineptio" nonExist nonExist ; -- [XXXDX] :: play the fool, trifle; ineptus_A = mkA "ineptus" "inepta" "ineptum" ; -- [XXXDX] :: silly, foolish; having no sense of what is fitting; inequito_V = mkV "inequitare" ; -- [XXXFS] :: ride upon; ride over; inergia_F_N = mkN "inergia" ; -- [FXXFY] :: energy; efficiency; (med. form of energia); @@ -21343,7 +22948,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inertia_F_N = mkN "inertia" ; -- [XXXBX] :: ignorance; inactivity; laziness, idleness, sloth; inerudite_Adv = mkAdv "inerudite" ; -- [XXXEO] :: ignorantly; crudely; without learning; ineruditio_F_N = mkN "ineruditio" "ineruditionis " feminine ; -- [DXXFS] :: want/lack of learning/education; ignorance (Vulgate Sirach 4:25/30); --- SLASHSTUFF ineruditus_A : A2 ineruditus, inerudita -um, ineruditior -or -us, ineruditissimus -a -um -- [XXXCO] :: uninformed, uneducated; illiterate; ignorant; + ineruditus_A = mkA "ineruditus" ; -- [XXXCO] :: uninformed, uneducated; illiterate; ignorant; inesco_V = mkV "inescare" ; -- [XXXFS] :: entice; fill with food; inestimabiliter_Adv = mkAdv "inestimabiliter" ; -- [FXXFM] :: inestimably; incalculably; inevitabilis_A = mkA "inevitabilis" "inevitabilis" "inevitabile" ; -- [XXXDX] :: unavoidable; @@ -21376,7 +22981,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg infabricatus_A = mkA "infabricatus" "infabricata" "infabricatum" ; -- [XXXEC] :: unwrought, unfashioned; infacetia_F_N = mkN "infacetia" ; -- [XXXEC] :: crudity (pl.); infacetus_A = mkA "infacetus" "infaceta" "infacetum" ; -- [XXXDX] :: coarse, boorish; --- SLASHSTUFF infacundus_A : A2 infacundus, infacunda -um, infacundior -or -us, infacundissimus -a -um -- [XXXDX] :: unable to express oneself fluently, not eloquent; slow of speech (COMP); + infacundus_A = mkA "infacundus" ; -- [XXXDX] :: unable to express oneself fluently, not eloquent; slow of speech (COMP); infallibilis_A = mkA "infallibilis" "infallibilis" "infallibile" ; -- [FXXDF] :: infallible, not liable to err or lead into error; infallibilitas_F_N = mkN "infallibilitas" "infallibilitatis " feminine ; -- [FXXEF] :: infallibility (in knowledge); infallibiliter_Adv = mkAdv "infallibiliter" ; -- [DXXEF] :: infallibly; in an unfailing manner; inevitably; @@ -21410,7 +23015,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg infelix_A = mkA "infelix" "infelicis"; -- [XXXAO] :: unfortunate, unhappy, wretched; unlucky, inauspicious; unproductive (plant); infenso_V = mkV "infensare" ; -- [XXXDX] :: treat in a hostile manner; infensus_A = mkA "infensus" "infensa" "infensum" ; -- [XXXDX] :: hostile, bitterly hostile, enraged; --- SLASHSTUFF infer_A : A2 infer, infera -um, inferior -or -us, infumus -a -um -- [XXXDX] :: below, beneath, underneath; of hell; vile; lower, further down; lowest, last; + infer_A = mkA "infer" ; -- [XXXDX] :: below, beneath, underneath; of hell; vile; lower, further down; lowest, last; + infercio_V2 = mkV2 (mkV "infercire" "infercio" "infersi" "infertus ") ; -- [XXXES] :: stuff; stuff with; inferia_F_N = mkN "inferia" ; -- [XXXDX] :: offerings to the dead (pl.); infernale_N_N = mkN "infernale" "infernalis " neuter ; -- [FEXDF] :: infernal regions (pl.), Hell; infernalis_A = mkA "infernalis" "infernalis" "infernale" ; -- [DEXBS] :: infernal, of/like Hell, Hellish; belonging to the lower regions; nether, lower; @@ -21419,20 +23025,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg infernus_A = mkA "infernus" "inferna" "infernum" ; -- [XXXBX] :: lower, under; underground, of the lower regions, infernal; of hell; infernus_M_N = mkN "infernus" ; -- [XXXDX] :: inhabitants of the lower world (pl.), the shades; the damned; Hell (Bee); infero_V2 = mkV2 (mkV "inferre") ; -- [XXXAO] :: ||put/throw/thrust in/on, insert; bury/inter; pay; charge as expense; append; --- SLASHSTUFF inferus_A : A2 inferus, infera -um, inferior -or -us, infimus -a -um -- [XXXAX] :: below, beneath, underneath; of hell; vile; lower, further down; lowest, last; + inferus_A = mkA "inferus" ; -- [XXXAX] :: below, beneath, underneath; of hell; vile; lower, further down; lowest, last; inferus_M_N = mkN "inferus" ; -- [XXXDX] :: those below (pl.), the dead; + infervefacio_V2 = mkV2 (mkV "infervefacere" "infervefacio" "infervefeci" "infervefactus ") ; -- [XXXDS] :: cause to boil; + infervesco_V = mkV "infervescere" "infervesco" "infervui" nonExist; -- [XXXES] :: grow hot; infeste_Adv =mkAdv "infeste" "infestius" "infestissime" ; -- [XXXDX] :: dangerously, savagely; in a hostile manner; belligerently; infesto_V2 = mkV2 (mkV "infestare") ; -- [XXXBO] :: vex (w/attacks), harass, molest; make unsafe, disturb; infest; damage, impair; --- SLASHSTUFF infestus_A : A2 infestus, infesta -um, infestior -or -us, infestissimus -a -um -- [XXXBX] :: unsafe, dangerous; hostile; disturbed, molested, infested, unquiet; + infestus_A = mkA "infestus" ; -- [XXXBX] :: unsafe, dangerous; hostile; disturbed, molested, infested, unquiet; inficetia_F_N = mkN "inficetia" ; -- [XXXEC] :: crudity (pl.); + inficio_V2 = mkV2 (mkV "inficere" "inficio" "infeci" "infectus ") ; -- [XXXBX] :: corrupt, infect, imbue; poison; dye, stain, color, spoil; inficior_V = mkV "inficiari" ; -- [XXXDX] :: deny; refuse to acknowledge as true; withhold; disown; repudiate (claims); infidelis_A = mkA "infidelis" "infidelis" "infidele" ; -- [XXXDX] :: treacherous, disloyal; infidelitas_F_N = mkN "infidelitas" "infidelitatis " feminine ; -- [XXXDX] :: faithlessness; inconstancy; infidibulum_N_N = mkN "infidibulum" ; -- [XXXDO] :: funnel (for pouring liquids); hopper (in mill); infidigraphus_A = mkA "infidigraphus" "infidigrapha" "infidigraphum" ; -- [XXXDX] :: faithless, treacherous; infidus_A = mkA "infidus" "infida" "infidum" ; -- [DEXFS] :: writing without faith; writing faithlessly; + infigo_V2 = mkV2 (mkV "infigere" "infigo" "infixi" "infixus ") ; -- [XXXDX] :: fasten (on), fix, implant, affix; impose; drive/thrust in; infimo_V2 = mkV2 (mkV "infimare") ; -- [XXXDX] :: bring down to the lowest level; weaken, enfeeble; refute, invalidate, annul; infimus_A = mkA "infimus" "infima" "infimum" ; -- [XXXDX] :: lowest, deepest, furtherest down/from the surface; humblest; vilest, meanest; + infindo_V2 = mkV2 (mkV "infindere" "infindo" "infidi" "infissus ") ; -- [XXXDX] :: cleave; plow a path into; infinitarius_A = mkA "infinitarius" "infinitaria" "infinitarium" ; -- [XXXDX] :: having unlimited powers (of a magistrate); infinitas_F_N = mkN "infinitas" "infinitatis " feminine ; -- [XXXDX] :: limitless extent; infinity; the Infinite; infinitesimalis_A = mkA "infinitesimalis" "infinitesimalis" "infinitesimale" ; -- [GXXEK] :: infinitesimal; @@ -21445,7 +23056,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg infirmiter_Adv = mkAdv "infirmiter" ; -- [DXXES] :: weakly/feebly; without energy/support/power; not firmly/effectively; not very; infirmo_V = mkV "infirmare" ; -- [XXXDX] :: weaken; diminish; annul; (PASS) be ill (Bee); infirmum_N_N = mkN "infirmum" ; -- [XXXES] :: weak parts (pl.); --- SLASHSTUFF infirmus_A : A2 infirmus, infirma -um, infirmior -or -us, infirmissimus -a -um -- [XXXAO] :: |weak (military); mild/irresolute; powerless/ineffectual; unsound/untrustworthy; + infirmus_A = mkA "infirmus" ; -- [XXXAO] :: |weak (military); mild/irresolute; powerless/ineffectual; unsound/untrustworthy; infirmus_M_N = mkN "infirmus" ; -- [EXXEP] :: patient, one who is sick/infirm; infitia_F_N = mkN "infitia" ; -- [XXXFS] :: denial; L:defend action; infitialis_A = mkA "infitialis" "infitialis" "infitiale" ; -- [XXXDX] :: negative, negatory; containing a denial; @@ -21456,13 +23067,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inflammatus_A = mkA "inflammatus" "inflammata" "inflammatum" ; -- [XXXDX] :: excited; inflamed; set on fire; inflammo_V = mkV "inflammare" ; -- [XXXDX] :: set on fire, inflame, kindle; excite; inflatio_F_N = mkN "inflatio" "inflationis " feminine ; -- [XXXCS] :: inflation, swelling/blowing/puffing (up); flatulence; inflammation; insolence; --- SLASHSTUFF inflatus_A : A2 inflatus, inflata -um, inflatior -or -us, inflatissimus -a -um -- [XXXDX] :: inflated, puffed up; bombastic; turgid; + inflatus_A = mkA "inflatus" ; -- [XXXDX] :: inflated, puffed up; bombastic; turgid; + inflecto_V2 = mkV2 (mkV "inflectere" "inflecto" "inflexi" "inflexus ") ; -- [XXXDX] :: bend; curve; change; inflectus_A = mkA "inflectus" "inflecta" "inflectum" ; -- [XXXDX] :: unmourned; not wept for; infletus_A = mkA "infletus" "infleta" "infletum" ; -- [XXXEO] :: unmourned, not wept for; inflexibilis_A = mkA "inflexibilis" "inflexibilis" "inflexibile" ; -- [XXXES] :: unbendable; inflexible; inflexio_F_N = mkN "inflexio" "inflexionis " feminine ; -- [XXXEO] :: modification, adaption; bending/curving (action); + infligo_V2 = mkV2 (mkV "infligere" "infligo" "inflixi" "inflictus ") ; -- [XXXDX] :: knock or dash (against); inflict, impose; inflo_V = mkV "inflare" ; -- [XXXBX] :: blow into/upon; puff out; influentia_F_N = mkN "influentia" ; -- [GXXEK] :: influence; + influo_V2 = mkV2 (mkV "influere" "influo" "influxi" "influxus ") ; -- [XXXDX] :: flow into; flow; + infodio_V2 = mkV2 (mkV "infodere" "infodio" "infodi" "infossus ") ; -- [XXXDX] :: bury, inter; informaticus_A = mkA "informaticus" "informatica" "informaticum" ; -- [GXXEK] :: data processing; informatio_F_N = mkN "informatio" "informationis " feminine ; -- [GXXEK] :: information; informis_A = mkA "informis" "informis" "informe" ; -- [XXXDX] :: formless, shapeless; deformed; ugly, hideous; @@ -21470,13 +23085,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg informo_V = mkV "informare" ; -- [XXXDX] :: shape, form; fashion; form an idea of; infortunatus_A = mkA "infortunatus" "infortunata" "infortunatum" ; -- [XXXDX] :: unfortunate; infortunium_N_N = mkN "infortunium" ; -- [XXXDX] :: misfortune, punishment; - infra_Acc_Prep = mkPrep "infra" Acc ; -- [XXXAX] :: below, lower than; later than; + infra_Acc_Prep = mkPrep "infra" acc ; -- [XXXAX] :: below, lower than; later than; infra_Adv = mkAdv "infra" ; -- [XXXDX] :: below, on the under side, underneath; further along; on the south; infractus_A = mkA "infractus" "infracta" "infractum" ; -- [XXXDX] :: broken; humble in tone; infrascriptus_A = mkA "infrascriptus" "infrascripta" "infrascriptum" ; -- [FXXFZ] :: below-written; --- TODO infremo_V : V2 infremo, infremere, infremui, - -- Declension: 3rd -- Comment: [XXXDX] :: bellow, roar; + infremo_V2 = mkV2 (mkV "infremere" "infremo" "infremui" nonExist ) ; -- [XXXDX] :: bellow, roar; infrenatus_A = mkA "infrenatus" "infrenata" "infrenatum" ; -- [XXXDX] :: not using a bridle; --- TODO infrendo_V : V2 infrendo, infrendere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: gnash the teeth (usually in anger); + infrendo_V = mkV "infrendere" "infrendo" nonExist nonExist ; -- [XXXDX] :: gnash the teeth (usually in anger); infrenis_A = mkA "infrenis" "infrenis" "infrene" ; -- [XXXDX] :: not bridled; unrestrained; infreno_V = mkV "infrenare" ; -- [XXXDX] :: bridle; infrenus_A = mkA "infrenus" "infrena" "infrenum" ; -- [XXXDX] :: not bridled; unrestrained; @@ -21485,6 +23100,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg infricatus_A = mkA "infricatus" "infricata" "infricatum" ; -- [XXXFS] :: rubbed-in; (alt. vpar of infrico); infrico_V = mkV "infricare" ; -- [XXXES] :: rub in; infrigido_V = mkV "infrigidare" ; -- [FXXFM] :: chill; cool; + infringo_V2 = mkV2 (mkV "infringere" "infringo" "infregi" "infractus ") ; -- [XXXDX] :: break, break off; lessen, weaken, diminish, dishearten; overcome, crush; infrio_V2 = mkV2 (mkV "infriare") ; -- [XXXCS] :: rub into; strew upon; infrons_A = mkA "infrons" "infrondis"; -- [XXXFO] :: leafless; having no trees/foliage; infructuosus_A = mkA "infructuosus" "infructuosa" "infructuosum" ; -- [XXXEC] :: unfruitful, unproductive; @@ -21492,36 +23108,45 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg infrunitus_A = mkA "infrunitus" "infrunita" "infrunitum" ; -- [DXXDS] :: unfit for enjoyment, tasteless, senseless; infucatus_A = mkA "infucatus" "infucata" "infucatum" ; -- [XXXEC] :: colored; infula_F_N = mkN "infula" ; -- [XXXDX] :: band; fillet; woolen headband knotted with ribbons; + infulcio_V2 = mkV2 (mkV "infulcire" "infulcio" "infulsi" "infultus ") ; -- [XXXDS] :: cram; cram in; infulgeo_V = mkV "infulgere" ; -- [EXXEP] :: shine in; lighten; infulo_V = mkV "infulare" ; -- [FEXEM] :: invest/vest with mitre/episcopal insignia; put on vestments; adorn w/halo; infumus_A = mkA "infumus" "infuma" "infumum" ; -- [XXXDX] :: lowest, deepest, furtherest down/from the surface; humblest; vilest, meanest; infundabiliter_Adv = mkAdv "infundabiliter" ; -- [FXXFM] :: unwarrantably; unjustly, for no good reason; infundibulum_N_N = mkN "infundibulum" ; -- [XXXDO] :: funnel (for pouring liquids); hopper (in mill); + infundo_V2 = mkV2 (mkV "infundere" "infundo" "infudi" "infusus ") ; -- [XXXBX] :: pour in, pour on, pour out; infusco_V = mkV "infuscare" ; -- [XXXDX] :: darken; corrupt; infusio_F_N = mkN "infusio" "infusionis " feminine ; -- [XXXDS] :: pouring-in; flowing; + ingemesco_V2 = mkV2 (mkV "ingemescere" "ingemesco" "ingemui" "ingemitus ") ; -- [XXXCO] :: groan/moan (begin to) at/over; cry w/pain/anguish/sorrow; creak/groan (object); ingemino_V = mkV "ingeminare" ; -- [XXXDX] :: redouble; increase in intensity; + ingemisco_V2 = mkV2 (mkV "ingemiscere" "ingemisco" "ingemui" "ingemitus ") ; -- [XXXCO] :: groan/moan (begin to) at/over; cry w/pain/anguish/sorrow; creak/groan (object); + ingemo_V2 = mkV2 (mkV "ingemere" "ingemo" "ingemui" "ingemitus ") ; -- [XXXCO] :: groan/moan/sigh (at/over); utter cry of pain/anguish; creak/groan (objects); ingenero_V = mkV "ingenerare" ; -- [XXXDX] :: implant; ingeniarius_M_N = mkN "ingeniarius" ; -- [GXXEK] :: engineer; ingeniatus_A = mkA "ingeniatus" "ingeniata" "ingeniatum" ; -- [XXXES] :: naturally inclined; adapted by nature; ingeniculo_V2 = mkV2 (mkV "ingeniculare") ; -- [XXXFO] :: kneel; ingeniose_Adv =mkAdv "ingeniose" "ingeniosius" "ingeniosissime" ; -- [XXXDX] :: cleverly, ingeniously; --- SLASHSTUFF ingeniosus_A : A2 ingeniosus, ingeniosa -um, ingeniosior -or -us, ingeniosissimus -a -um -- [XXXDX] :: clever, ingenious; naturally suited (to); having natural abilities/talents; + ingeniosus_A = mkA "ingeniosus" ; -- [XXXDX] :: clever, ingenious; naturally suited (to); having natural abilities/talents; ingenium_N_N = mkN "ingenium" ; -- [EXXDB] :: trick, clever device; + ingeno_V2 = mkV2 (mkV "ingenere" "ingeno" nonExist nonExist) ; -- [XXXES] :: engender; instill by birth; ingens_A = mkA "ingens" "ingentis"; -- [XXXAX] :: not natural, immoderate; huge, vast, enormous; mighty; remarkable, momentous; ingenuitas_F_N = mkN "ingenuitas" "ingenuitatis " feminine ; -- [XXXCO] :: status/quality of free-born person; nobility of character, modesty, candor; ingenuus_A = mkA "ingenuus" "ingenua" "ingenuum" ; -- [XXXDX] :: natural, indigenous; free-born; noble, generous, frank; ingerentia_F_N = mkN "ingerentia" ; -- [GXXEK] :: interference; + ingero_V2 = mkV2 (mkV "ingerere" "ingero" "ingessi" "ingestus ") ; -- [XXXBX] :: carry in, throw in; heap; force/thrust/throw upon; + ingigno_V2 = mkV2 (mkV "ingignere" "ingigno" "ingenui" "ingenitus ") ; -- [XXXDS] :: engender; instill by birth; inglorius_A = mkA "inglorius" "ingloria" "inglorium" ; -- [XXXDX] :: obscure, undistinguished; ingluvies_F_N = mkN "ingluvies" "ingluviei " feminine ; -- [XXXDX] :: gullet, jaws; gluttony; ingrate_Adv = mkAdv "ingrate" ; -- [XXXDX] :: unpleasantly, without pleasure/delight/gratitude; ungratefully; thanklessly; ingratiis_Adv = mkAdv "ingratiis" ; -- [XXXDX] :: against wishes (of); unwillingly; ingratis_Adv = mkAdv "ingratis" ; -- [XXXDX] :: against the wishes (of ); unwillingly; ingratus_A = mkA "ingratus" "ingrata" "ingratum" ; -- [XXXBX] :: unpleasant; ungrateful; thankless; --- TODO ingravesco_V : V2 ingravesco, ingravescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: grow heavy; increase in force or intensity; + ingravesco_V = mkV "ingravescere" "ingravesco" nonExist nonExist ; -- [XXXDX] :: grow heavy; increase in force or intensity; ingravo_V = mkV "ingravare" ; -- [XXXDX] :: aggravate, make worse, weigh down, oppress, molest; ingredientium_N_N = mkN "ingredientium" ; -- [GXXEK] :: ingredient; + ingredior_V = mkV "ingredi" "ingredior" "ingressus sum " ; -- [XXXAX] :: advance, walk; enter, step/go into; undertake, begin; ingressus_M_N = mkN "ingressus" "ingressus " masculine ; -- [XXXDX] :: entry; going in/embarking on (topic/speech); point of entry, approach; steps; --- TODO ingruo_V : V2 ingruo, ingruere, ingrui, - -- Declension: 3rd -- Comment: [XXXDX] :: advance threateningly; make an onslaught on; break in, come violently, force; + ingruo_V2 = mkV2 (mkV "ingruere" "ingruo" "ingrui" nonExist ) ; -- [XXXDX] :: advance threateningly; make an onslaught on; break in, come violently, force; inguen_N_N = mkN "inguen" "inguinis " neuter ; -- [XXXDX] :: groin; the sexual organs, privy parts; ingurgito_V = mkV "ingurgitare" ; -- [XXXDX] :: pour in liquid in a flood; engulf/plunge in; immerse in (activity); glut/gorge; ingustatus_A = mkA "ingustatus" "ingustata" "ingustatum" ; -- [XXXEC] :: untasted; @@ -21533,7 +23158,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inhaeredito_V2 = mkV2 (mkV "inhaereditare") ; -- [ELXFS] :: appoint an heir; inhaeredo_V2 = mkV2 (mkV "inhaeredare") ; -- [ELXFS] :: appoint an heir; inhaereo_V = mkV "inhaerere" ; -- [XXXDX] :: stick/hold fast/to, cling, adhere, fasten on; haunt, dwell in; get teeth in; --- TODO inhaeresco_V : V2 inhaeresco, inhaerescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: begin to adhere, become attached/embedded/glued together; become stuck/fixed; + inhaeresco_V = mkV "inhaerescere" "inhaeresco" nonExist nonExist ; -- [XXXDX] :: begin to adhere, become attached/embedded/glued together; become stuck/fixed; inhaesitanter_Adv = mkAdv "inhaesitanter" ; -- [FXXFE] :: unhesitatingly; inhalatio_F_N = mkN "inhalatio" "inhalationis " feminine ; -- [GXXEK] :: inhalation; inhalo_V = mkV "inhalare" ; -- [XXXES] :: breathe; breathe on; @@ -21545,7 +23170,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inhonestas_F_N = mkN "inhonestas" "inhonestatis " feminine ; -- [EXXES] :: dishonor; inhoneste_Adv = mkAdv "inhoneste" ; -- [XXXDX] :: shamefully; dishonorably; inhonesto_V = mkV "inhonestare" ; -- [XXXDX] :: disgrace; --- SLASHSTUFF inhonestus_A : A2 inhonestus, inhonesta -um, inhonestior -or -us, inhonestissimus -a -um -- [XXXDX] :: shameful, not regarded with honor/respect; degrading (appearance); + inhonestus_A = mkA "inhonestus" ; -- [XXXDX] :: shameful, not regarded with honor/respect; degrading (appearance); inhonorabilis_A = mkA "inhonorabilis" "inhonorabilis" "inhonorabile" ; -- [XXXEO] :: unhonored; not conferring honor on a person; without honor (Souter); inhonorate_Adv = mkAdv "inhonorate" ; -- [EXXFP] :: dishonorably(?); inhonoratio_F_N = mkN "inhonoratio" "inhonorationis " feminine ; -- [EXXFS] :: dishonoring; dishonor (Vulgate); @@ -21554,7 +23179,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inhonoro_V2 = mkV2 (mkV "inhonorare") ; -- [XXXES] :: dishonor; inhonorus_A = mkA "inhonorus" "inhonora" "inhonorum" ; -- [XXXEC] :: dishonored; inhorreo_V = mkV "inhorrere" ; -- [XXXES] :: stand on end; bristle up; shiver all over; --- TODO inhorresco_V : V2 inhorresco, inhorrescere, inhorrui, - -- Declension: 3rd -- Comment: [XXXDX] :: bristle up; quiver, tremble, shudder at; + inhorresco_V2 = mkV2 (mkV "inhorrescere" "inhorresco" "inhorrui" nonExist ) ; -- [XXXDX] :: bristle up; quiver, tremble, shudder at; inhospitalis_A = mkA "inhospitalis" "inhospitalis" "inhospitale" ; -- [XXXES] :: inhospitable; inhospitalitas_F_N = mkN "inhospitalitas" "inhospitalitatis " feminine ; -- [XXXDX] :: fear/hatred of strangers; inhospitus_A = mkA "inhospitus" "inhospita" "inhospitum" ; -- [XXXDX] :: not welcoming strangers, not providing shelter/subsistence; inhospitable; @@ -21562,26 +23187,30 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inhumanatus_A = mkA "inhumanatus" "inhumanata" "inhumanatum" ; -- [XEXFS] :: made man; incarnate; inhumane_Adv =mkAdv "inhumane" "inhumanius" "inhumanissime" ; -- [XXXDX] :: rudely, discourteously; heartlessly, unfeelingly; inhumanly; inhumanitas_F_N = mkN "inhumanitas" "inhumanitatis " feminine ; -- [XXXDX] :: churlishness; --- SLASHSTUFF inhumanus_A : A2 inhumanus, inhumana -um, inhumanior -or -us, inhumanissimus -a -um -- [XXXDX] :: rude, discourteous, churlish; unfeeling, inhuman; uncultured; superhuman; + inhumanus_A = mkA "inhumanus" ; -- [XXXDX] :: rude, discourteous, churlish; unfeeling, inhuman; uncultured; superhuman; inhumatus_A = mkA "inhumatus" "inhumata" "inhumatum" ; -- [XXXDX] :: unburied; inibi_Adv = mkAdv "inibi" ; -- [XXXDX] :: in that place/number/activity/connection/respect; at that point in time; + inicio_V2 = mkV2 (mkV "inicere" "inicio" "injeci" "injectus ") ; -- [XXXBX] :: hurl/throw/strike in/into; inject; put on; inspire, instill (feeling, etc); inidoneitas_F_N = mkN "inidoneitas" "inidoneitatis " feminine ; -- [FXXEM] :: unfitness; inidoneus_A = mkA "inidoneus" "inidonea" "inidoneum" ; -- [FXXEM] :: unfit; unsuitable; inimicitia_F_N = mkN "inimicitia" ; -- [XXXDX] :: unfriendliness, enmity, hostility; inimico_V = mkV "inimicare" ; -- [XPXFS] :: make enemies; --- SLASHSTUFF inimicus_A : A2 inimicus, inimica -um, inimicior -or -us, inimicissimus -a -um -- [XXXAX] :: unfriendly, hostile, harmful; + inimicus_A = mkA "inimicus" ; -- [XXXAX] :: unfriendly, hostile, harmful; inimicus_M_N = mkN "inimicus" ; -- [XXXDX] :: enemy (personal), foe; inimitabilis_A = mkA "inimitabilis" "inimitabilis" "inimitabile" ; -- [DXXES] :: inimitable; + ininnascor_V = mkV "ininnasci" "ininnascor" "ininnatus sum " ; -- [XXXDX] :: be born in; iniquitas_F_N = mkN "iniquitas" "iniquitatis " feminine ; -- [XXXDX] :: unfairness, inequality, unevenness (of terrain); --- SLASHSTUFF iniquus_A : A2 iniquus, iniqua -um, iniquior -or -us, iniquissimus -a -um -- [XXXBX] :: unjust, unfair; disadvantageous, uneven; unkind, hostile; + iniquus_A = mkA "iniquus" ; -- [XXXBX] :: unjust, unfair; disadvantageous, uneven; unkind, hostile; initiale_N_N = mkN "initiale" "initialis " neuter ; -- [XXXIO] :: original/founding members (of society); initialis_A = mkA "initialis" "initialis" "initiale" ; -- [XXXDO] :: initial, original, relating to beginning; primary; initio_V = mkV "initiare" ; -- [XXXDX] :: initiate (into); admit (to) with introductory rites; initium_N_N = mkN "initium" ; -- [XXXBX] :: beginning, commencement; entrance; [ab initio => from the beginning]; initus_M_N = mkN "initus" "initus " masculine ; -- [XXXDX] :: entry, start; injecto_V = mkV "injectare" ; -- [XPXDS] :: apply; lay on; + injicio_V2 = mkV2 (mkV "injicere" "injicio" "injeci" "injectus ") ; -- [XXXCS] :: hurl/throw/strike in/into; inject; put on; inspire, instill (feeling, etc); injucundus_A = mkA "injucundus" "injucunda" "injucundum" ; -- [XXXDX] :: unpleasant; injudicatus_A = mkA "injudicatus" "injudicata" "injudicatum" ; -- [XXXEC] :: undecided; + injungo_V2 = mkV2 (mkV "injungere" "injungo" "injunxi" "injunctus ") ; -- [XXXBX] :: enjoin, charge, bring/impose upon; unite; join/fasten/attach (to); injuratus_A = mkA "injuratus" "injurata" "injuratum" ; -- [XXXDX] :: unsworn; injuria_F_N = mkN "injuria" ; -- [XXXAX] :: injury; injustice, wrong, offense; insult, abuse; sexual assault; injurio_V2 = mkV2 (mkV "injuriare") ; -- [FXXEM] :: injure; do injury; wrong, do wrong; @@ -21597,6 +23226,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg injustitia_F_N = mkN "injustitia" ; -- [XXXEC] :: injustice; severity; injustus_A = mkA "injustus" "injusta" "injustum" ; -- [XXXBX] :: unjust, wrongful; severe, excessive; unsuitable; inlabefactus_A = mkA "inlabefactus" "inlabefacta" "inlabefactum" ; -- [XXXEC] :: unshaken, firm; + inlabor_V = mkV "inlabi" "inlabor" "inlapsus sum " ; -- [XXXCO] :: slide/glide/flow (into), move smoothly; fall/sink (on to); inlaboro_V = mkV "inlaborare" ; -- [XXXFO] :: work (at); (w/DAT); inlacessitus_A = mkA "inlacessitus" "inlacessita" "inlacessitum" ; -- [XXXEC] :: unattacked, unprovoked; inlacrimo_V = mkV "inlacrimare" ; -- [XXXCO] :: weep over/at (with DAT); shed tears; water (eyes); @@ -21624,7 +23254,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inliberaliter_Adv = mkAdv "inliberaliter" ; -- [XXXEO] :: stingily, meanly, ungenerously; in manner unworthy of free man; inlicitator_M_N = mkN "inlicitator" "inlicitatoris " masculine ; -- [XXXEC] :: sham bidder at an auction, a puffer, shill; inlicitus_A = mkA "inlicitus" "inlicita" "inlicitum" ; -- [XXXEC] :: not allowed, illegal; + inlido_V2 = mkV2 (mkV "inlidere" "inlido" "inlisi" "inlisus ") ; -- [XXXBO] :: strike/beat/dash/push against/on; injure by crushing; drive (teeth into); inlimis_A = mkA "inlimis" "inlimis" "inlime" ; -- [XXXEC] :: free from mud, clean; + inlino_V2 = mkV2 (mkV "inlinere" "inlino" "inlevi" "inlitus ") ; -- [XXXDX] :: smear over; anoint; inliquefactus_A = mkA "inliquefactus" "inliquefacta" "inliquefactum" ; -- [XXXEC] :: molten, liquefied; inlitteratus_A = mkA "inlitteratus" "inlitterata" "inlitteratum" ; -- [XXXEC] :: ignorant, illiterate; inlocabilis_A = mkA "inlocabilis" "inlocabilis" "inlocabile" ; -- [XXXDX] :: unable to be placed (for marriage); @@ -21636,13 +23268,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inlusor_M_N = mkN "inlusor" "inlusoris " masculine ; -- [DXXES] :: scoffer; mocker; inlusorius_A = mkA "inlusorius" "inlusoria" "inlusorium" ; -- [DXXES] :: ironical; of a scoffer/mocking character; inlustre_Adv =mkAdv "inlustre" "inlustrius" "inlustrissime" ; -- [XXXEO] :: with clarity; clearly, distinctly, perspicuously (L+S); --- SLASHSTUFF inlustris_A : A2 inlustris, inlustre, inlustrior -or -us, inlustrissimus -a -um -- [XXXBO] :: bright, shining, brilliant; clear, lucid; illustrious, distinguished, famous; + inlustris_A = mkA "inlustris" ; -- [XXXBO] :: bright, shining, brilliant; clear, lucid; illustrious, distinguished, famous; inlustro_V2 = mkV2 (mkV "inlustrare") ; -- [XXXBO] :: illuminate, light up; give glory; embellish; make clear, elucidate; enlighten; inlutus_A = mkA "inlutus" "inluta" "inlutum" ; -- [XXXEC] :: unwashed, unclean; inmaculatus_A = mkA "inmaculatus" "inmaculata" "inmaculatum" ; -- [XXXDP] :: immaculate/unstained/spotless/without blemish; undefiled/pure/chaste; blameless; --- SLASHSTUFF inmanis_A : A2 inmanis, inmane, inmanior -or -us, inmanissimus -a -um -- [XXXAO] :: huge/vast/immense/tremendous/extreme/monstrous; inhuman/savage/brutal/frightful; + inmanis_A = mkA "inmanis" ; -- [XXXAO] :: huge/vast/immense/tremendous/extreme/monstrous; inhuman/savage/brutal/frightful; inmanitas_F_N = mkN "inmanitas" "inmanitatis " feminine ; -- [XXXCO] :: brutality, savage character, frightfulness; huge/vast size; barbarity; monster; --- SLASHSTUFF inmediatus_A : A2 inmediatus, inmediata -um, inmediatior -or -us, inmediatissimus -a -um -- [EXXEP] :: absolute (contraries), non-mediated; next; + inmediatus_A = mkA "inmediatus" ; -- [EXXEP] :: absolute (contraries), non-mediated; next; inmemor_A = mkA "inmemor" "inmemoris"; -- [XXXBO] :: forgetful (by nature); lacking memory; heedless (of obligations/consequences); inmemoratio_F_N = mkN "inmemoratio" "inmemorationis " feminine ; -- [EXXFS] :: forgetfulness, unmindfulness; inmemoratum_N_N = mkN "inmemoratum" ; -- [XXXEW] :: things (pl.) not told/related; things not mentioned; @@ -21652,6 +23284,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inmensus_A = mkA "inmensus" "inmensa" "inmensum" ; -- [XXXBO] :: immeasurable, immense/vast/boundless/unending; infinitely great; innumerable; inmeritus_A = mkA "inmeritus" "inmerita" "inmeritum" ; -- [XXXCO] :: undeserving; undeserved, unmerited; inmissio_F_N = mkN "inmissio" "inmissionis " feminine ; -- [XXXEO] :: insertion/engrafting, action of putting/sending in, of allowing to enter; + inmitto_V2 = mkV2 (mkV "inmittere" "inmitto" "inmisi" "inmissus ") ; -- [XXXBX] :: send in/to/into/against; cause to go; insert; hurl/throw in; let go/in; allow; inmobilis_A = mkA "inmobilis" "inmobilis" "inmobile" ; -- [XXXBO] :: |unwieldy/cumbersome; imperturbable/emotionally unmoved; steadfast; slow to act; inmodicus_A = mkA "inmodicus" "inmodica" "inmodicum" ; -- [FXXDX] :: beyond measure, immoderate, excessive; inmolaticius_A = mkA "inmolaticius" "inmolaticia" "inmolaticium" ; -- [DXXES] :: of/for a sacrifice; @@ -21666,30 +23299,36 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inmutatio_F_N = mkN "inmutatio" "inmutationis " feminine ; -- [XXXCO] :: change, alteration, process of changing; substitution/replacement; innabilis_A = mkA "innabilis" "innabilis" "innabile" ; -- [XXXDX] :: that cannot be swum; innascibilitas_F_N = mkN "innascibilitas" "innascibilitatis " feminine ; -- [EXXCP] :: state of being unable to be born; + innascor_V = mkV "innasci" "innascor" "innatus sum " ; -- [XXXDX] :: be born (in or on); innato_V = mkV "innatare" ; -- [XXXDX] :: swim (in or on); swim (into); float upon; innatus_A = mkA "innatus" "innata" "innatum" ; -- [XXXDX] :: natural, inborn; innavigabilis_A = mkA "innavigabilis" "innavigabilis" "innavigabile" ; -- [XXXDX] :: unnavigable; innecessitas_F_N = mkN "innecessitas" "innecessitatis " feminine ; -- [HXXFX] :: non-necessity (JFW); + innecto_V2 = mkV2 (mkV "innectere" "innecto" "innexui" "innexus ") ; -- [XXXDX] :: tie, fasten (to); devise, weave (plots); + innitor_V = mkV "inniti" "innitor" "innixus sum " ; -- [XXXDX] :: lean/rest on (w/DAT), be supported by (w/ABL); inno_V = mkV "innare" ; -- [XXXDX] :: swim or float (in or on); sail (on); innocens_A = mkA "innocens" "innocentis"; -- [XXXBX] :: harmless, innocent; virtuous, upright; innocentia_F_N = mkN "innocentia" ; -- [XXXBX] :: harmlessness; innocence, integrity; innoco_V2 = mkV2 (mkV "innocare") ; -- [XAXES] :: harrow in; innocuus_A = mkA "innocuus" "innocua" "innocuum" ; -- [XXXDX] :: innocent; harmless; --- TODO innotesco_V : V2 innotesco, innotescere, innotui, - -- Declension: 3rd -- Comment: [XXXDX] :: become known, be made conspicuous; + innotesco_V2 = mkV2 (mkV "innotescere" "innotesco" "innotui" nonExist ) ; -- [XXXDX] :: become known, be made conspicuous; innovatio_F_N = mkN "innovatio" "innovationis " feminine ; -- [DXXES] :: renewal; alteration; innovation; innovatus_A = mkA "innovatus" "innovata" "innovatum" ; -- [DXXES] :: renewed; altered; innovo_V2 = mkV2 (mkV "innovare") ; -- [XXXDO] :: alter, make a innovation in; renew, restore; return to a thing (L+S); innoxius_A = mkA "innoxius" "innoxia" "innoxium" ; -- [XXXDX] :: harmless, innocuous; unhurt, unharmed; innubilus_A = mkA "innubilus" "innubila" "innubilum" ; -- [XXXEC] :: unclouded, clear; --- innubo_V2 : V4 innubo, innubere, innupsi, innuptus -- Declension: 3rd -- Case: DAT -- Comment: [XXXDX] :: marry (into a family); + innubo_V2 = mkV2 (mkV "innubere" "innubo" "innupsi" "innuptus ") Dat_Prep ; -- [XXXDX] :: marry (into a family); innubus_A = mkA "innubus" "innuba" "innubum" ; -- [XXXDX] :: unmarried; innuleus_M_N = mkN "innuleus" ; -- [XAXEO] :: fawn; young of the deer; innumerabilis_A = mkA "innumerabilis" "innumerabilis" "innumerabile" ; -- [XXXDX] :: innumerable, countless, numberless; without number; immense; innumeralis_A = mkA "innumeralis" "innumeralis" "innumerale" ; -- [XXXEC] :: countless, innumerable; innumerus_A = mkA "innumerus" "innumera" "innumerum" ; -- [XXXDX] :: innumerable, countless, numberless; without number; immense; + innuo_V2 = mkV2 (mkV "innuere" "innuo" "innui" "innutus ") ; -- [XXXDX] :: nod or beckon (to); innuptus_A = mkA "innuptus" "innupta" "innuptum" ; -- [XXXDX] :: unmarried; + innutrio_V2 = mkV2 (mkV "innutrire" "innutrio" "innutrivi" "innutritus ") ; -- [XXXES] :: nourish; innutritus_A = mkA "innutritus" "innutrita" "innutritum" ; -- [DXXES] :: nourished; unnourished; inobaudientia_F_N = mkN "inobaudientia" ; -- [EXXFP] :: disobedience; + inobaudio_V = mkV "inobaudire" "inobaudio" "inobaudivi" "inobauditus "; -- [XXXFO] :: disobey; not listen/pay attention; (in+obaudio); inobauditio_F_N = mkN "inobauditio" "inobauditionis " feminine ; -- [EXXFP] :: disobedience; inobedibilis_A = mkA "inobedibilis" "inobedibilis" "inobedibile" ; -- [EEXEP] :: disobedient; inobediens_A = mkA "inobediens" "inobedientis"; -- [EEXCP] :: disobedient; @@ -21697,6 +23336,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inobedienter_Adv = mkAdv "inobedienter" ; -- [EEXEP] :: disobediently; inobedientia_F_N = mkN "inobedientia" ; -- [EEXDP] :: disobedience; inobedientiarius_M_N = mkN "inobedientiarius" ; -- [EEXFP] :: disobedient person; + inobedio_V = mkV "inobedire" "inobedio" "inboedivi" "inboeditus "; -- [EXXEP] :: disobey; not listen/pay attention; inobedus_A = mkA "inobedus" "inobeda" "inobedum" ; -- [EXXEP] :: disobedient; inoblitus_A = mkA "inoblitus" "inoblita" "inoblitum" ; -- [XXXEC] :: mindful; inoboedibilis_A = mkA "inoboedibilis" "inoboedibilis" "inoboedibile" ; -- [EEXEP] :: disobedient; @@ -21705,6 +23345,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inoboedienter_Adv = mkAdv "inoboedienter" ; -- [EEXEP] :: disobediently; inoboedientia_F_N = mkN "inoboedientia" ; -- [EEXDP] :: disobedience; inoboedientiarius_M_N = mkN "inoboedientiarius" ; -- [EEXFP] :: disobedient person; + inoboedio_V = mkV "inoboedire" "inoboedio" "inoboedivi" "inoboeditus "; -- [EXXEP] :: disobey; not listen/pay attention; inoboedus_A = mkA "inoboedus" "inoboeda" "inoboedum" ; -- [EXXEP] :: disobedient; inobrutus_A = mkA "inobrutus" "inobruta" "inobrutum" ; -- [XXXEC] :: not overwhelmed; inobservabilis_A = mkA "inobservabilis" "inobservabilis" "inobservabile" ; -- [XXXDX] :: difficult to trace; @@ -21714,6 +23355,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inoffensus_A = mkA "inoffensus" "inoffensa" "inoffensum" ; -- [XXXDX] :: free from hindrance; uninterrupted; inofficiosus_A = mkA "inofficiosus" "inofficiosa" "inofficiosum" ; -- [XXXEC] :: undutiful, disobliging; inolens_A = mkA "inolens" "inolentis"; -- [XXXEC] :: odorless, without smell; + inolesco_V2 = mkV2 (mkV "inolescere" "inolesco" "inolevi" "inolitus ") ; -- [XXXDX] :: grow in or on; inominatus_A = mkA "inominatus" "inominata" "inominatum" ; -- [XXXEC] :: inauspicious, unlucky; inopia_F_N = mkN "inopia" ; -- [XXXBX] :: lack, need; poverty, destitution, dearth, want, scarcity; inopinabilis_A = mkA "inopinabilis" "inopinabilis" "inopinabile" ; -- [XXXFS] :: inconceivable; G:surprising; paradoxical; @@ -21742,7 +23384,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inpatiencia_F_N = mkN "inpatiencia" ; -- [FXXCO] :: impatience; inability/unwillingness to endure/bear; impassivity/lack of emotion; inpatientia_F_N = mkN "inpatientia" ; -- [XXXCO] :: impatience; inability/unwillingness to endure/bear; impassivity/lack of emotion; inpedimentum_N_N = mkN "inpedimentum" ; -- [XXXDX] :: hindrance, impediment; heavy baggage (of an army) (pl.); --- SLASHSTUFF inpeditus_A : A2 inpeditus, inpedita -um, inpeditior -or -us, inpeditissimus -a -um -- [XXXBO] :: hindered/obstructed/encumbered/hampered; difficult/impeded; inaccessible; + inpedio_V2 = mkV2 (mkV "inpedire" "inpedio" "inpedivi" "inpeditus ") ; -- [FXXDX] :: hinder, impede, hamper, obstruct, prevent from (w/ne, quin, or quominus); + inpeditus_A = mkA "inpeditus" ; -- [XXXBO] :: hindered/obstructed/encumbered/hampered; difficult/impeded; inaccessible; + inpello_V2 = mkV2 (mkV "inpellere" "inpello" "inpuli" "inpulsus ") ; -- [XXXAO] :: drive/persuade/impel; urge on/action; push/thrust/strike against; overthrow; inpendium_N_N = mkN "inpendium" ; -- [XXXCO] :: expense, expenditure, payment; cost, outlay; inpensa_F_N = mkN "inpensa" ; -- [FXXDX] :: expense, outlay, cost; inpensus_A = mkA "inpensus" "inpensa" "inpensum" ; -- [FXXDX] :: immoderate, excessive; @@ -21751,17 +23395,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inperialis_A = mkA "inperialis" "inperialis" "inperiale" ; -- [XXXEO] :: imperial; of the (Roman) emperor; inpetiginosus_A = mkA "inpetiginosus" "inpetiginosa" "inpetiginosum" ; -- [XBXFO] :: suffering from impetigo; (pustular skin disease, scaly skin eruption); inpetigo_F_N = mkN "inpetigo" "inpetiginis " feminine ; -- [XBXCO] :: impetigo; (pustular skin disease, scaly skin eruption); (also on bark of fig); + inpeto_V2 = mkV2 (mkV "inpetere" "inpeto" "inpetivi" "inpetitus ") ; -- [XXXEO] :: attack, assail; rush upon (L+S); accuse; inpetro_V = mkV "inpetrare" ; -- [XXXDX] :: obtain/procure (by asking/request/entreaty); succeed/achieve/be granted; obtain; inpinguo_V = mkV "inpinguare" ; -- [XXXES] :: fatten, make fat/sleek; become fat/thick; anoint (with oil) (Douay); inpius_A = mkA "inpius" "inpia" "inpium" ; -- [XXXCO] :: wicked, impious, irreverent; showing no regard for divinely imposed moral duty; inplano_V2 = mkV2 (mkV "inplanare") ; -- [EXXFS] :: deceive, delude; lead astray; inplico_V2 = mkV2 (mkV "inplicare") ; -- [XXXAO] :: ||||(PASS) be intimately associated/connected/related/bound; be a tangle/maze; + inpono_V2 = mkV2 (mkV "inponere" "inpono" "inposui" "inpositus ") ; -- [XXXDX] :: impose, put upon; establish; inflict; assign/place in command; set; inpos_A = mkA "inpos" "inpotis"; -- [XXXDX] :: not in control/possession (of mind w/animi/mentis, demented); not responsible; inpotens_A = mkA "inpotens" "inpotentis"; -- [FXXDX] :: powerless, impotent, wild, headstrong; having no control (over), incapable (of); inpotentia_F_N = mkN "inpotentia" ; -- [FXXDX] :: weakness; immoderate behavior, violence; inprecatio_F_N = mkN "inprecatio" "inprecationis " feminine ; -- [XXXEO] :: calling down of curses; imprecation, invoking evil/divine intervention; inpressio_F_N = mkN "inpressio" "inpressionis " feminine ; -- [XXXCO] :: |impression, impressed mark; mark by pressure/stamping; edition of book (Cal); inprimis_Adv = mkAdv "inprimis" ; -- [XXXBO] :: in the first place, first, chiefly; especially, above all, more than any other; + inprimo_V2 = mkV2 (mkV "inprimere" "inprimo" "inpressi" "inpressus ") ; -- [FXXDX] :: impress, imprint; press upon; stamp; inprobitas_F_N = mkN "inprobitas" "inprobitatis " feminine ; -- [XXXCO] :: wickedness unscrupulousness, dishonesty; shamelessness; want of principle; inprobo_V2 = mkV2 (mkV "inprobare") ; -- [XXXCO] :: disapprove of, express disapproval of, condemn; reject; inprobulus_A = mkA "inprobulus" "inprobula" "inprobulum" ; -- [XXXFO] :: somewhat audacious/impudent; somewhat wicked (Cas); @@ -21788,17 +23435,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inputribilis_A = mkA "inputribilis" "inputribilis" "inputribile" ; -- [DXXES] :: incorruptible, not liable to decay; inputribiliter_Adv = mkAdv "inputribiliter" ; -- [DXXFS] :: incorruptibly; inquantum_Adv = mkAdv "inquantum" ; -- [FXXEZ] :: in as much (JFW - widespread medieval); --- TODO inquiam_V : V1 inquiam, -, - -- [XXXAX] :: say (defective); (postpositive - for direct quote); [inquiens => saying]; + inquiam_V = mkV0 "inquiam" ; -- [XXXAX] :: say (defective); (postpositive - for direct quote); [inquiens => saying]; inquies_A = mkA "inquies" "inquietis"; -- [XXXDX] :: restless, impatient; full of tumult; inquieto_V2 = mkV2 (mkV "inquietare") ; -- [XXXBO] :: disturb, trouble, molest, harass; press legal claim against; fidget, twiddle; inquietudo_F_N = mkN "inquietudo" "inquietudinis " feminine ; -- [XXXFO] :: disturbance, troubles; outbreak of disorder; --- SLASHSTUFF inquietus_A : A2 inquietus, inquieta -um, inquietior -or -us, inquietissimus -a -um -- [XXXDX] :: rest/sleep-less, finding/taking no rest; constantly active/in motion; unquiet; + inquietus_A = mkA "inquietus" ; -- [XXXDX] :: rest/sleep-less, finding/taking no rest; constantly active/in motion; unquiet; inquilina_F_N = mkN "inquilina" ; -- [XXXFO] :: inhabitant (female) of same house, tenant, lodger; inhabitant, denizen; inquilinatus_M_N = mkN "inquilinatus" "inquilinatus " masculine ; -- [XXXFS] :: sojourn; inhabit place not of one's own; inquilinus_M_N = mkN "inquilinus" ; -- [XXXCO] :: inhabitant of same house, tenant, lodger; inhabitant, denizen; type of serf; inquinamentum_N_N = mkN "inquinamentum" ; -- [XXXFO] :: impurity, filth, that which makes foul/impure; defilement (Erasmus); inquinatio_F_N = mkN "inquinatio" "inquinationis " feminine ; -- [GXXEK] :: pollution; inquino_V = mkV "inquinare" ; -- [XXXDX] :: daub; stain, pollute; soil; "smear"; + inquiro_V2 = mkV2 (mkV "inquirere" "inquiro" "inquisivi" "inquisitus ") ; -- [XXXBX] :: examine, investigate, scrutinize; seek grounds for accusation; search, seek; inquisicio_F_N = mkN "inquisicio" "inquisicionis " feminine ; -- [DXXFS] :: thoughtlessness; inconsiderateness; carelessness; inquisitio_F_N = mkN "inquisitio" "inquisitionis " feminine ; -- [XXXBO] :: search, hunting out; inquiry, investigation; spying; collecting evidence; inquisitor_M_N = mkN "inquisitor" "inquisitoris " masculine ; -- [XXXCO] :: investigator, researcher; who inquires/collects evidence; inspector (goods); @@ -21810,6 +23458,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inrationabiliter_Adv = mkAdv "inrationabiliter" ; -- [DXXES] :: irrationally, unreasoningly; inrational_N_N = mkN "inrational" "inrationalis " neuter ; -- [EXXES] :: unreasoning creature; inrationalis_A = mkA "inrationalis" "inrationalis" "inrationale" ; -- [EXXES] :: irrational, unreasoning; + inraucesco_V = mkV "inraucescere" "inraucesco" "inrausi" nonExist; -- [XXXEC] :: become hoarse; inrecogitatio_F_N = mkN "inrecogitatio" "inrecogitationis " feminine ; -- [DXXFS] :: thoughtlessness; inconsiderateness; inrecordabilis_A = mkA "inrecordabilis" "inrecordabilis" "inrecordabile" ; -- [DEXFS] :: not to be remembered; inrecuperabilis_A = mkA "inrecuperabilis" "inrecuperabilis" "inrecuperabile" ; -- [DEXFS] :: irreparable; unalterable; irrecoverable; @@ -21861,24 +23510,30 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inrogo_V2 = mkV2 (mkV "inrogare") ; -- [XXXCO] :: impose/inflict (penalty/burden); demand/propose/call for (penalties/fines); inrumator_M_N = mkN "inrumator" "inrumatoris " masculine ; -- [XXXEO] :: one who submits to fellatio; who practices beastly obscenity (L+S); vile person; inrumo_V2 = mkV2 (mkV "inrumare") ; -- [XXXEO] :: force receptive male oral sex; treat in a shameful manner; abuse; defile; + inrumpo_V2 = mkV2 (mkV "inrumpere" "inrumpo" "inrupi" "inruptus ") ; -- [XXXAO] :: invade; break/burst/force/rush in/upon/into, penetrate; intrude on; interrupt; + inruo_V2 = mkV2 (mkV "inruere" "inruo" "inrui" "inrutus ") ; -- [EXXBO] :: intrude/encroach/invade, force way in; demolish (Souter); cause to collapse; inruptus_A = mkA "inruptus" "inrupta" "inruptum" ; -- [XXXEC] :: unbroken, unsevered; insalubris_A = mkA "insalubris" "insalubris" "insalubre" ; -- [XXXEC] :: unhealthy; insalutatus_A = mkA "insalutatus" "insalutata" "insalutatum" ; -- [XXXEC] :: ungreeted; insanabilis_A = mkA "insanabilis" "insanabilis" "insanabile" ; -- [XXXDX] :: incurable; irremediable; insane_Adv =mkAdv "insane" "insanius" "insanissime" ; -- [XXXDX] :: madly, insanely, wildly; extravagantly; insania_F_N = mkN "insania" ; -- [XXXDX] :: insanity, madness; folly, mad extravagance; + insanio_V2 = mkV2 (mkV "insanire" "insanio" "insanivi" "insanitus ") ; -- [XXXDX] :: be mad, act crazily; insaniter_Adv = mkAdv "insaniter" ; -- [XXXDX] :: madly, insanely, wildly; extravagantly; insanum_Adv = mkAdv "insanum" ; -- [XXXDX] :: immensely, enormously, exceedingly; --- SLASHSTUFF insanus_A : A2 insanus, insana -um, insanior -or -us, insanissimus -a -um -- [XXXBX] :: mad, raging, insane, demented; frenzied, wild; possessed, inspired; maddening; + insanus_A = mkA "insanus" ; -- [XXXBX] :: mad, raging, insane, demented; frenzied, wild; possessed, inspired; maddening; insatiabilis_A = mkA "insatiabilis" "insatiabilis" "insatiabile" ; -- [XXXDX] :: insatiable; insatiatus_A = mkA "insatiatus" "insatiata" "insatiatum" ; -- [XXXES] :: unsatisfied; + inscendo_V2 = mkV2 (mkV "inscendere" "inscendo" "inscendi" "inscensus ") ; -- [XXXEC] :: climb on, ascend, mount; insciens_A = mkA "insciens" "inscientis"; -- [XXXDX] :: unknowing, unaware; inscientia_F_N = mkN "inscientia" ; -- [XXXDX] :: ignorance; inscitia_F_N = mkN "inscitia" ; -- [XXXDX] :: ignorance; inscitus_A = mkA "inscitus" "inscita" "inscitum" ; -- [XXXDX] :: ignorant; uninformed; inscius_A = mkA "inscius" "inscia" "inscium" ; -- [XXXDX] :: not knowing, ignorant; unskilled; + inscribo_V2 = mkV2 (mkV "inscribere" "inscribo" "inscripsi" "inscriptus ") ; -- [XXXBX] :: write on/in; inscribe, brand; record as; entitle; inscriptio_F_N = mkN "inscriptio" "inscriptionis " feminine ; -- [XXXDX] :: inscription; inscrutabilis_A = mkA "inscrutabilis" "inscrutabilis" "inscrutabile" ; -- [DEXES] :: inscrutable, entirely mysterious, unfathomable; unknowable; + insculpo_V2 = mkV2 (mkV "insculpere" "insculpo" "insculpsi" "insculptus ") ; -- [XXXDX] :: carve (in or on), engrave; engrave on the mind; inseco_V = mkV "insecare" ; -- [BXXEO] :: tell; tell of; relate (L+S); declare; pursue the narration; inseco_V2 = mkV2 (mkV "insecare") ; -- [XXXCO] :: cut/incise; make incision in; make by cutting; cut into/up (L+S); dissect; insectatio_F_N = mkN "insectatio" "insectationis " feminine ; -- [XXXDX] :: hostile pursuit; criticism; @@ -21887,16 +23542,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg insector_V = mkV "insectari" ; -- [XXXDX] :: pursue with hostile intent; pursue with hostile speech, etc; insedabiliter_Adv = mkAdv "insedabiliter" ; -- [XXXEC] :: incessantly; insemel_Adv = mkAdv "insemel" ; -- [XXXES] :: at once; --- TODO insenesco_V : V2 insenesco, insenescere, insenui, - -- Declension: 3rd -- Comment: [XXXDX] :: grow old in; wane; + insenesco_V2 = mkV2 (mkV "insenescere" "insenesco" "insenui" nonExist ) ; -- [XXXDX] :: grow old in; wane; insensatus_A = mkA "insensatus" "insensata" "insensatum" ; -- [DEXFS] :: irrational; insensibilis_A = mkA "insensibilis" "insensibilis" "insensibile" ; -- [DXXES] :: insensible; unfeelable; inseparabilis_A = mkA "inseparabilis" "inseparabilis" "inseparabile" ; -- [XXXDO] :: inseparable, that cannot be separated/divided; inseparabiliter_Adv = mkAdv "inseparabiliter" ; -- [DXXES] :: inseparably; constant, always (Sax); inseparatus_A = mkA "inseparatus" "inseparata" "inseparatum" ; -- [EEXES] :: not separate; unseparated; insepultus_A = mkA "insepultus" "insepulta" "insepultum" ; -- [XXXDX] :: unburied; --- TODO insequo_V : V2 insequo, insequere, -, - -- Declension: 3rd -- Comment: [BXXFO] :: tell; tell of; relate (L+S); declare; pursue the narration; tell me about it; + insequo_V = mkV "insequere" "insequo" nonExist nonExist ; -- [BXXFO] :: tell; tell of; relate (L+S); declare; pursue the narration; tell me about it; + insequor_V = mkV "insequi" "insequor" "insecutus sum " ; -- [XXXBX] :: follow/come after; attack; overtake; pursue (hostile); come after (time); + insero_V2 = mkV2 (mkV "inserere" "insero" "inserui" "insertus ") ; -- [XAXBX] :: plant, sow; graft on; put in, insert; inserto_V = mkV "insertare" ; -- [XXXDX] :: thrust in, introduce; --- inservio_V2 : V4 inservio, inservire, inservivi, inservitus -- Declension: 4th -- Case: DAT -- Comment: [XXXCO] :: serve the interests of; take care of, look after, pay attention/be devoted to; + inservio_V2 = mkV2 (mkV "inservire" "inservio" "inservivi" "inservitus ") Dat_Prep ; -- [XXXCO] :: serve the interests of; take care of, look after, pay attention/be devoted to; inservo_V2 = mkV2 (mkV "inservare") ; -- [XXXES] :: attend to; observe attentively; insibilo_V = mkV "insibilare" ; -- [XPXES] :: hiss; whistle; insicium_N_N = mkN "insicium" ; -- [XAXFS] :: stuffing; minced meat; @@ -21906,12 +23563,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg insidio_V = mkV "insidiare" ; -- [XXXDO] :: |lay traps; act to catch person out; wait and watch; be on lookout (for); lurk; insidior_V = mkV "insidiari" ; -- [XXXBO] :: |lay traps; act to catch person out; wait and watch; be on lookout (for); lurk; insidiose_Adv =mkAdv "insidiose" "insidiosius" "insidiosissime" ; -- [XXXEO] :: treacherous/deceitful; stealthy/insidious; hazardous; full of hidden dangers; --- SLASHSTUFF insidiosus_A : A2 insidiosus, insidiosa -um, insidiosior -or -us, insidiosissimus -a -um -- [XXXCO] :: treacherously; deceitfully; cunningly; stealthily; insidiously; + insidiosus_A = mkA "insidiosus" ; -- [XXXCO] :: treacherously; deceitfully; cunningly; stealthily; insidiously; + insido_V2 = mkV2 (mkV "insidere" "insido" "insidi" "insessus ") ; -- [XXXFO] :: sit/settle on; occupy/seize, hold (position); penetrate, sink in; merge into; insigne_N_N = mkN "insigne" "insignis " neuter ; -- [XXXDX] :: mark, emblem, badge; ensign, honor, badge of honor; + insignio_V2 = mkV2 (mkV "insignire" "insignio" "insignivi" "insignitus ") ; -- [XXXES] :: mark; distinguish; insignis_A = mkA "insignis" "insignis" "insigne" ; -- [XXXAX] :: conspicuous, manifest, eminent, notable, famous, distinguished, outstanding; insile_N_N = mkN "insile" "insilis " neuter ; -- [XXXFS] :: treadle (pl.) of a loom; (or perhaps leash-rods); --- TODO insilio_V : V2 insilio, insilire, insilui, - -- Declension: 4th -- Comment: [XXXCO] :: come/leap upon/in; leap/spring up/at; attack/throw oneself upon; bound; mount; --- TODO insillo_V : V2 insillo, insillere, insillui, - -- Declension: 3rd -- Comment: [XXXDX] :: leap into or on; + insilio_V2 = mkV2 (mkV "insilire" "insilio" "insilui" nonExist ) ; -- [XXXCO] :: come/leap upon/in; leap/spring up/at; attack/throw oneself upon; bound; mount; + insillo_V2 = mkV2 (mkV "insillere" "insillo" "insillui" nonExist ) ; -- [XXXDX] :: leap into or on; insimul_Adv = mkAdv "insimul" ; -- [XXXEO] :: together; in company; at the same time (L+S); at once (Ecc); insimulo_V = mkV "insimulare" ; -- [XXXDX] :: accuse, charge; allege; insincerus_A = mkA "insincerus" "insincera" "insincerum" ; -- [XXXDX] :: corrupt; not genuine; @@ -21921,8 +23580,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg insipiens_A = mkA "insipiens" "insipientis"; -- [XXXEC] :: foolish; insipienter_Adv = mkAdv "insipienter" ; -- [XXXEC] :: foolishly; insipientia_F_N = mkN "insipientia" ; -- [XXXEC] :: foolishness; + insipio_V = mkV "insipere" "insipio" "insipui" "insipitus "; -- [EXXEP] :: |act foolishly; + insipio_V2 = mkV2 (mkV "insipere" "insipio" "insipui" "insipitus ") ; -- [XXXEO] :: throw in; insipo_V2 = mkV2 (mkV "insipare") ; -- [XXXEO] :: throw in; --- TODO insisto_V : V2 insisto, insistere, institi, - -- Declension: 3rd -- Comment: [XXXDX] :: stand/tread upon, stand, stop; press on, persevere (with); pursue, set about; + insisto_V2 = mkV2 (mkV "insistere" "insisto" "institi" nonExist ) ; -- [XXXDX] :: stand/tread upon, stand, stop; press on, persevere (with); pursue, set about; insiticius_A = mkA "insiticius" "insiticia" "insiticium" ; -- [XXXFS] :: inserted into; engrafted; insitio_F_N = mkN "insitio" "insitionis " feminine ; -- [XAXCO] :: grafting (of trees); place of graft; grafting time; graft, engrafted plant; insitivus_A = mkA "insitivus" "insitiva" "insitivum" ; -- [XXXEC] :: grafted; spurious; @@ -21934,6 +23595,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg insolens_A = mkA "insolens" "insolentis"; -- [XXXDX] :: |unaccustomed; unusual; against custom; insolenter_Adv =mkAdv "insolenter" "insolentius" "insolentissime" ; -- [XXXDX] :: haughtily, arrogantly, insolently; immoderately; unusually, contrary to custom; insolentia_F_N = mkN "insolentia" ; -- [XXXDX] :: unfamiliarity; strangeness; haughtiness; extravagance; + insolesco_V = mkV "insolescere" "insolesco" "insolevi" nonExist; -- [XXXDO] :: become overbearing; grow proud/haughty/insolent; change, become manly (L+S); insolidus_A = mkA "insolidus" "insolida" "insolidum" ; -- [XXXEC] :: soft, tender; insolitus_A = mkA "insolitus" "insolita" "insolitum" ; -- [XXXDX] :: unaccustomed; insolo_V2 = mkV2 (mkV "insolare") ; -- [XXXES] :: place in the sun; @@ -21943,23 +23605,29 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg insono_V = mkV "insonare" ; -- [XXXDX] :: make a loud noise; sound; resound; insons_A = mkA "insons" "insontis"; -- [XXXDX] :: guiltless, innocent; harmless; insopitus_A = mkA "insopitus" "insopita" "insopitum" ; -- [XXXDX] :: unsleeping, wakeful; + insordesco_V = mkV "insordescere" "insordesco" "insordui" nonExist; -- [XXXES] :: become gloomy; + inspargo_V2 = mkV2 (mkV "inspargere" "inspargo" "insparsi" "insparsus ") ; -- [XXXES] :: sprinkle upon; (= inspergo); inspectio_F_N = mkN "inspectio" "inspectionis " feminine ; -- [XXXCO] :: inspection, visual examination; investigation, inquiry; action of looking into; inspecto_V = mkV "inspectare" ; -- [XXXDX] :: look at, observe; look on, watch; insperans_A = mkA "insperans" "insperantis"; -- [XXXDX] :: not expecting; insperatus_A = mkA "insperatus" "insperata" "insperatum" ; -- [XXXDX] :: unhoped for, unexpected, unforeseen; + inspergo_V2 = mkV2 (mkV "inspergere" "inspergo" "inspersi" "inspersus ") ; -- [XXXDX] :: sprinkle upon; + inspicio_V2 = mkV2 (mkV "inspicere" "inspicio" "inspexi" "inspectus ") ; -- [XXXBX] :: examine, inspect; consider, look into/at, observe; inspico_V2 = mkV2 (mkV "inspicare") ; -- [XXXEC] :: sharpen to a point; inspiratio_F_N = mkN "inspiratio" "inspirationis " feminine ; -- [DXXES] :: inspiration; act of breathing in (Souter); breath of life; soul (without body); inspiro_V = mkV "inspirare" ; -- [XXXDX] :: inspire; excite, inflame; instill, implant; breathe into; blow upon/into; inspoliatus_A = mkA "inspoliatus" "inspoliata" "inspoliatum" ; -- [XXXEC] :: not plundered; + inspuo_V2 = mkV2 (mkV "inspuere" "inspuo" "inspui" nonExist) ; -- [XXXES] :: spit upon; insquequo_Adv = mkAdv "insquequo" ; -- [FXXEN] :: until; instabilis_A = mkA "instabilis" "instabilis" "instabile" ; -- [XXXDX] :: unsteady, shaky; unstable; inconstant; instans_A = mkA "instans" "instantis"; -- [XXXDX] :: eager; urgent; present; instanter_Adv =mkAdv "instanter" "instantius" "instantissime" ; -- [XXXDO] :: vehemently; violently; urgently, insistently; instantia_F_N = mkN "instantia" ; -- [XXXCO] :: earnestness; insistence/urgency; concentration; being present/impending; --- IGNORED instar_N : N1 instar, undeclined -- N -- [XXXDX] :: image, likeness, resemblance; counterpart; the equal/form of (w/GEN); + instar_N = constN "instar" neuter ; -- [XXXDX] :: image, likeness, resemblance; counterpart; the equal/form of (w/GEN); instauratio_F_N = mkN "instauratio" "instaurationis " feminine ; -- [XXXDX] :: renewal, repetition; instaurativus_A = mkA "instaurativus" "instaurativa" "instaurativum" ; -- [XXXEC] :: renewed, repeated; instauro_V = mkV "instaurare" ; -- [XXXDX] :: renew, repeat, restore; + insterno_V2 = mkV2 (mkV "insternere" "insterno" "instravi" "instratus ") ; -- [XXXDX] :: spread or strew on; cover (with); lay over; instigo_V = mkV "instigare" ; -- [XXXDX] :: urge on; incite, rouse; instillo_V = mkV "instillare" ; -- [XXXDX] :: pour in drop by drop, drop in; instimulo_V = mkV "instimulare" ; -- [XXXDX] :: goad on; @@ -21972,23 +23640,27 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg institoria_F_N = mkN "institoria" ; -- [XXXFS] :: shopkeeper, peddler; (female); institorium_N_N = mkN "institorium" ; -- [XLXFO] :: shopkeeping, business of shopkeeper; institorius_A = mkA "institorius" "institoria" "institorium" ; -- [XLXEO] :: suit by manager against owner for incurred loss; commercial, of agent/broker; + instituo_V2 = mkV2 (mkV "instituere" "instituo" "institui" "institutus ") ; -- [XXXAX] :: set up, establish, found, make, institute; build; prepare; decide; institutio_F_N = mkN "institutio" "institutionis " feminine ; -- [XXXDX] :: institution; arrangement; instruction, education; institutionalis_A = mkA "institutionalis" "institutionalis" "institutionale" ; -- [GXXEK] :: institutional; institutor_M_N = mkN "institutor" "institutoris " masculine ; -- [EXXES] :: founder; creator; institutum_N_N = mkN "institutum" ; -- [XXXDX] :: custom, principle; decree; intention; arrangement; institution; habit, plan; insto_V = mkV "instare" ; -- [XXXAX] :: pursue, threaten; approach, press hard; be close to (w/DAT); stand in/on; instrenuus_A = mkA "instrenuus" "instrenua" "instrenuum" ; -- [XXXEC] :: inactive, lazy; + instrepo_V2 = mkV2 (mkV "instrepere" "instrepo" "instrepui" "instrepitus ") ; -- [XXXDX] :: make a loud noise; instructivus_A = mkA "instructivus" "instructiva" "instructivum" ; -- [GXXEK] :: instructive; instructor_M_N = mkN "instructor" "instructoris " masculine ; -- [XXXDX] :: one who equips/arranges; preparer/arranger; --- SLASHSTUFF instructus_A : A2 instructus, instructa -um, instructior -or -us, instructissimus -a -um -- [XXXDX] :: equipped, fitted out, prepared; learned, trained, skilled; drawn up/arranged; + instructus_A = mkA "instructus" ; -- [XXXDX] :: equipped, fitted out, prepared; learned, trained, skilled; drawn up/arranged; instructus_M_N = mkN "instructus" "instructus " masculine ; -- [XXXDX] :: equipment, apparatus; instrumentalis_A = mkA "instrumentalis" "instrumentalis" "instrumentale" ; -- [GXXEK] :: instrumental; instrumentum_N_N = mkN "instrumentum" ; -- [XXXBX] :: tool, tools; equipment, apparatus; instrument; means; document (leg.), deed; + instruo_V2 = mkV2 (mkV "instruere" "instruo" "instruxi" "instructus ") ; -- [XXXAX] :: construct, build; prepare, draw up; fit out; instruct, teach; insuadibilis_A = mkA "insuadibilis" "insuadibilis" "insuadibile" ; -- [FXXEM] :: unpersuadable; adamant, immovable; --- SLASHSTUFF insuavis_A : A2 insuavis, insuave, insuavior -or -us, insuavissimus -a -um -- [XXXCO] :: harsh, disagreeable, unpleasing; sour, not sweet; unpleasant in taste/smell; + insuavis_A = mkA "insuavis" ; -- [XXXCO] :: harsh, disagreeable, unpleasing; sour, not sweet; unpleasant in taste/smell; insubidus_A = mkA "insubidus" "insubida" "insubidum" ; -- [DXXFS] :: stupid; foolish; insudo_V = mkV "insudare" ; -- [XXXDO] :: sweat/perspire; sweat on (w/DAT); sweat at (task); insuefactus_A = mkA "insuefactus" "insuefacta" "insuefactum" ; -- [XXXDX] :: well trained; + insuesco_V2 = mkV2 (mkV "insuescere" "insuesco" "insuevi" "insuetus ") ; -- [XXXDX] :: become accustomed (to); accustom; insuetus_A = mkA "insuetus" "insueta" "insuetum" ; -- [XXXDX] :: unused/unaccustomed to (w/GEN/DAT), unusual; insufficiens_A = mkA "insufficiens" "insufficientis"; -- [DXXFS] :: insufficient; insufficientia_F_N = mkN "insufficientia" ; -- [DXXES] :: insufficiency; @@ -21997,7 +23669,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg insula_F_N = mkN "insula" ; -- [XXXBX] :: island; apartment house; insulanus_M_N = mkN "insulanus" ; -- [XXXEC] :: islander; insulinum_N_N = mkN "insulinum" ; -- [GXXEK] :: insulin; --- TODO insulio_V : V2 insulio, insulire, insului, - -- Declension: 4th -- Comment: [XXXCO] :: come/leap upon/in; leap/spring up/at; attack/throw oneself upon; bound; mount; + insulio_V2 = mkV2 (mkV "insulire" "insulio" "insului" nonExist ) ; -- [XXXCO] :: come/leap upon/in; leap/spring up/at; attack/throw oneself upon; bound; mount; insulsitas_F_N = mkN "insulsitas" "insulsitatis " feminine ; -- [XXXDO] :: unattractiveness; dullness, stupidity; insulsus_A = mkA "insulsus" "insulsa" "insulsum" ; -- [XXXDX] :: boring, stupid; insulta_F_N = mkN "insulta" ; -- [FXXEM] :: assault, attack; @@ -22006,23 +23678,27 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg insultuosus_A = mkA "insultuosus" "insultuosa" "insultuosum" ; -- [FXXFM] :: insulting; insultus_M_N = mkN "insultus" ; -- [FXXDM] :: assault, attack; insum_V = mkV "inesse" "insum" "infui" "infuturus " ; -- Comment: [XXXBX] :: be in/on/there; belong to; be involved in; - insuper_Acc_Prep = mkPrep "insuper" Acc ; -- [XXXBX] :: above, on top; in addition (to); over; + insumo_V2 = mkV2 (mkV "insumere" "insumo" "insumpsi" "insumptus ") ; -- [XXXCO] :: spend, expend/employ (money/time/effort), devote; consume, take in/up; assume; + insuo_V2 = mkV2 (mkV "insuere" "insuo" "insui" "insutus ") ; -- [XXXDX] :: sew up (in), sew (on or in); + insuper_Acc_Prep = mkPrep "insuper" acc ; -- [XXXBX] :: above, on top; in addition (to); over; insuper_Adv = mkAdv "insuper" ; -- [XXXDX] :: above, on top; in addition (to); over; insuperabilis_A = mkA "insuperabilis" "insuperabilis" "insuperabile" ; -- [XXXDX] :: insurmountable; unconquerable; insupo_V2 = mkV2 (mkV "insupare") ; -- [XXXEO] :: throw in; + insurgo_V2 = mkV2 (mkV "insurgere" "insurgo" "insurrexi" "insurrectus ") ; -- [XXXDX] :: rise up; rise up against; insusurro_V = mkV "insusurrare" ; -- [XXXFS] :: insinuate; suggest; whisper; --- TODO intabesco_V : V2 intabesco, intabescere, intabui, - -- Declension: 3rd -- Comment: [XXXDX] :: pine away; melt away; + intabesco_V2 = mkV2 (mkV "intabescere" "intabesco" "intabui" nonExist ) ; -- [XXXDX] :: pine away; melt away; intactus_A = mkA "intactus" "intacta" "intactum" ; -- [XXXBX] :: untouched, intact; untried; virgin; intaminabilis_A = mkA "intaminabilis" "intaminabilis" "intaminabile" ; -- [EEXFS] :: undefilable; that cannot be defiled/sullied/contaminated/tainted; intaminatus_A = mkA "intaminatus" "intaminata" "intaminatum" ; -- [XXXEO] :: undefiled; untainted; unstained; unsullied; intantum_Adv = mkAdv "intantum" ; -- [FXXEZ] :: in so much (JFW - widespread medieval); intectus_A = mkA "intectus" "intecta" "intectum" ; -- [XXXDX] :: uncovered; naked; open; integellus_A = mkA "integellus" "integella" "integellum" ; -- [XXXDX] :: unharmed; --- SLASHSTUFF integer_A : A2 integer, integra -um, integrior -or -us, integerrimus -a -um -- [XXXAX] :: untouched, entire, whole, complete; uninjured, sound, fresh (troops), vigorous; + integer_A = mkA "integer" ; -- [XXXAX] :: untouched, entire, whole, complete; uninjured, sound, fresh (troops), vigorous; integer_M_N = mkN "integer" ; -- [XWXDX] :: fresh troops (pl.); + intego_V2 = mkV2 (mkV "integere" "intego" "intexi" "intectus ") ; -- [XXXDX] :: cover; cover over; integrale_N_N = mkN "integrale" "integralis " neuter ; -- [GSXEK] :: integral (math.); integralis_A = mkA "integralis" "integralis" "integrale" ; -- [GXXEK] :: integral; complete; --- TODO integrasco_V : V2 integrasco, integrascere, -, - -- Declension: 3rd -- Comment: [XXXEC] :: break out afresh; + integrasco_V = mkV "integrascere" "integrasco" nonExist nonExist ; -- [XXXEC] :: break out afresh; integratio_F_N = mkN "integratio" "integrationis " feminine ; -- [GXXEK] :: integration; integre_Adv =mkAdv "integre" "integrius" "integerrime" ; -- [XXXCO] :: honestly, irreproachably; free from moral shortcomings; faultlessly; wholly; integrismus_M_N = mkN "integrismus" ; -- [GXXEK] :: fundamentalism; @@ -22037,9 +23713,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg intellegens_A = mkA "intellegens" "intellegentis"; -- [XXXDX] :: intelligent; discerning; intellegentia_F_N = mkN "intellegentia" ; -- [XXXDX] :: intelligence; intellect; understanding; intellegibilis_A = mkA "intellegibilis" "intellegibilis" "intellegibile" ; -- [XXXEO] :: intellectual; capable of appreciation by mind; --- IGNORED intellego_V : V1 intellego, intellegere, additional, forms -- [XXXDX] :: understand; realize; + intellego_V2 = mkV2 (mkV "intellegere" "intellego" "intellexi" "intellectus ") ; -- [XXXAX] :: understand; realize; intelligentia_F_N = mkN "intelligentia" ; -- [XXXDX] :: intelligence; --- TODO intelligo_V : V2 intelligo, intelligere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: understand; realize; + intelligo_V = mkV "intelligere" "intelligo" nonExist nonExist ; -- [XXXDX] :: understand; realize; intemeratus_A = mkA "intemeratus" "intemerata" "intemeratum" ; -- [XXXCO] :: undefiled/unstained/unsullied/pure; chaste, pure from sexual intercourse; intemperans_A = mkA "intemperans" "intemperantis"; -- [XXXDX] :: headstrong, lacking self-control; licentious, lewd; extreme, bad-tempered; intemperanter_Adv =mkAdv "intemperanter" "intemperantius" "intemperantissime" ; -- [XXXDX] :: without self-control/restraint; immoderately, excessively, violently; @@ -22051,19 +23727,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg intempestivus_A = mkA "intempestivus" "intempestiva" "intempestivum" ; -- [XXXDX] :: untimely, ill timed; unreasonable; intempestus_A = mkA "intempestus" "intempesta" "intempestum" ; -- [XXXDX] :: unseasonable stormy, unhealthy; nox intempesta the dead of night; intemptatus_A = mkA "intemptatus" "intemptata" "intemptatum" ; -- [XXXDX] :: untried; + intendo_V2 = mkV2 (mkV "intendere" "intendo" "intendi" "intentus ") ; -- [XXXAX] :: hold out; stretch, strain, exert; intensio_F_N = mkN "intensio" "intensionis " feminine ; -- [XXXBO] :: stretch, extension; spasm; tautness, tension; straining, concentration; aim; intensitas_F_N = mkN "intensitas" "intensitatis " feminine ; -- [GXXEK] :: intensity; intensivus_A = mkA "intensivus" "intensiva" "intensivum" ; -- [GXXEK] :: intensive; --- SLASHSTUFF intensus_A : A2 intensus, intensa -um, intensior -or -us, intensissimus -a -um -- [XXXBO] :: eager/intent, closely attentive; strict; intense, strenuous; serious/earnest; + intensus_A = mkA "intensus" ; -- [XXXBO] :: eager/intent, closely attentive; strict; intense, strenuous; serious/earnest; intente_Adv =mkAdv "intente" "intentius" "intentissime" ; -- [XXXDX] :: attentively, with concentrated attention, intently; intentio_F_N = mkN "intentio" "intentionis " feminine ; -- [EXXER] :: thought; purpose, intention; intentionalis_A = mkA "intentionalis" "intentionalis" "intentionale" ; -- [FXXEM] :: intentional; intentionaliter_Adv = mkAdv "intentionaliter" ; -- [FXXEM] :: intentionally; intento_V = mkV "intentare" ; -- [XXXDX] :: point (at); point (weapons, etc) in a threatening manner, threaten; --- SLASHSTUFF intentus_A : A2 intentus, intenta -um, intentior -or -us, intentissimus -a -um -- [XXXBO] :: eager/intent, closely attentive; strict; intense, strenuous; serious/earnest; + intentus_A = mkA "intentus" ; -- [XXXBO] :: eager/intent, closely attentive; strict; intense, strenuous; serious/earnest; intepeo_V = mkV "intepere" ; -- [XXXES] :: be lukewarm; --- TODO intepesco_V : V2 intepesco, intepescere, intepui, - -- Declension: 3rd -- Comment: [XXXDX] :: become warm; - inter_Acc_Prep = mkPrep "inter" Acc ; -- [XXXAX] :: between, among; during; [inter se => to each other, mutually]; + intepesco_V2 = mkV2 (mkV "intepescere" "intepesco" "intepui" nonExist ) ; -- [XXXDX] :: become warm; + inter_Acc_Prep = mkPrep "inter" acc ; -- [XXXAX] :: between, among; during; [inter se => to each other, mutually]; interactio_F_N = mkN "interactio" "interactionis " feminine ; -- [GXXEK] :: interaction; interamentum_N_N = mkN "interamentum" ; -- [XWXEC] :: woodwork (pl.) of a ship; interaneum_N_N = mkN "interaneum" ; -- [XBXES] :: gut; intestine; @@ -22071,15 +23748,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg intercalarius_A = mkA "intercalarius" "intercalaria" "intercalarium" ; -- [XXXDX] :: intercalary (inserted month in calendar); of insertion, to be inserted; intercalo_V = mkV "intercalare" ; -- [XXXDX] :: insert (day or month) in the calendar, intercalate; postpone; intercapedo_F_N = mkN "intercapedo" "intercapedinis " feminine ; -- [XXXCO] :: intermission; interruption, continuity break; interval/pause/delay/respite; gap; + intercedo_V2 = mkV2 (mkV "intercedere" "intercedo" "intercessi" "intercessus ") ; -- [XXXDX] :: intervene; intercede, interrupt; hinder; veto; exist/come between; interceptor_M_N = mkN "interceptor" "interceptoris " masculine ; -- [XXXDX] :: usurper, embezzler; intercessio_F_N = mkN "intercessio" "intercessionis " feminine ; -- [XXXDX] :: intervention; veto (of a magistrate); intercessor_M_N = mkN "intercessor" "intercessoris " masculine ; -- [XXXDX] :: mediator; one who vetoes; --- TODO intercido_V : V2 intercido, intercidere, intercidi, - -- Declension: 3rd -- Comment: [XXXDX] :: happen; perish; fall from memory, cease to exist; --- TODO intercino_V : V2 intercino, intercinere, -, - -- Declension: 3rd -- Comment: [XXXEC] :: sing between; + intercido_V2 = mkV2 (mkV "intercidere" "intercido" "intercidi" "intercisus ") ; -- [XXXDX] :: cut through, sever; + intercino_V = mkV "intercinere" "intercino" nonExist nonExist ; -- [XXXEC] :: sing between; + intercipio_V2 = mkV2 (mkV "intercipere" "intercipio" "intercepi" "interceptus ") ; -- [XXXDX] :: cut off; intercept, interrupt; steal; + intercludo_V2 = mkV2 (mkV "intercludere" "intercludo" "interclusi" "interclusus ") ; -- [XXXDX] :: cut off; blockade; hinder, block up; intercolumnium_N_N = mkN "intercolumnium" ; -- [XXXEC] :: space between two columns; intercurso_V = mkV "intercursare" ; -- [XXXDX] :: run in between; intercursus_M_N = mkN "intercursus" "intercursus " masculine ; -- [XXXDX] :: interposition; intercus_A = mkA "intercus" "intercutis"; -- [XXXEC] :: under the skin; [w/aqua => dropsy]; + interdico_V2 = mkV2 (mkV "interdicere" "interdico" "interdixi" "interdictus ") ; -- [XXXDX] :: forbid, interdict, prohibit; debar (from); interdictum_N_N = mkN "interdictum" ; -- [XXXDX] :: prohibition; provisional decree of a praetor; interdie_Adv = mkAdv "interdie" ; -- [EXXEP] :: in the daytime; by day; interdiu_Adv = mkAdv "interdiu" ; -- [XXXDX] :: in the daytime, by day; @@ -22087,44 +23768,58 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg interductus_M_N = mkN "interductus" "interductus " masculine ; -- [XGXEC] :: interpunctuation; point inserted in writing; hyphen (Cal); interdum_Adv = mkAdv "interdum" ; -- [XXXAX] :: sometimes, now and then; interea_Adv = mkAdv "interea" ; -- [XXXAX] :: meanwhile; --- TODO intereo_V : V1 intereo, interire, interivi(ii), interitus -- [XXXBX] :: perish, die; be ruined; cease; + interemo_V2 = mkV2 (mkV "interemere" "interemo" "interemi" "interemptus ") ; -- [XXXCO] :: do away with; kill, cut off from life; extinguish; put an end to, destroy; + intereo_1_V2 = mkV2 (mkV "interire" "intereo" "interivi" "interitus") ; -- [XXXBX] :: perish, die; be ruined; cease; + intereo_2_V2 = mkV2 (mkV "interire" "intereo" "interii" "interitus") ; -- [XXXBX] :: perish, die; be ruined; cease; interequito_V = mkV "interequitare" ; -- [XXXDX] :: ride among or between; interest_V0 = mkV0 "interest" ; -- [XXXDX] :: it concerns, it interests; interfectio_F_N = mkN "interfectio" "interfectionis " feminine ; -- [XXXEO] :: slaughter; act of killing; fatal end of an illness (Souter); interfector_M_N = mkN "interfector" "interfectoris " masculine ; -- [XXXEO] :: killer, murderer; assassin; destroyer (Souter); interfectrix_F_N = mkN "interfectrix" "interfectricis " feminine ; -- [XXXFO] :: murdereress; assassin (female); + interficio_V2 = mkV2 (mkV "interficere" "interficio" "interfeci" "interfectus ") ; -- [XWXAX] :: kill; destroy; interfio_V = mkV "interferi" ; -- [XXXCO] :: begin (to do something); begin to speak; (infit only classical example); --- TODO interfluo_V : V2 interfluo, interfluere, interfluxi, - -- Declension: 3rd -- Comment: [XXXDX] :: flow between or through; + interfluo_V2 = mkV2 (mkV "interfluere" "interfluo" "interfluxi" nonExist ) ; -- [XXXDX] :: flow between or through; interfor_V = mkV "interfari" ; -- [XXXCO] :: interrupt, interpose; break in conversation; speak between/while other speaking; interfulgens_A = mkA "interfulgens" "interfulgentis"; -- [XXXEC] :: shining or gleaming among; interfusus_A = mkA "interfusus" "interfusa" "interfusum" ; -- [XXXDX] :: poured/flowing/spread out between, suffused here and there; intergerivus_A = mkA "intergerivus" "intergeriva" "intergerivum" ; -- [FXXEK] :: common; interibi_Adv = mkAdv "interibi" ; -- [XXXEC] :: meanwhile, in the meantime; + intericio_V2 = mkV2 (mkV "intericere" "intericio" "interjeci" "interjectus ") ; -- [XXXDX] :: put/throw between; interpose; insert; introduce; interim_Adv = mkAdv "interim" ; -- [XXXAX] :: meanwhile, in the meantime; at the same time; however, nevertheless; interimisticus_A = mkA "interimisticus" "interimistica" "interimisticum" ; -- [GXXEK] :: interim; + interimo_V2 = mkV2 (mkV "interimere" "interimo" "interimi" "interemptus ") ; -- [XXXCO] :: do away with; kill, cut off from life; extinguish; put an end to, destroy; interior_A = mkA "interior" "interior" "interius" ; -- [XXXBX] :: inner, interior, middle; more remote; more intimate; interior_M_N = mkN "interior" "interioris " masculine ; -- [XXXDX] :: those (pl.) within; those nearer racecourse goal; inland/further from sea; interitus_M_N = mkN "interitus" "interitus " masculine ; -- [XXXBX] :: ruin; violent/untimely death, extinction; destruction, dissolution; interjaceo_V = mkV "interjacere" ; -- [XXXDX] :: lie between; + interjacio_V2 = mkV2 (mkV "interjacere" "interjacio" "interjaeci" "interjaectus ") ; -- [XXXDX] :: put/throw between; interpose; insert; introduce; interjectio_F_N = mkN "interjectio" "interjectionis " feminine ; -- [XXXES] :: insertion; placing between; G:interjection; interjectus_A = mkA "interjectus" "interjecta" "interjectum" ; -- [XXXDX] :: lying between; + interjicio_V2 = mkV2 (mkV "interjicere" "interjicio" "interjeci" "interjectus ") ; -- [XXXCS] :: put/throw between; interpose; insert; introduce; + interlabor_V = mkV "interlabi" "interlabor" "interlapsus sum " ; -- [XXXEO] :: glide/flow between; slip/give way at intervals; interlaqueatus_A = mkA "interlaqueatus" "interlaqueata" "interlaqueatum" ; -- [FXXFM] :: interlaced; combined; + interlino_V2 = mkV2 (mkV "interlinere" "interlino" "interlevi" "interlitus ") ; -- [XXXDS] :: smear between; erase fully; + interloquor_V = mkV "interloqui" "interloquor" "interlocutus sum " ; -- [XLXCO] :: interrupt, speak between, intersperse remarks; issue interlocutory decree; interluceo_V = mkV "interlucere" ; -- [XXXCS] :: shine forth; interludium_N_N = mkN "interludium" ; -- [FXXEM] :: interlude, play, episode; game between them, game of cat and mouse (Z); + interludo_V2 = mkV2 (mkV "interludere" "interludo" "interlusi" "interlusus ") ; -- [DXXES] :: play between/together; interlunium_N_N = mkN "interlunium" ; -- [XXXEC] :: change of moon, time of new moon; --- TODO interluo_V : V2 interluo, interluere, interluxi, - -- Declension: 3rd -- Comment: [XXXDX] :: flow between; + interluo_V2 = mkV2 (mkV "interluere" "interluo" "interluxi" nonExist ) ; -- [XXXDX] :: flow between; intermedius_A = mkA "intermedius" "intermedia" "intermedium" ; -- [XXXES] :: intermediate; intermenstruum_N_N = mkN "intermenstruum" ; -- [XSXFO] :: period between two lunar months; time of the new moon; the new moon (L+S); intermenstruus_A = mkA "intermenstruus" "intermenstrua" "intermenstruum" ; -- [XSXEO] :: interlunar, occurring between two lunar months; at time of the new moon (L+S); intermeo_V2 = mkV2 (mkV "intermeare") ; -- [XXXES] :: go between; flow through; --- TODO intermico_V : V2 intermico, intermicere, intermicui, - -- Declension: 3rd -- Comment: [XXXES] :: glitter among; glitter forth; + intermico_V2 = mkV2 (mkV "intermicere" "intermico" "intermicui" nonExist ) ; -- [XXXES] :: glitter among; glitter forth; interminabilis_A = mkA "interminabilis" "interminabilis" "interminabile" ; -- [EXXFP] :: unending; interminabiliter_Adv = mkAdv "interminabiliter" ; -- [EXXFP] :: unendingly; interminatus_A = mkA "interminatus" "interminata" "interminatum" ; -- [XXXEO] :: forbidden w/threats; menaced/threatened; endless, infinite, unbound (Ecc); interminor_V = mkV "interminari" ; -- [XXXCO] :: utter threats (to check/alter action); forbid w/threats; threaten, menace (L+S); intermisceo_V = mkV "intermiscere" ; -- [XXXDX] :: intermingle, mix, mix among, mingle; intermissio_F_N = mkN "intermissio" "intermissionis " feminine ; -- [XXXDX] :: intermission; pause; + intermitto_V2 = mkV2 (mkV "intermittere" "intermitto" "intermisi" "intermissus ") ; -- [XXXDX] :: interrupt; omit; stop; leave off (temporarily); leave a gap; + intermorior_V = mkV "intermori" "intermorior" "intermortuus sum " ; -- [XXXDX] :: perish, die; pass out; die off/out; intermuralis_A = mkA "intermuralis" "intermuralis" "intermurale" ; -- [XXXEC] :: between walls; + internascor_V = mkV "internasci" "internascor" "internatus sum " ; -- [XXXDX] :: grow between or among; internationalis_A = mkA "internationalis" "internationalis" "internationale" ; -- [GXXEK] :: international; internatus_M_N = mkN "internatus" "internatus " masculine ; -- [GXXEK] :: residency; internecinus_A = mkA "internecinus" "internecina" "internecinum" ; -- [XXXEC] :: murderous, deadly; @@ -22135,6 +23830,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg internista_M_N = mkN "internista" ; -- [GXXEK] :: internist; specialist in internal medicine; interniteo_V = mkV "internitere" ; -- [XXXES] :: shine forth; shine among; internodium_N_N = mkN "internodium" ; -- [XXXDX] :: space between two joints in the body; + internosco_V2 = mkV2 (mkV "internoscere" "internosco" "internovi" "internotus ") ; -- [XXXDX] :: distinguish between; pick out; internuntius_A = mkA "internuntius" "internuntia" "internuntium" ; -- [XXXES] :: intermediary; internuntius_M_N = mkN "internuntius" ; -- [XXXDX] :: intermediary, go between; internus_A = mkA "internus" "interna" "internum" ; -- [XXXDX] :: inward, internal; domestic; @@ -22142,6 +23838,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg interpellatio_F_N = mkN "interpellatio" "interpellationis " feminine ; -- [XXXDX] :: interruption in speaking; interpello_V = mkV "interpellare" ; -- [XXXDX] :: interrupt, break in on; interpose an objection; disturb, hinder, obstruct; interpolo_V2 = mkV2 (mkV "interpolare") ; -- [XXXEC] :: furbish, vamp up; falsify; + interpono_V2 = mkV2 (mkV "interponere" "interpono" "interposui" "interpositus ") ; -- [XXXDX] :: insert, introduce; admit; allege; interpose; (interponere se = to intervene); interpositio_F_N = mkN "interpositio" "interpositionis " feminine ; -- [XXXDO] :: insertion, inclusion, introduction, placing between; insertion, parenthesis; interpres_F_N = mkN "interpres" "interpretis " feminine ; -- [XXXDX] :: interpreter, translator; interpres_M_N = mkN "interpres" "interpretis " masculine ; -- [XXXDX] :: interpreter, translator; @@ -22151,6 +23848,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg interpretor_V = mkV "interpretari" ; -- [XXXAO] :: |decide; translate; regard/construe; take view (that); interpret to suit self; interpunctio_F_N = mkN "interpunctio" "interpunctionis " feminine ; -- [FGXEK] :: punctuation; interpunctum_N_N = mkN "interpunctum" ; -- [XGXES] :: interpunctuation; + interquiesco_V = mkV "interquiescere" "interquiesco" "interquievi" "interquietus "; -- [XXXES] :: rest awhile; + interrado_V2 = mkV2 (mkV "interradere" "interrado" "interrasi" "interrasus ") ; -- [XXXEO] :: decorate with intaglio/incised carvings/engraving; embossed (L+S); scraped; interrasilis_A = mkA "interrasilis" "interrasilis" "interrasile" ; -- [XXXNO] :: decorated/carved in intaglio/incised carvings/engraving; rake/break up ground; interregnum_N_N = mkN "interregnum" ; -- [XXXDX] :: interregnum (time between kings/reigns); interrete_N_N = mkN "interrete" "interretis " neuter ; -- [HXXEK] :: Internet; @@ -22162,12 +23861,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg interrogatio_F_N = mkN "interrogatio" "interrogationis " feminine ; -- [XXXDX] :: interrogation, inquiry, questioning; interrogatiuncula_F_N = mkN "interrogatiuncula" ; -- [XGXES] :: short argument; interrogo_V = mkV "interrogare" ; -- [XLXAX] :: ask, question, interrogate, examine; indict; go to law with, sue; + interrumpo_V2 = mkV2 (mkV "interrumpere" "interrumpo" "interrupi" "interruptus ") ; -- [XXXDX] :: drive a gap in, break up; cut short, interrupt; interruptio_F_N = mkN "interruptio" "interruptionis " feminine ; -- [XXXEO] :: interruption; discontinuity, break; aposiopesis (rhetoric); + intersaepio_V2 = mkV2 (mkV "intersaepire" "intersaepio" "intersaepsi" "intersaeptus ") ; -- [XXXDX] :: separate; block; + interscindo_V2 = mkV2 (mkV "interscindere" "interscindo" "interscidi" "interscissus ") ; -- [XXXDX] :: cut down; cut through, sever; + interseco_V2 = mkV2 (mkV "intersecere" "interseco" "intersecui" "intersectus ") ; -- [DXXES] :: cut apart; divide; + intersero_V2 = mkV2 (mkV "interserere" "intersero" "intersevi" "intersitus ") ; -- [XAXES] :: sow; plant; intersitus_A = mkA "intersitus" "intersita" "intersitum" ; -- [XXXDS] :: interposed; interspersus_A = mkA "interspersus" "interspersa" "interspersum" ; -- [XXXES] :: strewn; sprinkled; interspiratio_F_N = mkN "interspiratio" "interspirationis " feminine ; -- [XXXES] :: between breath-fetching; interspiro_V = mkV "interspirare" ; -- [XXXES] :: fetch breath; admit air; interstinctus_A = mkA "interstinctus" "interstincta" "interstinctum" ; -- [XXXEC] :: spotted, speckled; + interstinguo_V2 = mkV2 (mkV "interstinguere" "interstinguo" "interstinxi" "interstinctus ") ; -- [XXXES] :: separate; extinguish; kill; interstitio_F_N = mkN "interstitio" "interstitionis " feminine ; -- [EXXEZ] :: pause, respite; distinction, difference; interstitium_N_N = mkN "interstitium" ; -- [FXXEM] :: gap; partition; intersum_V = mkV "interesse" "intersum" "interfui" "interfuturus " ; -- Comment: [XXXBX] :: be/lie between, be in the midst; be present; take part in; be different; @@ -22181,13 +23886,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg intervallatus_A = mkA "intervallatus" "intervallata" "intervallatum" ; -- [XXXES] :: having intervals; intervallo_V2 = mkV2 (mkV "intervallare") ; -- [XXXES] :: take at intervals; intervallum_N_N = mkN "intervallum" ; -- [XXXBX] :: interval, space, distance; respite; + intervenio_V2 = mkV2 (mkV "intervenire" "intervenio" "interveni" "interventus ") ; -- [XXXDX] :: come between, intervene; occur, crop up; intervenium_N_N = mkN "intervenium" ; -- [XXXES] :: inter-venal space; space between veins of minerals; interventus_M_N = mkN "interventus" "interventus " masculine ; -- [XXXDX] :: intervention; occurrence of an event; + interverto_V2 = mkV2 (mkV "intervertere" "interverto" "interverti" "interversus ") ; -- [XXXDX] :: embezzle, cheat; turn upside down/inside out; reverse, invert, overturn, upset; + interviso_V2 = mkV2 (mkV "intervisere" "interviso" "intervisi" "intervisus ") ; -- [XXXDX] :: look at, visit; intervolo_V2 = mkV2 (mkV "intervolare") ; -- [DXXES] :: fly between; fly among; intestabilis_A = mkA "intestabilis" "intestabilis" "intestabile" ; -- [XXXDX] :: detestable, infamous; intestatus_A = mkA "intestatus" "intestata" "intestatum" ; -- [XXXEC] :: having made no will, intestate; intestina_F_N = mkN "intestina" ; -- [XXXDX] :: intestines; intestinus_A = mkA "intestinus" "intestina" "intestinum" ; -- [XXXDX] :: internal; domestic, civil; + intexo_V2 = mkV2 (mkV "intexere" "intexo" "intexui" "intextus ") ; -- [XXXDX] :: weave (into), embroider (on); cover by twining; insert (into a book, etc); inthronizatio_F_N = mkN "inthronizatio" "inthronizationis " feminine ; -- [GXXEK] :: enthronement; inthronizo_V = mkV "inthronizare" ; -- [GXXEK] :: enthrone; intibum_N_N = mkN "intibum" ; -- [XXXDX] :: endive or chicory; @@ -22195,6 +23904,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg intime_Adv = mkAdv "intime" ; -- [XXXDX] :: intimately, cordially, deeply, profoundly; intimo_V = mkV "intimare" ; -- [FXXDB] :: tell, tell about, relate, narrate, recount, describe; intimus_A = mkA "intimus" "intima" "intimum" ; -- [XXXBX] :: inmost; most secret; most intimate; + intingo_V2 = mkV2 (mkV "intingere" "intingo" "intinxi" "intinctus ") ; -- [XXXCO] :: dip/plunge in; saturate, steep; cause to soak in; color (w/cosmetics); + intinguo_V2 = mkV2 (mkV "intinguere" "intinguo" "intinxi" "intinctus ") ; -- [XXXCO] :: dip/plunge in; saturate, steep; cause to soak in; color (w/cosmetics); intitubabilis_A = mkA "intitubabilis" "intitubabilis" "intitubabile" ; -- [DEXFS] :: firm, unwavering; intitulo_V2 = mkV2 (mkV "intitulare") ; -- [DXXFS] :: entitle, give a name to; intolerabilis_A = mkA "intolerabilis" "intolerabilis" "intolerabile" ; -- [XXXDX] :: unable to endure, impatient (of ); insufferable; @@ -22205,7 +23916,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg intono_V = mkV "intonare" ; -- [XXXDX] :: thunder; intonsus_A = mkA "intonsus" "intonsa" "intonsum" ; -- [XXXDX] :: uncut; unshaven, unshorn; not stripped of foliage; intorqueo_V = mkV "intorquere" ; -- [XXXDX] :: twist or turn round, sprain; hurl or launch a missile at; - intra_Acc_Prep = mkPrep "intra" Acc ; -- [XXXAX] :: within, inside; during; under; + intra_Acc_Prep = mkPrep "intra" acc ; -- [XXXAX] :: within, inside; during; under; intra_Adv =mkAdv "intra" "interius" "intime" ; -- [XXXDX] :: within, inside, on the inside; during; under; fewer than; intractabilis_A = mkA "intractabilis" "intractabilis" "intractabile" ; -- [XXXDX] :: unmanageable, intractable; intractatus_A = mkA "intractatus" "intractata" "intractatum" ; -- [XXXEC] :: not handled, unattempted; @@ -22213,7 +23924,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg intransmeabilis_A = mkA "intransmeabilis" "intransmeabilis" "intransmeabile" ; -- [XXXFS] :: impassable; intransmutabil_F_N = mkN "intransmutabil" "intransmutabilis " feminine ; -- [XXXES] :: immutability; unchangeability; intransmutabilis_A = mkA "intransmutabilis" "intransmutabilis" "intransmutabile" ; -- [XXXES] :: immutable; unchangeable; --- TODO intremo_V : V2 intremo, intremere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: tremble, quake; + intremisco_V = mkV "intremiscere" "intremisco" "intremui" nonExist; -- [XXXEC] :: begin to tremble; + intremo_V = mkV "intremere" "intremo" nonExist nonExist ; -- [XXXDX] :: tremble, quake; intrepidus_A = mkA "intrepidus" "intrepida" "intrepidum" ; -- [XXXDX] :: undaunted, fearless, untroubled; intributio_F_N = mkN "intributio" "intributionis " feminine ; -- [DXXFS] :: contribution; intricatus_A = mkA "intricatus" "intricata" "intricatum" ; -- [FXXEK] :: complex; @@ -22223,11 +23935,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg intritus_A = mkA "intritus" "intrita" "intritum" ; -- [XXXEC] :: not worn away, unexhausted; intro_Adv = mkAdv "intro" ; -- [XXXAX] :: within, in; to the inside, indoors; intro_V = mkV "intrare" ; -- [XXXDX] :: enter; go into, penetrate; reach; + introcedo_V2 = mkV2 (mkV "introcedere" "introcedo" "introcessi" "introcessus ") ; -- [XXXES] :: enter; + introduco_V2 = mkV2 (mkV "introducere" "introduco" "introduxi" "introductus ") ; -- [XXXDX] :: introduce, bring/lead in; introductio_F_N = mkN "introductio" "introductionis " feminine ; -- [FXXEM] :: innovation; introduction, preface, presentation (Red); --- TODO introeo_V : V1 introeo, introire, introivi(ii), introitus -- [XXXBX] :: enter, go in or into; invade; + introeo_1_V2 = mkV2 (mkV "introire" "introeo" "introivi" "introitus") ; -- [XXXBX] :: enter, go in or into; invade; + introeo_2_V2 = mkV2 (mkV "introire" "introeo" "introii" "introitus") ; -- [XXXBX] :: enter, go in or into; invade; + introgredior_V = mkV "introgredi" "introgredior" "introgressus sum " ; -- [XXXEO] :: enter; go in; step in (L+S); introitus_M_N = mkN "introitus" "introitus " masculine ; -- [XXXDX] :: entrance; going in, invasion; + intromitto_V2 = mkV2 (mkV "intromittere" "intromitto" "intromisi" "intromissus ") ; -- [XXXCO] :: admit, let into, allow to come in; send/put in; introduce; introrsum_Adv = mkAdv "introrsum" ; -- [XXXDX] :: to within, inwards internally; introrsus_Adv = mkAdv "introrsus" ; -- [XXXDX] :: within, inside, to within, inwards, inwardly, internally; + introrumpo_V2 = mkV2 (mkV "introrumpere" "introrumpo" "introrupi" "introruptus ") ; -- [XXXDX] :: break in; + introspicio_V2 = mkV2 (mkV "introspicere" "introspicio" "introspexi" "introspectus ") ; -- [XXXDX] :: examine; inspect; look upon; introsum_Adv = mkAdv "introsum" ; -- [BXXFS] :: to within, inwards, internally; (archaic form of introrsum); introsus_Adv = mkAdv "introsus" ; -- [BXXFS] :: within, inside, to within, inwards, internally; (archaic form of introrsus); introversio_F_N = mkN "introversio" "introversionis " feminine ; -- [FXXEZ] :: introversion, turning (thoughts) inward; contemplation of spiritual things; @@ -22238,9 +23957,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg intueor_V = mkV "intueri" ; -- [XXXAX] :: look at; consider, regard; admire; stare; intuitive_Adv = mkAdv "intuitive" ; -- [GXXEK] :: intuitively; intuitivus_A = mkA "intuitivus" "intuitiva" "intuitivum" ; -- [GXXEK] :: intuitive; --- TODO intumesco_V : V2 intumesco, intumescere, intumui, - -- Declension: 3rd -- Comment: [XXXDX] :: swell up, become swollen; rise; + intumesco_V2 = mkV2 (mkV "intumescere" "intumesco" "intumui" nonExist ) ; -- [XXXDX] :: swell up, become swollen; rise; intumulatus_A = mkA "intumulatus" "intumulata" "intumulatum" ; -- [XXXDX] :: unburied; intumus_A = mkA "intumus" "intuma" "intumum" ; -- [XXXFS] :: inmost; intimate; secret; (also intimus); + intuor_V = mkV "intui" "intuor" "intuitus sum " ; -- [XXXES] :: look at; consider, regard; admire; stare; (alt. form of intueor); inturbidus_A = mkA "inturbidus" "inturbida" "inturbidum" ; -- [XXXEC] :: undisturbed, quiet; intus_Adv = mkAdv "intus" ; -- [XXXBX] :: within, on the inside, inside; at home; intutus_A = mkA "intutus" "intuta" "intutum" ; -- [XXXDX] :: defenseless; unsafe; @@ -22249,17 +23969,24 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inumbro_V = mkV "inumbrare" ; -- [XXXDX] :: cast a shadow; inundatio_F_N = mkN "inundatio" "inundationis " feminine ; -- [XXXDX] :: flood; inundo_V = mkV "inundare" ; -- [XXXDX] :: overflow, inundate, flood; swarm; + inungo_V2 = mkV2 (mkV "inungere" "inungo" "inunxi" "inunctus ") ; -- [XXXDO] :: anoint (with); cover (food w/dressing); rub in (medicaments); + inunguo_V2 = mkV2 (mkV "inunguere" "inunguo" "inunxi" "inunctus ") ; -- [XXXDO] :: anoint (with); cover (food w/dressing); rub in (medicaments); inurbanus_A = mkA "inurbanus" "inurbana" "inurbanum" ; -- [XXXDX] :: rustic, boorish, dull; + inuro_V2 = mkV2 (mkV "inurere" "inuro" "inussi" "inustus ") ; -- [XXXBO] :: ||impress indelibly; impose unalterably; paint by encaustic method; inusitate_Adv =mkAdv "inusitate" "inusitatius" "inusitatissime" ; -- [XXXEO] :: in an unusual manner; strangely; --- SLASHSTUFF inusitatus_A : A2 inusitatus, inusitata -um, inusitatior -or -us, inusitatissimus -a -um -- [XXXCO] :: unusual, uncommon; strange, unfamiliar; unwonted; + inusitatus_A = mkA "inusitatus" ; -- [XXXCO] :: unusual, uncommon; strange, unfamiliar; unwonted; inustum_N_N = mkN "inustum" ; -- [XXXDS] :: burned parts (pl.); burns;; inustus_A = mkA "inustus" "inusta" "inustum" ; -- [XXXDS] :: burned; inutilis_A = mkA "inutilis" "inutilis" "inutile" ; -- [XXXBX] :: useless, unprofitable, inexpedient, disadvantageous; harmful, helpless; inutiliter_Adv =mkAdv "inutiliter" "inutilius" "inutilissime" ; -- [XXXCO] :: uselessly, unprofitably; invalidly (legal); badly, harmfully; inexpediently; + invado_V2 = mkV2 (mkV "invadere" "invado" "invasi" "invasus ") ; -- [XXXBX] :: enter, attempt; invade; take possession of; attack (with in +acc.); + invalesco_V = mkV "invalescere" "invalesco" "invalui" nonExist; -- [XXXCO] :: strengthen, grow strong; increase in power/effectiveness/intensity/frequency; invaletudo_F_N = mkN "invaletudo" "invaletudinis " feminine ; -- [XXXFS] :: infirmity; invalidus_A = mkA "invalidus" "invalida" "invalidum" ; -- [XXXDX] :: infirm, weak feeble ineffectual; invasio_F_N = mkN "invasio" "invasionis " feminine ; -- [EWXDS] :: attack; invasion; + inveho_V2 = mkV2 (mkV "invehere" "inveho" "invexi" "invectus ") ; -- [XXXDX] :: carry/bring in, import; ride (PASS), drive, sail, attack; invenditus_A = mkA "invenditus" "invendita" "invenditum" ; -- [XLXES] :: unsold; + invenio_V2 = mkV2 (mkV "invenire" "invenio" "inveni" "inventus ") ; -- [XXXAX] :: come upon; discover, find; invent, contrive; reach, manage to get; inventarium_N_N = mkN "inventarium" ; -- [XXXEO] :: list; catalog; inventory; inventio_F_N = mkN "inventio" "inventionis " feminine ; -- [XXXCO] :: invention/discovery (action/thing); action of devising/planning; plan/stratagem; inventor_M_N = mkN "inventor" "inventoris " masculine ; -- [XXXDX] :: inventor; author; discoverer; @@ -22268,13 +23995,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg invenustus_A = mkA "invenustus" "invenusta" "invenustum" ; -- [XXXDX] :: unlovely, unattractive; inverecundia_F_N = mkN "inverecundia" ; -- [DXXES] :: immodesty; inverecundus_A = mkA "inverecundus" "inverecunda" "inverecundum" ; -- [XXXEC] :: shameless, impudent; --- TODO invergo_V : V2 invergo, invergere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: tip/pour (liquids) upon; incline; + invergo_V = mkV "invergere" "invergo" nonExist nonExist ; -- [XXXDX] :: tip/pour (liquids) upon; incline; invertibilitas_F_N = mkN "invertibilitas" "invertibilitatis " feminine ; -- [EEXFS] :: unchangeableness; immutability; unalterableness; + inverto_V2 = mkV2 (mkV "invertere" "inverto" "inverti" "inversus ") ; -- [XXXDX] :: turn upside down; pervert; change; invest_A = mkA "invest" "investis"; -- [DXXES] :: unclothed; investigabilis_A = mkA "investigabilis" "investigabilis" "investigabile" ; -- [XXXES] :: |unsearchable/untraceable, not to be investigated/looked into; investigatio_F_N = mkN "investigatio" "investigationis " feminine ; -- [XXXCO] :: search; inquiry, investigation; research; investigo_V = mkV "investigare" ; -- [XXXDX] :: investigate; search out/after/for; track down; find (by following game trail); --- TODO inveterasco_V : V2 inveterasco, inveterascere, inveteravi, - -- Declension: 3rd -- Comment: [XXXDX] :: grow old; become established/customary; + investio_V2 = mkV2 (mkV "investire" "investio" "investivi" "investitus ") ; -- [XXXES] :: clothe; cover; + inveterasco_V2 = mkV2 (mkV "inveterascere" "inveterasco" "inveteravi" nonExist ) ; -- [XXXDX] :: grow old; become established/customary; inveteratio_F_N = mkN "inveteratio" "inveterationis " feminine ; -- [XXXEC] :: inveterateness, permanence; persistentness; obstinateness; inveteratus_A = mkA "inveteratus" "inveterata" "inveteratum" ; -- [XXXDX] :: old, inveterate, of long standing; hardened by age; invetero_V = mkV "inveterare" ; -- [XXXDX] :: make old, give age to; grow old; become rooted; @@ -22287,7 +24016,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg invideo_V = mkV "invidere" ; -- [XXXAO] :: envy, regard with envy/ill will; be jealous of; begrudge, refuse; invidia_F_N = mkN "invidia" ; -- [XXXBO] :: hate/hatred/dislike; envy/jealousy/spite/ill will; use of words/acts to arouse; invidiose_Adv =mkAdv "invidiose" "invidiosius" "invidiosissime" ; -- [XXXDX] :: so as to arouse hatred/odium/envy/hostility; jealously; with ill will; --- SLASHSTUFF invidiosus_A : A2 invidiosus, invidiosa -um, invidiosior -or -us, invidiosissimus -a -um -- [XXXDX] :: arousing hatred/odium/envy; odious, invidious; enviable; envious, jealous; + invidiosus_A = mkA "invidiosus" ; -- [XXXDX] :: arousing hatred/odium/envy; odious, invidious; enviable; envious, jealous; invidus_A = mkA "invidus" "invida" "invidum" ; -- [XXXCO] :: hateful, ill disposed, hostile, malevolent; envious, jealous, grudging; invigilo_V2 = mkV2 (mkV "invigilare") Dat_Prep ; -- [XXXDX] :: stay awake (over); watch (over) diligently; invincibilis_A = mkA "invincibilis" "invincibilis" "invincibile" ; -- [EXXES] :: invincible; @@ -22298,6 +24027,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg inviolaus_A = mkA "inviolaus" "inviolaa" "inviolaum" ; -- [XXXDX] :: unhurt, unviolated, inviolable; invisibil_A = mkA "invisibil" "invisibilis"; -- [EEXDX] :: invisible; spiritual; invisitatus_A = mkA "invisitatus" "invisitata" "invisitatum" ; -- [XXXDX] :: unvisited, unseen; + inviso_V2 = mkV2 (mkV "invisere" "inviso" "invisi" "invisus ") ; -- [XXXDX] :: go to see, visit; watch over; invisus_A = mkA "invisus" "invisa" "invisum" ; -- [XXXDX] :: hated, detested; hateful, hostile; invitabulum_N_N = mkN "invitabulum" ; -- [GXXET] :: place that invites; (Erasmus); invitamentum_N_N = mkN "invitamentum" ; -- [XXXDX] :: inducement; @@ -22314,14 +24044,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg involuntarie_Adv = mkAdv "involuntarie" ; -- [XXXFS] :: involuntarily; involuntarius_A = mkA "involuntarius" "involuntaria" "involuntarium" ; -- [XXXFS] :: involuntary; involuntas_F_N = mkN "involuntas" "involuntatis " feminine ; -- [EEXFS] :: unwillingness; reluctance; disinclination; + involvo_V2 = mkV2 (mkV "involvere" "involvo" "involvi" "involutus ") ; -- [XXXBX] :: wrap (in), cover, envelop; roll along; + invorto_V2 = mkV2 (mkV "invortere" "invorto" "invorti" "invorsus ") ; -- [XXXDX] :: turn upside down; pervert; change; invulgo_V2 = mkV2 (mkV "invulgare") ; -- [XXXES] :: make known; publish abroad; invulnerabilis_A = mkA "invulnerabilis" "invulnerabilis" "invulnerabile" ; -- [XXXFS] :: invulnerable; invulneratus_A = mkA "invulneratus" "invulnerata" "invulneratum" ; -- [XXXEC] :: unwounded; iodium_N_N = mkN "iodium" ; -- [GSXEK] :: iodine; iogurtum_N_N = mkN "iogurtum" ; -- [GXXEK] :: yogurt; --- IGNORED iota_N : N1 iota, undeclined -- N -- [XXHEO] :: iota; tenth letter of Greek alphabet; (transliterate as I); + iota_N = constN "iota" neuter ; -- [XXHEO] :: iota; tenth letter of Greek alphabet; (transliterate as I); iotacismus_M_N = mkN "iotacismus" ; -- [XGXFS] :: iotacism; doubling of letters; excessive repetition of iota/other Greek vowels; --- IGNORED ioth_N : N1 ioth, undeclined -- N -- [DEQEW] :: yod; (10th letter of Hebrew alphabet); (transliterate as Y); + ioth_N = constN "ioth" neuter ; -- [DEQEW] :: yod; (10th letter of Hebrew alphabet); (transliterate as Y); ipsimus_M_N = mkN "ipsimus" ; -- [XXXDX] :: master; ipsissimus_A = mkA "ipsissimus" "ipsissima" "ipsissimum" ; -- [BXXFS] :: own very self; ira_F_N = mkN "ira" ; -- [XXXBO] :: anger; ire, wrath; resentment; indignation; rage/fury/violence; bad blood; @@ -22330,8 +24062,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg iracunditer_Adv = mkAdv "iracunditer" ; -- [XXXFO] :: angrily, irately; irritably; passionately; in a quick-tempered manner; iracundus_A = mkA "iracundus" "iracunda" "iracundum" ; -- [FXXEE] :: angry; hot-tempered; enraged; furious; irascibilis_A = mkA "irascibilis" "irascibilis" "irascibile" ; -- [FXXES] :: irascible, choleric; + irascor_V = mkV "irasci" "irascor" "iratus sum " ; -- [XXXBO] :: get/be/become angry; fly into a rage; be angry at (with DAT); feel resentment; irate_Adv =mkAdv "irate" "iratius" "iratissime" ; -- [XXXEO] :: angrily; indignantly; furiously; --- SLASHSTUFF iratus_A : A2 iratus, irata -um, iratior -or -us, iratissimus -a -um -- [XXXCO] :: angry; enraged; furious; violent (L+S); raging; angered; + iratus_A = mkA "iratus" ; -- [XXXCO] :: angry; enraged; furious; violent (L+S); raging; angered; irenacentia_F_N = mkN "irenacentia" ; -- [XAXEO] :: proneness/readiness/inclination/disposition//propensity to anger; anger/choler; irenaceus_M_N = mkN "irenaceus" ; -- [XAXEO] :: hedgehog; irenarcha_M_N = mkN "irenarcha" ; -- [XLXES] :: provincial judge; @@ -22376,12 +24109,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg irremuneratus_A = mkA "irremuneratus" "irremunerata" "irremuneratum" ; -- [DXXES] :: unrewarded; unremunerated; unpaid; irreparabilis_A = mkA "irreparabilis" "irreparabilis" "irreparabile" ; -- [XXXEO] :: irreparable, irrecoverable (loss/damage); irretrievable;; irrepertus_A = mkA "irrepertus" "irreperta" "irrepertum" ; -- [XXXDX] :: not found, undiscovered; --- TODO irrepo_V : V2 irrepo, irrepere, irrepsi, - -- Declension: 3rd -- Comment: [XXXDX] :: creep in or into; steal into; insinuate oneself (into); + irrepo_V2 = mkV2 (mkV "irrepere" "irrepo" "irrepsi" nonExist ) ; -- [XXXDX] :: creep in or into; steal into; insinuate oneself (into); irreprehensibilis_A = mkA "irreprehensibilis" "irreprehensibilis" "irreprehensibile" ; -- [DXXES] :: irresprehensible, not blameworthy; irreproachable; not liable to reproof/blame; irreprehensus_A = mkA "irreprehensus" "irreprehensa" "irreprehensum" ; -- [XXXEO] :: blameless, not blamed; not censured; irrepticius_A = mkA "irrepticius" "irrepticia" "irrepticium" ; -- [FXXEM] :: surreptitious; irreptio_F_N = mkN "irreptio" "irreptionis " feminine ; -- [FXXEM] :: creeping in; irrequietus_A = mkA "irrequietus" "irrequieta" "irrequietum" ; -- [XXXES] :: unquiet; restless; disquieting; + irretio_V2 = mkV2 (mkV "irretire" "irretio" "irretivi" "irretitus ") ; -- [XXXDX] :: entangle; catch in a net; irreverens_A = mkA "irreverens" "irreverentis"; -- [DXXES] :: irreverent; disrespectful; irreverentia_F_N = mkN "irreverentia" ; -- [XXXDX] :: disrespect; irrevocabilis_A = mkA "irrevocabilis" "irrevocabilis" "irrevocabile" ; -- [XXXCO] :: irrevocable/unalterable; that can't be summoned/held/drawn back/undone/reversed; @@ -22407,8 +24141,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg irroro_V = mkV "irrorare" ; -- [XXXDX] :: wet with dew; besprinkle, water; rain on; irrotulatio_F_N = mkN "irrotulatio" "irrotulationis " feminine ; -- [FLXFJ] :: enrollment; irrotulo_V = mkV "irrotulare" ; -- [FLXFJ] :: enroll; + irrugio_V = mkV "irrugire" "irrugio" "irrugivi" "irrugitus "; -- [EXXFS] :: cry loudly; irrumator_M_N = mkN "irrumator" "irrumatoris " masculine ; -- [XXXEO] :: one who submits to fellatio; vile person (L+S); (term of abuse); (rude); irrumo_V2 = mkV2 (mkV "irrumare") ; -- [XXXEO] :: force receptive male oral sex; treat in shameful manner; abuse; defile; (rude); + irrumpo_V2 = mkV2 (mkV "irrumpere" "irrumpo" "irrupi" "irruptus ") ; -- [XXXAO] :: invade; break/burst/force/rush in/upon/into, penetrate; intrude on; interrupt; + irruo_V = mkV "irruere" "irruo" "irrui" nonExist; -- [XXXCS] :: rush into; invade; + irruo_V2 = mkV2 (mkV "irruere" "irruo" "irrui" "irrutus ") ; -- [XXXBO] :: intrude/encroach/invade, force way in; demolish (Souter); cause to collapse; irruptio_F_N = mkN "irruptio" "irruptionis " feminine ; -- [XXXDX] :: attack, sally, assault; violent/forcible entry; ischiacus_A = mkA "ischiacus" "ischiaca" "ischiacum" ; -- [XBXFS] :: that has hip pains; ischiadicus_A = mkA "ischiadicus" "ischiadica" "ischiadicum" ; -- [XBXFS] :: of hip-gout; of pains in hip; @@ -22433,7 +24171,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg italicus_A = mkA "italicus" "italica" "italicum" ; -- [XXXDX] :: of Italy, Italian; italus_A = mkA "italus" "itala" "italum" ; -- [XXXDX] :: of Italy, Italian; itaque_Adv = mkAdv "itaque" ; -- [XXXAX] :: and so, accordingly; thus, therefore, consequently; --- itaque_Conj : Conj itaque -- [XXXAX] :: and so, therefore; + itaque_Conj = mkConj "itaque" missing ; -- [XXXAX] :: and so, therefore; item_Adv = mkAdv "item" ; -- [XXXAX] :: likewise; besides, also, similarly; iter_N_N = mkN "iter" "itineris " neuter ; -- [XXXAX] :: journey; road; passage, path; march [route magnum => forced march]; iteratio_F_N = mkN "iteratio" "iterationis " feminine ; -- [XXXEZ] :: repetition (Collins); @@ -22448,6 +24186,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ixon_N_N = mkN "ixon" "ixi " neuter ; -- [EAXFW] :: ringtail; (bird); (female hen-harrier, formerly thought distinct species OED); jacca_F_N = mkN "jacca" ; -- [GXXEK] :: jacket; jaceo_V = mkV "jacere" ; -- [XXXAX] :: lie; lie down; lie ill/in ruins/prostrate/dead; sleep; be situated; + jacio_V2 = mkV2 (mkV "jacere" "jacio" "jeci" "jactus ") ; -- [XXXAX] :: throw, hurl, cast; throw away; utter; jactans_A = mkA "jactans" "jactantis"; -- [XXXCO] :: arrogant; boastful; proud; exaltant; jactanter_Adv = mkAdv "jactanter" ; -- [XXXDX] :: arrogantly; jactantia_F_N = mkN "jactantia" ; -- [XXXDX] :: boasting, ostentation; @@ -22477,7 +24216,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg jejunitas_F_N = mkN "jejunitas" "jejunitatis " feminine ; -- [FXXEN] :: hunger, emptiness; meagerness, poverty; jejunium_N_N = mkN "jejunium" ; -- [EEXDX] :: fasting/fast (day); Lent; hunger; leanness; [caput jejunius => Ash Wednesday]; jejuno_V = mkV "jejunare" ; -- [DXXDS] :: fast; abstain form; --- SLASHSTUFF jejunus_A : A2 jejunus, jejuna -um, jejunior -or -us, jejunissimus -a -um -- [XXXBX] :: fasting, abstinent, hungry; dry, barren, unproductive; scanty, meager; + jejunus_A = mkA "jejunus" ; -- [XXXBX] :: fasting, abstinent, hungry; dry, barren, unproductive; scanty, meager; jentaculum_N_N = mkN "jentaculum" ; -- [XXXEC] :: breakfast; jento_V = mkV "jentare" ; -- [XXXEC] :: breakfast; jobeleus_M_N = mkN "jobeleus" ; -- [EEQEW] :: year of the jubilee among Jews; (slaves freed and property reverts); 50th year; @@ -22495,11 +24234,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg jocundiatas_F_N = mkN "jocundiatas" "jocundiatatis " feminine ; -- [XXXCO] :: charm, agreeableness, pleasing quality; pleasantness/amiability; favors (pl.); jocunditas_F_N = mkN "jocunditas" "jocunditatis " feminine ; -- [XXXCO] :: charm, agreeableness, pleasing quality; pleasantness/amiability; favors (pl.); jocundo_V2 = mkV2 (mkV "jocundare") ; -- [DXXCS] :: please, delight; feel delighted; take delight; --- SLASHSTUFF jocundus_A : A2 jocundus, jocunda -um, jocundior -or -us, jocundissimus -a -um -- [XXXBO] :: pleasant/agreeable/delightful/pleasing (experience/person/senses); congenial; + jocundus_A = mkA "jocundus" ; -- [XXXBO] :: pleasant/agreeable/delightful/pleasing (experience/person/senses); congenial; jocur_N_N = mkN "jocur" "jocinoris " neuter ; -- [XBXDO] :: liver; (food/medicine/divination/seat of feelings); jocus_M_N = mkN "jocus" ; -- [XXXBX] :: joke, jest; sport; jocusculum_N_N = mkN "jocusculum" ; -- [XBXEO] :: little liver; --- IGNORED jod_N : N1 jod, undeclined -- N -- [XXQFE] :: jod; (tenth letter of Hebrew alphabet); + jod_N = constN "jod" neuter ; -- [XXQFE] :: jod; (tenth letter of Hebrew alphabet); juba_F_N = mkN "juba" ; -- [XXXDX] :: mane of a horse; crest (of a helmet); jubar_N_N = mkN "jubar" "jubaris " neuter ; -- [XXXDX] :: radiance of the heavenly bodies, brightness; first light of day; light source; jubatus_A = mkA "jubatus" "jubata" "jubatum" ; -- [XXXEC] :: having mane, crest; @@ -22517,7 +24256,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg jucunde_Adv =mkAdv "jucunde" "jucundius" "jucundissime" ; -- [XXXCO] :: pleasantly; delightfully; pleasingly, gratifyingly, agreeably; jucunditas_F_N = mkN "jucunditas" "jucunditatis " feminine ; -- [XXXBO] :: charm, agreeableness, pleasing quality; pleasantness/amiability; favors (pl.); jucundo_V2 = mkV2 (mkV "jucundare") ; -- [DXXCS] :: please, delight; feel delighted; take delight; --- SLASHSTUFF jucundus_A : A2 jucundus, jucunda -um, jucundior -or -us, jucundissimus -a -um -- [XXXBO] :: pleasant/agreeable/delightful/pleasing (experience/person/senses); congenial; + jucundus_A = mkA "jucundus" ; -- [XXXBO] :: pleasant/agreeable/delightful/pleasing (experience/person/senses); congenial; judex_M_N = mkN "judex" "judicis " masculine ; -- [XLXAX] :: judge; juror; judicalis_A = mkA "judicalis" "judicalis" "judicale" ; -- [XLXCO] :: judicial; forensic; of/relating to law courts/administration; of jury service; judicatio_F_N = mkN "judicatio" "judicationis " feminine ; -- [XLXBO] :: judicial enquiry, act of deciding case; question/point at issue; opinion; @@ -22533,7 +24272,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg juglans_F_N = mkN "juglans" "juglandis " feminine ; -- [XAXCO] :: walnut tree; walnut (nut); jugo_V = mkV "jugare" ; -- [XXXAX] :: marry; join (to); jugosus_A = mkA "jugosus" "jugosa" "jugosum" ; -- [XXXEC] :: mountainous; --- TODO jugulans_N : N1 jugulans, jugulandos/is -- F -- [XAXEO] :: walnut tree; walnut (nut); + jugulans_1_N = mkN "jugulans" "jugulandis" feminine ; -- [XAXEO] :: walnut tree; walnut (nut); + jugulans_2_N = mkN "jugulans" "jugulandos" feminine ; -- [XAXEO] :: walnut tree; walnut (nut); jugulo_V = mkV "jugulare" ; -- [XXXDX] :: kill by slitting the throat; butcher, kill, murder, slay; cut the throat; jugulum_N_N = mkN "jugulum" ; -- [XXXDX] :: throat, neck; collarbone; jugulus_M_N = mkN "jugulus" ; -- [XXXDX] :: throat, neck; collarbone; @@ -22544,14 +24284,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg junceus_A = mkA "junceus" "juncea" "junceum" ; -- [XAXES] :: made of rushes; junctim_Adv = mkAdv "junctim" ; -- [XXXEE] :: both together; successively; junctura_F_N = mkN "junctura" ; -- [XXXDX] :: joint; association; --- SLASHSTUFF junctus_A : A2 junctus, juncta -um, junctior -or -us, junctissimus -a -um -- [XXXDX] :: connected in space, adjoining, contiguous; closely related/associated; + junctus_A = mkA "junctus" ; -- [XXXDX] :: connected in space, adjoining, contiguous; closely related/associated; juncus_M_N = mkN "juncus" ; -- [XXXDX] :: rush; + jungo_V2 = mkV2 (mkV "jungere" "jungo" "junxi" "junctus ") ; -- [XXXDX] :: join, unite; bring together, clasp (hands); connect, yoke, harness; junior_A = mkA "junior" "junior" "junius" ; -- [XXXDX] :: younger (COMP of juvenis); junior_M_N = mkN "junior" "junioris " masculine ; -- [XXXDX] :: younger man, junior; (in Rome a man younger than 45); juniperus_F_N = mkN "juniperus" ; -- [XXXDX] :: juniper; juramentum_N_N = mkN "juramentum" ; -- [XXXEO] :: oath; jurandum_N_N = mkN "jurandum" ; -- [BXXES] :: oath; --- SLASHSTUFF juratus_A : A2 juratus, jurata -um, juratior -or -us, juratissimus -a -um -- [XXXDX] :: being under oath, having given one's word, pledged; sworn loyalty; conspired; + juratus_A = mkA "juratus" ; -- [XXXDX] :: being under oath, having given one's word, pledged; sworn loyalty; conspired; jure_Adv = mkAdv "jure" ; -- [XXXDX] :: by right, rightly, with justice; justly, deservedly; jureconsultus_M_N = mkN "jureconsultus" ; -- [XLXEO] :: lawyer, jurist; (also two words); jureiuro_V = mkV "jureiurare" ; -- [XLXEC] :: swear an oath; @@ -22579,12 +24320,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg juste_Adv =mkAdv "juste" "justius" "justissime" ; -- [XXXDX] :: justly, rightly, lawfully, legitimately, justifiably; properly, honorably; justico_V = mkV "justicare" ; -- [FEXEM] :: justify; L:bring to justice; justificatio_F_N = mkN "justificatio" "justificationis " feminine ; -- [DXXCS] :: justification; due formality; doing right (Def); cleansing of injustice; --- SLASHSTUFF justificatus_A : A2 justificatus, justificata -um, justificatior -or -us, justificatissimus -a -um -- [DEXES] :: justified; made just; vindicated; + justificatus_A = mkA "justificatus" ; -- [DEXES] :: justified; made just; vindicated; justifico_V2 = mkV2 (mkV "justificare") ; -- [DXXCS] :: act justly towards, do justice to; justify/make just; forgive/pardon; vindicate; justitia_F_N = mkN "justitia" ; -- [XXXBX] :: justice; equality; righteousness (Plater); justitium_N_N = mkN "justitium" ; -- [XXXDX] :: cessation of judicial and all public business, due to national calamity; justum_N_N = mkN "justum" ; -- [XXXDX] :: justice; what is fair/equitable/right/due/proper; funeral rites/offerings; --- SLASHSTUFF justus_A : A2 justus, justa -um, justior -or -us, justissimus -a -um -- [XXXAX] :: just, fair, equitable; right, lawful, justified; regular, proper; + justus_A = mkA "justus" ; -- [XXXAX] :: just, fair, equitable; right, lawful, justified; regular, proper; jusum_Adv = mkAdv "jusum" ; -- [DXXES] :: down, downwards; juvamen_N_N = mkN "juvamen" "juvaminis " neuter ; -- [EXXES] :: help, aid; assistance; juvat_V0 = mkV0 "juvat" ; -- [XXXDX] :: it pleases/delights; it is enjoyable; it is helpful; @@ -22592,7 +24333,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg juvenaliter_Adv = mkAdv "juvenaliter" ; -- [XXXDX] :: youthfully, like a youth; juvenca_F_N = mkN "juvenca" ; -- [XXXDX] :: young cow, heifer; girl; juvencus_M_N = mkN "juvencus" ; -- [XXXBX] :: young bull; young man; --- TODO juvenesco_V : V2 juvenesco, juvenescere, juvenui, - -- Declension: 3rd -- Comment: [XXXDX] :: grow up; grow young again, regain youth; + juvenesco_V2 = mkV2 (mkV "juvenescere" "juvenesco" "juvenui" nonExist ) ; -- [XXXDX] :: grow up; grow young again, regain youth; juvenilis_A = mkA "juvenilis" "juvenilis" "juvenile" ; -- [XXXDX] :: youthful; juvenis_A = mkA "juvenis" "juvenis" "juvene" ; -- [XXXAX] :: youthful, young; juvenis_F_N = mkN "juvenis" "juvenis " feminine ; -- [XXXDX] :: youth, young man/woman; @@ -22602,10 +24343,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg juventas_F_N = mkN "juventas" "juventatis " feminine ; -- [XXXBX] :: youth; juventus_F_N = mkN "juventus" "juventutis " feminine ; -- [XXXDX] :: youth; the age of youth (20-40), young persons; young men, knights; juvo_V = mkV "juvare" ; -- [XXXAX] :: help, assist, aid, support, serve, further; please, delight, gratify; - juxta_Acc_Prep = mkPrep "juxta" Acc ; -- [XXXBX] :: near, (very) close to, next to; hard by, adjoining; on a par with; like; + juxta_Acc_Prep = mkPrep "juxta" acc ; -- [XXXBX] :: near, (very) close to, next to; hard by, adjoining; on a par with; like; juxta_Adv = mkAdv "juxta" ; -- [XXXDX] :: nearly; near, close to, near by, hard by, by the side of; just as, equally; juxtapositio_F_N = mkN "juxtapositio" "juxtapositionis " feminine ; -- [GXXEK] :: juxtaposition; - juxtim_Acc_Prep = mkPrep "juxtim" Acc ; -- [XXXDX] :: next to, beside; + juxtim_Acc_Prep = mkPrep "juxtim" acc ; -- [XXXDX] :: next to, beside; juxtim_Adv = mkAdv "juxtim" ; -- [XXXDX] :: nearby, in close proximity, close together, side-by-side; equally; kadamitas_F_N = mkN "kadamitas" "kadamitatis " feminine ; -- [XXXBO] :: loss, damage, harm; misfortune/disaster; military defeat; blight, crop failure; kalator_M_N = mkN "kalator" "kalatoris " masculine ; -- [XXXCO] :: personal attendant, servant, footman; servant of a priest; @@ -22618,16 +24359,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg kapitularium_N_N = mkN "kapitularium" ; -- [XLXIO] :: head/poll-tax or levy; kaput_N_N = mkN "kaput" "kapitis " neuter ; -- [XXXAO] :: head; person; life; leader; top; source/mouth (river); capital (punishment); kardo_M_N = mkN "kardo" "kardinis " masculine ; -- [XXXAO] :: hinge; pole, axis; chief point/circumstance; crisis; tenon/mortise; area; limit; --- SLASHSTUFF karus_A : A2 karus, kara -um, karior -or -us, karissimus -a -um -- [XXXAO] :: dear, beloved; costly, precious, valued; high-priced, expensive; + karus_A = mkA "karus" ; -- [XXXAO] :: dear, beloved; costly, precious, valued; high-priced, expensive; katafractarius_A = mkA "katafractarius" "katafractaria" "katafractarium" ; -- [XWXEO] :: wearing mail, armored; katafractarius_M_N = mkN "katafractarius" ; -- [XWXEO] :: mail-clad/armored soldier; --- IGNORED koppa_N : N1 koppa, undeclined -- N -- [XXXEO] :: archaic Greek letter koppa; --- IGNORED kum_V : V1 kum, undeclined -- [EEQFE] :: arise; (Aramaic); (Mark 5:41); + koppa_N = constN "koppa" neuter ; -- [XXXEO] :: archaic Greek letter koppa; + kum_V = constV "kum" ; -- [EEQFE] :: arise; (Aramaic); (Mark 5:41); labarum_N_N = mkN "labarum" ; -- [EWXFS] :: Labarum; Roman military standard; Constantine's banner of cross w/monogram XP; --- TODO labasco_V : V2 labasco, labascere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: fall to pieces, break up; waver; yield; --- IGNORED labda_N : N1 labda, undeclined -- N -- [XXHEO] :: lambda (Greek letter); (used as a symbol for fellatio); + labasco_V = mkV "labascere" "labasco" nonExist nonExist ; -- [XXXDX] :: fall to pieces, break up; waver; yield; + labda_N = constN "labda" neuter ; -- [XXHEO] :: lambda (Greek letter); (used as a symbol for fellatio); labdacismus_M_N = mkN "labdacismus" ; -- [XPXFS] :: speaking fault (esp. with letter L); labecula_F_N = mkN "labecula" ; -- [XXXDX] :: stain, blemish; slight stain; minor disgrace; + labefacio_V2 = mkV2 (mkV "labefacere" "labefacio" "labefeci" "labefactus ") ; -- [XXXDX] :: make unsteady/totter; loosen, shake; subvert (power/authority); weaken resolve; labefacto_V = mkV "labefactare" ; -- [XXXDX] :: shake; cause to waver; make unsteady, loosen; undermine; labefio_V = mkV "labeferi" ; -- [DXXDX] :: be made unsteady; be loosened/shaken; be subverted; (labefacio PASS); labellum_N_N = mkN "labellum" ; -- [XXXCO] :: lip; @@ -22637,6 +24379,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg labium_N_N = mkN "labium" ; -- [XXXDX] :: lip; flange; labo_V = mkV "labare" ; -- [XXXAX] :: totter, be ready to fall; begin to sink; give way; waver, decline, sink; err; labor_M_N = mkN "labor" "laboris " masculine ; -- [XXXAO] :: |preoccupation/concern; struggle/suffering/distress/hardship/stress; wear+tear; + labor_V = mkV "labi" "labor" "lapsus sum " ; -- [XXXBX] :: slip, slip and fall; slide, glide, drop; perish, go wrong; laborator_M_N = mkN "laborator" "laboratoris " masculine ; -- [FXXFM] :: laborer; workman; laboratorium_N_N = mkN "laboratorium" ; -- [GSXEK] :: laboratory; laborifer_A = mkA "laborifer" "laborifera" "laboriferum" ; -- [XXXEC] :: bearing labor; @@ -22658,6 +24401,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lacerta_F_N = mkN "lacerta" ; -- [XXXDX] :: lizard; Spanish mackerel; lacertosus_A = mkA "lacertosus" "lacertosa" "lacertosum" ; -- [XXXDX] :: muscular, brawny; lacertus_M_N = mkN "lacertus" ; -- [XBXBX] :: upper arm, arm, shoulder; (pl.) strength, muscles, vigor, force; lizard; + lacesso_V2 = mkV2 (mkV "lacessere" "lacesso" "lacessivi" "lacessitus ") ; -- [XXXDX] :: provoke, excite, harass, challenge, harass; attack, assail; lachrima_F_N = mkN "lachrima" ; -- [XXXFO] :: tear; exuded gum/sap; bit of lead; quicksilver from ore; weeping (pl.); dirge; lachrimula_F_N = mkN "lachrimula" ; -- [XXXEC] :: little tear; lachruma_F_N = mkN "lachruma" ; -- [BXXFO] :: tear; exuded gum/sap; bit of lead; quicksilver from ore; weeping (pl.); dirge; @@ -22684,7 +24428,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lactens_A = mkA "lactens" "lactentis"; -- [XXXDX] :: suckling, unweaned; full of milk/sap, juicy; prepared with milk; milky white; lactens_F_N = mkN "lactens" "lactentis " feminine ; -- [XXXDX] :: suckling, unweaned animal suitable for sacrifice; lactens_M_N = mkN "lactens" "lactentis " masculine ; -- [XXXDX] :: suckling, unweaned animal suitable for sacrifice; --- TODO lactesco_V : V2 lactesco, lactescere, -, - -- Declension: 3rd -- Comment: [XBXFS] :: become milky; + lactesco_V = mkV "lactescere" "lactesco" nonExist nonExist ; -- [XBXFS] :: become milky; lacteus_A = mkA "lacteus" "lactea" "lacteum" ; -- [XXXDX] :: milky; milk-white; [~ orbis or circulus => Milky Way]; lacticinium_N_N = mkN "lacticinium" ; -- [XXXES] :: milk-food, food prepared w/milk; dish prepared w/milk and eggs (pl.); lacticus_A = mkA "lacticus" "lactica" "lacticum" ; -- [GXXEK] :: lactic; of/pertaining to milk; @@ -22697,6 +24441,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lacunosus_A = mkA "lacunosus" "lacunosa" "lacunosum" ; -- [XXXEC] :: full of hollows or gaps; lacus_M_N = mkN "lacus" "lacus " masculine ; -- [XXXAS] :: basin/tank/tub; lake/pond; reservoir/cistern/basin, trough; lime-hole; bin; pit; ladanum_N_N = mkN "ladanum" ; -- [XAXNS] :: resinous juice (from shrub lada); ladanum; + laedo_V2 = mkV2 (mkV "laedere" "laedo" "laesi" "laesus ") ; -- [XPXBX] :: strike; hurt, injure, wound; offend, annoy; laena_F_N = mkN "laena" ; -- [XXXDX] :: woolen double cloak; laesio_F_N = mkN "laesio" "laesionis " feminine ; -- [XGXDO] :: injury, harm, hurt; part of speech to injure opponent's case (rhetoric), attack; laetabilis_A = mkA "laetabilis" "laetabilis" "laetabile" ; -- [XXXEO] :: gladdening, welcome; that may be rejoiced at; joyful; @@ -22711,7 +24456,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg laeto_V2 = mkV2 (mkV "laetare") ; -- [XXXEO] :: gladden, cheer; be glad/joyful, rejoice (medieval); laetor_V = mkV "laetari" ; -- [XXXBO] :: be glad/joyful/delighted; rejoice; be fond (of), delight in; flourish (on/in); laetrosum_Adv = mkAdv "laetrosum" ; -- [XXXFO] :: on the left; --- SLASHSTUFF laetus_A : A2 laetus, laeta -um, laetior -or -us, laetissimus -a -um -- [XXXAO] :: |luxuriant/lush/rich/sleek; fertile (land); teeming/abounding; pleasing/welcome; + laetus_A = mkA "laetus" ; -- [XXXAO] :: |luxuriant/lush/rich/sleek; fertile (land); teeming/abounding; pleasing/welcome; laeva_F_N = mkN "laeva" ; -- [XXXDX] :: left hand; laevorsum_Adv = mkAdv "laevorsum" ; -- [EXXFS] :: on the left hand; laevorsus_Adv = mkAdv "laevorsus" ; -- [EXXFS] :: on the left hand; @@ -22732,7 +24477,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg laicus_A = mkA "laicus" "laica" "laicum" ; -- [EEXDS] :: lay, common; of the laity/people; not priestly/in orders/consecrated; laicus_M_N = mkN "laicus" ; -- [EEXCS] :: layman, one not belonging to the priesthood/in orders; lama_F_N = mkN "lama" ; -- [GXXEK] :: |llama; --- IGNORED lamed_N : N1 lamed, undeclined -- N -- [DEQEW] :: lamed/lameth; (12th letter of Hebrew alphabet); (transliterate as L); + lambo_V2 = mkV2 (mkV "lambere" "lambo" "lambui" "lambitus ") ; -- [DXXBS] :: lick; lap/lick/suck up, absorb; wash/bathe; surround; fondle/caress (L+S); fawn; + lamed_N = constN "lamed" neuter ; -- [DEQEW] :: lamed/lameth; (12th letter of Hebrew alphabet); (transliterate as L); lamella_F_N = mkN "lamella" ; -- [XTXFS] :: small metal piece (eg. coin, plate); lamenta_F_N = mkN "lamenta" ; -- [XXXFO] :: wailing, weeping, groans, laments; lamentabilis_A = mkA "lamentabilis" "lamentabilis" "lamentabile" ; -- [XXXDX] :: doleful; lamentable; @@ -22741,7 +24487,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lamento_V = mkV "lamentare" ; -- [EXXDW] :: lament; utter cries of grief; bewail; lament for; complain that; lamentor_V = mkV "lamentari" ; -- [XXXCO] :: lament; utter cries of grief; bewail; lament for; complain that; lamentum_N_N = mkN "lamentum" ; -- [XXXCO] :: wailing (pl.), weeping, groans, laments; --- IGNORED lameth_N : N1 lameth, undeclined -- N -- [DEQEW] :: lamed/lameth; (12th letter of Hebrew alphabet); (transliterate as L); + lameth_N = constN "lameth" neuter ; -- [DEQEW] :: lamed/lameth; (12th letter of Hebrew alphabet); (transliterate as L); lamia_F_N = mkN "lamia" ; -- [XAXEO] :: |kind of shark; sort of flatfish (L+S); species of owl; jackal (Souter); lamina_F_N = mkN "lamina" ; -- [XXXBO] :: plate; veneer; thin sheet of metal/other material; (blade); money/cash; lamma_Adv = mkAdv "lamma" ; -- [XEQFE] :: why; (Aramaic); @@ -22750,22 +24496,24 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lampada_F_N = mkN "lampada" ; -- [XXXEO] :: lamp/lantern; light/torch/flame/flambeau/link; firebrand; meteor (like torch); lampadarium_N_N = mkN "lampadarium" ; -- [EXXFE] :: chandelier; lamp-stand, support for lamps; lampadarius_M_N = mkN "lampadarius" ; -- [XXXEO] :: lamp/torch bearer; link-boy; chandelier; lamp-stand, support for lamps (Ecc); + lampas_1_N = mkN "lampas" "lampadis" feminine ; -- [XXXDO] :: lamp/lantern; light/torch/flame/flambeau/link; firebrand; meteor (like torch); + lampas_2_N = mkN "lampas" "lampados" feminine ; -- [XXXDO] :: lamp/lantern; light/torch/flame/flambeau/link; firebrand; meteor (like torch); lampas_F_N = mkN "lampas" "lampadis " feminine ; -- [XXXBO] :: lamp/lantern; light/torch/flame/flambeau/link; firebrand; meteor (like torch); --- TODO lampas_N : N1 lampas, lampados/is -- F -- [XXXDO] :: lamp/lantern; light/torch/flame/flambeau/link; firebrand; meteor (like torch); lana_F_N = mkN "lana" ; -- [XXXDX] :: wool; fleece; soft hair; down; trifles; lanarius_M_N = mkN "lanarius" ; -- [XXXES] :: wool-worker; --- SLASHSTUFF lanatus_A : A2 lanatus, lanata -um, lanatior -or -us, lanatissimus -a -um -- [XXXCO] :: woolly; covered in wool; woolen; made of wool; wool-like; downy (plants); + lanatus_A = mkA "lanatus" ; -- [XXXCO] :: woolly; covered in wool; woolen; made of wool; wool-like; downy (plants); lancea_F_N = mkN "lancea" ; -- [XWSCO] :: lance; long light spear; lancinatio_F_N = mkN "lancinatio" "lancinationis " feminine ; -- [XXXFO] :: tearing in/to pieces, rending, mangling; lancino_V2 = mkV2 (mkV "lancinare") ; -- [XXXCO] :: tear in/to pieces, rend (apart), mangle; lanciola_F_N = mkN "lanciola" ; -- [XWSCO] :: small lance; landica_F_N = mkN "landica" ; -- [XBXEO] :: clitoris; (rude); laneus_A = mkA "laneus" "lanea" "laneum" ; -- [XXXCO] :: woolen, made of wool; resembling wool (appearance/texture);; + languefacio_V2 = mkV2 (mkV "languefacere" "languefacio" "languefeci" "languefactus ") ; -- [XXXFO] :: make languid/inactive/weak/faint; langueo_V = mkV "languere" ; -- [XXXBX] :: be tired; be listless/sluggish/unwell/ill; wilt, lack vigor; --- TODO languesco_V : V2 languesco, languescere, langui, - -- Declension: 3rd -- Comment: [XXXDX] :: become faint or languid or weak, wilt; + languesco_V2 = mkV2 (mkV "languescere" "languesco" "langui" nonExist ) ; -- [XXXDX] :: become faint or languid or weak, wilt; languide_Adv =mkAdv "languide" "languidius" "languidissime" ; -- [XXXDX] :: faintly, feebly; slowly, spiritlessly; languidulus_A = mkA "languidulus" "languidula" "languidulum" ; -- [XXXEC] :: somewhat faint, limp; --- SLASHSTUFF languidus_A : A2 languidus, languida -um, languidior -or -us, languidissimus -a -um -- [XXXDX] :: faint, weak; dull, sluggish, languid; spiritless, listless, inactive; powerless; + languidus_A = mkA "languidus" ; -- [XXXDX] :: faint, weak; dull, sluggish, languid; spiritless, listless, inactive; powerless; languor_M_N = mkN "languor" "languoris " masculine ; -- [XXXDX] :: faintness, feebleness; languor apathy; laniena_F_N = mkN "laniena" ; -- [XXXEC] :: butcher's shop; lanificus_A = mkA "lanificus" "lanifica" "lanificum" ; -- [XXXDX] :: woodworking, spinning, weaving; @@ -22790,7 +24538,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lapidaris_A = mkA "lapidaris" "lapidaris" "lapidare" ; -- [XXXIO] :: of stone; lapidarius_A = mkA "lapidarius" "lapidaria" "lapidarium" ; -- [XXXDO] :: of/concerning stone-cutting/quarrying; [litterae ~ => block capital letters]; lapidarius_M_N = mkN "lapidarius" ; -- [XXXEO] :: stone-cutter; --- TODO lapidesco_V : V2 lapidesco, lapidescere, -, - -- Declension: 3rd -- Comment: [XXXFS] :: become stone; petrify; + lapidesco_V = mkV "lapidescere" "lapidesco" nonExist nonExist ; -- [XXXFS] :: become stone; petrify; lapideus_A = mkA "lapideus" "lapidea" "lapideum" ; -- [XXXDX] :: of stone; stony; lapidicina_F_N = mkN "lapidicina" ; -- [XXXCO] :: stone quarries (pl.); lapido_V = mkV "lapidare" ; -- [XXXDX] :: throw stones at; stone; [lapidat => it rains stones]; @@ -22813,6 +24561,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg largificus_A = mkA "largificus" "largifica" "largificum" ; -- [XXXEC] :: bountiful, liberal; largifluus_A = mkA "largifluus" "largiflua" "largifluum" ; -- [XXXEC] :: flowing freely; largiloquus_A = mkA "largiloquus" "largiloqua" "largiloquum" ; -- [BXXFS] :: talkative; + largio_V2 = mkV2 (mkV "largire" "largio" "largivi" "largitus ") ; -- [XXXFS] :: give bountifully; lavish; + largior_V = mkV "largiri" "largior" "largitus sum " ; -- [XXXDX] :: grant; give bribes/presents corruptly; give generously/bountifully; largitas_F_N = mkN "largitas" "largitatis " feminine ; -- [XXXDX] :: abundance (of) (w/GEN); bounty; liberality, munificence; largiter_Adv = mkAdv "largiter" ; -- [XXXDX] :: in abundance, plentifully, liberally, much; greatly; has great influence; largitio_F_N = mkN "largitio" "largitionis " feminine ; -- [XXXDX] :: generosity, lavish giving, largess; bribery; distribution of dole/land; @@ -22835,6 +24585,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lasanum_N_N = mkN "lasanum" ; -- [XXXFS] :: cooking-pot; lasarpicifer_A = mkA "lasarpicifer" "lasarpicifra" "lasarpicifrum" ; -- [XAXFS] :: asafoetida-producing; lascivia_F_N = mkN "lascivia" ; -- [XXXDX] :: playfulness; wantonness, lasciviousness; + lascivio_V2 = mkV2 (mkV "lascivire" "lascivio" "lascivi" "lascivitus ") ; -- [XXXDX] :: frisk; sport; run riot; lascivus_A = mkA "lascivus" "lasciva" "lascivum" ; -- [XXXBX] :: playful; lustful, wanton; impudent, mischievous; free from restraint; laser_N_N = mkN "laser" "laseris " neuter ; -- [XAXES] :: plant-juice; (of plant laserpitium); laserpicium_N_N = mkN "laserpicium" ; -- [XXXEC] :: plant from which asafoetida was obtained; @@ -22860,6 +24611,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg latericulus_M_N = mkN "latericulus" ; -- [XXXCO] :: small brick, tile; (brick-shaped) block; hard cake/biscuit; parcel of land; laterna_F_N = mkN "laterna" ; -- [EXXES] :: lantern; lamp (L+S); torch; laterus_A = mkA "laterus" "latera" "laterum" ; -- [ESXDX] :: having X sides (only with numerical prefix); + latesco_V = mkV "latescere" "latesco" "latui" nonExist; -- [XXXFS] :: hide oneself (short-a); latex_M_N = mkN "latex" "laticis " masculine ; -- [XXXCO] :: water; (any) liquid/fluid; running/stream/spring water; juice; latibulum_N_N = mkN "latibulum" ; -- [XXXDX] :: hiding-place, den; laticlavius_A = mkA "laticlavius" "laticlavia" "laticlavium" ; -- [XXXDX] :: having broad crimson stripe; @@ -22886,7 +24638,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg latrocinium_N_N = mkN "latrocinium" ; -- [XXXDX] :: brigandage, robbery, highway robbery; piracy, freebooting; villainy; latrocinor_V = mkV "latrocinari" ; -- [XXXDX] :: engage in brigandage or piracy; latrunculus_M_N = mkN "latrunculus" ; -- [XXXDX] :: robber, brigand; --- SLASHSTUFF latus_A : A2 latus, lata -um, latior -or -us, latissimus -a -um -- [XXXAX] :: wide, broad; spacious, extensive; + latus_A = mkA "latus" ; -- [XXXAX] :: wide, broad; spacious, extensive; latus_N_N = mkN "latus" "lateris " neuter ; -- [XXXAX] :: side; flank; latusculum_N_N = mkN "latusculum" ; -- [XXXEC] :: little side; laudabilis_A = mkA "laudabilis" "laudabilis" "laudabile" ; -- [XXXDX] :: praiseworthy; @@ -22914,7 +24666,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lautitia_F_N = mkN "lautitia" ; -- [XXXDX] :: elegance, splendor, sumptuousness, luxury; lautium_N_N = mkN "lautium" ; -- [XLXCO] :: entertainment provided for foreign guests of the state of Rome; state banquet; lautumia_F_N = mkN "lautumia" ; -- [XXXDX] :: stone-quarry (pl.), especially used as a prison; --- SLASHSTUFF lautus_A : A2 lautus, lauta -um, lautior -or -us, lautissimus -a -um -- [XXXBO] :: elegant, fashionable; sumptuous/luxurious; fine, well turned out; washed/clean; + lautus_A = mkA "lautus" ; -- [XXXBO] :: elegant, fashionable; sumptuous/luxurious; fine, well turned out; washed/clean; lava_F_N = mkN "lava" ; -- [GXXEK] :: lava; lavabilis_A = mkA "lavabilis" "lavabilis" "lavabile" ; -- [GXXEK] :: washable; lavabrum_N_N = mkN "lavabrum" ; -- [XXXFO] :: bath-tub; @@ -22927,11 +24679,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lavo_V = mkV "lavare" ; -- [XXXAX] :: wash, bathe; soak; laxamentum_N_N = mkN "laxamentum" ; -- [XXXDX] :: respite, relaxation, mitigation, alleviation; opportunity; free space/time; laxativum_N_N = mkN "laxativum" ; -- [GXXEK] :: laxative; --- SLASHSTUFF laxatus_A : A2 laxatus, laxata -um, laxatior -or -us, laxatissimus -a -um -- [XXXDX] :: wide, large in extent, spacious; loose, slack, lax; + laxatus_A = mkA "laxatus" ; -- [XXXDX] :: wide, large in extent, spacious; loose, slack, lax; laxe_Adv =mkAdv "laxe" "laxius" "laxissime" ; -- [XXXDX] :: loosely, amply; without restraint; over a wide area, widely; on a large scale; laxitas_F_N = mkN "laxitas" "laxitatis " feminine ; -- [XXXDX] :: roominess, largeness; laxo_V = mkV "laxare" ; -- [XXXDX] :: loosen, slaken, relax, weaken; expand, open up, extend; --- SLASHSTUFF laxus_A : A2 laxus, laxa -um, laxior -or -us, laxissimus -a -um -- [XXXAO] :: |unstrung; relaxed, at ease; unrestricted; breached/wide open; distant (time); + laxus_A = mkA "laxus" ; -- [XXXAO] :: |unstrung; relaxed, at ease; unrestricted; breached/wide open; distant (time); lazulinus_A = mkA "lazulinus" "lazulina" "lazulinum" ; -- [GXXEK] :: blue; lea_F_N = mkN "lea" ; -- [XAXCO] :: lioness; leaena_F_N = mkN "leaena" ; -- [XAXDO] :: lioness; @@ -22947,12 +24699,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lector_M_N = mkN "lector" "lectoris " masculine ; -- [XXXBX] :: reader; lectrix_F_N = mkN "lectrix" "lectricis " feminine ; -- [XXXES] :: female reader; lectulus_M_N = mkN "lectulus" ; -- [XXXDX] :: bed or couch; --- SLASHSTUFF lectus_A : A2 lectus, lecta -um, lectior -or -us, lectissimus -a -um -- [XXXDX] :: chosen, picked, selected; choice, excellent; (pl. as subst = picked men); + lectus_A = mkA "lectus" ; -- [XXXDX] :: chosen, picked, selected; choice, excellent; (pl. as subst = picked men); lectus_M_N = mkN "lectus" ; -- [XXXBX] :: chosen/picked/selected men (pl.); lecythos_F_N = mkN "lecythos" "lecythi " feminine ; -- [XXXEO] :: oil flask/bottle/vessel; lecythus_F_N = mkN "lecythus" ; -- [XXXEO] :: oil flask/bottle/vessel; lecythus_M_N = mkN "lecythus" ; -- [EXXFS] :: oil flask/bottle/vessel; --- IGNORED leg_N : N1 leg., abb. -- F -- [XXXDX] :: legion (abb.); + leg_N = constN "leg." feminine ; -- [XXXDX] :: legion (abb.); legalis_A = mkA "legalis" "legalis" "legale" ; -- [XXXDO] :: legal, of/concerned with law; legalitas_F_N = mkN "legalitas" "legalitatis " feminine ; -- [FLXEM] :: legal status; law-worthiness; legatarius_M_N = mkN "legatarius" ; -- [XXXEC] :: legatee; @@ -22976,6 +24728,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg legitimus_A = mkA "legitimus" "legitima" "legitimum" ; -- [XXXDX] :: lawful, right; legitimate; real, genuine; just; proper; legiuncula_F_N = mkN "legiuncula" ; -- [XXXEC] :: small legion; lego_V = mkV "legare" ; -- [XXXBX] :: bequeath, will; entrust, send as an envoy, choose as a deputy; + lego_V2 = mkV2 (mkV "legere" "lego" "legi" "lectus ") ; -- [XXXAX] :: read; gather, collect (cremated bones); furl (sail), weigh (anchor); pick out; leguleius_M_N = mkN "leguleius" ; -- [XXXEC] :: pettifogging lawyer; legumen_N_N = mkN "legumen" "leguminis " neuter ; -- [XXXDX] :: pulse, leguminous plant; pod-vegetable; legumlator_M_N = mkN "legumlator" "legumlatoris " masculine ; -- [XLXCS] :: legislator; law-giver; proposer of a law; @@ -22990,8 +24743,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lena_F_N = mkN "lena" ; -- [XXXDX] :: procuress; brothel-keeper; lenimen_N_N = mkN "lenimen" "leniminis " neuter ; -- [XXXDX] :: alleviation, solace; lenimentum_N_N = mkN "lenimentum" ; -- [FXXEC] :: alleviation, improvement, mitigation (Nelson); sop (Collins); - lenio_V2 = mkV2 (mkV "lenire") ; -- [XXXDW] :: |mollify; explain away, gloss over; beguile, pass pleasantly; abate; (Kludge); --- SLASHSTUFF lenis_A : A2 lenis, lene, lenior -or -us, lenissimus -a -um -- [XXXBX] :: gentle, kind, light; smooth, mild, easy, calm; + lenio_V2 = mkV2 (mkV "lenire" "lenio" "lenivi" "lenitus ") ; -- [XXXBO] :: |mollify; explain away, gloss over; beguile, pass pleasantly; abate; + lenis_A = mkA "lenis" ; -- [XXXBX] :: gentle, kind, light; smooth, mild, easy, calm; lenitas_F_N = mkN "lenitas" "lenitatis " feminine ; -- [XXXDX] :: smoothness; gentleness, mildness; lenience; leniter_Adv =mkAdv "leniter" "lenius" "lenissime" ; -- [XXXBO] :: gently/mildly/lightly/slightly; w/gentle movement/incline; smoothly; moderately; lenitudo_F_N = mkN "lenitudo" "lenitudinis " feminine ; -- [DXXFS] :: softness; mildness; calmness; @@ -23000,7 +24753,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lenocinor_V = mkV "lenocinari" ; -- [XXXEC] :: work as a procurer; make up to, flatter; lens_F_N = mkN "lens" "lentis " feminine ; -- [GXXDX] :: lentil; lentil-plant; S:lens (Cal); lente_Adv = mkAdv "lente" ; -- [XXXDX] :: slowly; --- TODO lentesco_V : V2 lentesco, lentescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: become sticky; relax; + lentesco_V = mkV "lentescere" "lentesco" nonExist nonExist ; -- [XXXDX] :: become sticky; relax; lenticula_F_N = mkN "lenticula" ; -- [XXXCO] :: lentil (plant/seed); lentil shape (convexo-convex)/lens-shaped vessel; freckle; lentigo_F_N = mkN "lentigo" "lentiginis " feminine ; -- [XXXES] :: lentil-shaped spot; B:freckle; lentiscifer_A = mkA "lentiscifer" "lentiscifra" "lentiscifrum" ; -- [XPXFS] :: mastic-tree bearing; @@ -23010,15 +24763,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lento_V = mkV "lentare" ; -- [XXXDX] :: bend under strain; lentor_M_N = mkN "lentor" "lentoris " masculine ; -- [XXXFS] :: pliancy, flexibility; toughness; viscosity; lentulus_A = mkA "lentulus" "lentula" "lentulum" ; -- [XXXEC] :: somewhat slow; --- SLASHSTUFF lentus_A : A2 lentus, lenta -um, lentior -or -us, lentissimus -a -um -- [XXXBX] :: clinging, tough; slow, sluggish, lazy, procrastinating; easy, pliant; + lentus_A = mkA "lentus" ; -- [XXXBX] :: clinging, tough; slow, sluggish, lazy, procrastinating; easy, pliant; lenunculus_M_N = mkN "lenunculus" ; -- [XXXDX] :: skiff; leo_M_N = mkN "leo" "leonis " masculine ; -- [XAXAX] :: lion; leoninus_A = mkA "leoninus" "leonina" "leoninum" ; -- [XAXEC] :: of a lion, leonine; leopardalis_M_N = mkN "leopardalis" "leopardalis " masculine ; -- [XAAIO] :: leopard; (believed to be hybrid from lion and panther); leopardus_M_N = mkN "leopardus" ; -- [XAAIO] :: leopard; (believed to be hybrid from lion and panther); --- TODO lepas_N : N1 lepas, lepados/is -- F -- [XAXFO] :: limpet; + lepas_1_N = mkN "lepas" "lepadis" feminine ; -- [XAXFO] :: limpet; + lepas_2_N = mkN "lepas" "lepados" feminine ; -- [XAXFO] :: limpet; lepide_Adv = mkAdv "lepide" ; -- [XXXDX] :: charmingly delightfully; wittily; fine, excellent (formula approbation); --- SLASHSTUFF lepidus_A : A2 lepidus, lepida -um, lepidior -or -us, lepidissimus -a -um -- [XXXDX] :: agreeable, charming, delightful, nice; amusing, witty (remarks/books); + lepidus_A = mkA "lepidus" ; -- [XXXDX] :: agreeable, charming, delightful, nice; amusing, witty (remarks/books); lepor_M_N = mkN "lepor" "leporis " masculine ; -- [XXXBX] :: charm, pleasantness; leporarium_N_N = mkN "leporarium" ; -- [XXXES] :: warren; place where hares kept; leporarius_A = mkA "leporarius" "leporaria" "leporarium" ; -- [XXXES] :: hare-; of a hare; @@ -23048,20 +24802,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg levamen_N_N = mkN "levamen" "levaminis " neuter ; -- [XXXAX] :: alleviation, solace; levamentum_N_N = mkN "levamentum" ; -- [XXXDX] :: alleviation, mitigation, consolation; levatio_F_N = mkN "levatio" "levationis " feminine ; -- [XXXDO] :: relief, mitigation, alleviation, lessening, diminishing; lifting (action); --- IGNORED leviathan_N : N1 leviathan, undeclined -- N -- [EXQDE] :: leviathan, huge aquatic monster (Hebrew); serpent; crocodile; enormous thing; + leviathan_N = constN "leviathan" neuter ; -- [EXQDE] :: leviathan, huge aquatic monster (Hebrew); serpent; crocodile; enormous thing; leviculus_A = mkA "leviculus" "levicula" "leviculum" ; -- [XXXEC] :: rather vain, light-headed; levidensis_A = mkA "levidensis" "levidensis" "levidense" ; -- [XXXEC] :: thin, slight, poor; levifico_V2 = mkV2 (mkV "levificare") ; -- [EXXFP] :: smooth, make smooth; [w/linguam => deal decietfully w/tongue = lie/smooth talk]; levigatus_A = mkA "levigatus" "levigata" "levigatum" ; -- [DXXFS] :: smooth; slippery; levigo_V2 = mkV2 (mkV "levigare") ; -- [XXXCO] :: smooth, make smooth, smooth out, remove roughness; pulverize; make small (L+S); --- SLASHSTUFF levis_A : A2 levis, leve, levior -or -us, levissimus -a -um -- [XXXAX] :: |smooth; slippery, polished, plain; free from coarse hair/harsh sounds; + levis_A = mkA "levis" ; -- [XXXAX] :: |smooth; slippery, polished, plain; free from coarse hair/harsh sounds; levisomnus_A = mkA "levisomnus" "levisomna" "levisomnum" ; -- [XXXEC] :: lightly sleeping; levitas_F_N = mkN "levitas" "levitatis " feminine ; -- [XXXDX] :: levity; lightness, mildness; fickleness; shallowness; leviter_Adv =mkAdv "leviter" "levius" "levissime" ; -- [XXXCO] :: lightly/gently/softly/quietly/mildly/slightly; groundlessly/thoughtlessly; levo_V2 = mkV2 (mkV "levare") ; -- [XXXDO] :: |||alleviate (condition); make smooth, polish; free from hair, depilate; levor_M_N = mkN "levor" "levoris " masculine ; -- [XXXFS] :: smoothness; + lex_1_N = mkN "lex" "lexeis" feminine ; -- [XGXES] :: word; (Greek); + lex_2_N = mkN "lex" "lexeos" feminine ; -- [XGXES] :: word; (Greek); lex_F_N = mkN "lex" "legis " feminine ; -- [XLXAX] :: law; motion, bill, statute; principle; condition; --- TODO lex_N : N1 lex, lexeos/is -- F -- [XGXES] :: word; (Greek); lexicalis_A = mkA "lexicalis" "lexicalis" "lexicale" ; -- [GGXEK] :: lexical; lexicographia_F_N = mkN "lexicographia" ; -- [GGXEK] :: lexicography; lexicographicus_A = mkA "lexicographicus" "lexicographica" "lexicographicum" ; -- [GGXEK] :: lexicographical; @@ -23077,7 +24832,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg libellus_M_N = mkN "libellus" ; -- [XXXAX] :: little/small book; memorial; petition; pamphlet, defamatory publication; libens_A = mkA "libens" "libentis"; -- [XXXAO] :: willing, cheerful; glad, pleased; libenter_Adv =mkAdv "libenter" "libentius" "libentissime" ; -- [XXXCO] :: willingly; gladly, with pleasure; --- SLASHSTUFF liber_A : A2 liber, libera -um, liberior -or -us, liberrimus -a -um -- [XXXAO] :: |unconstrained, unrestrained, unencumbered; licentious; idle; w/abandon; + liber_A = mkA "liber" ; -- [XXXAO] :: |unconstrained, unrestrained, unencumbered; licentious; idle; w/abandon; liber_M_N = mkN "liber" ; -- [XXXDX] :: book, volume; inner bark of a tree; liberalis_A = mkA "liberalis" "liberalis" "liberale" ; -- [XXXAX] :: honorable; courteous, well bred, gentlemanly; liberal; generous; liberalismus_M_N = mkN "liberalismus" ; -- [GXXEK] :: liberalism; @@ -23124,7 +24879,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg licentiosus_A = mkA "licentiosus" "licentiosa" "licentiosum" ; -- [XXXEO] :: unrestrained, unbridled; wanton, licentious; free; liceo_V = mkV "licere" ; -- [XXXDX] :: fetch (price); (with ABL or GEN); liceor_V = mkV "liceri" ; -- [XXXCO] :: bid on/for, bid, bid at auction; make a bid; --- licet_Conj : Conj licet -- [XXXCO] :: although, granted that; (with subjunctive); + licet_Conj = mkConj "licet" missing ; -- [XXXCO] :: although, granted that; (with subjunctive); licet_V0 = mkV0 "licet" ; -- [XXXAX] :: it is permitted, one may; it is all right, lawful, allowed, permitted; lichanos_M_N = mkN "lichanos" "lichani " masculine ; -- [XDHFO] :: second highest tetrachord note; (lychanos/lichanos); lichen_M_N = mkN "lichen" "lichenis " masculine ; -- [XAXCO] :: lichen; liverwort?; skin disease, tetter, eczema, ringworm; gum/resin as cure; @@ -23154,7 +24909,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ligo_M_N = mkN "ligo" "ligonis " masculine ; -- [XXXDX] :: mattock; hoe; ligo_V = mkV "ligare" ; -- [XXXBX] :: bind, tie, fasten; unite; ligula_F_N = mkN "ligula" ; -- [XXXDX] :: shoe strap/tie; small spoon (Cal); [ligulas dimittere => leave untied]; + ligurio_V2 = mkV2 (mkV "ligurire" "ligurio" "ligurivi" "liguritus ") ; -- [XXXDX] :: lick, lick up; ligurius_M_N = mkN "ligurius" ; -- [EXXES] :: ligure, precious gem; hard transparent gem, tourmaline? (L+S); + ligurrio_V2 = mkV2 (mkV "ligurrire" "ligurrio" "ligurrivi" "ligurritus ") ; -- [XXXDX] :: lick, lick up; ligustrum_N_N = mkN "ligustrum" ; -- [XXXDX] :: privet, white-flowered shrub; ligyrius_M_N = mkN "ligyrius" ; -- [EXXFW] :: ligure, precious gem; hard transparent gem, tourmaline? (L+S); lilacinus_A = mkA "lilacinus" "lilacina" "lilacinum" ; -- [GXXEK] :: lilac-colored; @@ -23162,7 +24919,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lima_F_N = mkN "lima" ; -- [XXXDX] :: file (carpenter's); polishing/revision (of a literary work); limatulus_A = mkA "limatulus" "limatula" "limatulum" ; -- [XXXEC] :: rather polished, refined; limatura_F_N = mkN "limatura" ; -- [FXXEK] :: filing; --- SLASHSTUFF limatus_A : A2 limatus, limata -um, limatior -or -us, limatissimus -a -um -- [XXXES] :: besmirch; + limatus_A = mkA "limatus" ; -- [XXXES] :: besmirch; limax_F_N = mkN "limax" "limacis " feminine ; -- [XXXFS] :: slug; snail; limax_M_N = mkN "limax" "limacis " masculine ; -- [XXXFS] :: slug; snail; limbus_M_N = mkN "limbus" ; -- [XXXDX] :: border, edge; ornamental border of a robe; @@ -23180,7 +24937,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg limo_V = mkV "limare" ; -- [XXXDX] :: file; polish; file down; detract gradually from; limonata_F_N = mkN "limonata" ; -- [GXXEK] :: lemonade; limosus_A = mkA "limosus" "limosa" "limosum" ; -- [XXXDX] :: miry, muddy; marshy, swampy; --- SLASHSTUFF limpidus_A : A2 limpidus, limpida -um, limpidior -or -us, limpidissimus -a -um -- [XXXDX] :: clear; + limpidus_A = mkA "limpidus" ; -- [XXXDX] :: clear; limus_A = mkA "limus" "lima" "limum" ; -- [XXXDO] :: oblique, transverse; sidelong, sideways; askew, aslant; askance; limus_M_N = mkN "limus" ; -- [XXXCO] :: mud/mire; slime; filth/pollution; silt; crusted dirt; sediment of wine; limusina_F_N = mkN "limusina" ; -- [GXXEK] :: limousine; @@ -23190,6 +24947,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lineatus_A = mkA "lineatus" "lineata" "lineatum" ; -- [GXXEK] :: lined; lineo_V2 = mkV2 (mkV "linere") ; -- [EXXFW] :: smear, plaster (with); seal (wine jar); erase/rub over; befoul; cover/overlay; lineus_A = mkA "lineus" "linea" "lineum" ; -- [XXXDX] :: made of flax or linen; + lingo_V2 = mkV2 (mkV "lingere" "lingo" "linxi" "linctus ") ; -- [XXXAO] :: lick; lick up (L+S); lingua_F_N = mkN "lingua" ; -- [XXXDX] :: tongue; speech, language; dialect; linguista_M_N = mkN "linguista" ; -- [GXXEK] :: linguist; linguistica_F_N = mkN "linguistica" ; -- [GXXEK] :: linguistics; @@ -23199,7 +24957,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg linguosus_A = mkA "linguosus" "linguosa" "linguosum" ; -- [XXXES] :: talkative; liniamentum_N_N = mkN "liniamentum" ; -- [XXXCO] :: line (drawn/traced/marked/geometric); outlines (pl.) (figure/face), features; liniger_A = mkA "liniger" "linigera" "linigerum" ; -- [XXXDX] :: wearing linen; + linio_V2 = mkV2 (mkV "linire" "linio" "linivi" "linitus ") ; -- [XXXEO] :: smear, plaster (with); seal (wine jar); erase/rub over; befoul; cover/overlay; + lino_V2 = mkV2 (mkV "linere" "lino" "levi" "litus ") ; -- [XXXCO] :: smear, plaster (with); seal (wine jar); erase/rub over; befoul; cover/overlay; linostimus_A = mkA "linostimus" "linostima" "linostimum" ; -- [FEXFE] :: linen-, of linen; + linquo_V2 = mkV2 (mkV "linquere" "linquo" "liqui" "lictus ") ; -- [XXXAS] :: leave, quit, forsake; abandon, desist from; allow to remain in place; bequeath; linteamen_N_N = mkN "linteamen" "linteaminis " neuter ; -- [XXXEO] :: linen cloth; linteatus_A = mkA "linteatus" "linteata" "linteatum" ; -- [XXXEC] :: clothed in linen; linteo_M_N = mkN "linteo" "linteonis " masculine ; -- [BTXFS] :: linen-weaver; @@ -23211,19 +24972,22 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lintriculus_M_N = mkN "lintriculus" ; -- [XXXFS] :: small boat; linum_N_N = mkN "linum" ; -- [XXXDX] :: flax, linen cloth/thread; rope; fishing line; (hunter's/fisher's) net; lipara_F_N = mkN "lipara" ; -- [XBXFS] :: emollient plaster; (also proper name); + lippio_V = mkV "lippire" "lippio" nonExist nonExist; -- [XBXEC] :: have sore eyes, be bleary-eyed; lippus_A = mkA "lippus" "lippa" "lippum" ; -- [XXXDX] :: having watery or inflamed eyes; lipsanotheca_F_N = mkN "lipsanotheca" ; -- [FEXFE] :: storehouse for relics; liquamen_N_N = mkN "liquamen" "liquaminis " neuter ; -- [XXXEO] :: fluid, liquid; (esp. fish sauce/garum); liquid mixture (L+S); lye (late); liquamentum_N_N = mkN "liquamentum" ; -- [DXXFS] :: mixture; concoction; liquatio_F_N = mkN "liquatio" "liquationis " feminine ; -- [XXXFS] :: melting; + liquefacio_V2 = mkV2 (mkV "liquefacere" "liquefacio" "liquefeci" "liquefactus ") ; -- [XXXCO] :: melt, dissolve; liquefy; make (melody) clear and sweet (liquid); liquefactio_F_N = mkN "liquefactio" "liquefactionis " feminine ; -- [GXXEK] :: liquefaction; liquefio_V = mkV "liqueferi" ; -- [XXXCO] :: be/become melted/dissolved/liquefied; (liquefacio PASS); liqueo_V = mkV "liquere" ; -- [XXXDX] :: be in molten/liquid state; be clear to a person; be evident; --- TODO liquesco_V : V2 liquesco, liquescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: become liquid/fluid, melt, liquefy; decompose, putrefy; grow soft/effeminate; + liquesco_V = mkV "liquescere" "liquesco" nonExist nonExist ; -- [XXXDX] :: become liquid/fluid, melt, liquefy; decompose, putrefy; grow soft/effeminate; liquet_V0 = mkV0 "liquet" ; -- [XXXDX] :: it is proven, guilt is established; [non ~ => not proven as a verdict/N.L.]; --- SLASHSTUFF liquidus_A : A2 liquidus, liquida -um, liquidior -or -us, liquidissimus -a -um -- [XXXBX] :: clear, limpid, pure, unmixed; liquid; flowing, without interruption; smooth; + liquidus_A = mkA "liquidus" ; -- [XXXBX] :: clear, limpid, pure, unmixed; liquid; flowing, without interruption; smooth; liquo_V = mkV "liquare" ; -- [XXXDX] :: melt; strain; liquor_M_N = mkN "liquor" "liquoris " masculine ; -- [XXXBX] :: fluid, liquid; + liquor_V = mkV "liqui" "liquor" nonExist ; -- [XXXDX] :: become liquid, melt away; dissolve (into tears); waste away; flow; lis_F_N = mkN "lis" "litis " feminine ; -- [XXXBX] :: lawsuit; quarrel; litania_F_N = mkN "litania" ; -- [FEXDM] :: litany; litatio_F_N = mkN "litatio" "litationis " feminine ; -- [BEXFS] :: favorable sacrifice; @@ -23262,6 +25026,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lituus_M_N = mkN "lituus" ; -- [XXXDX] :: curved staff carried by augurs; a kind of war-trumpet curved at one end; livens_A = mkA "livens" "liventis"; -- [XXXES] :: bluish; lead-colored; envious; liveo_V = mkV "livere" ; -- [XXXDX] :: be livid or discolored; be envious; + livesco_V = mkV "livescere" "livesco" "livui" nonExist; -- [XXXES] :: become livid; become black and blue; become envious; lividulus_A = mkA "lividulus" "lividula" "lividulum" ; -- [XXXEC] :: rather envious; lividus_A = mkA "lividus" "livida" "lividum" ; -- [XXXDX] :: livid, slate-colored; discolored by bruises; envious, spiteful; livor_M_N = mkN "livor" "livoris " masculine ; -- [XXXDX] :: bluish discoloration (produced by bruising, etc); envy, spite; @@ -23317,7 +25082,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg longinquo_Adv = mkAdv "longinquo" ; -- [XXXFO] :: far/long way (off), distant, at a distance; for/after a long while/interval; longinquo_V2 = mkV2 (mkV "longinquare") ; -- [DXXES] :: put far off, remove to a distance; put far away from (Souter); longinquom_Adv = mkAdv "longinquom" ; -- [DXXFS] :: far/long way (off), distant, at a distance; for/after a long while/interval; --- SLASHSTUFF longinquus_A : A2 longinquus, longinqua -um, longinquior -or -us, longinquissimus -a -um -- [XXXDX] :: remote, distant, far off; lasting, of long duration; + longinquus_A = mkA "longinquus" ; -- [XXXDX] :: remote, distant, far off; lasting, of long duration; longitudo_F_N = mkN "longitudo" "longitudinis " feminine ; -- [GSXEK] :: |longitude; longiturnitas_F_N = mkN "longiturnitas" "longiturnitatis " feminine ; -- [EXXES] :: duration; length of days (Vulgate); longiturnus_A = mkA "longiturnus" "longiturna" "longiturnum" ; -- [EXXFS] :: long, of long duration; many (days) (Vulgate); @@ -23325,13 +25090,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg longulus_A = mkA "longulus" "longula" "longulum" ; -- [XXXEC] :: rather long; longurium_N_N = mkN "longurium" ; -- [XXXDX] :: long pole; longurius_M_N = mkN "longurius" ; -- [XXXDX] :: long pole; --- SLASHSTUFF longus_A : A2 longus, longa -um, longior -or -us, longissimus -a -um -- [XXXAO] :: long; tall; tedious, taking long time; boundless; far; of specific length/time; + longus_A = mkA "longus" ; -- [XXXAO] :: long; tall; tedious, taking long time; boundless; far; of specific length/time; lophos_M_N = mkN "lophos" "lophi " masculine ; -- [XAHNO] :: crest; comb (chicken/cock); loquacitas_F_N = mkN "loquacitas" "loquacitatis " feminine ; -- [XXXDX] :: talkativeness; loquaculus_A = mkA "loquaculus" "loquacula" "loquaculum" ; -- [XXXEC] :: rather talkative; loquax_A = mkA "loquax" "loquacis"; -- [XXXDX] :: talkative, loquacious; loquela_F_N = mkN "loquela" ; -- [XXXCO] :: speech, utterance; loquella_F_N = mkN "loquella" ; -- [XXXCO] :: speech, utterance; + loquor_V = mkV "loqui" "loquor" "locutus sum " ; -- [XXXAX] :: speak, tell; talk; mention; say, utter; phrase; loramentum_N_N = mkN "loramentum" ; -- [XXXIO] :: strap; lorarius_M_N = mkN "lorarius" ; -- [XXXES] :: flogger; harness-maker; loratus_A = mkA "loratus" "lorata" "loratum" ; -- [XXXEC] :: bound with thongs; @@ -23348,7 +25114,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lotor_M_N = mkN "lotor" "lotoris " masculine ; -- [FXXEK] :: laundryman; lotos_F_N = mkN "lotos" "loti " feminine ; -- [XAXCO] :: lotus, flower of forgetfulness; water lily; trefoil; nettle-tree, pipe from it; lotos_M_N = mkN "lotos" "loti " masculine ; -- [XAXCO] :: lotus, flower of forgetfulness; water lily; trefoil; nettle-tree, pipe from it; --- SLASHSTUFF lotus_A : A2 lotus, lota -um, lotior -or -us, lotissimus -a -um -- [XXXBO] :: elegant, fashionable; sumptuous/luxurious; fine, well turned out; washed/clean; + lotus_A = mkA "lotus" ; -- [XXXBO] :: elegant, fashionable; sumptuous/luxurious; fine, well turned out; washed/clean; lotus_C_N = mkN "lotus" ; -- [XAXCO] :: lotus, flower of forgetfulness; water lily; trefoil; nettle-tree, pipe from it; lous_F_N = mkN "lous" ; -- [XXXDX] :: lotus plant; nettle plant; lubens_A = mkA "lubens" "lubentis"; -- [XXXCO] :: willing, cheerful; glad, pleased; @@ -23364,6 +25130,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lucellum_N_N = mkN "lucellum" ; -- [XXXDX] :: small or petty gain; luceo_V = mkV "lucere" ; -- [XXXBO] :: ||be bright/resplendent; be visible, show up; [lucet => it is (becoming) light]; lucerna_F_N = mkN "lucerna" ; -- [XXXDX] :: oil lamp; midnight oil; + lucesco_V = mkV "lucescere" "lucesco" "luxi" nonExist; -- [XXXDO] :: begin to shine; grow light (of the day), dawn; (usu. IMPERS); + lucesct_V0 = mkV0 "lucesct"; -- [XXXDO] :: it grows light, it is getting light, dawn is coming/breaking, day is breaking; lucido_V = mkV "lucidare" ; -- [FXXEM] :: elucidate; lucidus_A = mkA "lucidus" "lucida" "lucidum" ; -- [XXXBX] :: bright, shining; clear; lucifer_A = mkA "lucifer" "lucifera" "luciferum" ; -- [XXXDX] :: light bringing; @@ -23371,9 +25139,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lucifluus_A = mkA "lucifluus" "luciflua" "lucifluum" ; -- [XXXFS] :: light-streaming; glorious; lucifugus_A = mkA "lucifugus" "lucifuga" "lucifugum" ; -- [XXXDX] :: avoiding the light of day; lucinaria_F_N = mkN "lucinaria" ; -- [FXXEN] :: lamp; + lucisco_V = mkV "luciscere" "lucisco" "luxi" nonExist; -- [XXXDO] :: begin to shine; grow light (of the day), dawn; (usu. IMPERS); + lucisct_V0 = mkV0 "lucisct"; -- [XXXDO] :: it grows light, it is getting light, dawn is coming/breaking, day is breaking; lucius_M_N = mkN "lucius" ; -- [FXXEK] :: pike; lucrativus_A = mkA "lucrativus" "lucrativa" "lucrativum" ; -- [XXXES] :: gainful; L:bequeathed; --- TODO lucrifio_V : V2 lucrifio, lucrifere, -, lucrifactus -- Declension: 3rd -- Comment: [XXXFS] :: gain; receive as profit; (passive form of lucrifacio); + lucrifacio_V2 = mkV2 (mkV "lucrifacere" "lucrifacio" nonExist nonExist) ; -- [XXXEC] :: gain, receive as profit; + lucrifio_V = mkV "lucrifere" "lucrifio" "lucrifactus" ; -- [XXXFS] :: gain; receive as profit; (passive form of lucrifacio); lucrifuga_M_N = mkN "lucrifuga" ; -- [XXXFS] :: non-profiteer; one who shuns gains; lucror_V = mkV "lucrari" ; -- [XXXDX] :: gain, win; make a profit (out of ); lucrosus_A = mkA "lucrosus" "lucrosa" "lucrosum" ; -- [XXXDX] :: gainful, lucrative; @@ -23408,6 +25179,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ludimagister_M_N = mkN "ludimagister" ; -- [XXXFS] :: teacher; school-master; ludio_M_N = mkN "ludio" "ludionis " masculine ; -- [XDXEO] :: dancer; stage performer; ludius_M_N = mkN "ludius" ; -- [XDXEO] :: dancer; stage performer; + ludo_V2 = mkV2 (mkV "ludere" "ludo" "lusi" "lusus ") ; -- [XXXAX] :: play, mock, tease, trick; ludus_M_N = mkN "ludus" ; -- [XXXBX] :: game, play, sport, pastime, entertainment, fun; school, elementary school; luella_F_N = mkN "luella" ; -- [XXXEC] :: expiation; lues_F_N = mkN "lues" "luis " feminine ; -- [XXXDX] :: plague, pestilence; scourge, affliction; @@ -23427,6 +25199,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg luno_V = mkV "lunare" ; -- [XXXDX] :: make crescent-shaped, curve; lunter_F_N = mkN "lunter" "luntris " feminine ; -- [BXXFS] :: boat, skiff; (archaic form of linter); lunter_M_N = mkN "lunter" "luntris " masculine ; -- [BXXFS] :: boat, skiff; (archaic form of linter); + luo_V2 = mkV2 (mkV "luere" "luo" "lui" "lutus ") ; -- [XXXBO] :: ||fulfill (promise), make good; discharge (debt); avert (trouble) by expiation; lupa_F_N = mkN "lupa" ; -- [XXXDX] :: she-wolf; prostitute; lupanar_N_N = mkN "lupanar" "lupanaris " neuter ; -- [XXXDX] :: brothel; lupatria_F_N = mkN "lupatria" ; -- [XXXDX] :: term of abuse for a woman; @@ -23435,6 +25208,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lupinum_N_N = mkN "lupinum" ; -- [XXXES] :: lupin; fake money; lupinus_A = mkA "lupinus" "lupina" "lupinum" ; -- [XXXDX] :: of or belonging to a wolf; made of wolf-skin; lupinus_M_N = mkN "lupinus" ; -- [XXXES] :: lupin; fake money; + lupio_V = mkV "lupire" "lupio" "lupivi" "lupitus "; -- [XAXFO] :: cry, utter the natural cry of the kite; lupulus_M_N = mkN "lupulus" ; -- [GXXEK] :: hops; lupus_M_N = mkN "lupus" ; -- [XXXAX] :: wolf; grappling iron; lurchinabundus_A = mkA "lurchinabundus" "lurchinabunda" "lurchinabundum" ; -- [XXXFO] :: eating greedily; guzzling, gorging; devouring; @@ -23462,7 +25236,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg lustrum_N_N = mkN "lustrum" ; -- [XXXBO] :: purifying/cleansing ceremony; (by censors every 5 years); period of 5/4 years; luteolus_A = mkA "luteolus" "luteola" "luteolum" ; -- [XXXDX] :: yellow; luter_M_N = mkN "luter" "luteris " masculine ; -- [EXXES] :: hand basin; washing/bath tub; laver/brazen vessel for ablutions of priests; --- TODO lutesco_V : V2 lutesco, lutescere, -, - -- Declension: 3rd -- Comment: [XXXFS] :: become muddy; + lutesco_V = mkV "lutescere" "lutesco" nonExist nonExist ; -- [XXXFS] :: become muddy; luteus_A = mkA "luteus" "lutea" "luteum" ; -- [XXXDX] :: yellow; saffron; of mud or clay; good for nothing; luticipulum_N_N = mkN "luticipulum" ; -- [GXXEK] :: mudguard; lutito_V2 = mkV2 (mkV "lutitare") ; -- [XXXFS] :: bedaub; bring into contempt; @@ -23506,10 +25280,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg maccus_M_N = mkN "maccus" ; -- [XXXFO] :: fool; clown in the Atellan farces; macea_F_N = mkN "macea" ; -- [FWXEM] :: mace; club; macellum_N_N = mkN "macellum" ; -- [XXXDX] :: provision-market; --- SLASHSTUFF macer_A : A2 macer, macra -um, macrior -or -us, macerrimus -a -um -- [XXXDX] :: thin (men, animals, plants), scraggy, lean, small, meager; thin (soil), poor; + macer_A = mkA "macer" ; -- [XXXDX] :: thin (men, animals, plants), scraggy, lean, small, meager; thin (soil), poor; maceria_F_N = mkN "maceria" ; -- [XXXCO] :: wall (of brick/stone); (esp. one enclosing a garden); maceries_F_N = mkN "maceries" "maceriei " feminine ; -- [XXXCO] :: wall (of brick/stone); (esp. one enclosing a garden); macero_V = mkV "macerare" ; -- [XXXDX] :: make wet/soft, soak/steep/bathe; soften; wear down, exhaust; worry, annoy/vex; + macesco_V = mkV "macescere" "macesco" nonExist nonExist; -- [XXXDO] :: become thin, grow lean, become meager/poor; wither/shrivel (of fruit); machaera_F_N = mkN "machaera" ; -- [XWXCO] :: single-edged sword; Persian or Arab sword (late); weapon; machina_F_N = mkN "machina" ; -- [XXXBX] :: machine; siege engine; scheme; machinalis_A = mkA "machinalis" "machinalis" "machinale" ; -- [GXXEK] :: machine-like; @@ -23520,9 +25295,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg machinor_V = mkV "machinari" ; -- [XXXDX] :: devise; plot; macia_F_N = mkN "macia" ; -- [FWXEM] :: mace; club; macies_F_N = mkN "macies" "maciei " feminine ; -- [XXXDX] :: leanness, meagerness; poverty; --- SLASHSTUFF macilentus_A : A2 macilentus, macilenta -um, macilentior -or -us, macilentissimus -a -um -- [XXXEO] :: thin, lean; meager (L+S); + macilentus_A = mkA "macilentus" ; -- [XXXEO] :: thin, lean; meager (L+S); macium_N_N = mkN "macium" ; -- [FWXFM] :: mace; club; --- TODO macresco_V : V2 macresco, macrescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: become thin, waste away; + macresco_V = mkV "macrescere" "macresco" nonExist nonExist ; -- [XXXDX] :: become thin, waste away; macrobioticus_A = mkA "macrobioticus" "macrobiotica" "macrobioticum" ; -- [GBXEK] :: macrobiotic; macrocollum_N_N = mkN "macrocollum" ; -- [XXXEC] :: paper of the largest size; macrocosmicus_A = mkA "macrocosmicus" "macrocosmica" "macrocosmicum" ; -- [GSXEK] :: macrocosmic; @@ -23532,21 +25307,22 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg macronozia_F_N = mkN "macronozia" ; -- [FBXEM] :: prolonged illness; macroscopium_N_N = mkN "macroscopium" ; -- [GXXEK] :: gnarl; mactator_M_N = mkN "mactator" "mactatoris " masculine ; -- [XXXFO] :: slaughterer, one who slaughters/kills; --- IGNORED macte_A : A2 macte, undeclined -- [XXXDX] :: well done! good! bravo! (VOC of mactus, N implied) (macte S, macti P); --- IGNORED macti_A : A2 macti, undeclined -- [XXXDX] :: well done! good! bravo! (VOC of mactus, N implied) (macte S, macti P); + macte_A = constA "macte" ; -- [XXXDX] :: well done! good! bravo! (VOC of mactus, N implied) (macte S, macti P); + macti_A = constA "macti" ; -- [XXXDX] :: well done! good! bravo! (VOC of mactus, N implied) (macte S, macti P); macto_V = mkV "mactare" ; -- [XXXDX] :: magnify, honor; sacrifice; slaughter, destroy; mactus_A = mkA "mactus" "macta" "mactum" ; -- [XXXDX] :: of the Gods, worshiped, honored; macula_F_N = mkN "macula" ; -- [XXXDX] :: spot, stain, blemish; dishonor; mesh in a net; maculo_V = mkV "maculare" ; -- [XXXDX] :: spot; pollute; dishonor, taint; maculosus_A = mkA "maculosus" "maculosa" "maculosum" ; -- [XXXDX] :: spotted; disreputable; + madefacio_V2 = mkV2 (mkV "madefacere" "madefacio" "madefeci" "madefactus ") ; -- [XXXCO] :: wet/moisten, make wet/moist/drunk; soak/drench/steep; intoxicate/soak (w/drink); madefactus_A = mkA "madefactus" "madefacta" "madefactum" ; -- [XXXDX] :: wet, soaked, stained; madefio_V = mkV "madeferi" ; -- [XXXCO] :: be moistened, be made wet; be soaked/drenched/steeped/drunk; (madefaci PASS); madeo_V = mkV "madere" ; -- [XXXDX] :: be wet (w/tears/perspiration), be dripping/sodden; --- TODO madesco_V : V2 madesco, madescere, madui, - -- Declension: 3rd -- Comment: [XXXDX] :: become wet/moist; + madesco_V2 = mkV2 (mkV "madescere" "madesco" "madui" nonExist ) ; -- [XXXDX] :: become wet/moist; madide_Adv = mkAdv "madide" ; -- [XXXDX] :: so as to be dripping/sodden/drenched/thoroughly wet; drunkenly; madidus_A = mkA "madidus" "madida" "madidum" ; -- [XXXDX] :: wet, moist; dripping, juicy; sodden, drenched; drunk, tipsy; steeped in; maeander_M_N = mkN "maeander" ; -- [XXXCO] :: wavy line; river famous for winding path; roundabout ways/twists/turnings (pl.); --- IGNORED maeleth_N : N1 maeleth, undeclined -- N -- [EDQFE] :: harp, lute (Hebrew); + maeleth_N = constN "maeleth" neuter ; -- [EDQFE] :: harp, lute (Hebrew); maena_F_N = mkN "maena" ; -- [XAXEC] :: small sea-fish; maenianum_N_N = mkN "maenianum" ; -- [FXXEK] :: balcony; maerens_A = mkA "maerens" "maerentis"; -- [XXXCO] :: sad, melancholy; mournful, gloomy woeful, doleful; mourning, lamenting (L+S); @@ -23559,7 +25335,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg maestitia_F_N = mkN "maestitia" ; -- [XXXCO] :: sadness, sorrow, grief; source of grief; dullness, gloom; maestitudo_F_N = mkN "maestitudo" "maestitudinis " feminine ; -- [XXXEO] :: sadness, sorrow, grief; source of grief; dullness, gloom; maesto_V2 = mkV2 (mkV "maestare") ; -- [XXXEO] :: grieve, make sad; afflict (L+S); --- SLASHSTUFF maestus_A : A2 maestus, maesta -um, maestior -or -us, maestissimus -a -um -- [XXXAO] :: sad/unhappy; mournful/gloomy; mourning; stern/grim; ill-omened/inauspicious; + maestus_A = mkA "maestus" ; -- [XXXAO] :: sad/unhappy; mournful/gloomy; mourning; stern/grim; ill-omened/inauspicious; maevia_F_N = mkN "maevia" ; -- [DLXES] :: anywoman (legal); Maevia, Roman proper name; maevius_M_N = mkN "maevius" ; -- [DLXES] :: anyman (legal); Maevius, Roman proper name; (wretched poet Virgil contemporary); magia_F_N = mkN "magia" ; -- [XXXEO] :: magic; sorcery; @@ -23591,7 +25367,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg magnificenter_Adv = mkAdv "magnificenter" ; -- [XXXFO] :: splendidly, in fine/lordly manner/language; superbly; proudly/boastfully; magnificentia_F_N = mkN "magnificentia" ; -- [XXXBO] :: greatness; loftiness, nobleness; generosity; grandeur, splendor, luxury; pride; magnifico_V2 = mkV2 (mkV "magnificare") ; -- [XXXDO] :: prize, esteem greatly; praise, extol; --- SLASHSTUFF magnificus_A : A2 magnificus, magnifica -um, magnificentior -or -us, magnificentissimus -a -u -- [XXXBO] :: splendid/excellent/sumptuous/magnificent/stately; noble/eminent; proud/boastful; + magnificus_A = mkA "magnificus" ; -- [XXXBO] :: splendid/excellent/sumptuous/magnificent/stately; noble/eminent; proud/boastful; magniloquentia_F_N = mkN "magniloquentia" ; -- [XXXDX] :: exalted diction; braggadocio; magniloquus_A = mkA "magniloquus" "magniloqua" "magniloquum" ; -- [XXXDX] :: boastful; magnitudo_F_N = mkN "magnitudo" "magnitudinis " feminine ; -- [XXXAX] :: size, magnitude, bulk; greatness. importance, intensity; @@ -23600,13 +25376,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg magnuficenter_Adv = mkAdv "magnuficenter" ; -- [XXXFO] :: splendidly, in fine/lordly manner/language; superbly; proudly/boastfully; magnuficentia_F_N = mkN "magnuficentia" ; -- [XXXBO] :: greatness; loftiness, nobleness; generosity; grandeur, splendor, luxury; pride; magnufico_V2 = mkV2 (mkV "magnuficare") ; -- [XXXDO] :: prize, esteem greatly; praise, extol; --- SLASHSTUFF magnuficus_A : A2 magnuficus, magnufica -um, magnuficentior -or -us, magnuficentissimus -a -u -- [XXXBO] :: splendid/excellent/sumptuous/magnificent/stately; noble/eminent; proud/boastful; --- SLASHSTUFF magnus_A : A2 magnus, magna -um, major -or -us, maximus -a -um -- [XXXAO] :: ||full/complete/utter/pure; intense; loud; at high price; notable/famous; old; + magnuficus_A = mkA "magnuficus" ; -- [XXXBO] :: splendid/excellent/sumptuous/magnificent/stately; noble/eminent; proud/boastful; + magnus_A = mkA "magnus" ; -- [XXXAO] :: ||full/complete/utter/pure; intense; loud; at high price; notable/famous; old; magonicum_N_N = mkN "magonicum" ; -- [GXXEK] :: mayonnaise; magus_A = mkA "magus" "maga" "magum" ; -- [XXXDX] :: magic, magical; magus_M_N = mkN "magus" ; -- [XXXDX] :: wise/learned man; magician (Persian); astrologer; maharaia_M_N = mkN "maharaia" ; -- [GXXEK] :: maharaja; --- IGNORED maheleth_N : N1 maheleth, undeclined -- N -- [EDQFE] :: harp, lute (Hebrew); + maheleth_N = constN "maheleth" neuter ; -- [EDQFE] :: harp, lute (Hebrew); mahemium_N_N = mkN "mahemium" ; -- [FLXFJ] :: mayhem; maizium_N_N = mkN "maizium" ; -- [GAXEK] :: maize; majalis_M_N = mkN "majalis" "majalis " masculine ; -- [XAXDO] :: gelded/castrated hog/boar; barrow pig/hog; swine; (term of abuse); @@ -23632,15 +25408,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg maledicax_A = mkA "maledicax" "maledicacis"; -- [XXXFO] :: slanderous; abusive; scurrilous; maledice_Adv = mkAdv "maledice" ; -- [XXXEO] :: slanderously; abusively; scurrilously; maledicens_A = mkA "maledicens" "maledicentis"; -- [XXXCO] :: slanderous; abusive; scurrilous; + maledico_V2 = mkV2 (mkV "maledicere" "maledico" "maledixi" "maledictus ") ; -- [XXXDX] :: speak ill/evil of, revile, slander; abuse, curse; maledictio_F_N = mkN "maledictio" "maledictionis " feminine ; -- [XXXDO] :: slander/abuse; evil speaking, reviling; curse/punishment/condemnation (Souter); maledictum_N_N = mkN "maledictum" ; -- [XXXCO] :: insult, reproach, taunt; maledicus_A = mkA "maledicus" "maledica" "maledicum" ; -- [XXXCO] :: slanderous; abusive; scurrilous; evil-speaking; (of persons/remarks); + malefacio_V = mkV "malefacere" "malefacio" "malefeci" "malefactus "; -- [XXXCO] :: do evil/wrong/harm/injury/mischief; act wickedly; malefactor_M_N = mkN "malefactor" "malefactoris " masculine ; -- [EXXEX] :: malefactor; wrongdoer, evildoer; malefica_F_N = mkN "malefica" ; -- [XXXFO] :: witch; sorceress; malefice_Adv = mkAdv "malefice" ; -- [XXXFO] :: wickedly; viciously; mischievously (L+S); maliciously (Ecc); maleficentia_F_N = mkN "maleficentia" ; -- [XXXNO] :: wickedness; viciousness; evil/evil-doing (L+S); ill conduct; injury, harm; + maleficio_V = mkV "maleficere" "maleficio" nonExist nonExist; -- [XXXFO] :: practice sorcery/black magic; maleficium_N_N = mkN "maleficium" ; -- [XXXCO] :: crime/misdeed/offense; injury/hurt/wrong; fraud/deception (L+S); sorcery; pest; --- SLASHSTUFF maleficus_A : A2 maleficus, malefica -um, maleficentior -or -us, maleficentissimus -a -um -- [XXXCO] :: wicked, criminal, nefarious, evil; harmful, noxious, injurious; of black magic; + maleficus_A = mkA "maleficus" ; -- [XXXCO] :: wicked, criminal, nefarious, evil; harmful, noxious, injurious; of black magic; maleficus_M_N = mkN "maleficus" ; -- [XXXCO] :: criminal, wrongdoer; magician, enchanter, sorcerer (L+S); malefidus_A = mkA "malefidus" "malefida" "malefidum" ; -- [FXXEM] :: faithless; malefio_V = mkV "maleferi" ; -- [DXXES] :: be injured; (malefacio PASS); @@ -23654,7 +25433,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg malevolus_M_N = mkN "malevolus" ; -- [XXXFS] :: enemy/foe/ill-wisher; ill-disposed person; malicorium_N_N = mkN "malicorium" ; -- [XAXEO] :: pomegranate rind; (used in medicine); malifer_A = mkA "malifer" "malifera" "maliferum" ; -- [XXXDX] :: apple-bearing; --- SLASHSTUFF malificus_A : A2 malificus, malifica -um, malificentior -or -us, malificentissimus -a -um -- [XXXCO] :: wicked, criminal, nefarious, evil; harmful, noxious, injurious; of black magic; + malificus_A = mkA "malificus" ; -- [XXXCO] :: wicked, criminal, nefarious, evil; harmful, noxious, injurious; of black magic; malignans_A = mkA "malignans" "malignantis"; -- [EXXCS] :: wicked; malicious; malignans_M_N = mkN "malignans" "malignantis " masculine ; -- [EXXDS] :: wicked/bad/malicious person; the wicked (pl.); malignitas_F_N = mkN "malignitas" "malignitatis " feminine ; -- [XXXDX] :: ill-will, spite, malice; niggardliness; @@ -23683,7 +25462,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg malogranatum_N_N = mkN "malogranatum" ; -- [EAXCS] :: pomegranate; maltum_N_N = mkN "maltum" ; -- [GXXEK] :: malt; malum_N_N = mkN "malum" ; -- [XXXDX] :: evil, mischief; disaster, misfortune, calamity, plague; punishment; harm/hurt; --- SLASHSTUFF malus_A : A2 malus, mala -um, pejor -or -us, - -- [XXXAX] :: bad, evil, wicked; ugly; unlucky; + malus_A = mkA "malus" ; -- [XXXAX] :: bad, evil, wicked; ugly; unlucky; malus_F_N = mkN "malus" ; -- [XXXDX] :: apple tree; malus_M_N = mkN "malus" ; -- [XXXDX] :: mast; beam; tall pole, upright pole; standard, prop, staff; malva_F_N = mkN "malva" ; -- [XXXDX] :: mallow-plant; @@ -23691,7 +25470,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg mamilla_F_N = mkN "mamilla" ; -- [XXXEC] :: breast, teat; mamma_F_N = mkN "mamma" ; -- [XXXDX] :: breast, udder; mammale_N_N = mkN "mammale" "mammalis " neuter ; -- [GXXEK] :: mammal; --- TODO mammon_N : N1 mammon, mammos/is -- M -- [EEXFE] :: riches, wealth; (gain of wickedness, quasi-personification of covetousness OED); + mammon_1_N = mkN "mammon" "mammis" masculine ; -- [EEXFE] :: riches, wealth; (gain of wickedness, quasi-personification of covetousness OED); + mammon_2_N = mkN "mammon" "mammos" masculine ; -- [EEXFE] :: riches, wealth; (gain of wickedness, quasi-personification of covetousness OED); mammona_M_N = mkN "mammona" ; -- [EEXEP] :: riches, wealth; (gain of wickedness, quasi-personification of covetousness OED); mammonas_M_N = mkN "mammonas" "mammonae " masculine ; -- [EEXEP] :: riches, wealth; (gain of wickedness, quasi-personification of covetousness OED); mamona_M_N = mkN "mamona" ; -- [EEXEP] :: riches, wealth; (gain of wickedness, quasi-personification of covetousness OED); @@ -23699,7 +25479,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg mamzer_A = mkA "mamzer" "mamzeris"; -- [EEXFS] :: bastard, illegitimate; mamzer_F_N = mkN "mamzer" "mamzeris " feminine ; -- [EEXFS] :: bastard, one of illegitimate birth; whoreson (Souter); (Hebrew); mamzer_M_N = mkN "mamzer" "mamzeris " masculine ; -- [EEXFS] :: bastard, one of illegitimate birth; whoreson (Souter); (Hebrew); --- IGNORED man_N : N1 man, undeclined -- N -- [EXQEW] :: manna; (food from God in Siani); [man/man hu => (Hebrew) what/what is this]; + man_N = constN "man" neuter ; -- [EXQEW] :: manna; (food from God in Siani); [man/man hu => (Hebrew) what/what is this]; manceps_M_N = mkN "manceps" "mancipis " masculine ; -- [XXXDX] :: contractor, agent; mancipium_N_N = mkN "mancipium" ; -- [XXXDX] :: possession; formal purchase; slaves; mancipo_V = mkV "mancipare" ; -- [XXXDX] :: transfer, sell; surrender; @@ -23712,6 +25492,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg mandibula_F_N = mkN "mandibula" ; -- [DBXES] :: jaw; (not exactly jawbone = maxilla); mandibulum_N_N = mkN "mandibulum" ; -- [DBXES] :: jaw; (not exactly jawbone = maxilla); mando_V = mkV "mandare" ; -- [XXXAX] :: entrust, commit to one's charge, deliver over; commission; order, command; + mando_V2 = mkV2 (mkV "mandere" "mando" "mandi" "mansus ") ; -- [XXXDX] :: chew, champ, masticate, gnaw; eat, devour; lay waste; mandorla_F_N = mkN "mandorla" ; -- [EEXEE] :: nimbus framing figure; (recent) lenticular/almond-shaped panel (art); mandra_F_N = mkN "mandra" ; -- [XXXEC] :: stall, cattle pen; a herd of cattle; a draughtboard; mandragoras_M_N = mkN "mandragoras" "mandragorae " masculine ; -- [XAXDO] :: mandrake; (plant used in medicine as soporific/sleep inducing); @@ -23719,7 +25500,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg manduco_V2 = mkV2 (mkV "manducare") ; -- [XXXBO] :: chew, masticate, gnaw; eat, devour; manducor_V = mkV "manducari" ; -- [XXXCO] :: chew, masticate, gnaw; eat, devour; mane_Adv = mkAdv "mane" ; -- [XXXAX] :: in the morning; early in the morning; --- IGNORED mane_N : N1 mane, undeclined -- N -- [XXXDX] :: morning, morn; [multo mane => very early in the morning]; + mane_N = constN "mane" neuter ; -- [XXXDX] :: morning, morn; [multo mane => very early in the morning]; manentia_F_N = mkN "manentia" ; -- [EEXFS] :: permanence; permanency; maneo_V = mkV "manere" ; -- [XXXAX] :: remain, stay, abide; wait for; continue, endure, last; spend the night (sexual); manerium_N_N = mkN "manerium" ; -- [FXXEM] :: manor; manor-house; [~ dominium => demesne manor]; @@ -23727,7 +25508,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg manganum_N_N = mkN "manganum" ; -- [GSXEK] :: manganese; W: mangonel/mangonneau (stone-casting machine of war); mangifera_F_N = mkN "mangifera" ; -- [GAXEK] :: mango tree; mango_M_N = mkN "mango" "mangonis " masculine ; -- [XXXEZ] :: dealer (Collins); --- IGNORED manhu_N : N1 manhu, undeclined -- N -- [EAQFS] :: manna; (food from God for wandering Hebrews); [man hu => (Hebrew) what is this]; + manhu_N = constN "manhu" neuter ; -- [EAQFS] :: manna; (food from God for wandering Hebrews); [man hu => (Hebrew) what is this]; mania_F_N = mkN "mania" ; -- [GXXEK] :: mania; craze; maniacus_A = mkA "maniacus" "maniaca" "maniacum" ; -- [GXXEK] :: maniac; manibia_F_N = mkN "manibia" ; -- [BWXFX] :: general's share of the booty; prize-money; profits; (archaic form of manubia); @@ -23742,7 +25523,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg manifestativus_A = mkA "manifestativus" "manifestativa" "manifestativum" ; -- [FXXDF] :: manifestative; manifesting; demonstrative, reveling; manifesto_Adv = mkAdv "manifesto" ; -- [XXXCO] :: undeniably, red-handed, in the act; evidently, plainly, manifestly; manifesto_V2 = mkV2 (mkV "manifestare") ; -- [XXXCO] :: make visible/clearer/evident/plain; reveal, make known; disclose; clarify; --- SLASHSTUFF manifestus_A : A2 manifestus, manifesta -um, manifestior -or -us, manifestissimus -a -um -- [XXXBO] :: |clear, evident, plain, obvious; conspicuous, noticeable; unmistakable; + manifestus_A = mkA "manifestus" ; -- [XXXBO] :: |clear, evident, plain, obvious; conspicuous, noticeable; unmistakable; manioca_F_N = mkN "manioca" ; -- [GXXEK] :: cassava; maniplus_M_N = mkN "maniplus" ; -- [XXXDX] :: maniple, company of soldiers, one third of a cohort; handful, bundle; manipretium_N_N = mkN "manipretium" ; -- [XXXEC] :: wages, hire, reward; @@ -23752,7 +25533,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg manipulus_M_N = mkN "manipulus" ; -- [XXXDX] :: maniple, company of soldiers, one third of a cohort; handful, bundle; manis_M_N = mkN "manis" "manis " masculine ; -- [XXXDX] :: shades/ghosts of dead (pl.); gods of Lower World; corpse/remains; underworld; manna_F_N = mkN "manna" ; -- [XAXES] :: |manna, vegetable juice hardened to grains (Pliny); --- IGNORED manna_N : N1 manna, undeclined -- N -- [EAQES] :: manna; (food from God for wandering Hebrews); [man hu => (Hebrew) what is this]; + manna_N = constN "manna" neuter ; -- [EAQES] :: manna; (food from God for wandering Hebrews); [man hu => (Hebrew) what is this]; mannulus_M_N = mkN "mannulus" ; -- [XXXEC] :: pony; mannus_M_N = mkN "mannus" ; -- [XXXDX] :: pony; mano_V = mkV "manare" ; -- [XXXDX] :: flow, pour; be shed; be wet; spring; @@ -23762,8 +25543,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg mansionarius_M_N = mkN "mansionarius" ; -- [FEXFE] :: sexton/sacristan/custodian; holder of small benefice; lodging manager; resident; mansito_V = mkV "mansitare" ; -- [XXXDX] :: spend the night, stay; mansiuncula_F_N = mkN "mansiuncula" ; -- [EXXFS] :: little/small home/dwelling; + mansuefacio_V2 = mkV2 (mkV "mansuefacere" "mansuefacio" "mansuefeci" "mansuefactus ") ; -- [XXXCO] :: tame; civilize; make peaceful/quiet/docile; mansuefio_V = mkV "mansueferi" ; -- [XXXCO] :: become/be tamed/civilized/peaceful/docile; (mansuefacio PASS); mansues_A = mkA "mansues" "mansuis"; -- [DXXDS] :: tame; mild, gentle; soft (L+S); tamed; + mansuesco_V2 = mkV2 (mkV "mansuescere" "mansuesco" "mansuevi" "mansuetus ") ; -- [XXXCO] :: tame; become/grow tame; render/become mild/gentle/less harsh/severe; mansueto_V2 = mkV2 (mkV "mansuetare") ; -- [EXXFS] :: tame; make tame; subdue, soften (Souter); become subdued; restrain (Vulgate); mansuetudo_F_N = mkN "mansuetudo" "mansuetudinis " feminine ; -- [XXXDX] :: tameness, gentleness, mildness; clemency; mansuetus_A = mkA "mansuetus" "mansueta" "mansuetum" ; -- [XXXDX] :: tame; mild, gentle; less harsh/severe; @@ -23779,16 +25562,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg manualis_A = mkA "manualis" "manualis" "manuale" ; -- [XXXEC] :: fitted to the hand; manubia_F_N = mkN "manubia" ; -- [XXXDX] :: general's share of the booty (pl.); prize-money; profits; manubrium_N_N = mkN "manubrium" ; -- [XXXEC] :: haft, handle; handle-bar (Cal); + manucapio_V2 = mkV2 (mkV "manucapere" "manucapio" "manucepi" "manucaptus ") ; -- [FLXFM] :: go bail(for); undertake; manufactus_A = mkA "manufactus" "manufacta" "manufactum" ; -- [EXXES] :: hand-made; made by hand; made with hands; manufestarius_A = mkA "manufestarius" "manufestaria" "manufestarium" ; -- [XXXEO] :: flagrant (errors); caught in the act, caught redhanded (criminals); manufesto_Adv = mkAdv "manufesto" ; -- [XXXCO] :: undeniably, red-handed, in the act; evidently, plainly, manifestly; manufesto_V2 = mkV2 (mkV "manufestare") ; -- [XXXCO] :: make visible/clearer/evident/plain; reveal, make known; disclose; clarify; --- SLASHSTUFF manufestus_A : A2 manufestus, manufesta -um, manufestior -or -us, manufestissimus -a -um -- [XXXBO] :: |clear, evident, plain, obvious; conspicuous, noticeable; unmistakable; + manufestus_A = mkA "manufestus" ; -- [XXXBO] :: |clear, evident, plain, obvious; conspicuous, noticeable; unmistakable; manufollium_N_N = mkN "manufollium" ; -- [GXXEK] :: hand-ball; manulearius_M_N = mkN "manulearius" ; -- [XXXFO] :: maker of sleeved garments; manuleatus_A = mkA "manuleatus" "manuleata" "manuleatum" ; -- [XXXEO] :: w/(long) sleeves; (persons) wearing long-sleeved tunics (sign of effeminacy); manuleus_M_N = mkN "manuleus" ; -- [XXXEO] :: long sleeve; manumissio_F_N = mkN "manumissio" "manumissionis " feminine ; -- [XLXEO] :: manumission, release from authority of manus; freeing of slave; + manumitto_V2 = mkV2 (mkV "manumittere" "manumitto" "manumisi" "manumissus ") ; -- [XXXDX] :: release, free, set free/at liberty, emancipate; manuplus_M_N = mkN "manuplus" ; -- [XXXDX] :: maniple, company of soldiers, one third of a cohort; handful, bundle; manupretium_N_N = mkN "manupretium" ; -- [XXXEC] :: wages, hire, reward; manus_F_N = mkN "manus" "manus " feminine ; -- [XXXAX] :: hand, fist; team; gang, band of soldiers; handwriting; (elephant's) trunk; @@ -23806,10 +25591,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg marca_F_N = mkN "marca" ; -- [FLGCM] :: mark; (German gold/silver weight, coin); (11th century = ~8 ounces, later ~1); marcens_A = mkA "marcens" "marcentis"; -- [XXXCO] :: withered/dropping; exhausted/weak/feeble; heavy (eyes); apathetic/languid/jaded; marceo_V = mkV "marcere" ; -- [XXXDX] :: be enfeebled, weak or faint; + marcesco_V = mkV "marcescere" "marcesco" "marcui" nonExist; -- [XXXCO] :: wither, shrivel up; fade/pine away; become weak/enfeebled/languid/apathetic; marchio_M_N = mkN "marchio" "marchionis " masculine ; -- [GXXEK] :: marquis; marchionatus_M_N = mkN "marchionatus" "marchionatus " masculine ; -- [FLXFM] :: marquisate; office of marquis; marchionissa_F_N = mkN "marchionissa" ; -- [GXXEK] :: marchioness; marcidus_A = mkA "marcidus" "marcida" "marcidum" ; -- [XXXCO] :: withered/dropping/rotten; lacking rigidity; exhausted/weak; apathetic/languid; + marco_V = mkV "marcere" "marco" "marcui" "marcitus "; -- [XXXCO] :: be withered/flabby, droop/shrivel; flag/faint; be weak/enfeebled/idle/apathetic; marcor_M_N = mkN "marcor" "marcoris " masculine ; -- [XXXES] :: decay; faintness; marculus_M_N = mkN "marculus" ; -- [XXXEC] :: small hammer; mare_N_N = mkN "mare" "maris " neuter ; -- [XXXAX] :: sea; sea water; @@ -23910,11 +25697,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg matula_F_N = mkN "matula" ; -- [XXXDX] :: jar, vessel for liquids; chamber pot; blockhead; maturatio_F_N = mkN "maturatio" "maturationis " feminine ; -- [GXXEK] :: maturation; mature_Adv = mkAdv "mature" ; -- [XXXDX] :: quickly; at the right time; in time; early, prematurely; --- TODO maturesco_V : V2 maturesco, maturescere, maturui, - -- Declension: 3rd -- Comment: [XXXDX] :: become ripe, ripen mature; + maturesco_V2 = mkV2 (mkV "maturescere" "maturesco" "maturui" nonExist ) ; -- [XXXDX] :: become ripe, ripen mature; maturitas_F_N = mkN "maturitas" "maturitatis " feminine ; -- [XXXDX] :: ripeness; maturo_V = mkV "maturare" ; -- [XXXDX] :: ripen, hurry, make haste to, hasten; maturrimus_A = mkA "maturrimus" "maturrima" "maturrimum" ; -- [XXXDS] :: early, speedy; ripe; mature, mellow; timely, seasonable; --- SLASHSTUFF maturus_A : A2 maturus, matura -um, maturior -or -us, maturissimus -a -um -- [XXXAX] :: early, speedy; ripe; mature, mellow; timely, seasonable; + maturus_A = mkA "maturus" ; -- [XXXAX] :: early, speedy; ripe; mature, mellow; timely, seasonable; matutinus_A = mkA "matutinus" "matutina" "matutinum" ; -- [XXXDX] :: early; of the (early) morning; maumo_V = mkV "maumare" ; -- [GXXEK] :: meow; maxilla_F_N = mkN "maxilla" ; -- [XBXCO] :: jaw (viewed externally), lower part of the face; jaws/jaw-bones (usu. pl.); @@ -23996,6 +25783,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg mehercule_Interj = ss "mehercule" ; -- [XXXDX] :: by Hercules! assuredly, indeed; mehercules_Interj = ss "mehercules" ; -- [XXXDX] :: by Hercules! assuredly, indeed; meile_N_N = mkN "meile" "meilis " neuter ; -- [AXXFS] :: thousand (men); thousands; (archaic plural of mille); [milia (passuum) => mile]; + meio_V2 = mkV2 (mkV "meere" "meio" "mixi" "mictus ") ; -- [XXXDX] :: urinate, make water; ejaculate; (somewhat rude); mel_N_N = mkN "mel" "mellis " neuter ; -- [XXXBO] :: honey; sweetness; pleasant thing; darling/honey; [luna mellis => honeymoon]; melancholicus_A = mkA "melancholicus" "melancholica" "melancholicum" ; -- [XXXEC] :: having black bile, melancholy; melanurus_M_N = mkN "melanurus" ; -- [XXXEC] :: small edible sea-fish; @@ -24036,7 +25824,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg melotis_F_N = mkN "melotis" "melotidis " feminine ; -- [EAXFS] :: sheepskin; melum_N_N = mkN "melum" ; -- [XDXCO] :: song, tune, air, strain, lay, melody; hymn; melus_M_N = mkN "melus" ; -- [XDXCO] :: song, tune, air, strain, lay, melody; hymn; --- IGNORED mem_N : N1 mem, undeclined -- N -- [DEQEW] :: mem; (13th letter of Hebrew alphabet); (transliterate as M); + mem_N = constN "mem" neuter ; -- [DEQEW] :: mem; (13th letter of Hebrew alphabet); (transliterate as M); membrana_F_N = mkN "membrana" ; -- [XXXDX] :: membrane; skin; parchment; membratim_Adv = mkAdv "membratim" ; -- [XXXDX] :: limb by limb; membrum_N_N = mkN "membrum" ; -- [XXXAX] :: member, limb, organ; (esp.) male genital member; apartment, room; section; @@ -24085,6 +25873,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg mentastrum_N_N = mkN "mentastrum" ; -- [XAXFS] :: wild mint (Pliny); mentha_F_N = mkN "mentha" ; -- [XXXDX] :: mint; any cultivated mint; mentio_F_N = mkN "mentio" "mentionis " feminine ; -- [XXXDX] :: mention, making mention; calling to mind; naming; + mentior_V = mkV "mentiri" "mentior" "mentitus sum " ; -- [XXXBX] :: lie, deceive, invent; imitate; feign; pretend; speak falsely about; mento_M_N = mkN "mento" "mentonis " masculine ; -- [XXXFS] :: long-chin; one who has a long chin; mentula_F_N = mkN "mentula" ; -- [XXXDX] :: male sexual organ; (rude); (used as a term of abuse); mentum_N_N = mkN "mentum" ; -- [XBXCO] :: chin; projecting edge (architecture); @@ -24114,6 +25903,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg meretrix_F_N = mkN "meretrix" "meretricis " feminine ; -- [XXXCO] :: courtesan, kept woman; public prostitute; harlot; merga_F_N = mkN "merga" ; -- [XXXEC] :: two-pronged fork (pl.); merges_F_N = mkN "merges" "mergitis " feminine ; -- [XXXDX] :: sheaf of wheat; + mergo_V2 = mkV2 (mkV "mergere" "mergo" "mersi" "mersus ") ; -- [XXXBX] :: dip, plunge, immerse; sink, drown, bury; overwhelm; mergulus_M_N = mkN "mergulus" ; -- [XXXES] :: diver, kind of sea bird; (small gull); wick of a lamp; mergus_M_N = mkN "mergus" ; -- [XXXDX] :: sea-bird; (probably gull); meridianus_A = mkA "meridianus" "meridiana" "meridianum" ; -- [GSXEK] :: |meridian; @@ -24136,7 +25926,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg meschita_F_N = mkN "meschita" ; -- [GXXEK] :: mosque; mese_F_N = mkN "mese" "meses " feminine ; -- [FDXES] :: highest tetrachord note; middle-note (L+S); A-note; notes (pl.) above lowest; meses_M_N = mkN "meses" "mesae " masculine ; -- [XXXFO] :: north-east wind; --- IGNORED meson_N : N1 meson, undeclined -- N -- [FDXES] :: middle-note; + meson_N = constN "meson" neuter ; -- [FDXES] :: middle-note; mespila_F_N = mkN "mespila" ; -- [DAXNS] :: medlar-tree (Pliny); mespilum_N_N = mkN "mespilum" ; -- [XAXFS] :: medlar tree (Pliny); messis_F_N = mkN "messis" "messis " feminine ; -- [XXXBX] :: harvest, crop; harvest time; @@ -24174,6 +25964,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg methodos_F_N = mkN "methodos" "methodi " feminine ; -- [XXXDO] :: method; mode of proceeding; way of teaching (L+S); methodus_F_N = mkN "methodus" ; -- [XXXDS] :: method; mode of proceeding; way of teaching (L+S); road (Latham); methylicus_A = mkA "methylicus" "methylica" "methylicum" ; -- [GXXEK] :: methyl; + metior_V = mkV "metiri" "metior" "mensus sum " ; -- [XXXBX] :: measure, estimate; distribute, mete; traverse, sail/walk through; + meto_V2 = mkV2 (mkV "metere" "meto" "messui" "messus ") ; -- [XXXDX] :: reap; mow, cut off; metonymia_F_N = mkN "metonymia" ; -- [XGXFS] :: metonymy; change of name; substitution of attribute for name; metor_V = mkV "metari" ; -- [XXXDX] :: measure off, mark out; metreta_F_N = mkN "metreta" ; -- [XSXEC] :: Greek liquid measure; @@ -24185,7 +25977,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg metrum_N_N = mkN "metrum" ; -- [XSXEC] :: measure; meter; metuculosus_A = mkA "metuculosus" "metuculosa" "metuculosum" ; -- [XXXEC] :: timid; frightful; metuens_A = mkA "metuens" "metuentis"; -- [XXXFS] :: fearing; afraid; --- TODO metuo_V : V2 metuo, metuere, metui, - -- Declension: 3rd -- Comment: [XXXAX] :: fear; be afraid; stand in fear of; be apprehensive, dread; + metuo_V2 = mkV2 (mkV "metuere" "metuo" "metui" nonExist ) ; -- [XXXAX] :: fear; be afraid; stand in fear of; be apprehensive, dread; metus_M_N = mkN "metus" "metus " masculine ; -- [XXXAX] :: fear, anxiety; dread, awe; object of awe/dread; meus_A = mkA "meus" "mea" "meum" ; -- [XXXAX] :: my (personal possession); mine, of me, belonging to me; my own; to me; mica_F_N = mkN "mica" ; -- [XXXDX] :: particle, grain, crumb; @@ -24205,7 +25997,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg migratio_F_N = mkN "migratio" "migrationis " feminine ; -- [XXXDX] :: change of abode; move; migro_V = mkV "migrare" ; -- [XXXDX] :: transport; move; change residence/condition; go away; depart; remove; migrus_A = mkA "migrus" "migra" "migrum" ; -- [FXXEM] :: small, puny; --- IGNORED mil_A : A2 mil., abb. -- [XWXDX] :: military/soldier's; (abb. mil. for militum/militares); [tr. mil. => colonels]; + mil_A = constA "mil" ; -- [XWXDX] :: military/soldier's; (abb. mil. for militum/militares); [tr. mil. => colonels]; miles_M_N = mkN "miles" "militis " masculine ; -- [XWXAX] :: soldier; foot soldier; soldiery; knight (Latham); knight's fee/service; miliardarius_M_N = mkN "miliardarius" ; -- [GXXEK] :: multimillionaire; miliardum_N_N = mkN "miliardum" ; -- [GXXEK] :: billion; (ten to the ninth); @@ -24259,6 +26051,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg minerale_N_N = mkN "minerale" "mineralis " neuter ; -- [FLXDM] :: mineral; ore; mineralis_A = mkA "mineralis" "mineralis" "minerale" ; -- [FSXFF] :: mineral-, having the nature of mineral; obtained from the bowels of the earth; mineralogia_F_N = mkN "mineralogia" ; -- [GXXEK] :: mineralogy; + mingo_V2 = mkV2 (mkV "mingere" "mingo" "mixi" "mictus ") ; -- [XXXDX] :: make water, urinate; miniator_M_N = mkN "miniator" "miniatoris " masculine ; -- [GXXEK] :: miniaturist; miniatulus_A = mkA "miniatulus" "miniatula" "miniatulum" ; -- [XXXEO] :: vermilion; scarlet; colored red with cinnabar (HgS); painted vermilion; miniatura_F_N = mkN "miniatura" ; -- [GXXEK] :: miniature; midget; @@ -24280,6 +26073,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg minor_V = mkV "minari" ; -- [XXXBO] :: threaten, speak/act menacingly; make threatening movement; give indication of; minoritas_F_N = mkN "minoritas" "minoritatis " feminine ; -- [GXXEK] :: minority (age); minoro_V2 = mkV2 (mkV "minorare") ; -- [XXXFO] :: reduce, make less; + minuo_V2 = mkV2 (mkV "minuere" "minuo" "minui" "minutus ") ; -- [XXXBX] :: lessen, reduce, diminish, impair, abate; + minurrio_V = mkV "minurrire" "minurrio" nonExist nonExist; -- [XAXFO] :: chirp, twitter; (of birds); minurritio_F_N = mkN "minurritio" "minurritionis " feminine ; -- [XAXFO] :: chirping/twittering; (of birds); minus_Adv = mkAdv "minus" ; -- [XXXAX] :: less; not so well; not quite; minuscula_F_N = mkN "minuscula" ; -- [GXXEK] :: minuscule; @@ -24318,7 +26113,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg miscellus_A = mkA "miscellus" "miscella" "miscellum" ; -- [XLXEO] :: |mixed; [aes ~ => tablet with names of original holder of land and successors]; misceo_V = mkV "miscere" ; -- [XXXAX] :: mix, mingle; embroil; confound; stir up; misellus_A = mkA "misellus" "misella" "misellum" ; -- [XXXDX] :: poor, wretched; --- SLASHSTUFF miser_A : A2 miser, misera -um, miserior -or -us, miserrimus -a -um -- [XXXAX] :: poor, miserable, wretched, unfortunate, unhappy, distressing; + miser_A = mkA "miser" ; -- [XXXAX] :: poor, miserable, wretched, unfortunate, unhappy, distressing; miser_M_N = mkN "miser" ; -- [XXXDX] :: wretched people (pl.); miserabilis_A = mkA "miserabilis" "miserabilis" "miserabile" ; -- [XXXBX] :: wretched, miserable, pitiable; miserandus_A = mkA "miserandus" "miseranda" "miserandum" ; -- [XXXDX] :: pitiable, unfortunate; @@ -24327,7 +26122,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg misere_Adv = mkAdv "misere" ; -- [XXXDX] :: wretchedly, desperately; misereo_V = mkV "miserere" ; -- [DXXCO] :: pity, feel pity; show/have mercy/compassion/pity for (w/GEN); misereor_V = mkV "misereri" ; -- [DXXCO] :: pity, feel pity; show/have mercy/compassion/pity for (w/GEN); --- TODO miseresco_V : V2 miseresco, miserescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: have compassion (on/for) (w/GEN); + miseresco_V = mkV "miserescere" "miseresco" nonExist nonExist ; -- [XXXDX] :: have compassion (on/for) (w/GEN); miseret_V0 = mkV0 "miseret" ; -- [XXXCO] :: it distresses/grieves me; I am moved to pity, I feel sorry for (w/me + GEN); miseria_F_N = mkN "miseria" ; -- [XXXBX] :: misery, distress, woe, wretchedness, suffering; misericordaliter_Adv = mkAdv "misericordaliter" ; -- [FXXEM] :: mercifully; @@ -24335,6 +26130,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg misericors_A = mkA "misericors" "misericordis"; -- [XXXDX] :: merciful, tenderhearted; misero_V = mkV "miserare" ; -- [XXXCO] :: pity, feel sorry for; view with compassion; (vocal sorrow/compassion); miseror_V = mkV "miserari" ; -- [XXXDO] :: pity, feel sorry for; view with compassion; (vocal sorrow/compassion); + misfacio_V2 = mkV2 (mkV "misfacere" "misfacio" "misfeci" "misfactus ") ; -- [FXXEM] :: do wrong to; harm, injure, hurt; misinga_F_N = mkN "misinga" ; -- [GXXEK] :: titmouse; missa_F_N = mkN "missa" ; -- [EEXDX] :: Mass (eccl.); missibilis_A = mkA "missibilis" "missibilis" "missibile" ; -- [EWXFS] :: throwable; missile; @@ -24351,15 +26147,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg mistes_M_N = mkN "mistes" "mistae " masculine ; -- [XEXEO] :: initiate, one initiated in secret rites; misticius_A = mkA "misticius" "misticia" "misticium" ; -- [EXXES] :: of mixed race; mixed-blood; half-breed; mestizo; mongrel; mistitius_A = mkA "mistitius" "mistitia" "mistitium" ; -- [EXXES] :: of mixed race; mixed-blood; half-breed; mestizo; mongrel; --- SLASHSTUFF mistus_A : A2 mistus, mista -um, mistior -or -us, mistissimus -a -um -- [XXXFS] :: mixed; (alternative VPAR of misceo); --- TODO misy_N : N1 misy, misyos/is -- N -- [XXXNO] :: misy; copper ore/pyrite; sweet truffle or mushroom; --- TODO mitesco_V : V2 mitesco, mitescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: become/be/grow mild/soft/gentle/mellow/tame/civilized; soften; + mistus_A = mkA "mistus" ; -- [XXXFS] :: mixed; (alternative VPAR of misceo); + misy_1_N = mkN "misy" "misyis" neuter ; -- [XXXNO] :: misy; copper ore/pyrite; sweet truffle or mushroom; + misy_2_N = mkN "misy" "misyos" neuter ; -- [XXXNO] :: misy; copper ore/pyrite; sweet truffle or mushroom; + mitesco_V = mkV "mitescere" "mitesco" nonExist nonExist ; -- [XXXDX] :: become/be/grow mild/soft/gentle/mellow/tame/civilized; soften; mitificatio_F_N = mkN "mitificatio" "mitificationis " feminine ; -- [GXXEK] :: alleviation; mitigo_V = mkV "mitigare" ; -- [XXXDX] :: soften; lighten, alleviate; soothe; civilize; --- SLASHSTUFF mitis_A : A2 mitis, mite, mitior -or -us, mitissimus -a -um -- [XXXAX] :: mild, meek, gentle, placid, soothing; clement; ripe, sweet and juicy; + mitis_A = mkA "mitis" ; -- [XXXAX] :: mild, meek, gentle, placid, soothing; clement; ripe, sweet and juicy; mitra_F_N = mkN "mitra" ; -- [XEXDS] :: mitre (bishop/abbot); oriental headband/coif/turban/head-dress; rope/cable; mitratus_A = mkA "mitratus" "mitrata" "mitratum" ; -- [XXXEC] :: wearing the mitre; --- IGNORED mitto_V : V1 mitto, mittere, additional, forms -- [XXXDX] :: send, throw, hurl, cast; let out, release, dismiss; disregard; + mitto_V2 = mkV2 (mkV "mittere" "mitto" "misi" "missus ") ; -- [XXXAX] :: send, throw, hurl, cast; let out, release, dismiss; disregard; mitulus_M_N = mkN "mitulus" ; -- [XAXDO] :: edible mussel; shellfish mold (Cal); mixticius_A = mkA "mixticius" "mixticia" "mixticium" ; -- [EXXES] :: of mixed race; mixed-blood; half-breed; mestizo; mongrel; mixtim_Adv = mkAdv "mixtim" ; -- [XXXES] :: mixedly, in a mixed manner; @@ -24368,7 +26165,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg mixtorius_A = mkA "mixtorius" "mixtoria" "mixtorium" ; -- [GXXEK] :: mixing; mna_F_N = mkN "mna" ; -- [XSQCO] :: Greek weight unit (100 drachma/one pound); its weight of silver (1/60 talent); mnemosynum_N_N = mkN "mnemosynum" ; -- [XXXEC] :: souvenir, memorial; --- SLASHSTUFF mobilis_A : A2 mobilis, mobile, mobilior -or -us, mobilissimus -a -um -- [XXXAX] :: movable; mobile; quick, active; changeable, shifting; fickle, easily swayed; + mobilis_A = mkA "mobilis" ; -- [XXXAX] :: movable; mobile; quick, active; changeable, shifting; fickle, easily swayed; mobilitas_F_N = mkN "mobilitas" "mobilitatis " feminine ; -- [XXXBX] :: mobility, agility; speed; quickness of mind; inconstancy; mobiliter_Adv =mkAdv "mobiliter" "mobilius" "mobilissime" ; -- [XXXCO] :: quickly, rapidly, actively; changeably, inconstantly, in a fickle manner; mobilito_V2 = mkV2 (mkV "mobilitare") ; -- [XXXEC] :: set in motion; @@ -24396,7 +26193,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg modifico_V = mkV "modificare" ; -- [XXXES] :: limit; control; observe due measure; modius_M_N = mkN "modius" ; -- [XXXDX] :: peck; Roman dry measure; (about 2 gallons/8000 cc); modo_Adv = mkAdv "modo" ; -- [XXXAX] :: only, merely; just now/recently, lately; presently; --- modo_Conj : Conj modo -- [XXXDX] :: but, if only; but only; + modo_Conj = mkConj "modo" missing ; -- [XXXDX] :: but, if only; but only; modulamen_N_N = mkN "modulamen" "modulaminis " neuter ; -- [EDXES] :: melody; modulate_Adv =mkAdv "modulate" "modulatius" "modulatissime" ; -- [XDXDO] :: melodiously, in a musical manner; modulatio_F_N = mkN "modulatio" "modulationis " feminine ; -- [DDXCS] :: |singing, playing; melody, song; rhythmic/regular measure; marching in time; @@ -24419,7 +26216,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg moestitia_F_N = mkN "moestitia" ; -- [XXXCO] :: sadness, sorrow, grief; source of grief; dullness, gloom; moestitudo_F_N = mkN "moestitudo" "moestitudinis " feminine ; -- [XXXEO] :: sadness, sorrow, grief; source of grief; dullness, gloom; moesto_V2 = mkV2 (mkV "moestare") ; -- [XXXEO] :: grieve, make sad; afflict (L+S); --- SLASHSTUFF moestus_A : A2 moestus, moesta -um, moestior -or -us, moestissimus -a -um -- [XXXAO] :: sad/unhappy; mournful/gloomy; mourning; stern/grim; ill-omened/inauspicious; + moestus_A = mkA "moestus" ; -- [XXXAO] :: sad/unhappy; mournful/gloomy; mourning; stern/grim; ill-omened/inauspicious; mola_F_N = mkN "mola" ; -- [XXXDX] :: millstone; ground meal; mill (pl.) [salsa ~ => salted meal, for sacrifices]; molaris_M_N = mkN "molaris" "molaris " masculine ; -- [XXXDX] :: rock as large as a millstone used as a missile; molar tooth; molctaticus_A = mkA "molctaticus" "molctatica" "molctaticum" ; -- [XLXIO] :: fined, extracted as fine/penalty; @@ -24430,27 +26227,31 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg moleste_Adv =mkAdv "moleste" "molestius" "molestissime" ; -- [XXXDX] :: annoyingly; in a vexing/annoying/distressing/tiresome manner; molestia_F_N = mkN "molestia" ; -- [XXXDX] :: trouble, annoyance; molesto_V = mkV "molestare" ; -- [XXXDX] :: disturb, vex, annoy, worry, trouble; --- SLASHSTUFF molestus_A : A2 molestus, molesta -um, molestior -or -us, molestissimus -a -um -- [XXXBX] :: annoying; troublesome; tiresome; [molestus esse => to be a worry/nuisance]; + molestus_A = mkA "molestus" ; -- [XXXBX] :: annoying; troublesome; tiresome; [molestus esse => to be a worry/nuisance]; molimen_N_N = mkN "molimen" "moliminis " neuter ; -- [XXXDX] :: effort, vehemence; bulk; weight; molimentum_N_N = mkN "molimentum" ; -- [XXXDX] :: exertion, labor; molinarius_M_N = mkN "molinarius" ; -- [XXXFS] :: miller; molinula_F_N = mkN "molinula" ; -- [XTXEK] :: grinder; (molinula cafearia = coffee-grinder); + molior_V = mkV "moliri" "molior" "molitus sum " ; -- [XXXBX] :: struggle, labor, labor at; construct, build; undertake, set in motion, plan; molitio_F_N = mkN "molitio" "molitionis " feminine ; -- [EXXES] :: grinding; --- TODO mollesco_V : V2 mollesco, mollescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: become soft; become gentle or effeminate; + mollesco_V = mkV "mollescere" "mollesco" nonExist nonExist ; -- [XXXDX] :: become soft; become gentle or effeminate; molliculus_A = mkA "molliculus" "mollicula" "molliculum" ; -- [XXXEC] :: soft, tender; effeminate; mollificatio_F_N = mkN "mollificatio" "mollificationis " feminine ; -- [GXXEK] :: mollification; + mollio_V2 = mkV2 (mkV "mollire" "mollio" "mollivi" "mollitus ") ; -- [XXXDX] :: soften, mitigate, make easier; civilize, tame, enfeeble; mollipes_A = mkA "mollipes" "mollipedis"; -- [XXXEC] :: soft-footed; --- SLASHSTUFF mollis_A : A2 mollis, molle, mollior -or -us, mollissimus -a -um -- [XXXAO] :: |||tender, gentle; smooth, relaxing; languid (movement); amorous (writings); + mollis_A = mkA "mollis" ; -- [XXXAO] :: |||tender, gentle; smooth, relaxing; languid (movement); amorous (writings); molliter_Adv =mkAdv "molliter" "mollius" "mollissime" ; -- [XXXBO] :: calmly/quietly/softly/gently/smoothly/easily; w/out pain/anger/harshness; weakly mollitia_F_N = mkN "mollitia" ; -- [XXXDX] :: softness, tenderness; weakness, effeminacy; mollities_F_N = mkN "mollities" "mollitiei " feminine ; -- [XXXDX] :: softness, tenderness; weakness, effeminacy; mollitudo_F_N = mkN "mollitudo" "mollitudinis " feminine ; -- [XXXCO] :: softness, yielding quality; flexibility (voice); mildness/leniency; weakness; molluscum_N_N = mkN "molluscum" ; -- [GXXEK] :: mollusk; + molo_V2 = mkV2 (mkV "molere" "molo" "molui" "molitus ") ; -- [XXXDX] :: grind; molossus_M_N = mkN "molossus" ; -- [FAXDV] :: hunting dog/Molessian hound; (Molessia in Epirus); metrical foot of three long; molta_F_N = mkN "molta" ; -- [XLXCO] :: fine; penalty; penalty involving property (livestock, later money); moltaticus_A = mkA "moltaticus" "moltatica" "moltaticum" ; -- [XLXIO] :: fined, extracted as fine/penalty; of/concerning a fine (Cas); molto_V2 = mkV2 (mkV "moltare") ; -- [BLXIO] :: punish, fine; extract as forfeit; sentence to pay; --- TODO moly_N : N1 moly, molyos/is -- N -- [XAXNS] :: plant (white flower and black root) (mythical used by Odysseus against Circe); + moly_1_N = mkN "moly" "molyis" neuter ; -- [XAXNS] :: plant (white flower and black root) (mythical used by Odysseus against Circe); + moly_2_N = mkN "moly" "molyos" neuter ; -- [XAXNS] :: plant (white flower and black root) (mythical used by Odysseus against Circe); momen_N_N = mkN "momen" "mominis " neuter ; -- [XXXDX] :: movement; impulse; a trend; momentaliter_Adv = mkAdv "momentaliter" ; -- [DXXFS] :: in a moment; momentana_F_N = mkN "momentana" ; -- [DSXFS] :: delicate scales for weighing gold/silver/coins; @@ -24494,8 +26295,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg monodicus_A = mkA "monodicus" "monodica" "monodicum" ; -- [FXXFM] :: unique; monogama_F_N = mkN "monogama" ; -- [FXXEE] :: monogyny; monogamy; practice of having only one wife (at a time/ever); monogamia_F_N = mkN "monogamia" ; -- [FXXEE] :: monogyny; monogamy; practice of having only one wife (at a time/ever); + monogenesis_1_N = mkN "monogenesis" "monogenesis" feminine ; -- [EEXEE] :: monogenesis; origin from one pair; + monogenesis_2_N = mkN "monogenesis" "monogenesos" feminine ; -- [EEXEE] :: monogenesis; origin from one pair; monogenesis_F_N = mkN "monogenesis" "monogenesis " feminine ; -- [EEXEE] :: monogenesis; origin from one pair; --- TODO monogenesis_N : N1 monogenesis, monogenesos/is -- F -- [EEXEE] :: monogenesis; origin from one pair; monogerminalis_A = mkA "monogerminalis" "monogerminalis" "monogerminale" ; -- [GSXEK] :: monogerminal; monovular; of identical twins (from same egg); monogrammos_A = mkA "monogrammos" "monogrammos" "monogrammon" ; -- [XXXEO] :: sketched in outline; insubstantial, shadowy; jasper marked w/single line; monogrammus_A = mkA "monogrammus" "monogramma" "monogrammum" ; -- [XXXEO] :: sketched in outline; insubstantial, shadowy; jasper marked w/single line; @@ -24550,6 +26352,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg morigeror_V = mkV "morigerari" ; -- [XXXDO] :: be compliant/indulgent to; gratify; humor; morigerus_A = mkA "morigerus" "morigera" "morigerum" ; -- [XXXCO] :: compliant, indulgent; obliging; morio_M_N = mkN "morio" "morionis " masculine ; -- [XXXCO] :: fool, idiot kept as a laughing-stock; jester (Erasmus); + morior_V = mkV "moriri" "morior" "moritus sum " ; -- [BXXCO] :: die; expire, pass/die/wither away/out; decay; (FUT ACT PPL only, moriturus); morologus_A = mkA "morologus" "morologa" "morologum" ; -- [XXXEC] :: talking like a fool; moror_V = mkV "morari" ; -- [XXXAX] :: delay; stay, stay behind; devote attention to; morositas_F_N = mkN "morositas" "morositatis " feminine ; -- [XXXES] :: peevishness, moroseness; G:pedantry; @@ -24596,6 +26399,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg mugil_M_N = mkN "mugil" "mugilis " masculine ; -- [XXXDO] :: sea fish; gray mullet; (used in punishing adulterers Juv. 10.317 L+S); mugilis_M_N = mkN "mugilis" "mugilis " masculine ; -- [XXXDO] :: sea fish; gray mullet; (used in punishing adulterers Juv. 10.317 L+S); muginor_V = mkV "muginari" ; -- [XXXEC] :: loiter, dally; + mugio_V2 = mkV2 (mkV "mugire" "mugio" "mugivi" "mugitus ") ; -- [XXXDX] :: low, bellow; make a loud deep noise; mugitus_M_N = mkN "mugitus" "mugitus " masculine ; -- [XXXDX] :: lowing, bellowing; roaring, rumble; mula_F_N = mkN "mula" ; -- [XXXDX] :: she-mule; mule; mulceo_V = mkV "mulcere" ; -- [XXXBX] :: stroke, touch lightly, fondle, soothe, appease, charm, flatter, delight; @@ -24623,13 +26427,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg mulomedicus_M_N = mkN "mulomedicus" ; -- [XXXFS] :: mule-doctor; mulsum_N_N = mkN "mulsum" ; -- [XXXDX] :: honeyed wine; (common Roman drink of honey mixed into wine); multa_F_N = mkN "multa" ; -- [XLXCO] :: fine; penalty; penalty involving property (livestock, later money); --- BLACKLISTED multae_N : N1 multae -- Gender: F -- Comment: [XXXCX] :: many women (pl.); + multae_N = pluralN (mkN "multa") ; -- Gender: F -- Comment: [XXXCX] :: many women (pl.); multangulus_A = mkA "multangulus" "multangula" "multangulum" ; -- [XXXEC] :: many-cornered; multaticius_A = mkA "multaticius" "multaticia" "multaticium" ; -- [XLXEO] :: fined, extracted as fine/penalty; of/concerning a fine (Cas); multaticus_A = mkA "multaticus" "multatica" "multaticum" ; -- [XLXIO] :: fined, extracted as fine/penalty; of/concerning a fine (Cas); multatio_F_N = mkN "multatio" "multationis " feminine ; -- [XLXEO] :: imposition of fine; multesimus_A = mkA "multesimus" "multesima" "multesimum" ; -- [XXXEC] :: very small; --- BLACKLISTED multi_N : N1 multi -- Gender: M -- Comment: [XXXCX] :: many men/people (pl.); the common/ordinary people; the many; common herd; + multi_N = pluralN (mkN "multus") ; -- Gender: M -- Comment: [XXXCX] :: many men/people (pl.); the common/ordinary people; the many; common herd; multicanus_A = mkA "multicanus" "multicana" "multicanum" ; -- [FXXEN] :: harmonious; multicavus_A = mkA "multicavus" "multicava" "multicavum" ; -- [XXXDX] :: porous; multicellularis_A = mkA "multicellularis" "multicellularis" "multicellulare" ; -- [HSXEK] :: multicellular; @@ -24666,7 +26470,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg multo_V2 = mkV2 (mkV "multare") ; -- [XLXCO] :: punish, fine; extract as forfeit; sentence to pay; multum_Adv =mkAdv "multum" "plus" "plurimum" ; -- [XXXDX] :: much, greatly, plenty, very; more; most; multum_N_N = mkN "multum" ; -- [XXXDX] :: many things (pl.); much; many; --- SLASHSTUFF multus_A : A2 multus, multa -um, -, plurimus -a -um -- [XXXAX] :: much, many, great, many a; large, intense, assiduous; tedious; + multus_A = mkA "multus" ; -- [XXXAX] :: much, many, great, many a; large, intense, assiduous; tedious; mulus_M_N = mkN "mulus" ; -- [XXXDX] :: mule; mumia_F_N = mkN "mumia" ; -- [GXXEK] :: mummy; mundanus_A = mkA "mundanus" "mundana" "mundanum" ; -- [XXXBO] :: worldly; of/belonging to the world/universe; mundane; of this world (Bee); @@ -24677,7 +26481,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg munditia_F_N = mkN "munditia" ; -- [XXXDX] :: cleanness, elegance of appearance, manners or taste; mundities_F_N = mkN "mundities" "munditiei " feminine ; -- [XXXDX] :: cleanness, elegance of appearance, manners or taste; mundo_V2 = mkV2 (mkV "mundare") ; -- [XXXDO] :: clean, cleanse, make clean/tidy; (eccl. - ceremonially/spiritually); --- SLASHSTUFF mundus_A : A2 mundus, munda -um, mundior -or -us, mundissimus -a -um -- [XXXAX] :: clean, cleanly, nice, neat, elegant, delicate; refined, pure; + mundus_A = mkA "mundus" ; -- [XXXAX] :: clean, cleanly, nice, neat, elegant, delicate; refined, pure; mundus_M_N = mkN "mundus" ; -- [XXXAX] :: universe, heavens; world, mankind; toilet/dress (woman), ornament, decoration; munero_V2 = mkV2 (mkV "munerare") ; -- [XXXEC] :: give, present; muneror_V = mkV "munerari" ; -- [XXXEC] :: give, present; @@ -24698,10 +26502,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg munificus_A = mkA "munificus" "munifica" "munificum" ; -- [XXXBO] :: |subject to tax/duty; dutiful, performing one's obligations; munimen_N_N = mkN "munimen" "muniminis " neuter ; -- [XXXDX] :: fortification; defense; munimentum_N_N = mkN "munimentum" ; -- [XXXDX] :: fortification, bulwark; defense, protection; + munio_V2 = mkV2 (mkV "munire" "munio" "munivi" "munitus ") ; -- [XXXBX] :: fortify; strengthen; protect, defend, safeguard; build (road); munitio_F_N = mkN "munitio" "munitionis " feminine ; -- [XXXDX] :: fortifying; fortification; munitiuncula_F_N = mkN "munitiuncula" ; -- [EWXFS] :: small/little fortification/stronghold; munitor_M_N = mkN "munitor" "munitoris " masculine ; -- [XXXDX] :: one who builds fortifications; --- SLASHSTUFF munitus_A : A2 munitus, munita -um, munitior -or -us, munitissimus -a -um -- [XXXDX] :: defended, fortified; protected, secured, safe; + munitus_A = mkA "munitus" ; -- [XXXDX] :: defended, fortified; protected, secured, safe; munium_N_N = mkN "munium" ; -- [XXXDX] :: duties (pl.), functions; munus_N_N = mkN "munus" "muneris " neuter ; -- [XXXAX] :: service; duty, office, function; gift; tribute, offering; bribes (pl.); munusculum_N_N = mkN "munusculum" ; -- [XXXDX] :: small present or favor; @@ -24766,6 +26571,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg mutinium_N_N = mkN "mutinium" ; -- [XXXFO] :: penis; (rude); muto_M_N = mkN "muto" "mutonis " masculine ; -- [XXXEO] :: penis; (rude); muto_V = mkV "mutare" ; -- [XXXAX] :: move, change, shift, alter, exchange, substitute (for); modify; + muttio_V = mkV "muttire" "muttio" "muttivi" "muttitus "; -- [XXXCO] :: mutter, murmur; mutto_M_N = mkN "mutto" "muttonis " masculine ; -- [XXXEO] :: penis; (rude); muttonium_N_N = mkN "muttonium" ; -- [XXXFO] :: penis; (rude); mutuatio_F_N = mkN "mutuatio" "mutuationis " feminine ; -- [XXXDX] :: borrowing; @@ -24786,7 +26592,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg myosotis_F_N = mkN "myosotis" "myosotidis " feminine ; -- [GAXEK] :: forget-me-not; myrepsicus_A = mkA "myrepsicus" "myrepsica" "myrepsicum" ; -- [EXXFP] :: aromatic; of/for unguents; myriadalis_A = mkA "myriadalis" "myriadalis" "myriadale" ; -- [FSXEM] :: ten-thousand-fold; --- TODO myrias_N : N1 myrias, myriados/is -- N -- [FSXEM] :: myriad, ten-thousand (the number); + myrias_1_N = mkN "myrias" "myriadis" neuter ; -- [FSXEM] :: myriad, ten-thousand (the number); + myrias_2_N = mkN "myrias" "myriados" neuter ; -- [FSXEM] :: myriad, ten-thousand (the number); myrica_F_N = mkN "myrica" ; -- [XAXEO] :: tamarisk; (evergreen bush/shrub/tree); myrice_F_N = mkN "myrice" "myrices " feminine ; -- [XAXEO] :: tamarisk; (evergreen bush/shrub/tree); myriophllon_N_N = mkN "myriophllon" "myriophlli " neuter ; -- [XAHNO] :: milfoil; (plant w/divided leaves genus); common yarrow; water milfoil; @@ -24828,11 +26635,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg nable_N_N = mkN "nable" "nablis " neuter ; -- [XXXFO] :: psaltery; (pl. 10/12 stringed instrument w/sounding board behind strings OED); nablium_N_N = mkN "nablium" ; -- [XXXFS] :: psaltery; (10/12 stringed instrument w/sounding board behind strings OED); nablum_N_N = mkN "nablum" ; -- [XXXES] :: psaltery; (10/12 stringed instrument w/sounding board behind strings OED); --- IGNORED nadir_N : N1 nadir, undeclined -- N -- [GXXEK] :: nadir; + nadir_N = constN "nadir" neuter ; -- [GXXEK] :: nadir; nae_Adv = mkAdv "nae" ; -- [XXXEO] :: truly, indeed, verily, assuredly; (particle of assurance); (w/personal PRON); naevus_M_N = mkN "naevus" ; -- [XXXDX] :: mole (on the body); birthmark; --- nam_Conj : Conj nam -- [XXXAX] :: for, on the other hand; for instance; --- namque_Conj : Conj namque -- [XXXAX] :: for and in fact, on the other hand; insomuch as (strengthened nam); + nam_Conj = mkConj "nam" missing ; -- [XXXAX] :: for, on the other hand; for instance; + namque_Conj = mkConj "namque" missing ; -- [XXXAX] :: for and in fact, on the other hand; insomuch as (strengthened nam); + nanciscor_V = mkV "nancisci" "nanciscor" "nanctus sum " ; -- [XXXBX] :: obtain, get; find, meet with, receive, stumble on, light on; nanus_M_N = mkN "nanus" ; -- [XXXEC] :: dwarf; naphtha_F_N = mkN "naphtha" ; -- [XSXES] :: naphtha; flammable/volitile petro-liquid; naptha_F_N = mkN "naptha" ; -- [EXXFW] :: naphtha; (Vulgate Prayer of Azariah 1:23); flammable/volitile petro-liquid; @@ -24860,6 +26668,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg narto_V = mkV "nartare" ; -- [GXXEK] :: ski; nasalizatio_F_N = mkN "nasalizatio" "nasalizationis " feminine ; -- [GXXEK] :: nasalization; nasciturus_A = mkA "nasciturus" "nascitura" "nasciturum" ; -- [XXXES] :: about to be born/come into being; should be born/rise; (FUT ACTIVE PPL nascor); + nascor_V = mkV "nasci" "nascor" "natus sum " ; -- [XXXAO] :: |be born/begotten/formed/destined; rise (stars), dawn; start, originate; arise; nassa_F_N = mkN "nassa" ; -- [XAXEC] :: basket for catching fish; a trap, snare; nassiterna_F_N = mkN "nassiterna" ; -- [FXXEK] :: watering-can; nasturcium_N_N = mkN "nasturcium" ; -- [XAXEC] :: kind of cress; @@ -24938,33 +26747,34 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg nazista_M_N = mkN "nazista" ; -- [GXXEK] :: Nazi; nazoreus_M_N = mkN "nazoreus" ; -- [EEXFW] :: Nazarite; man set apart to the service of God; (1 Maccabees 3:49); ne_Adv = mkAdv "ne" ; -- [XXXCO] :: |truly, indeed, verily, assuredly; (particle of assurance); (w/personal PRON); --- ne_Conj : Conj ne -- [XXXAX] :: that not, lest; (for negative of IMP); + ne_Conj = mkConj "ne" missing ; -- [XXXAX] :: that not, lest; (for negative of IMP); nebrida_M_N = mkN "nebrida" ; -- [XEXFS] :: Ceres priest; nebula_F_N = mkN "nebula" ; -- [XSXBO] :: mist, fog; cloud (dust/smoke/confusion/error); thin film, veneer; obscurity; nebulo_M_N = mkN "nebulo" "nebulonis " masculine ; -- [XXXCO] :: rascal, scoundrel; worthless person; nebulosus_A = mkA "nebulosus" "nebulosa" "nebulosum" ; -- [XXXCO] :: misty, foggy; characterized by/subject to/resembling mist, vaporous; obscure; nec_Adv = mkAdv "nec" ; -- [XXXDX] :: nor; and not, not, neither, not even; --- nec_Conj : Conj nec -- [XXXAX] :: nor, and..not; not..either, not even; --- necdum_Conj : Conj necdum -- [XXXBX] :: and/but not yet; + nec_Conj = mkConj "nec" missing ; -- [XXXAX] :: nor, and..not; not..either, not even; + necdum_Conj = mkConj "necdum" missing ; -- [XXXBX] :: and/but not yet; necessaria_F_N = mkN "necessaria" ; -- [XXXCO] :: connection (female), she closely connected by friendship/family/obligation; necessarie_Adv = mkAdv "necessarie" ; -- [XXXEO] :: necessarily; indispensably; as a necessary consequence; necessario_Adv = mkAdv "necessario" ; -- [XXXCO] :: unavoidably, without option; necessarily, of necessity; inevitably/unavoidably; necessarium_N_N = mkN "necessarium" ; -- [XXXEO] :: necessities (pl.), what is needed; necessities of life; necessarius_A = mkA "necessarius" "necessaria" "necessarium" ; -- [XXXAO] :: |inevitable, fateful; urgent/critical; unavoidable/compulsory; natural (death); necessarius_M_N = mkN "necessarius" ; -- [XXXCO] :: relative; connection, one closely connected by friendship/family/obligation; --- IGNORED necesse_A : A2 necesse, undeclined -- [XXXBO] :: necessary, essential; unavoidable, compulsory, inevitable; a natural law; true; --- IGNORED necessis_A : A2 necessis, undeclined -- [XXXBO] :: necessary, essential; unavoidable, compulsory, inevitable; a natural law; true; + necesse_A = constA "necesse" ; -- [XXXBO] :: necessary, essential; unavoidable, compulsory, inevitable; a natural law; true; + necessis_A = constA "necessis" ; -- [XXXBO] :: necessary, essential; unavoidable, compulsory, inevitable; a natural law; true; necessitas_F_N = mkN "necessitas" "necessitatis " feminine ; -- [XXXAO] :: need/necessity; inevitability; difficult straits; poverty; obligation; bond; necessitudo_F_N = mkN "necessitudo" "necessitudinis " feminine ; -- [XXXBO] :: obligation; bond, connection, affinity; compulsion; needs; poverty; relative; necesso_V2 = mkV2 (mkV "necessare") ; -- [DXXES] :: render/make necessary; --- IGNORED necessum_A : A2 necessum, undeclined -- [XXXCO] :: necessary; imperative; unavoidable, compulsory, inevitable; a natural law; true; --- IGNORED necessus_A : A2 necessus, undeclined -- [XXXCO] :: necessary, imperative; unavoidable, compulsory, inevitable; a natural law; true; --- SLASHSTUFF neclectus_A : A2 neclectus, neclecta -um, neclectior -or -us, neclectissimus -a -um -- [XXXCO] :: disregarded, not cared for, neglected, ignored; carelessly made/done; + necessum_A = constA "necessum" ; -- [XXXCO] :: necessary; imperative; unavoidable, compulsory, inevitable; a natural law; true; + necessus_A = constA "necessus" ; -- [XXXCO] :: necessary, imperative; unavoidable, compulsory, inevitable; a natural law; true; + neclectus_A = mkA "neclectus" ; -- [XXXCO] :: disregarded, not cared for, neglected, ignored; carelessly made/done; neclectus_M_N = mkN "neclectus" "neclectus " masculine ; -- [XXXEO] :: neglect; fact of taking no notice; neclegens_A = mkA "neclegens" "neclegentis"; -- [XXXBO] :: heedless, neglectful, careless; unconcerned, indifferent; slovenly; unruly; neclegenter_Adv =mkAdv "neclegenter" "neclegentius" "neclegentissime" ; -- [XXXCO] :: heedlessly, neglectfully, carelessly; unconcernedly, indifferently; slovenly; neclegentia_F_N = mkN "neclegentia" ; -- [XXXCO] :: heedlessness, neglect; carelessness, negligence; coldness; disrespect; --- necne_Conj : Conj necne -- [XXXDX] :: or not; + neclego_V2 = mkV2 (mkV "neclegere" "neclego" "neclexi" "neclectus ") ; -- [XXXCO] :: disregard, neglect, ignore, regard of no consequence; do nothing about; despise; + necne_Conj = mkConj "necne" missing ; -- [XXXDX] :: or not; necnon_Adv = mkAdv "necnon" ; -- [XXXDX] :: nor; and not, not, neither, not even; and also, and indeed; neco_V2 = mkV2 (mkV "necare") ; -- [BXXFO] :: kill/murder; put to death; suppress, destroy; kill (plant); quench/drown (fire); necopinans_A = mkA "necopinans" "necopinantis"; -- [XXXDX] :: not expecting; unawares; @@ -24976,14 +26786,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg necrosis_F_N = mkN "necrosis" "necrosis " feminine ; -- [GXXEK] :: necrosis; nectar_N_N = mkN "nectar" "nectaris " neuter ; -- [XXXBX] :: nectar, the drink of the gods; anything sweet, pleasant or delicious; nectareus_A = mkA "nectareus" "nectarea" "nectareum" ; -- [XXXDX] :: sweet as nectar; + necto_V2 = mkV2 (mkV "nectere" "necto" "nexui" "nexus ") ; -- [XXXBX] :: tie, bind; necubi_Adv = mkAdv "necubi" ; -- [XXXDX] :: lest anywhere/at any place; lest on any occasion; that nowhere; necunde_Adv = mkAdv "necunde" ; -- [XXXDX] :: lest from anywhere; --- nedum_Conj : Conj nedum -- [XXXDX] :: still less; not to speak of; much more; + nedum_Conj = mkConj "nedum" missing ; -- [XXXDX] :: still less; not to speak of; much more; nefandus_A = mkA "nefandus" "nefanda" "nefandum" ; -- [XXXBX] :: impious, wicked; abominable; nefarie_Adv = mkAdv "nefarie" ; -- [XXXES] :: wickedly, impiously; nefariously, abominably; heinously; nefarium_N_N = mkN "nefarium" ; -- [XXXES] :: crime; wicked/impious/nefarious/heinous act; nefarius_A = mkA "nefarius" "nefaria" "nefarium" ; -- [XXXCS] :: |impious; nefarious; execrable; heinous; abandoned (Cas); --- IGNORED nefas_N : N1 nefas, undeclined -- N -- [XXXBX] :: sin, violation of divine law, impious act; [fas et nefas => right and wrong]; + nefas_N = constN "nefas" neuter ; -- [XXXBX] :: sin, violation of divine law, impious act; [fas et nefas => right and wrong]; nefastus_A = mkA "nefastus" "nefasta" "nefastum" ; -- [XXXDX] :: contrary to divine law; [dies nefasti => days unfit for public business]; negatio_F_N = mkN "negatio" "negationis " feminine ; -- [XXXDO] :: denial, refusal; negation (action); negative (Souter); betrayal; negative_Adv = mkAdv "negative" ; -- [DXXES] :: negatively; in the negative (Souter); @@ -24992,13 +26803,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg negidius_M_N = mkN "negidius" ; -- [ELXEX] :: Negidius; fictional name in Law; negito_V = mkV "negitare" ; -- [XXXDX] :: deny or refuse repeatedly; neglectim_Adv = mkAdv "neglectim" ; -- [XXXFS] :: negligently; --- SLASHSTUFF neglectus_A : A2 neglectus, neglecta -um, neglectior -or -us, neglectissimus -a -um -- [XXXCO] :: disregarded, not cared for, neglected, ignored; carelessly made/done; + neglectus_A = mkA "neglectus" ; -- [XXXCO] :: disregarded, not cared for, neglected, ignored; carelessly made/done; neglectus_M_N = mkN "neglectus" "neglectus " masculine ; -- [XXXEO] :: neglect; fact of taking no notice; neglegens_A = mkA "neglegens" "neglegentis"; -- [XXXBO] :: heedless, neglectful, careless; unconcerned, indifferent; slovenly; unruly; neglegenter_Adv =mkAdv "neglegenter" "neglegentius" "neglegentissime" ; -- [XXXCO] :: heedlessly, neglectfully, carelessly; unconcernedly, indifferently; slovenly; neglegentia_F_N = mkN "neglegentia" ; -- [XXXCO] :: heedlessness, neglect; carelessness, negligence; coldness; disrespect; + neglego_V2 = mkV2 (mkV "neglegere" "neglego" "neglexi" "neglectus ") ; -- [XXXAO] :: disregard, neglect, ignore, regard of no consequence; do nothing about; despise; negligenter_Adv =mkAdv "negligenter" "negligentius" "negligentissime" ; -- [XXXCS] :: heedlessly, neglectfully, carelessly; unconcernedly, indifferently; slovenly; negligentia_F_N = mkN "negligentia" ; -- [XXXCS] :: heedlessness, neglect; carelessness, negligence; coldness; disrespect; + negligo_V2 = mkV2 (mkV "negligere" "negligo" "neglixi" "neglictus ") ; -- [XXXBS] :: disregard, neglect, ignore, regard of no consequence; do nothing about; despise; nego_V = mkV "negare" ; -- [XXXAX] :: deny, refuse; say ... not; negotiatio_F_N = mkN "negotiatio" "negotiationis " feminine ; -- [XXXDX] :: business; negotiator_M_N = mkN "negotiator" "negotiatoris " masculine ; -- [XXXDX] :: wholesale trader or dealer; @@ -25013,7 +26826,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg nemorensis_A = mkA "nemorensis" "nemorensis" "nemorense" ; -- [XAXEC] :: of woods or groves; sylvan; nemorivagus_A = mkA "nemorivagus" "nemorivaga" "nemorivagum" ; -- [XXXDX] :: forest-roving; nemorosus_A = mkA "nemorosus" "nemorosa" "nemorosum" ; -- [XXXDX] :: well-wooded; --- nempe_Conj : Conj nempe -- [XXXDX] :: truly, certainly, of course; + nempe_Conj = mkConj "nempe" missing ; -- [XXXDX] :: truly, certainly, of course; nemus_N_N = mkN "nemus" "nemoris " neuter ; -- [XXXAX] :: wood, forest; nenia_F_N = mkN "nenia" ; -- [XXXDX] :: funeral dirge sung; incantation, jingle; neo_V = mkV "nere" ; -- [XXXDX] :: spin; weave; produce by spinning; @@ -25030,27 +26843,29 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg nepos_F_N = mkN "nepos" "nepotis " feminine ; -- [XXXAX] :: grandson/daughter; descendant; spendthrift, prodigal, playboy; secondary shoot; nepos_M_N = mkN "nepos" "nepotis " masculine ; -- [XXXAX] :: grandson/daughter; descendant; spendthrift, prodigal, playboy; secondary shoot; neptis_F_N = mkN "neptis" "neptis " feminine ; -- [XXXDX] :: granddaughter; female descendant; --- IGNORED nequam_A : A2 nequam, undeclined -- [XXXBO] :: wicked/licentious/depraved; bad/vile; naughty/roguish; worthless/useless; + nequam_A = constA "nequam" ; -- [XXXBO] :: wicked/licentious/depraved; bad/vile; naughty/roguish; worthless/useless; nequando_Adv = mkAdv "nequando" ; -- [XXXCW] :: lest, lest ever; never, not ever; nequaquam_Adv = mkAdv "nequaquam" ; -- [XXXBX] :: by no means; neque_Adv = mkAdv "neque" ; -- [XXXDX] :: nor; and not, not, neither; --- neque_Conj : Conj neque -- [XXXAX] :: nor [neque..neque=>neither..nor; neque solum..sed etiam=>not only..but also]; --- nequedum_Conj : Conj nequedum -- [XXXDX] :: and/but not yet; --- TODO nequeo_V : V1 nequeo, nequire, nequivi(ii), nequitus -- [XXXBX] :: be unable, cannot; + neque_Conj = mkConj "neque" missing ; -- [XXXAX] :: nor [neque..neque=>neither..nor; neque solum..sed etiam=>not only..but also]; + nequedum_Conj = mkConj "nequedum" missing ; -- [XXXDX] :: and/but not yet; + nequeo_1_VV = mkVV (mkV "nequire" "nequeo" "nequivi" "nequitus") False ; -- [XXXBX] :: be unable, cannot; + nequeo_2_VV = mkVV (mkV "nequire" "nequeo" "nequii" "nequitus") False ; -- [XXXBX] :: be unable, cannot; nequicquam_Adv = mkAdv "nequicquam" ; -- [XXXDX] :: in vain; --- IGNORED nequior_A : A2 nequior, undeclined -- [XXXCO] :: more wicked/licentious/depraved/vile; worse; more useless/worthless; (nequam); + nequior_A = constA "nequior" ; -- [XXXCO] :: more wicked/licentious/depraved/vile; worse; more useless/worthless; (nequam); nequiquam_Adv = mkAdv "nequiquam" ; -- [XXXBX] :: in vain; nequis_Adv = mkAdv "nequis" ; -- [XXXDX] :: lest any one; --- IGNORED nequissimus_A : A2 nequissimus, undeclined -- [XXXCO] :: most wicked/vile/licentious/worthless, good for nothing; (nequam SUPER); + nequissimus_A = constA "nequissimus" ; -- [XXXCO] :: most wicked/vile/licentious/worthless, good for nothing; (nequam SUPER); nequiter_Adv = mkAdv "nequiter" ; -- [XXXDX] :: badly; wickedly; nequitia_F_N = mkN "nequitia" ; -- [XXXDX] :: wickedness; idleness; negligence; worthlessness; evil ways; nequities_F_N = mkN "nequities" "nequitiae " feminine ; -- [XXXFS] :: wickedness; idleness; worthlessness; (equivalent to nequitia); nervosus_A = mkA "nervosus" "nervosa" "nervosum" ; -- [XXXDX] :: sinewy; vigorous; nervulus_M_N = mkN "nervulus" ; -- [XXXEC] :: nerve, strength; nervus_M_N = mkN "nervus" ; -- [XXXAS] :: |string/cord; bowstring; bow; (leather) thong; fetter (for prisoner); prison; + nescio_V2 = mkV2 (mkV "nescire" "nescio" "nescivi" "nescitus ") ; -- [XXXAO] :: not know (how); be ignorant/unfamiliar/unaware/unacquainted/unable/unwilling; nescius_A = mkA "nescius" "nescia" "nescium" ; -- [XXXBX] :: unaware, not knowing, ignorant; nete_F_N = mkN "nete" "netes " feminine ; -- [XDXFO] :: highest note in tetrachord; last/undermost string; --- neu_Conj : Conj neu -- [XXXBX] :: or not, and not; (for negative of IMP); [neve ... neve => neither ... nor ]; + neu_Conj = mkConj "neu" missing ; -- [XXXBX] :: or not, and not; (for negative of IMP); [neve ... neve => neither ... nor ]; neuma_F_N = mkN "neuma" ; -- [FDXEM] :: |prolonged/breathing notes in plainsong; plainsong notation signs; neuma_N_N = mkN "neuma" "neumatis " neuter ; -- [FDXDM] :: neume/neum; prolonged group of notes sung to single syllable (in plainsong); neuronum_N_N = mkN "neuronum" ; -- [HSXEK] :: neuron, nerve cell; @@ -25062,17 +26877,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg neutro_Adv = mkAdv "neutro" ; -- [XXXDX] :: to neither side; neutronium_N_N = mkN "neutronium" ; -- [HSXEK] :: neutron; neutrubi_Adv = mkAdv "neutrubi" ; -- [XXXFS] :: in neither place; neither way; --- neve_Conj : Conj neve -- [XXXDX] :: or not, and not; (for negative of IMP); [neve ... neve => neither ... nor ]; + neve_Conj = mkConj "neve" missing ; -- [XXXDX] :: or not, and not; (for negative of IMP); [neve ... neve => neither ... nor ]; nex_F_N = mkN "nex" "necis " feminine ; -- [XXXBX] :: death; murder; nexilis_A = mkA "nexilis" "nexilis" "nexile" ; -- [XXXDX] :: woven together, intertwined; --- TODO nexo_V : V2 nexo, nexere, nexi, - -- Declension: 3rd -- Comment: [XXXFS] :: tie together; bind together; (see also nectere); + nexo_V2 = mkV2 (mkV "nexere" "nexo" "nexi" nonExist ) ; -- [XXXFS] :: tie together; bind together; (see also nectere); nexum_N_N = mkN "nexum" ; -- [XLXCO] :: obligation between creditor/debtor; (pre-300 BC debtor bondman for non-payment); nexus_M_N = mkN "nexus" "nexus " masculine ; -- [XXXDX] :: obligation between creditor and debtor; ni_Adv = mkAdv "ni" ; -- [XXXBX] :: if ... not; unless; [quid ni? => why not?]; --- ni_Conj : Conj ni -- [XXXDX] :: if ... not; unless; + ni_Conj = mkConj "ni" missing ; -- [XXXDX] :: if ... not; unless; niceterium_N_N = mkN "niceterium" ; -- [XXXEC] :: reward of victory, prize; nichelium_N_N = mkN "nichelium" ; -- [GSXEK] :: nickel; --- IGNORED nichil_N : N1 nichil, undeclined -- N -- [FXXDM] :: nothing; no; trifle/thing not worth mentioning; nonentity; nonsense; no concern; + nichil_N = constN "nichil" neuter ; -- [FXXDM] :: nothing; no; trifle/thing not worth mentioning; nonentity; nonsense; no concern; nichilum_N_N = mkN "nichilum" ; -- [FXXEM] :: nothing; nothingness, which does not exist; something valueless; no respect; nicotinum_N_N = mkN "nicotinum" ; -- [GXXEK] :: nicotine; nicto_V = mkV "nictare" ; -- [XXXDX] :: blink; @@ -25087,18 +26902,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg nigrans_A = mkA "nigrans" "nigrantis"; -- [XXXDX] :: black, dark colored; shadowy; murky; nigredo_F_N = mkN "nigredo" "nigredinis " feminine ; -- [XXXFO] :: blackness; nigreo_V = mkV "nigrere" ; -- [XXXFO] :: grow dark; darken; --- TODO nigresco_V : V2 nigresco, nigrescere, nigrui, - -- Declension: 3rd -- Comment: [XXXDX] :: become black, grow dark; + nigresco_V2 = mkV2 (mkV "nigrescere" "nigresco" "nigrui" nonExist ) ; -- [XXXDX] :: become black, grow dark; nigrita_M_N = mkN "nigrita" ; -- [GXXEK] :: negro; nigritia_F_N = mkN "nigritia" ; -- [EXXFS] :: blackness; black color; nigrities_F_N = mkN "nigrities" "nigritiei " feminine ; -- [EXXFS] :: blackness; black color; nigro_V = mkV "nigrare" ; -- [XXXEO] :: be black; make black; --- IGNORED nihil_N : N1 nihil, undeclined -- N -- [XXXAO] :: nothing; no; trifle/thing not worth mentioning; nonentity; nonsense; no concern; --- IGNORED nihildum_N : N1 nihildum, undeclined -- N -- [XXXDX] :: nothing; nothing as yet; not a shred; less than nothing; + nihil_N = constN "nihil" neuter ; -- [XXXAO] :: nothing; no; trifle/thing not worth mentioning; nonentity; nonsense; no concern; + nihildum_N = constN "nihildum" neuter ; -- [XXXDX] :: nothing; nothing as yet; not a shred; less than nothing; nihilismus_M_N = mkN "nihilismus" ; -- [GXXEK] :: nihilism; nihilitas_F_N = mkN "nihilitas" "nihilitatis " feminine ; -- [FEXEM] :: nothingness; nihilominus_Adv = mkAdv "nihilominus" ; -- [XXXDX] :: never/none the less, notwithstanding, just the same; likewise, as well; nihilum_N_N = mkN "nihilum" ; -- [XXXBO] :: nothing; nothingness, which does not exist; something valueless; no respect; --- IGNORED nil_N : N1 nil, undeclined -- N -- [XXXAO] :: nothing; no; trifle/thing not worth mentioning; nonentity; nonsense; no concern; + nil_N = constN "nil" neuter ; -- [XXXAO] :: nothing; no; trifle/thing not worth mentioning; nonentity; nonsense; no concern; nilum_N_N = mkN "nilum" ; -- [XXXBO] :: nothing; nothingness, which does not exist; something valueless; no respect; nimbifer_A = mkA "nimbifer" "nimbifera" "nimbiferum" ; -- [XXXEC] :: stormy; nimbosus_A = mkA "nimbosus" "nimbosa" "nimbosum" ; -- [XXXDX] :: full of/surrounded by rain clouds; @@ -25109,16 +26924,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg nimis_Adv = mkAdv "nimis" ; -- [XXXAX] :: very much; too much; exceedingly; nimium_Adv = mkAdv "nimium" ; -- [XXXDX] :: too, too much; very, very much, beyond measure, excessive, too great; nimius_A = mkA "nimius" "nimia" "nimium" ; -- [XXXAX] :: excessive, too great; + ningo_V = mkV "ningere" "ningo" "ninxi" nonExist; -- [XSXEC] :: snow; + ningt_V0 = mkV0 "ningt"; -- [XSXEC] :: it snows; ninguis_F_N = mkN "ninguis" "ninguis " feminine ; -- [XSXEO] :: snow; drifts of snow (pl.); --- IGNORED nisan_N : N1 nisan, undeclined -- N -- [EXQEW] :: Nisan, Jewish month; (1st in ecclesiastic year); (late January-early February); --- nisi_Conj : Conj nisi -- [XXXAX] :: if not; except, unless; + ninguo_V = mkV "ninguere" "ninguo" "ninxi" nonExist; -- [XSXEC] :: snow; + nisan_N = constN "nisan" neuter ; -- [EXQEW] :: Nisan, Jewish month; (1st in ecclesiastic year); (late January-early February); + nisi_Conj = mkConj "nisi" missing ; -- [XXXAX] :: if not; except, unless; nisus_M_N = mkN "nisus" "nisus " masculine ; -- [XXXDX] :: pressing upon/down; pressure, push; endeavor; exertion; strong muscular effort; nitedula_F_N = mkN "nitedula" ; -- [XAXEC] :: dormouse; nitella_F_N = mkN "nitella" ; -- [XAXFS] :: small mouse; dormouse; niteo_V = mkV "nitere" ; -- [XXXBX] :: shine, glitter, look bright; be sleek/in good condition; bloom, thrive; --- TODO nitesco_V : V2 nitesco, nitescere, nitui, - -- Declension: 3rd -- Comment: [XXXDX] :: begin to shine; + nitesco_V2 = mkV2 (mkV "nitescere" "nitesco" "nitui" nonExist ) ; -- [XXXDX] :: begin to shine; nitidus_A = mkA "nitidus" "nitida" "nitidum" ; -- [XXXBX] :: shining, bright; nitor_M_N = mkN "nitor" "nitoris " masculine ; -- [XXXBO] :: brightness, splendor; brilliance; gloss, sheen; elegance, style, polish; flash; + nitor_V = mkV "niti" "nitor" "nixus sum " ; -- [XXXDX] :: press/lean upon; struggle; advance; depend on (with abl.); strive, labor; nitrosus_A = mkA "nitrosus" "nitrosa" "nitrosum" ; -- [XXXFS] :: full of nitron; nitrum_N_N = mkN "nitrum" ; -- [XXXCO] :: name of various alkalis (esp. soda and potash but probably not nitre); nivalis_A = mkA "nivalis" "nivalis" "nivale" ; -- [XXXDX] :: snowy, snow-covered; snow-like; @@ -25128,14 +26947,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg nixor_V = mkV "nixari" ; -- [XXXEO] :: support oneself, rest/lean (on) (w/ABL); struggle/strive, exert oneself (W/INF); nixus_M_N = mkN "nixus" "nixus " masculine ; -- [XXXDX] :: straining; the efforts of childbirth (pl.), travail; no_V = mkV "nare" ; -- [XXXBX] :: swim, float; --- SLASHSTUFF nobilis_A : A2 nobilis, nobile, nobilior -or -us, nobilissimus -a -um -- [XXXAO] :: |famous, celebrated; well/generally known; remarkable, noteworthy (facts); + nobilis_A = mkA "nobilis" ; -- [XXXAO] :: |famous, celebrated; well/generally known; remarkable, noteworthy (facts); nobilis_M_N = mkN "nobilis" "nobilis " masculine ; -- [XXXDX] :: nobles (pl.); nobilitas_F_N = mkN "nobilitas" "nobilitatis " feminine ; -- [XXXBX] :: nobility/noble class; (noble) birth/descent; fame/excellence; the nobles; rank; nobilito_V = mkV "nobilitare" ; -- [XXXCO] :: make known/noted/renown; render famous/notorious; ennoble; make more majestic; nocens_A = mkA "nocens" "nocentis"; -- [XXXDX] :: harmful; guilty; criminal; noceo_V = mkV "nocere" ; -- [XXXAX] :: harm, hurt; injure (with DAT); --- SLASHSTUFF nocivus_A : A2 nocivus, nociva -um, nocivior -or -us, nocivissimus -a -um -- [XXXEO] :: harmful, injurious; noxious; --- TODO noctesco_V : V2 noctesco, noctescere, -, - -- Declension: 3rd -- Comment: [XXXFS] :: grow dark; + nocivus_A = mkA "nocivus" ; -- [XXXEO] :: harmful, injurious; noxious; + noctesco_V = mkV "noctescere" "noctesco" nonExist nonExist ; -- [XXXFS] :: grow dark; noctiluca_F_N = mkN "noctiluca" ; -- [XXXEC] :: moon; noctivagus_A = mkA "noctivagus" "noctivaga" "noctivagum" ; -- [XXXDX] :: night-wandering; noctu_Adv = mkAdv "noctu" ; -- [XXXBX] :: by night, at night; @@ -25150,7 +26969,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg nodus_M_N = mkN "nodus" ; -- [XXXBX] :: knot; node; nola_F_N = mkN "nola" ; -- [XXXDO] :: Nola (town in Campania); woman of Nola; (pun on nolo); bell (Erasmus); -- TODO nolo_V : V1 nolo, nolle, nolui, - -- [XXXAX] :: be unwilling; wish not to; refuse to; --- TODO nomas_N : N1 nomas, nomados/is -- M -- [XXXEO] :: nomad, esp. a Numidian; nomads (pl.), certain wandering pastoral tribes; + nomas_1_N = mkN "nomas" "nomadis" masculine ; -- [XXXEO] :: nomad, esp. a Numidian; nomads (pl.), certain wandering pastoral tribes; + nomas_2_N = mkN "nomas" "nomados" masculine ; -- [XXXEO] :: nomad, esp. a Numidian; nomads (pl.), certain wandering pastoral tribes; nomen_N_N = mkN "nomen" "nominis " neuter ; -- [XXXAX] :: name, family name; noun; account, entry in debt ledger; sake; title, heading; nomenclator_M_N = mkN "nomenclator" "nomenclatoris " masculine ; -- [XXXCO] :: one who address person by name; slave who announced guests/dishes; an official; nomenclatura_F_N = mkN "nomenclatura" ; -- [XXXNO] :: assigning of names to things, nomenclature; mentioning things by name; @@ -25171,15 +26991,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg nonnemo_F_N = mkN "nonnemo" "nonneminis " feminine ; -- [XXXDX] :: some persons, a few; nonnemo_M_N = mkN "nonnemo" "nonneminis " masculine ; -- [XXXDX] :: some persons, a few; nonnihil_Adv = mkAdv "nonnihil" ; -- [XXXDX] :: in some measure; --- IGNORED nonnihil_N : N1 nonnihil, undeclined -- N -- [XXXDX] :: certain amount; --- nonnisi_Conj : Conj nonnisi -- [XXXDO] :: not unless; not except; only (on specific terms); --- SLASHSTUFF nonnullus_A : A2 nonnullus, nonnulla, nonnullum (gen -ius) -- [XXXBX] :: some, several, a few; one and another; considerable; + nonnihil_N = constN "nonnihil" neuter ; -- [XXXDX] :: certain amount; + nonnisi_Conj = mkConj "nonnisi" missing ; -- [XXXDO] :: not unless; not except; only (on specific terms); + nonnullus_A = mkA "nonnullus" ; -- [XXXBX] :: some, several, a few; one and another; considerable; nonnullus_M_N = mkN "nonnullus" ; -- [XXXDX] :: some (pl.), several, a few; nonnumquam_Adv = mkAdv "nonnumquam" ; -- [XXXDX] :: sometimes; nonnunquam_Adv = mkAdv "nonnunquam" ; -- [XXXDX] :: sometimes; norma_F_N = mkN "norma" ; -- [XXXDX] :: carpenter's square; standard, pattern; normativus_A = mkA "normativus" "normativa" "normativum" ; -- [GXXEK] :: normal; noscito_V = mkV "noscitare" ; -- [XXXDX] :: recognize; be acquainted with; + nosco_V2 = mkV2 (mkV "noscere" "nosco" "novi" "notus ") ; -- [XXXAO] :: |examine, study, inspect; try (case); recognize, accept as valid/true; recall; nosocomium_N_N = mkN "nosocomium" ; -- [GXXEK] :: hospital; nosocomus_M_N = mkN "nosocomus" ; -- [GXXEK] :: male nurse; nostalgia_F_N = mkN "nostalgia" ; -- [GXXEK] :: nostalgia; @@ -25192,7 +27013,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg notarius_M_N = mkN "notarius" ; -- [GXXEK] :: notary; notatio_F_N = mkN "notatio" "notationis " feminine ; -- [XXXDX] :: marking; noteo_V = mkV "notere" ; -- [FXXEM] :: notify; --- TODO notesco_V : V2 notesco, notescere, notui, - -- Declension: 3rd -- Comment: [XXXDX] :: become known; become famous; + notesco_V2 = mkV2 (mkV "notescere" "notesco" "notui" nonExist ) ; -- [XXXDX] :: become known; become famous; nothus_A = mkA "nothus" "notha" "nothum" ; -- [XXXDX] :: illegitimate (known father); cross-bred, mixed, mongrel; false, spurious; notificatio_F_N = mkN "notificatio" "notificationis " feminine ; -- [FXXEM] :: notification; notio_F_N = mkN "notio" "notionis " feminine ; -- [XXXDX] :: judicial examination or enquiry; @@ -25202,7 +27023,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg noto_V = mkV "notare" ; -- [XXXBX] :: observe; record; brand; write, inscribe; notula_F_N = mkN "notula" ; -- [DXXFS] :: little mark; notum_N_N = mkN "notum" ; -- [XXXDX] :: notorious facts (pl.); scandal; --- SLASHSTUFF notus_A : A2 notus, nota -um, notior -or -us, notissimus -a -um -- [XXXAX] :: well known, familiar, notable, famous, esteemed; notorious, of ill repute; + notus_A = mkA "notus" ; -- [XXXAX] :: well known, familiar, notable, famous, esteemed; notorious, of ill repute; notus_M_N = mkN "notus" ; -- [XXXDX] :: friends (pl.), acquaintances; novacula_F_N = mkN "novacula" ; -- [XXXDX] :: razor; novale_N_N = mkN "novale" "novalis " neuter ; -- [XXXCO] :: fallow/unplowed land; enclosed land; field; land/field cultivated first time; @@ -25229,12 +27050,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg novitius_A = mkA "novitius" "novitia" "novitium" ; -- [EEXEE] :: novice-; of a novice; novitius_M_N = mkN "novitius" ; -- [EEXDX] :: one newly come; novice (eccl.); novo_V = mkV "novare" ; -- [XXXDX] :: make new, renovate; renew, refresh, change; --- SLASHSTUFF novus_A : A2 novus, nova -um, novior -or -us, novissimus -a -um -- [XXXAX] :: new, fresh, young; unusual, extraordinary; (novae res, f. pl. = revolution); + novus_A = mkA "novus" ; -- [XXXAX] :: new, fresh, young; unusual, extraordinary; (novae res, f. pl. = revolution); nox_F_N = mkN "nox" "noctis " feminine ; -- [XXXAX] :: night [prima nocte => early in the night; multa nocte => late at night]; noxa_F_N = mkN "noxa" ; -- [XXXDX] :: hurt, injury; crime; punishment, harm; noxalis_A = mkA "noxalis" "noxalis" "noxale" ; -- [XLXDO] :: of injury done by person/other's animal; harm/damage/injury; power to harm; noxia_F_N = mkN "noxia" ; -- [XXXDX] :: crime, fault; --- SLASHSTUFF noxiosus_A : A2 noxiosus, noxiosa -um, noxiosior -or -us, noxiosissimus -a -um -- [XXXES] :: very harmful, noxious; full of guilt, vicious; + noxiosus_A = mkA "noxiosus" ; -- [XXXES] :: very harmful, noxious; full of guilt, vicious; noxius_A = mkA "noxius" "noxia" "noxium" ; -- [XXXBX] :: harmful, noxious; guilty, criminal; nubecula_F_N = mkN "nubecula" ; -- [XXXEC] :: little cloud; a troubled expression; nubeculatus_A = mkA "nubeculatus" "nubeculata" "nubeculatum" ; -- [GXXEK] :: comic; (fabula nubeculata = comic strip); @@ -25246,6 +27067,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg nubilum_N_N = mkN "nubilum" ; -- [XXXDX] :: clouds (pl.), rain clouds; nubilus_A = mkA "nubilus" "nubila" "nubilum" ; -- [XXXBX] :: cloudy; lowering; nubis_M_N = mkN "nubis" "nubis " masculine ; -- [BXXEO] :: |frown, gloomy expression; gloom/anxiety; mourning veil; cloud/threat (of war); + nubo_V2 = mkV2 (mkV "nubere" "nubo" "nupsi" "nuptus ") ; -- [XXXAX] :: marry, be married to; nubs_M_N = mkN "nubs" "nubis " masculine ; -- [XXXFO] :: |frown, gloomy expression; gloom/anxiety; mourning veil; cloud/threat (of war); nucatum_N_N = mkN "nucatum" ; -- [GXXEK] :: nougat; nucifrangibulum_N_N = mkN "nucifrangibulum" ; -- [GXXEK] :: nutcracker; @@ -25267,7 +27089,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg nullibi_Adv = mkAdv "nullibi" ; -- [FXXEM] :: nowhere; nullitas_F_N = mkN "nullitas" "nullitatis " feminine ; -- [GXXEK] :: non-existence; nulliter_Adv = mkAdv "nulliter" ; -- [GXXEK] :: not at all; --- SLASHSTUFF nullus_A : A2 nullus, nulla, nullum (gen -ius) -- [XXXAX] :: no; none, not any; (PRONominal ADJ) + nullus_A = mkA "nullus" ; -- [XXXAX] :: no; none, not any; (PRONominal ADJ) nullus_M_N = mkN "nullus" ; -- [XXXDX] :: no one; num_Adv = mkAdv "num" ; -- [XXXBX] :: if, whether; now, surely not, really, then (asking question expecting neg); numen_N_N = mkN "numen" "numinis " neuter ; -- [XXXAX] :: divine will, divinity; god; @@ -25279,7 +27101,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg numero_V2 = mkV2 (mkV "numerare") ; -- [XSXAO] :: count, add up, reckon/compute; consider; relate; number/enumerate, catalog; pay; numerose_Adv = mkAdv "numerose" ; -- [XXXDO] :: plentifully, in/with large numbers; into many parts; in many ways; rhythmically; numerositas_F_N = mkN "numerositas" "numerositatis " feminine ; -- [XXXDS] :: multitude, great number; rhythm, harmony; --- SLASHSTUFF numerosus_A : A2 numerosus, numerosa -um, numerosior -or -us, numerosissimus -a -um -- [XXXBO] :: |plentiful/abundant/populous; harmonious/melodious/rhythmic/proportioned; + numerosus_A = mkA "numerosus" ; -- [XXXBO] :: |plentiful/abundant/populous; harmonious/melodious/rhythmic/proportioned; numerus_M_N = mkN "numerus" ; -- [XSXAO] :: |rhythm/cadence/frequency; meter/metrical foot/line; melody; exercise movements; numisma_N_N = mkN "numisma" "numismatis " neuter ; -- [DXXES] :: coin/piece of money; coinage; token/voucher; medal (L+S); stamp; image on coin; nummarius_A = mkA "nummarius" "nummaria" "nummarium" ; -- [XXXEC] :: of/belonging to money; bribed with money, venal; @@ -25292,7 +27114,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg nummus_M_N = mkN "nummus" ; -- [XXXDX] :: coin; cash; money; sesterce; numquam_Adv = mkAdv "numquam" ; -- [XXXAX] :: never; numquid_Adv = mkAdv "numquid" ; -- [XXXCO] :: is it possible, surely ... not; can it be that; (question expecting negative); --- IGNORED nun_N : N1 nun, undeclined -- N -- [DEQEW] :: nun; (14th letter of Hebrew alphabet); (transliterate as N); + nun_N = constN "nun" neuter ; -- [DEQEW] :: nun; (14th letter of Hebrew alphabet); (transliterate as N); nunc_Adv = mkAdv "nunc" ; -- [XXXAX] :: now, today, at present; nuncia_F_N = mkN "nuncia" ; -- [DXXES] :: female messenger; she who brings tidings (L+S); nunciam_Adv = mkAdv "nunciam" ; -- [XXXDX] :: here and now; now at last; @@ -25322,6 +27144,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg nuntium_N_N = mkN "nuntium" ; -- [XXXDO] :: message, announcement; news; notice of divorce/annulment of betrothal; nuntius_A = mkA "nuntius" "nuntia" "nuntium" ; -- [XXXDO] :: announcing, bringing word (of occurrence); giving warning; prognosticatory; nuntius_M_N = mkN "nuntius" ; -- [XXXAO] :: messenger/herald/envoy; message (oral), warning; report; messenger's speech; + nuo_V2 = mkV2 (mkV "nuere" "nuo" "nui" "nutus ") ; -- [XXXDX] :: nod; nuper_Adv =mkAdv "nuper" "-" "nuperrime" ; -- [XXXBO] :: recently, not long ago; in recent years/our own time; (SUPER) latest in series; nupta_F_N = mkN "nupta" ; -- [XXXDX] :: bride; nuptia_F_N = mkN "nuptia" ; -- [XXXDX] :: marriage (pl.), nuptials, wedding; @@ -25341,6 +27164,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg nutrimen_N_N = mkN "nutrimen" "nutriminis " neuter ; -- [XXXDX] :: nourishment, sustenance; nutrimens_F_N = mkN "nutrimens" "nutrimentis " feminine ; -- [FXXEN] :: food, nourishment; nutrimentum_N_N = mkN "nutrimentum" ; -- [XXXDX] :: nourishment, sustenance; + nutrio_V2 = mkV2 (mkV "nutrire" "nutrio" "nutrivi" "nutritus ") ; -- [XXXAO] :: |rear/raise; foster/encourage; tend/treat (wound/sick person); deal gently with; + nutrior_V = mkV "nutriri" "nutrior" "nutritus sum " ; -- [XXXEO] :: |rear/raise; foster/encourage; tend/treat (wound/sick person); deal gently with; nutrix_F_N = mkN "nutrix" "nutricis " feminine ; -- [XXXBX] :: nurse; nutus_M_N = mkN "nutus" "nutus " masculine ; -- [XXXBX] :: nod; command, will; [ad nutum => instantly; with the agreement of]; nux_F_N = mkN "nux" "nucis " feminine ; -- [XXXDX] :: nut; @@ -25352,33 +27177,43 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg nympha_F_N = mkN "nympha" ; -- [XYHAO] :: nymph; (semi-divine female nature/water spirit); water; bride; young maiden; nymphe_F_N = mkN "nymphe" "nymphes " feminine ; -- [XYHCO] :: nymph; (semi-divine female nature/water spirit); water; bride; young maiden; o_Interj = ss "o" ; -- [XXXAX] :: Oh!; - ob_Acc_Prep = mkPrep "ob" Acc ; -- [XXXAX] :: on account of, for the sake of, for; instead of; right before; + ob_Acc_Prep = mkPrep "ob" acc ; -- [XXXAX] :: on account of, for the sake of, for; instead of; right before; obaeratus_A = mkA "obaeratus" "obaerata" "obaeratum" ; -- [XXXDX] :: in debt; obaeratus_M_N = mkN "obaeratus" ; -- [XXXDX] :: debtor; obambulo_V = mkV "obambulare" ; -- [XXXDX] :: walk up to, so as to meet; traverse; obarmo_V = mkV "obarmare" ; -- [XXXDX] :: arm; obaro_V = mkV "obarare" ; -- [XXXDX] :: plow up; + obaudio_V = mkV "obaudire" "obaudio" "obaudivi" "obauditus "; -- [XXXFO] :: obey, listen to; obba_F_N = mkN "obba" ; -- [XXXFS] :: beaker; decanter; city in Africa near Carthage; --- TODO obdormisco_V : V2 obdormisco, obdormiscere, -, - -- Declension: 3rd -- Comment: [XXXCO] :: fall asleep; go to sleep; (w/reference to death); + obdo_V2 = mkV2 (mkV "obdere" "obdo" "obdidi" "obditus ") ; -- [XXXDX] :: put before/against; shut, close, fasten; + obdormio_V2 = mkV2 (mkV "obdormire" "obdormio" "obdormivi" "obdormitus ") ; -- [XXXCO] :: fall asleep; + obdormisco_V = mkV "obdormiscere" "obdormisco" nonExist nonExist ; -- [XXXCO] :: fall asleep; go to sleep; (w/reference to death); + obduco_V2 = mkV2 (mkV "obducere" "obduco" "obduxi" "obductus ") ; -- [XXXDX] :: lead or draw before; cover/lay over; overspread; wrinkle; screen; obductico_F_N = mkN "obductico" "obducticonis " feminine ; -- [XXXDS] :: veiling; covering; obductio_F_N = mkN "obductio" "obductionis " feminine ; -- [XXXFO] :: act of covering/veiling/enveloping; affliction/distress (Souter); obducto_V2 = mkV2 (mkV "obductare") ; -- [BXXFS] :: lead in rivalry; --- TODO obduresco_V : V2 obduresco, obdurescere, obdurui, - -- Declension: 3rd -- Comment: [XXXDX] :: be persistent, endure; + obduresco_V2 = mkV2 (mkV "obdurescere" "obduresco" "obdurui" nonExist ) ; -- [XXXDX] :: be persistent, endure; obduro_V = mkV "obdurare" ; -- [XXXDX] :: be hard, persist, endure; obedens_A = mkA "obedens" "obedentis"; -- [XXXCO] :: obedient, compliant, submissive to authority/commands/word (of); under orders; obedienter_Adv =mkAdv "obedienter" "obedientius" "obedientissime" ; -- [XXXEO] :: obediently, compliantly, without demur; willingly, readily (L+S); obedientia_F_N = mkN "obedientia" ; -- [XXXCO] :: obedience, compliance, submission to authority; obedientiarius_M_N = mkN "obedientiarius" ; -- [FXXFQ] :: official; E:obedientiary; holder of office in monastery; (OED); obedientio_F_N = mkN "obedientio" "obedientionis " feminine ; -- [DXXCS] :: obedience, compliance, submission to authority; + obedio_V2 = mkV2 (mkV "obedire" "obedio" "obedivi" "obeditus ") ; -- [XXXDX] :: obey; listen/harken/submit (to); be subject/obedient/responsible/a slave (to); obeliscus_M_N = mkN "obeliscus" ; -- [XXXEO] :: obelisk; critical mark (placed opposite suspected passages L+S); rose bud; obelus_M_N = mkN "obelus" ; -- [DGXES] :: obelus, critical mark (spit-shaped put by suspected passages); obelisk; pivot; --- TODO obeo_V : V1 obeo, obire, obivi(ii), obitus -- [XXXAX] :: go to meet; attend to; fall; die; + obeo_1_V2 = mkV2 (mkV "obire" "obeo" "obivi" "obitus") ; -- [XXXAX] :: go to meet; attend to; fall; die; + obeo_2_V2 = mkV2 (mkV "obire" "obeo" "obii" "obitus") ; -- [XXXAX] :: go to meet; attend to; fall; die; obequito_V = mkV "obequitare" ; -- [XXXDX] :: ride up to; obesus_A = mkA "obesus" "obesa" "obesum" ; -- [XXXDX] :: fat, stout, plump; obex_F_N = mkN "obex" "obicis " feminine ; -- [XXXDX] :: bolt, bar; barrier; obstacle; obex_M_N = mkN "obex" "obicis " masculine ; -- [XXXDX] :: bolt, bar; barrier; obstacle; + obfendo_V2 = mkV2 (mkV "obfendere" "obfendo" "obfendi" "obfensus ") ; -- [XXXAO] :: ||come upon, meet, find, encounter, be faced with; run aground; violate/wrong; obfirmo_V = mkV "obfirmare" ; -- [DXXES] :: secure; bolt, lock, fasten, bar; be determined/inflexible; persevere in; + obfringo_V2 = mkV2 (mkV "obfringere" "obfringo" "obfregi" "obfractus ") ; -- [XAXEO] :: break up (ground) by cross-plowing; obfusco_V = mkV "obfuscare" ; -- [XXXFS] :: darken; obscure; E:vilify; + obhaeresco_V = mkV "obhaerescere" "obhaeresco" "obhaesi" nonExist; -- [XXXFS] :: stick fast; adhere; + obicio_V2 = mkV2 (mkV "obicere" "obicio" "objeci" "objectus ") ; -- [XXXAX] :: throw before/to, cast; object, oppose; upbraid; throw in one's teeth; present; obiter_Adv = mkAdv "obiter" ; -- [XXXEC] :: on the way, by the way, in passing; obitus_M_N = mkN "obitus" "obitus " masculine ; -- [XXXDX] :: approaching; approach, visit; setting (of the sun, etc), death; objaceo_V = mkV "objacere" ; -- [XXXDX] :: lie near by/at hand/opposite; lie in/block the way; lie exposed/at the mercy o; @@ -25388,11 +27223,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg objectivus_A = mkA "objectivus" "objectiva" "objectivum" ; -- [GXXEK] :: objective; objecto_V = mkV "objectare" ; -- [XXXDX] :: expose/throw (to); throw/put in the way; lay to one's charge, put before; objectum_N_N = mkN "objectum" ; -- [XXXEO] :: accusation, charge; S:object, something presented to the senses; --- SLASHSTUFF objectus_A : A2 objectus, objecta -um, objectior -or -us, objectissimus -a -um -- [XXXDX] :: opposite; + objectus_A = mkA "objectus" ; -- [XXXDX] :: opposite; objectus_M_N = mkN "objectus" "objectus " masculine ; -- [XXXDS] :: interposing; obstructing; + objicio_V2 = mkV2 (mkV "objicere" "objicio" "objeci" "objectus ") ; -- [XXXCS] :: throw before/to, cast; object, oppose; upbraid; throw in one's teeth; present; + objrascor_V = mkV "objrasci" "objrascor" "obiratus sum " ; -- [XXXDO] :: be angry (with/at); grow angry at (Cas); objurgator_M_N = mkN "objurgator" "objurgatoris " masculine ; -- [XXXDS] :: rebuker; objurgatorius_A = mkA "objurgatorius" "objurgatoria" "objurgatorium" ; -- [XXXEC] :: reproachful, scolding; objurgo_V = mkV "objurgare" ; -- [XXXDX] :: scold, chide, reproach; + oblanguesco_V = mkV "oblanguescere" "oblanguesco" "oblangui" nonExist; -- [XXXFS] :: become feeble; oblaqueatio_F_N = mkN "oblaqueatio" "oblaqueationis " feminine ; -- [EAXFS] :: tree-root digging; oblaqueo_V = mkV "oblaqueare" ; -- [EAXFS] :: dig around tree-roots; E:surround, encircle; oblatio_F_N = mkN "oblatio" "oblationis " feminine ; -- [XXXEO] :: offer/offering (of something), tender, presentation; right to offer something; @@ -25402,6 +27240,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg oblectamentum_N_N = mkN "oblectamentum" ; -- [XXXDX] :: delight, pleasure, source of pleasure; oblectatio_F_N = mkN "oblectatio" "oblectationis " feminine ; -- [XXXDX] :: delighting; oblecto_V = mkV "oblectare" ; -- [XXXDX] :: delight, please, amuse; + oblido_V2 = mkV2 (mkV "oblidere" "oblido" "oblisi" "oblisus ") ; -- [XXXEC] :: crush; obligamentum_N_N = mkN "obligamentum" ; -- [XXXFS] :: band (for head); E:obligation? (as used in Tertullian); obligatio_F_N = mkN "obligatio" "obligationis " feminine ; -- [XXXCO] :: obligation (legal/money); bond; being liable; mortgaging/pledging/guaranteeing; obligo_V = mkV "obligare" ; -- [XXXDX] :: bind, oblige; @@ -25410,19 +27249,24 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg obliquus_A = mkA "obliquus" "obliqua" "obliquum" ; -- [XXXDX] :: slanting; oblique; oblitero_V = mkV "obliterare" ; -- [XXXDX] :: cause to be forgotten/fall into disuse/to disappear; assign to oblivion; obliterus_A = mkA "obliterus" "oblitera" "obliterum" ; -- [XXXFO] :: forgotten; erased from memory; + oblitesco_V = mkV "oblitescere" "oblitesco" "oblitui" nonExist; -- [XXXEC] :: conceal oneself; oblittero_V = mkV "oblitterare" ; -- [XXXDX] :: cause to be forgotten/fall into disuse/to disappear; assign to oblivion; oblitterus_A = mkA "oblitterus" "oblittera" "oblitterum" ; -- [XXXFO] :: forgotten; erased from memory; oblitus_A = mkA "oblitus" "oblita" "oblitum" ; -- [XXXDX] :: forgetful (with gen.); obliurgatio_F_N = mkN "obliurgatio" "obliurgationis " feminine ; -- [XXXCO] :: reprimand, rebuke; action of reproving; oblivio_F_N = mkN "oblivio" "oblivionis " feminine ; -- [XXXBX] :: oblivion; forgetfulness; obliviosus_A = mkA "obliviosus" "obliviosa" "obliviosum" ; -- [XXXEC] :: oblivious, forgetful; causing forgetfulness; + obliviscor_V = mkV "oblivisci" "obliviscor" "oblitus sum " ; -- [XXXAX] :: forget; (with GEN); oblivium_N_N = mkN "oblivium" ; -- [XXXDX] :: forgetfulness, oblivion; oblocutor_M_N = mkN "oblocutor" "oblocutoris " masculine ; -- [BXXFS] :: contradictor; oblongus_A = mkA "oblongus" "oblonga" "oblongum" ; -- [XXXEC] :: oblong; + obloquor_V = mkV "obloqui" "obloquor" "oblocutus sum " ; -- [XXXDX] :: interpose remarks, interrupt; obluctor_V = mkV "obluctari" ; -- [XXXDX] :: struggle against; + obmolior_V = mkV "obmoliri" "obmolior" "obmolitus sum " ; -- [XXXDX] :: put in the way as an obstruction; block up; obmurmuro_V = mkV "obmurmurare" ; -- [XXXDX] :: murmur in protest (at); --- TODO obmutesco_V : V2 obmutesco, obmutescere, obmutui, - -- Declension: 3rd -- Comment: [XXXDX] :: lose one's speech, become silent; + obmutesco_V2 = mkV2 (mkV "obmutescere" "obmutesco" "obmutui" nonExist ) ; -- [XXXDX] :: lose one's speech, become silent; obnatus_A = mkA "obnatus" "obnata" "obnatum" ; -- [XXXEC] :: growing on; + obnitor_V = mkV "obniti" "obnitor" "obnixus sum " ; -- [XXXDX] :: thrust/press against; struggle against, offer resistance; make a stand; obnixe_Adv = mkAdv "obnixe" ; -- [XXXEO] :: resolutely; strenuously; obnixie_Adv = mkAdv "obnixie" ; -- [XXXEO] :: submissively, in a servile manner; in restricted manner, subject to hindrance; obnixus_A = mkA "obnixus" "obnixa" "obnixum" ; -- [XXXDO] :: resolute, determined; obstinate; @@ -25431,6 +27275,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg obnoxius_A = mkA "obnoxius" "obnoxia" "obnoxium" ; -- [XXXBX] :: liable; guilty; obnubilatio_F_N = mkN "obnubilatio" "obnubilationis " feminine ; -- [FXXFM] :: darkening; obnubilo_V2 = mkV2 (mkV "obnubilare") ; -- [XXXDO] :: obscure, render dark/obscure; darken/cloud/fog (the mind); render unconscious; + obnubo_V2 = mkV2 (mkV "obnubere" "obnubo" "obnupsi" "obnuptus ") ; -- [XXXDX] :: veil, cover (the head); obnuntiatio_F_N = mkN "obnuntiatio" "obnuntiationis " feminine ; -- [XXXDS] :: announced bad omen; announcement of poor omen; obnuntio_V = mkV "obnuntiare" ; -- [XXXDX] :: announce adverse omens; oboedens_A = mkA "oboedens" "oboedentis"; -- [XXXCO] :: obedient, compliant, submissive to authority/commands/word (of); under orders; @@ -25438,16 +27283,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg oboedienter_Adv =mkAdv "oboedienter" "oboedientius" "oboedientissime" ; -- [XXXEO] :: obediently, compliantly, without demur; willingly, readily (L+S); oboedientia_F_N = mkN "oboedientia" ; -- [XXXCO] :: obedience, compliance, submission to authority; oboedientio_F_N = mkN "oboedientio" "oboedientionis " feminine ; -- [DXXCS] :: obedience, compliance, submission to authority; + oboedio_V2 = mkV2 (mkV "oboedire" "oboedio" "oboedivi" "oboeditus ") ; -- [XXXBX] :: obey; listen/harken/submit (to); be subject/obedient/responsible/a slave (to); oboleo_V = mkV "obolere" ; -- [XXXCO] :: stink, smell of; present an odor, give forth a smell, betray oneself w/smell; obolus_M_N = mkN "obolus" ; -- [XLHCO] :: obol/obole/obolus, Greek coin or Greek weight (of 1/6 drachma); (a nickel?); + oborior_V = mkV "oboriri" "oborior" "obortus sum " ; -- [XXXBO] :: arise, occur (thoughts); appear, spring/rise up before; well up (tears); obortus_A = mkA "obortus" "oborta" "obortum" ; -- [XXXDX] :: rising, flowing; obprobrium_N_N = mkN "obprobrium" ; -- [XXXDX] :: reproach, taunt; disgrace, shame, scandal; source of reproach/shame; + obrepo_V2 = mkV2 (mkV "obrepere" "obrepo" "obrepsi" "obreptus ") ; -- [XXXBO] :: creep up on/approach unawares/unobserved; sneak/drop in; pay surprise visit on; obreptio_F_N = mkN "obreptio" "obreptionis " feminine ; -- [XXXEO] :: creeping/sneaking up unseen; surprise; fraudulent/improper means of obtaining; obrepto_V = mkV "obreptare" ; -- [XXXEO] :: creep up on, approach stealthily; --- TODO obrigesco_V : V2 obrigesco, obrigescere, obrigui, - -- Declension: 3rd -- Comment: [XXXES] :: stiffen; + obretio_V2 = mkV2 (mkV "obretire" "obretio" nonExist nonExist) ; -- [XXXEC] :: catch in a net; + obrigesco_V2 = mkV2 (mkV "obrigescere" "obrigesco" "obrigui" nonExist ) ; -- [XXXES] :: stiffen; obrizum_N_N = mkN "obrizum" ; -- [EXXFS] :: pure gold (Vulgate); (also written obrizum aurum); fine gold (Ecc); obrizus_A = mkA "obrizus" "obriza" "obrizum" ; -- [EXXFE] :: fine (gold); refined; assayed, tested (OLD); obrogo_V = mkV "obrogare" ; -- [XLXFS] :: abrogate; oppose passage of law; partly repeal law; + obruo_V2 = mkV2 (mkV "obruere" "obruo" "obrui" "obrutus ") ; -- [XXXBX] :: cover up, hide, bury; overwhelm, ruin; crush; obrussa_F_N = mkN "obrussa" ; -- [XXXCO] :: assay; test; assaying/testing of gold; [aurum ad ~ => tested/fine gold]; obrussus_A = mkA "obrussus" "obrussa" "obrussum" ; -- [XXXFO] :: fine (gold); refined; assayed, tested (OLD); obruza_F_N = mkN "obruza" ; -- [XXXCO] :: assay; test; assaying/testing of gold; [aurum ad ~ => tested/fine gold]; @@ -25457,21 +27307,22 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg obryza_F_N = mkN "obryza" ; -- [DXXFS] :: standard gold; fine/pure gold (OLD); obryzatus_A = mkA "obryzatus" "obryzata" "obryzatum" ; -- [DXXFS] :: made of standard gold); obryzum_N_N = mkN "obryzum" ; -- [EXXFS] :: pure gold; (also written obryzum aurum); + obsaepio_V2 = mkV2 (mkV "obsaepire" "obsaepio" "obsaepsi" "obsaeptus ") ; -- [XXXDX] :: enclose, seal up; block, obstruct; obsaturo_V2 = mkV2 (mkV "obsaturare") ; -- [XXXDS] :: sate, glut; obscaene_Adv =mkAdv "obscaene" "obscaenius" "obscaenissime" ; -- [XXXDO] :: obscenely, so as to involve obscenity (of language), indecently, lewdly; obscaenitas_F_N = mkN "obscaenitas" "obscaenitatis " feminine ; -- [XXXCO] :: indecency, obscenity (language); indecent/obscene behavior/figures; ill omen; obscaenum_N_N = mkN "obscaenum" ; -- [XXXCO] :: |foul/indecent/obscene/lewd language/utterances/behavior (pl.); --- SLASHSTUFF obscaenus_A : A2 obscaenus, obscaena -um, obscaenior -or -us, obscaenissimus -a -um -- [XXXBO] :: |inauspicious/unpropitious; ill-omened/boding ill; filthy, polluted, disgusting; + obscaenus_A = mkA "obscaenus" ; -- [XXXBO] :: |inauspicious/unpropitious; ill-omened/boding ill; filthy, polluted, disgusting; obscaenus_M_N = mkN "obscaenus" ; -- [XXXCO] :: sexual pervert; foul-mouthed person; obscene_Adv =mkAdv "obscene" "obscenius" "obscenissime" ; -- [XXXDO] :: obscenely, so as to involve obscenity (of language), indecently, lewdly; obscenitas_F_N = mkN "obscenitas" "obscenitatis " feminine ; -- [XXXCO] :: indecency, obscenity (language); indecent/obscene behavior/figures; ill omen; obscenum_N_N = mkN "obscenum" ; -- [XXXCO] :: |foul/indecent/obscene/lewd language/utterances/behavior (pl.); --- SLASHSTUFF obscenus_A : A2 obscenus, obscena -um, obscenior -or -us, obscenissimus -a -um -- [XXXBO] :: |inauspicious/unpropitious; ill-omened/boding ill; filthy, polluted, disgusting; + obscenus_A = mkA "obscenus" ; -- [XXXBO] :: |inauspicious/unpropitious; ill-omened/boding ill; filthy, polluted, disgusting; obscenus_M_N = mkN "obscenus" ; -- [XXXCO] :: sexual pervert; foul-mouthed person; obscuratio_F_N = mkN "obscuratio" "obscurationis " feminine ; -- [XXXDS] :: darkening; obscuring; obscuritas_F_N = mkN "obscuritas" "obscuritatis " feminine ; -- [XXXDX] :: darkness, obscurity unintelligibility; obscuro_V = mkV "obscurare" ; -- [XXXDX] :: darken, obscure; conceal; make indistinct; cause to be forgotten; --- SLASHSTUFF obscurus_A : A2 obscurus, obscura -um, obscurior -or -us, obscurissimus -a -um -- [XXXAO] :: |||not open; vague/uncertain/dim/faint, poorly known; unclear; incomprehensible; + obscurus_A = mkA "obscurus" ; -- [XXXAO] :: |||not open; vague/uncertain/dim/faint, poorly known; unclear; incomprehensible; obsecratio_F_N = mkN "obsecratio" "obsecrationis " feminine ; -- [XXXDX] :: supplication, entreaty; public act of prayer; obsecro_V2 = mkV2 (mkV "obsecrare") ; -- [XXXBO] :: entreat/beseech/implore/pray; (w/deity as object); [fidem ~ => beg support]; obsecundanter_Adv = mkAdv "obsecundanter" ; -- [DXXFS] :: according to; in compliance with; @@ -25482,7 +27333,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg obsequentia_F_N = mkN "obsequentia" ; -- [XXXFS] :: obsequiousness; complaisance; obsequiosus_A = mkA "obsequiosus" "obsequiosa" "obsequiosum" ; -- [BXXES] :: obsequent; compliant, yielding, obedient; complaisant; obsequium_N_N = mkN "obsequium" ; -- [XXXBO] :: ||servility/subservience/obsequiousness; ceremony (Bee); attendance; retinue; - obsero_V2 = mkV2 (mkV "obserare") ; -- [XXXCO] :: bolt, fasten, place a bar across; bar, prohibit access to; shot off, enclose; + obsequor_V = mkV "obsequi" "obsequor" "obsecutus sum " ; -- [XXXBX] :: yield to; humor; + obsero_V2 = mkV2 (mkV "obserere" "obsero" "obsevi" "obsitus ") ; -- [XXXDX] :: sow, plant; cover; observatio_F_N = mkN "observatio" "observationis " feminine ; -- [XXXAO] :: observation, attention, action of watching/taking notice; surveillance; usage; observatorium_N_N = mkN "observatorium" ; -- [GSXEK] :: observatory; observito_V = mkV "observitare" ; -- [XXXCS] :: observe; watch carefully; @@ -25500,11 +27352,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg obsidio_F_N = mkN "obsidio" "obsidionis " feminine ; -- [XWXDX] :: siege; blockade; obsidionalis_A = mkA "obsidionalis" "obsidionalis" "obsidionale" ; -- [XWXCO] :: of/connected with siege/blockade; [corona ~ => grass crown for raising siege]; obsidium_N_N = mkN "obsidium" ; -- [XWXDX] :: siege, blockade; --- TODO obsido_V : V2 obsido, obsidere, -, - -- Declension: 3rd -- Comment: [XWXDX] :: besiege; occupy; + obsido_V = mkV "obsidere" "obsido" nonExist nonExist ; -- [XWXDX] :: besiege; occupy; obsignator_M_N = mkN "obsignator" "obsignatoris " masculine ; -- [XXXDX] :: sealer, witness; obsigno_V = mkV "obsignare" ; -- [XXXDX] :: sign, seal; + obsisto_V2 = mkV2 (mkV "obsistere" "obsisto" "obstiti" "obstitus ") ; -- [XXXDX] :: oppose, resist; stand in the way; make a stand against, withstand; obsitus_A = mkA "obsitus" "obsita" "obsitum" ; -- [XXXDX] :: overgrown, covered (with); + obsolefacio_V2 = mkV2 (mkV "obsolefacere" "obsolefacio" "obsolefeci" "obsolefactus ") ; -- [XXXDO] :: degrade/abase; lower worth/dignity of; make common; wear out (L+S); spoil/sully; obsolefio_V = mkV "obsoleferi" ; -- [XXXDO] :: be degraded/sullied/abased; become worn out; (obsolefacio PASS); + obsolesco_V2 = mkV2 (mkV "obsolescere" "obsolesco" "obsolevi" "obsoletus ") ; -- [XXXDX] :: fall into disuse, be forgotten about; obsoletus_A = mkA "obsoletus" "obsoleta" "obsoletum" ; -- [XXXDX] :: worn-out, dilapidated; hackneyed; obsonator_M_N = mkN "obsonator" "obsonatoris " masculine ; -- [XXXDS] :: buyer of victuals; caterer; obsonatus_M_N = mkN "obsonatus" "obsonatus " masculine ; -- [XXXDS] :: catering; marketing; @@ -25523,33 +27378,46 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg obstinatio_F_N = mkN "obstinatio" "obstinationis " feminine ; -- [XXXDX] :: determination, stubbornness; obstinatus_A = mkA "obstinatus" "obstinata" "obstinatum" ; -- [XXXDX] :: firm, resolved, resolute; obstinate; obstino_V = mkV "obstinare" ; -- [XXXDX] :: be determined on; --- TODO obstipesco_V : V2 obstipesco, obstipescere, obstipui, - -- Declension: 3rd -- Comment: [XXXDX] :: be amazed; + obstipesco_V2 = mkV2 (mkV "obstipescere" "obstipesco" "obstipui" nonExist ) ; -- [XXXDX] :: be amazed; obstipus_A = mkA "obstipus" "obstipa" "obstipum" ; -- [XXXDX] :: awry, crooked, bent sideways or at an angle; obstitrix_F_N = mkN "obstitrix" "obstitricis " feminine ; -- [DBXCS] :: midwife; obsto_V = mkV "obstare" ; -- [XXXBX] :: oppose, hinder; (w/DAT); + obstrepo_V2 = mkV2 (mkV "obstrepere" "obstrepo" "obstrepui" "obstrepitus ") ; -- [XXXDX] :: roar against; make a loud noise; + obstringo_V2 = mkV2 (mkV "obstringere" "obstringo" "obstrinxi" "obstrictus ") ; -- [XXXDX] :: confine; involve; oblige, put under an obligation, bind, bind by oath; obstructio_F_N = mkN "obstructio" "obstructionis " feminine ; -- [XXXDS] :: barrier; obstruction; + obstruo_V2 = mkV2 (mkV "obstruere" "obstruo" "obstruxi" "obstructus ") ; -- [XXXDX] :: block up, barricade; + obstupefacio_V2 = mkV2 (mkV "obstupefacere" "obstupefacio" "obstupefeci" "obstupefactus ") ; -- [XXXCO] :: strike dumb (w/powerful emotion)/stun/daze/paralyze; befuddle/stupefy (w/drink); obstupefio_V = mkV "obstupeferi" ; -- [XXXCO] :: be astonished/dazed/paralyzed/stunned (w/emotion); (obstupefacio PASS); --- TODO obstupesco_V : V2 obstupesco, obstupescere, obstupui, - -- Declension: 3rd -- Comment: [XXXDX] :: be stupefied; be struck dumb; be astounded; + obstupesco_V2 = mkV2 (mkV "obstupescere" "obstupesco" "obstupui" nonExist ) ; -- [XXXDX] :: be stupefied; be struck dumb; be astounded; obstupidus_A = mkA "obstupidus" "obstupida" "obstupidum" ; -- [XXXDS] :: stupefied; confounded; obsum_V = mkV "obesse" "obsum" "offui" "offuturus " ; -- Comment: [XXXDX] :: hurt; be a nuisance to, tell against; + obsuo_V2 = mkV2 (mkV "obsuere" "obsuo" "obsui" "obsutus ") ; -- [XXXDX] :: sew up; + obsurdesco_V = mkV "obsurdescere" "obsurdesco" "obsurdui" nonExist; -- [XXXEC] :: become deaf; turn a deaf ear; + obtego_V2 = mkV2 (mkV "obtegere" "obtego" "obtexi" "obtectus ") ; -- [XXXDX] :: cover over; conceal; protect; obtemperatio_F_N = mkN "obtemperatio" "obtemperationis " feminine ; -- [XXXFS] :: obedience; obtempero_V = mkV "obtemperare" ; -- [XXXCO] :: obey; comply with the demands of; be submissive to; (w/DAT); + obtendo_V2 = mkV2 (mkV "obtendere" "obtendo" "obtendi" "obtentus ") ; -- [XXXDX] :: stretch/spread before/over; hide, envelop, conceal; plead as an excuse; + obtenebresco_V = mkV "obtenebrescere" "obtenebresco" nonExist nonExist; -- [XEXFS] :: grow dark; obtenebricatus_A = mkA "obtenebricatus" "obtenebricata" "obtenebricatum" ; -- [EXXFW] :: darkened, made dark; obtenebro_V2 = mkV2 (mkV "obtenebrare") ; -- [DXXCS] :: darken, make dark; obscure, conceal (Saxo); obtentus_M_N = mkN "obtentus" "obtentus " masculine ; -- [XXXDX] :: spreading before; cloaking, disguising, pretext; + obtero_V2 = mkV2 (mkV "obterere" "obtero" "obtrivi" "obtritus ") ; -- [XXXDX] :: crush; destroy; trample on, speak of or treat with the utmost contempt; obtestatio_F_N = mkN "obtestatio" "obtestationis " feminine ; -- [XXXDX] :: earnest entreaty, supplication; obtestor_V = mkV "obtestari" ; -- [XXXDX] :: call to witness; implore; --- TODO obtexo_V : V2 obtexo, obtexere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: veil, cover, overspread; weave over; + obtexo_V = mkV "obtexere" "obtexo" nonExist nonExist ; -- [XXXDX] :: veil, cover, overspread; weave over; obticeo_V = mkV "obticere" ; -- [XXXEC] :: be silent; --- TODO obticesco_V : V2 obticesco, obticescere, obticui, - -- Declension: 3rd -- Comment: [XXXDX] :: meet a situation with silence; + obticesco_V2 = mkV2 (mkV "obticescere" "obticesco" "obticui" nonExist ) ; -- [XXXDX] :: meet a situation with silence; obtineo_V = mkV "obtinere" ; -- [XXXAO] :: get hold of; maintain; obtain; hold fast, occupy; prevail; --- TODO obtorpesco_V : V2 obtorpesco, obtorpescere, obtorpui, - -- Declension: 3rd -- Comment: [XXXDX] :: become numb; lose feeling; + obtingo_V = mkV "obtingere" "obtingo" "obtigi" nonExist; -- [XXXCO] :: befall, occur (to advantage/disadvantage); fall to as one's lot; + obtorpesco_V2 = mkV2 (mkV "obtorpescere" "obtorpesco" "obtorpui" nonExist ) ; -- [XXXDX] :: become numb; lose feeling; obtorqueo_V = mkV "obtorquere" ; -- [XXXDX] :: bend back; twist or turn; obtrectatio_F_N = mkN "obtrectatio" "obtrectationis " feminine ; -- [XXXDX] :: disparagement; detraction; verbal attack inspired by malice or spite; obtrectator_M_N = mkN "obtrectator" "obtrectatoris " masculine ; -- [XXXDX] :: critic, disparager; obtrecto_V = mkV "obtrectare" ; -- [XXXDX] :: detract from; disparage, belittle; obtrunco_V = mkV "obtruncare" ; -- [XXXDX] :: kill; cut down; obtueeor_V = mkV "obtueeri" ; -- [XXXDS] :: gaze at; perceive; + obtundo_V2 = mkV2 (mkV "obtundere" "obtundo" "obtudi" "obtusus ") ; -- [XXXDX] :: strike, beat, batter; make blunt; deafen; + obturgesco_V = mkV "obturgescere" "obturgesco" "obtursi" nonExist; -- [XXXFS] :: swell up; obturo_V2 = mkV2 (mkV "obturare") ; -- [XXXEC] :: stop up; obtusus_A = mkA "obtusus" "obtusa" "obtusum" ; -- [XXXDX] :: blunt; dull; obtuse; obtutus_M_N = mkN "obtutus" "obtutus " masculine ; -- [XXXDX] :: gaze; contemplation; @@ -25557,45 +27425,56 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg obuncus_A = mkA "obuncus" "obunca" "obuncum" ; -- [XXXDX] :: bent, hooked; obustus_A = mkA "obustus" "obusta" "obustum" ; -- [XXXDX] :: having extremity burnt to form a point; scorched by burning; obvallatus_A = mkA "obvallatus" "obvallata" "obvallatum" ; -- [XXXDX] :: fortified (Collins = VPAR obvallo); + obvenio_V2 = mkV2 (mkV "obvenire" "obvenio" "obveni" "obventus ") ; -- [XXXDX] :: meet; obversor_V = mkV "obversari" ; -- [XXXDX] :: appear before one; go to and fro publicly; obversus_A = mkA "obversus" "obversa" "obversum" ; -- [XXXCO] :: opposite, facing; turned towards; on the opposite side of the world; obversus_M_N = mkN "obversus" ; -- [XXXFQ] :: enemy (pl.); (Collins); + obverto_V2 = mkV2 (mkV "obvertere" "obverto" "obverti" "obversus ") ; -- [XXXDX] :: turn or direct towards; direct against; obviam_Adv = mkAdv "obviam" ; -- [XXXDX] :: in the way; against; obvio_V2 = mkV2 (mkV "obviare") Dat_Prep ; -- [XXXDX] :: meet (with dat.); obvius_A = mkA "obvius" "obvia" "obvium" ; -- [XXXAX] :: in the way, easy; hostile; exposed (to); + obvolvo_V2 = mkV2 (mkV "obvolvere" "obvolvo" "obvolvi" "obvolutus ") ; -- [XXXCO] :: wrap/muffle/cover up; cover (head/face) completely; wrap/wind (bandage) over; occaeco_V = mkV "occaecare" ; -- [XXXDX] :: blind; blot out the light of day, darken; obscure, bury, conceal; seal/stop up; --- TODO occallesco_V : V2 occallesco, occallescere, occallui, - -- Declension: 3rd -- Comment: [XXXDX] :: become callous; acquire a thick skin; + occallesco_V2 = mkV2 (mkV "occallescere" "occallesco" "occallui" nonExist ) ; -- [XXXDX] :: become callous; acquire a thick skin; + occano_V2 = mkV2 (mkV "occanere" "occano" "occanui" nonExist) ; -- [XXXEC] :: sound; occasio_F_N = mkN "occasio" "occasionis " feminine ; -- [XXXBX] :: opportunity; chance; pretext, occasion; occasiuncula_F_N = mkN "occasiuncula" ; -- [XXXDS] :: opportunity; occasus_M_N = mkN "occasus" "occasus " masculine ; -- [XXXBX] :: setting; [solis occasus => sunset; west]; occatio_F_N = mkN "occatio" "occationis " feminine ; -- [XXXDS] :: harrowing; occator_M_N = mkN "occator" "occatoris " masculine ; -- [XXXDS] :: harrower; one who harrows; occecatio_F_N = mkN "occecatio" "occecationis " feminine ; -- [FBXFM] :: blindness; + occedo_V2 = mkV2 (mkV "occedere" "occedo" "occessi" "occessus ") ; -- [XXXEC] :: go towards, meet; occento_V = mkV "occentare" ; -- [XXXEC] :: sing a serenade to; sing a lampoon against; occidens_A = mkA "occidens" "occidentis"; -- [XSXEO] :: connected with sunset/evening; western, westerly; occidens_M_N = mkN "occidens" "occidentis " masculine ; -- [XSXCO] :: west; region of the setting sun; western part of the world/its inhabitants; occidentalis_A = mkA "occidentalis" "occidentalis" "occidentale" ; -- [XXXFO] :: of/pertaining to/connected with/coming from the west; westerly; occidio_F_N = mkN "occidio" "occidionis " feminine ; -- [XXXDX] :: massacre; wholesale slaughter; + occido_V2 = mkV2 (mkV "occidere" "occido" "occidi" "occisus ") ; -- [XXXAX] :: kill, murder, slaughter, slay; cut/knock down; weary, be the death/ruin of; occiduus_A = mkA "occiduus" "occidua" "occiduum" ; -- [XXXDX] :: setting; westerly; --- TODO occino_V : V2 occino, occinere, occinui, - -- Declension: 3rd -- Comment: [XXXDX] :: break in with a song or call; interpose a call; sing inauspiciously, croak; + occino_V2 = mkV2 (mkV "occinere" "occino" "occinui" nonExist ) ; -- [XXXDX] :: break in with a song or call; interpose a call; sing inauspiciously, croak; + occipio_V2 = mkV2 (mkV "occipere" "occipio" "occepi" "occeptus ") ; -- [XXXDX] :: begin; occipitium_N_N = mkN "occipitium" ; -- [XXXEC] :: back of the head, occiput; occiput_N_N = mkN "occiput" "occipitis " neuter ; -- [XXXEC] :: back of the head, occiput; occisio_F_N = mkN "occisio" "occisionis " feminine ; -- [XXXEO] :: murder, killing; slaughter; occisor_M_N = mkN "occisor" "occisoris " masculine ; -- [BXXFS] :: slayer; occlamito_V = mkV "occlamitare" ; -- [BXXFS] :: cry aloud; bawl out; + occludo_V2 = mkV2 (mkV "occludere" "occludo" "occlusi" "occlusus ") ; -- [XXXEC] :: shut up, close up; occo_V = mkV "occare" ; -- [XXXDX] :: harrow (ground); occubo_V = mkV "occubare" ; -- [XXXCO] :: lie (against/on top of); lie dead; occulco_V = mkV "occulcare" ; -- [XXXDX] :: trample down; + occulo_V2 = mkV2 (mkV "occulere" "occulo" "occului" "occultus ") ; -- [XXXDX] :: cover; cover up, hide, cover over, conceal; occultatio_F_N = mkN "occultatio" "occultationis " feminine ; -- [XXXDX] :: concealment; occulte_Adv = mkAdv "occulte" ; -- [XXXDX] :: secretly; occultismus_M_N = mkN "occultismus" ; -- [GXXEK] :: occultism; occulto_V = mkV "occultare" ; -- [XXXBX] :: hide; conceal; occultum_N_N = mkN "occultum" ; -- [XXXES] :: secrecy; hiding; --- SLASHSTUFF occultus_A : A2 occultus, occulta -um, occultior -or -us, occultissimus -a -um -- [XXXBX] :: hidden, secret; [in occulto => secretly]; + occultus_A = mkA "occultus" ; -- [XXXBX] :: hidden, secret; [in occulto => secretly]; + occumbo_V2 = mkV2 (mkV "occumbere" "occumbo" "occumbui" "occumbitus ") ; -- [XXXDX] :: meet with (death); meet one's death; occupatio_F_N = mkN "occupatio" "occupationis " feminine ; -- [XXXDX] :: occupation, employment; occupatus_A = mkA "occupatus" "occupata" "occupatum" ; -- [XXXDS] :: occupied; busy; occupo_V = mkV "occupare" ; -- [XXXBX] :: seize; gain; overtake; capture, occupy; attack; occuro_V = mkV "occurare" ; -- [FXXEN] :: occur, come about; happen; + occurro_V2 = mkV2 (mkV "occurrere" "occurro" "occurri" "occursus ") ; -- [XXXBX] :: run to meet; oppose, resist; come to mind, occur (with DAT); occurso_V = mkV "occursare" ; -- [XXXDX] :: run repeatedly or in large numbers; mob; obstruct; occursus_M_N = mkN "occursus" "occursus " masculine ; -- [XXXDX] :: meeting; ocellum_N_N = mkN "ocellum" ; -- [GXXEK] :: buttonhole; @@ -25605,7 +27484,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ocimus_M_N = mkN "ocimus" ; -- [XAXCO] :: herb, basil (Ocimim basilicum); ocinum_N_N = mkN "ocinum" ; -- [XAXES] :: fodder herb; clover-like plant; ocior_A = mkA "ocior" "ocior" "ocius" ; -- [XXXDX] :: swifter, more speedy/rapid; sooner, prompter; appearing/occurring earlier; --- SLASHSTUFF ocis_A : A2 ocis, oce, ocior -or -us, ocissimus -a -um -- [XXXCO] :: swift/rapid, at speed; (COMP) arriving/appearing/occurring earlier/sooner; + ocis_A = mkA "ocis" ; -- [XXXCO] :: swift/rapid, at speed; (COMP) arriving/appearing/occurring earlier/sooner; ocissimus_A = mkA "ocissimus" "ocissima" "ocissimum" ; -- [XXXDX] :: swiftest, most speedy/rapid; soonest, most prompt; appearing/occurring earliest; ocrea_F_N = mkN "ocrea" ; -- [XXXDX] :: greave, armor for leg below the knee; leg-covering; ocreatus_A = mkA "ocreatus" "ocreata" "ocreatum" ; -- [XXXEC] :: wearing greaves (armor for leg below the knee); @@ -25626,8 +27505,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg oculus_M_N = mkN "oculus" ; -- [XXXAX] :: eye; odeo_V2 = mkV2 (mkV "odire") ; -- [EXXCW] :: hate; dislike; be disinclined/reluctant/adverse to; (usu. PREFDEF); odibilis_A = mkA "odibilis" "odibilis" "odibile" ; -- [XXXFO] :: odious, hateful; that deserves to be hated; + odio_V2 = mkV2 (mkV "odire" "odio" "odivi" nonExist) ; -- [FXXCF] :: hate; dislike; be disinclined/reluctant/adverse to; (usu. PREFDEF); odiose_Adv = mkAdv "odiose" ; -- [XXXDO] :: distastefully, repugnantly; so as to be tiresome/a nuisance; --- SLASHSTUFF odiosus_A : A2 odiosus, odiosa -um, odiosior -or -us, odiosissimus -a -um -- [XXXCO] :: distasteful. disagreeable, offensive; tiresome, boring, troublesome, annoying; + odiosus_A = mkA "odiosus" ; -- [XXXCO] :: distasteful. disagreeable, offensive; tiresome, boring, troublesome, annoying; odium_N_N = mkN "odium" ; -- [XXXAO] :: |hatred (manifested by/towards group), hostility; object of hate/odium; odontalgia_F_N = mkN "odontalgia" ; -- [GXXEK] :: toothache; odontologia_F_N = mkN "odontologia" ; -- [GTXEK] :: dentistry; @@ -25653,18 +27533,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg oenanthe_F_N = mkN "oenanthe" "oenanthes " feminine ; -- [XAXES] :: wild grape; thorny plant; mother of Ptolemy Epiphanes; oenococtus_A = mkA "oenococtus" "oenococta" "oenococtum" ; -- [EAXFS] :: stewed-in-wine; oenophorum_N_N = mkN "oenophorum" ; -- [XXXEC] :: basket for wine; --- IGNORED oephi_N : N1 oephi, undeclined -- N -- [DEQFW] :: ephi/ephah, Jewish dry measure; (ten gomor, over twenty bushels); + oephi_N = constN "oephi" neuter ; -- [DEQFW] :: ephi/ephah, Jewish dry measure; (ten gomor, over twenty bushels); oestrus_M_N = mkN "oestrus" ; -- [XXXDX] :: gad-fly; oesypum_N_N = mkN "oesypum" ; -- [XXXDO] :: cosmetic; grease from unwashed wool (used in medicine/cosmetics); (lanolin?); ofella_F_N = mkN "ofella" ; -- [XXXEC] :: bit, morsel; offa_F_N = mkN "offa" ; -- [XXXDX] :: lump of food, cake; offendiculum_N_N = mkN "offendiculum" ; -- [XXXEO] :: obstacle, stumbling block, hindrance; cause of offense (L+S); + offendo_V2 = mkV2 (mkV "offendere" "offendo" "offendi" "offensus ") ; -- [XXXAO] :: ||come upon, meet, find, encounter, be faced with; run aground; violate/wrong; offensa_F_N = mkN "offensa" ; -- [XXXDX] :: offense, displeasure; offense to a person's feelings, resentment; offensio_F_N = mkN "offensio" "offensionis " feminine ; -- [XXXDX] :: displeasure; accident; offensiuncula_F_N = mkN "offensiuncula" ; -- [XXXEC] :: slight displeasure or check; offenso_V = mkV "offensare" ; -- [XXXDX] :: knock/strike against, bump into; offensum_N_N = mkN "offensum" ; -- [XXXES] :: offense; --- SLASHSTUFF offensus_A : A2 offensus, offensa -um, offensior -or -us, offensissimus -a -um -- [XXXFS] :: offensive, odious; + offensus_A = mkA "offensus" ; -- [XXXFS] :: offensive, odious; offensus_M_N = mkN "offensus" "offensus " masculine ; -- [XXXDX] :: collision, knock; offero_V = mkV "offerre" "offero" "obtuli" "oblatus " ; -- Comment: [XXXAX] :: offer; present; cause; bestow; offertio_F_N = mkN "offertio" "offertionis " feminine ; -- [FEXFY] :: sacrifice of Mass; @@ -25675,21 +27556,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg officialis_M_N = mkN "officialis" "officialis " masculine ; -- [XXXDO] :: official/servant attending a magistrate; an official; civil servant (Cal); officiarius_M_N = mkN "officiarius" ; -- [GWXEK] :: officer (military rank); officina_F_N = mkN "officina" ; -- [XXXDX] :: workshop; office; --- officio_V2 : V4 officio, officere, offeci, offectus -- Declension: 3rd -- Case: DAT -- Comment: [XXXDX] :: block the path (of ), check, impede; + officio_V2 = mkV2 (mkV "officere" "officio" "offeci" "offectus ") Dat_Prep ; -- [XXXDX] :: block the path (of ), check, impede; officiosus_A = mkA "officiosus" "officiosa" "officiosum" ; -- [XXXDX] :: dutiful, attentive; officious; officium_N_N = mkN "officium" ; -- [XXXAX] :: duty, obligation; kindness; service, office; --- SLASHSTUFF offirmatus_A : A2 offirmatus, offirmata -um, offirmatior -or -us, offirmatissimus -a -um -- [XXXDS] :: resolute; firm; + offigo_V2 = mkV2 (mkV "offigere" "offigo" "offixi" "offixus ") ; -- [XXXDS] :: fasten; drive in; + offirmatus_A = mkA "offirmatus" ; -- [XXXDS] :: resolute; firm; offirmo_V = mkV "offirmare" ; -- [DXXES] :: secure; bolt, lock, fasten, bar; be determined/inflexible; persevere in; + offlecto_V2 = mkV2 (mkV "offlectere" "offlecto" nonExist nonExist) ; -- [BXXFS] :: turn about; offoco_V2 = mkV2 (mkV "offocare") ; -- [XXXEO] :: choke, throttle; offrenatus_A = mkA "offrenatus" "offrenata" "offrenatum" ; -- [XXXDS] :: curbed; tamed; + offringo_V2 = mkV2 (mkV "offringere" "offringo" "offregi" "offractus ") ; -- [XAXEO] :: break up (ground) by cross-plowing; offucia_F_N = mkN "offucia" ; -- [XXXEC] :: paint, rouge; deceit; offuco_V2 = mkV2 (mkV "offucare") ; -- [XXXEO] :: choke, throttle; offulgeo_V2 = mkV2 (mkV "offulgere") Dat_Prep ; -- [XXXDX] :: shine forth in the path of, appear; shine on; + offundo_V2 = mkV2 (mkV "offundere" "offundo" "offudi" "offusus ") ; -- [XXXDX] :: pour/spread over; offuscatio_F_N = mkN "offuscatio" "offuscationis " feminine ; -- [DXXES] :: darkening, obscuring; vilifying, degrading (eccl.); surliness (Vulgate); ogdoas_F_N = mkN "ogdoas" "ogdoadis " feminine ; -- [XEXES] :: eight; one of eight Aeons of Valentinus; --- TODO ogganio_V : V2 ogganio, ogganire, -, - -- Declension: 4th -- Comment: [XXXEC] :: growl at; --- TODO oggannio_V : V2 oggannio, oggannire, -, - -- Declension: 4th -- Comment: [FXXFS] :: yelp; snarl, growl; --- TODO oggero_V : V2 oggero, oggerere, -, - -- Declension: 3rd -- Comment: [XBXFS] :: give; proffer; + ogganio_V = mkV "ogganire" "ogganio" nonExist nonExist ; -- [XXXEC] :: growl at; + oggannio_V = mkV "oggannire" "oggannio" nonExist nonExist ; -- [FXXFS] :: yelp; snarl, growl; + oggero_V = mkV "oggerere" "oggero" nonExist nonExist ; -- [XBXFS] :: give; proffer; oh_Interj = ss "oh" ; -- [XXXDX] :: oh! ah!; ohe_Interj = ss "ohe" ; -- [XXXDX] :: hey! hey there!; oi_Interj = ss "oi" ; -- [XXXEC] :: oh! ah!; @@ -25700,12 +27585,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg olearius_A = mkA "olearius" "olearia" "olearium" ; -- [XAXEC] :: of or for oil; olearius_M_N = mkN "olearius" ; -- [XXXDS] :: oil-seller; oleaster_M_N = mkN "oleaster" ; -- [XXXDX] :: wild olive-tree; + olefacio_V2 = mkV2 (mkV "olefacere" "olefacio" "olefeci" "olefactus ") ; -- [XXXCO] :: smell/detect odor of; get wind of/hear about; smell/sniff at; cause to smell of; olefacto_V2 = mkV2 (mkV "olefactare") ; -- [XXXEO] :: smell, sniff, perceive, detect; smell/sniff at; oleiductus_M_N = mkN "oleiductus" "oleiductus " masculine ; -- [GXXEK] :: pipeline; olens_A = mkA "olens" "olentis"; -- [XPXDS] :: odorous; fragrant; stinking; oleo_V = mkV "olere" ; -- [XXXDX] :: smell of, smell like; oleosus_A = mkA "oleosus" "oleosa" "oleosum" ; -- [XXXFS] :: oily (Pliny); oleum_N_N = mkN "oleum" ; -- [XXXAX] :: oil; + olfacio_V2 = mkV2 (mkV "olfacere" "olfacio" "olfeci" "olfactus ") ; -- [XXXCO] :: smell/detect odor of; get wind of/hear about; smell/sniff at; cause to smell of; olfacto_V2 = mkV2 (mkV "olfactare") ; -- [XXXEO] :: smell, sniff, perceive, detect; smell/sniff at; olfactoriolum_N_N = mkN "olfactoriolum" ; -- [DXXES] :: little smelling/scent bottle; sweet ball (Douay); olfactorium_N_N = mkN "olfactorium" ; -- [XXXEO] :: smelling/scent bottle; nose-gay (L+S); @@ -25730,12 +27617,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg olus_N_N = mkN "olus" "oleris " neuter ; -- [XXXDX] :: vegetables; cabbage, turnips, greens; kitchen/pot herbs; olyra_F_N = mkN "olyra" ; -- [DAXNS] :: spelt-like grain (Pliny); omasum_N_N = mkN "omasum" ; -- [XXXEC] :: bullock's tripe; --- IGNORED omega_N : N1 omega, undeclined -- N -- [XXHEW] :: omega; last letter of Greek alphabet; (transliterate as O); last; the end; + omega_N = constN "omega" neuter ; -- [XXHEW] :: omega; last letter of Greek alphabet; (transliterate as O); last; the end; omen_N_N = mkN "omen" "ominis " neuter ; -- [XXXBX] :: omen, sign; token; omentum_N_N = mkN "omentum" ; -- [XXXEC] :: fat; entrails, bowels; ominor_V = mkV "ominari" ; -- [XXXDX] :: forebode, presage; ominosus_A = mkA "ominosus" "ominosa" "ominosum" ; -- [XXXEC] :: foreboding, ominous; --- SLASHSTUFF omissus_A : A2 omissus, omissa -um, omissior -or -us, omississimus -a -um -- [XXXDS] :: remiss; negligent; + omissus_A = mkA "omissus" ; -- [XXXDS] :: remiss; negligent; + omitto_V2 = mkV2 (mkV "omittere" "omitto" "omisi" "omissus ") ; -- [XXXBX] :: lay aside; omit; let go; disregard; omne_N_N = mkN "omne" "omnis " neuter ; -- [XXXCC] :: all things (pl.); everything; a/the whole, entity, unit; omnia_Adv = mkAdv "omnia" ; -- [XXXEC] :: in all respects; omnifariam_Adv = mkAdv "omnifariam" ; -- [XXXEO] :: in every way; on every side; in all cases; @@ -25782,6 +27670,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg operatorius_A = mkA "operatorius" "operatoria" "operatorium" ; -- [GXXEK] :: operating; working; operculum_N_N = mkN "operculum" ; -- [XXXEC] :: lid, cover; operimentum_N_N = mkN "operimentum" ; -- [XXXDX] :: cover, lid, covering; + operio_V2 = mkV2 (mkV "operire" "operio" "operui" "opertus ") ; -- [XXXAO] :: cover (over); bury; overspread; shut/close; conceal; clothe, cover/hide the head operistitium_N_N = mkN "operistitium" ; -- [GXXEK] :: strike; opero_V = mkV "operare" ; -- [EXXDX] :: work; operate (math.); operor_V = mkV "operari" ; -- [XXXBX] :: labor, toil, work; perform (religious service), attend, serve; devote oneself; @@ -25819,10 +27708,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg oportet_V0 = mkV0 "oportet" ; -- [XXXAX] :: it is right/proper/necessary; it is becoming; it behooves; ought; oportune_Adv =mkAdv "oportune" "oportunius" "oportunissime" ; -- [XXXCO] :: suitably; advantageously; conveniently, opportunely, favorably; oportunitas_F_N = mkN "oportunitas" "oportunitatis " feminine ; -- [XXXBO] :: convenience, advantageousness; right time; opportuneness; opportunity, chance; --- SLASHSTUFF oportunus_A : A2 oportunus, oportuna -um, oportunior -or -us, oportunissimus -a -um -- [XXXAO] :: suitable; advantageous; useful, fit, favorable/opportune, ready; liable/exposed; + oportunus_A = mkA "oportunus" ; -- [XXXAO] :: suitable; advantageous; useful, fit, favorable/opportune, ready; liable/exposed; + oppando_V2 = mkV2 (mkV "oppandere" "oppando" "oppandi" "oppassus ") ; -- [XXXDS] :: spread/stretch out/in the way; oppansum_N_N = mkN "oppansum" ; -- [EEXFS] :: covering; envelop; oppassum_N_N = mkN "oppassum" ; -- [EEXFS] :: covering; envelop; --- oppedo_V2 : V4 oppedo, oppedere, -, - -- Declension: 3rd -- Case: DAT -- Comment: [XPXDS] :: break wind; insult; + oppedo_V2 = mkV2 (mkV "oppedere" "oppedo" nonExist nonExist) Dat_Prep ; -- [XPXDS] :: break wind; insult; + opperior_V = mkV "opperiri" "opperior" "opperitus sum " ; -- [XXXDX] :: wait (for); await; + oppeto_V2 = mkV2 (mkV "oppetere" "oppeto" "oppetivi" "oppetitus ") ; -- [XXXDX] :: meet, encounter; perish; oppidaneus_A = mkA "oppidaneus" "oppidanea" "oppidaneum" ; -- [EXXFS] :: of a town; oppidanus_A = mkA "oppidanus" "oppidana" "oppidanum" ; -- [XXXDS] :: provincial; of a small town; oppidanus_M_N = mkN "oppidanus" ; -- [XXXDX] :: townspeople (pl.); @@ -25831,31 +27723,34 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg oppidum_N_N = mkN "oppidum" ; -- [XXXBX] :: town; oppilo_V = mkV "oppilare" ; -- [XXXDX] :: stop up, block; oppleo_V = mkV "opplere" ; -- [XXXDX] :: fill (completely); overspread; + oppono_V2 = mkV2 (mkV "opponere" "oppono" "opposui" "oppositus ") ; -- [XXXBX] :: oppose; place opposite; opportune_Adv =mkAdv "opportune" "opportunius" "opportunissime" ; -- [XXXCO] :: suitably; advantageously; conveniently, opportunely, favorably; opportunismus_M_N = mkN "opportunismus" ; -- [GXXEK] :: opportunism; opportunitas_F_N = mkN "opportunitas" "opportunitatis " feminine ; -- [XXXBO] :: convenience, advantageousness; right time; opportuneness; opportunity, chance; --- SLASHSTUFF opportunus_A : A2 opportunus, opportuna -um, opportunior -or -us, opportunissimus -a -um -- [XXXAO] :: suitable; advantageous; useful, fit, favorable/opportune, ready; liable/exposed; + opportunus_A = mkA "opportunus" ; -- [XXXAO] :: suitable; advantageous; useful, fit, favorable/opportune, ready; liable/exposed; oppositus_A = mkA "oppositus" "opposita" "oppositum" ; -- [XXXDS] :: opposite; against; oppositus_M_N = mkN "oppositus" "oppositus " masculine ; -- [XXXDS] :: opposing; intervention; oppressio_F_N = mkN "oppressio" "oppressionis " feminine ; -- [XXXDS] :: force; oppression; seizure; B:catalepsy; oppressus_M_N = mkN "oppressus" "oppressus " masculine ; -- [XXXDS] :: pressure; + opprimo_V2 = mkV2 (mkV "opprimere" "opprimo" "oppressi" "oppressus ") ; -- [XXXAX] :: press down; suppress; overthrow; crush, overwhelm, fall upon, oppress; opprobrium_N_N = mkN "opprobrium" ; -- [XXXDX] :: reproach, taunt; disgrace, shame, scandal; source of reproach/shame; opprobro_V2 = mkV2 (mkV "opprobrare") ; -- [XXXEC] :: taunt, reproach; oppugnatio_F_N = mkN "oppugnatio" "oppugnationis " feminine ; -- [XXXDX] :: assault, siege, attack; storming; oppugnator_M_N = mkN "oppugnator" "oppugnatoris " masculine ; -- [XXXDX] :: attacker; oppugno_V = mkV "oppugnare" ; -- [XXXDX] :: attack, assault, storm, besiege; + oprepo_V2 = mkV2 (mkV "oprepere" "oprepo" "oprepsi" "opreptus ") ; -- [XXXBO] :: creep up on/approach unawares/unobserved; sneak/drop in; pay surprise visit on; opreptio_F_N = mkN "opreptio" "opreptionis " feminine ; -- [XXXEO] :: creeping/sneaking up unseen; surprise; fraudulent/improper means of obtaining; oprepto_V = mkV "opreptare" ; -- [XXXEO] :: creep up on, approach stealthily; ops_F_N = mkN "ops" "opis " feminine ; -- [XXXAX] :: power, might; help; influence; resources/wealth (pl.); opscaene_Adv =mkAdv "opscaene" "opscaenius" "opscaenissime" ; -- [XXXDO] :: obscenely, so as to involve obscenity (of language), indecently, lewdly; opscaenitas_F_N = mkN "opscaenitas" "opscaenitatis " feminine ; -- [XXXCO] :: indecency, obscenity (language); indecent/obscene behavior/figures; ill omen; opscaenum_N_N = mkN "opscaenum" ; -- [XXXCO] :: |foul/indecent/obscene/lewd language/utterances/behavior (pl.); --- SLASHSTUFF opscaenus_A : A2 opscaenus, opscaena -um, opscaenior -or -us, opscaenissimus -a -um -- [XXXBO] :: |inauspicious/unpropitious; ill-omened/boding ill; filthy, polluted, disgusting; + opscaenus_A = mkA "opscaenus" ; -- [XXXBO] :: |inauspicious/unpropitious; ill-omened/boding ill; filthy, polluted, disgusting; opscaenus_M_N = mkN "opscaenus" ; -- [XXXCO] :: sexual pervert; foul-mouthed person; opscene_Adv =mkAdv "opscene" "opscenius" "opscenissime" ; -- [XXXDO] :: obscenely, so as to involve obscenity (of language), indecently, lewdly; opscenitas_F_N = mkN "opscenitas" "opscenitatis " feminine ; -- [XXXCO] :: indecency, obscenity (language); indecent/obscene behavior/figures; ill omen; opscenum_N_N = mkN "opscenum" ; -- [XXXCO] :: |foul/indecent/obscene/lewd language/utterances/behavior (pl.); --- SLASHSTUFF opscenus_A : A2 opscenus, opscena -um, opscenior -or -us, opscenissimus -a -um -- [XXXBO] :: |inauspicious/unpropitious; ill-omened/boding ill; filthy, polluted, disgusting; + opscenus_A = mkA "opscenus" ; -- [XXXBO] :: |inauspicious/unpropitious; ill-omened/boding ill; filthy, polluted, disgusting; opscenus_M_N = mkN "opscenus" ; -- [XXXCO] :: sexual pervert; foul-mouthed person; opsecro_V2 = mkV2 (mkV "opsecrare") ; -- [XXXBO] :: entreat/beseech/implore/pray; (w/deity as object); [fidem ~ => beg support]; opsecundanter_Adv = mkAdv "opsecundanter" ; -- [DXXFS] :: according to; in compliance with; @@ -25873,7 +27768,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg optabilis_A = mkA "optabilis" "optabilis" "optabile" ; -- [XXXDO] :: desirable, to be wished for; desired, longed for; optatio_F_N = mkN "optatio" "optationis " feminine ; -- [XXXEO] :: wish; expression of a wish; act of wishing; optatum_N_N = mkN "optatum" ; -- [XXXDS] :: wish, desire; --- SLASHSTUFF optatus_A : A2 optatus, optata -um, optatior -or -us, optatissimus -a -um -- [XXXCO] :: desired, wished for, welcome; chosen; + optatus_A = mkA "optatus" ; -- [XXXCO] :: desired, wished for, welcome; chosen; optempero_V = mkV "optemperare" ; -- [XXXCO] :: obey; comply with the demands of; be submissive to; (w/DAT); opticus_A = mkA "opticus" "optica" "opticum" ; -- [GXXEK] :: optic; opticus_M_N = mkN "opticus" ; -- [GXXEK] :: optician; @@ -25883,6 +27778,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg optimista_M_N = mkN "optimista" ; -- [GXXEK] :: optimist; optimisticus_A = mkA "optimisticus" "optimistica" "optimisticum" ; -- [GXXEK] :: optimistic; optineo_V = mkV "optinere" ; -- [XXXAO] :: get hold of; maintain; obtain; hold fast, occupy; prevail; + optingo_V = mkV "optingere" "optingo" "optigi" nonExist; -- [XXXCO] :: befall, occur (to advantage/disadvantage); fall to as one's lot; optio_F_N = mkN "optio" "optionis " feminine ; -- [XXXDX] :: option, (free) choice; power/act of choosing; right of hero to pick reward; optio_M_N = mkN "optio" "optionis " masculine ; -- [XXXDX] :: adjutant, assistant, helper; junior officer chosen by centurion to assist; optivus_A = mkA "optivus" "optiva" "optivum" ; -- [XXXEC] :: chosen; @@ -25892,7 +27788,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg opulens_A = mkA "opulens" "opulentis"; -- [XXXEO] :: wealthy; rich in wealth/resources; well supplied; sumptuous, opulent, rich; opulente_Adv =mkAdv "opulente" "opulentius" "opulentissime" ; -- [XXXDX] :: richly, sumptuously, opulently; opulentia_F_N = mkN "opulentia" ; -- [XXXDX] :: riches, wealth; sumptuousness; --- SLASHSTUFF opulentus_A : A2 opulentus, opulenta -um, opulentior -or -us, opulentissimus -a -um -- [XXXBO] :: wealthy; rich in wealth/resources; well supplied; sumptuous, opulent, rich; + opulentus_A = mkA "opulentus" ; -- [XXXBO] :: wealthy; rich in wealth/resources; well supplied; sumptuous, opulent, rich; opupa_F_N = mkN "opupa" ; -- [EXXDW] :: hoopoe (bird of family Upupidae); pickax/crowbar; (birdlike); mattock/hoe (L+S); opus_N_N = mkN "opus" "operis " neuter ; -- [XXXAX] :: need; work; fortifications (pl.), works; [opus est => is useful, beneficial]; opusculum_N_N = mkN "opusculum" ; -- [XXXDX] :: little work, trifle; @@ -25920,7 +27816,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg orbo_V = mkV "orbare" ; -- [XXXDX] :: bereave (of parents, children, etc), deprive (of); orbus_A = mkA "orbus" "orba" "orbum" ; -- [XXXDX] :: bereft, deprived,childless; orca_F_N = mkN "orca" ; -- [XXXEC] :: pot or jar with a large belly and narrow neck; large sea mammal (grampus?); --- TODO orchas_N : N1 orchas, orchados/is -- F -- [XAXFO] :: species of olive; + orchas_1_N = mkN "orchas" "orchadis" feminine ; -- [XAXFO] :: species of olive; + orchas_2_N = mkN "orchas" "orchados" feminine ; -- [XAXFO] :: species of olive; orchestra_F_N = mkN "orchestra" ; -- [XXXDX] :: area in front of stage; (Greek, held chorus; Roman, seats for senators/VIPs); orchit_F_N = mkN "orchit" "orchitis " feminine ; -- [XAXFS] :: oblong olive; orcivus_A = mkA "orcivus" "orciva" "orcivum" ; -- [XLXEO] :: appointed (to position/office) under terms of a will; (of freedmen); @@ -25944,6 +27841,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ordinatus_A = mkA "ordinatus" "ordinata" "ordinatum" ; -- [XXXDS] :: well-ordered; appointed; ordinatus_M_N = mkN "ordinatus" ; -- [FEXFQ] :: ordinatus, one (clergy) who has a church (versus cardinatus); ordino_V = mkV "ordinare" ; -- [XXXBX] :: order/arrange, set in order; adjust, regulate; compose; ordain/appoint (Bee); + ordior_V = mkV "ordiri" "ordior" "orsus sum " ; -- [XXXDX] :: begin; orditus_A = mkA "orditus" "ordita" "orditum" ; -- [EXXFS] :: set up, laid down (warp of a web); undertaken, embarked upon, begun; ordo_M_N = mkN "ordo" "ordinis " masculine ; -- [XXXAX] :: row, order/rank; succession; series; class; bank (oars); order (of monks) (Bee); orestes_M_N = mkN "orestes" "orestae " masculine ; -- [XYHCO] :: Orestes; son of Agamennon and Clytaemnestra; play by Euripides; book by Varro; @@ -25976,17 +27874,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg origanum_N_N = mkN "origanum" ; -- [FXXEK] :: oregano; originalis_A = mkA "originalis" "originalis" "originale" ; -- [XXXEO] :: original; existing at/marking beginning; from which thing derives existence; origo_F_N = mkN "origo" "originis " feminine ; -- [XXXBX] :: origin, source; birth, family; race; ancestry; + orior_V = mkV "oriri" "orior" "ortus sum " ; -- [XXXAO] :: |be born/created; be born of, descend/spring from; proceed/be derived (from); oriundus_A = mkA "oriundus" "oriunda" "oriundum" ; -- [XXXDX] :: descended; originating from; ornamentum_N_N = mkN "ornamentum" ; -- [XXXBX] :: equipment; decoration; jewel; ornament, trappings; ornate_Adv = mkAdv "ornate" ; -- [XXXDX] :: richly, ornately; elaborately, with lavish appointments/literary embellishment; ornatrix_F_N = mkN "ornatrix" "ornatricis " feminine ; -- [XXXES] :: female adorner; hairdressing slave; --- SLASHSTUFF ornatus_A : A2 ornatus, ornata -um, ornatior -or -us, ornatissimus -a -um -- [XXXDX] :: well equipped/endowed, richly adorned, ornate; distinguished, honored; + ornatus_A = mkA "ornatus" ; -- [XXXDX] :: well equipped/endowed, richly adorned, ornate; distinguished, honored; ornithoboscion_N_N = mkN "ornithoboscion" "ornithoboscii " neuter ; -- [XAXEO] :: enclosure for poultry or similar; --- TODO ornithon_N : N1 ornithon, ornithonos/is -- M -- [XAXDO] :: enclosure for poultry or similar; + ornithon_1_N = mkN "ornithon" "ornithonis" masculine ; -- [XAXDO] :: enclosure for poultry or similar; + ornithon_2_N = mkN "ornithon" "ornithonos" masculine ; -- [XAXDO] :: enclosure for poultry or similar; ornithotrophion_N_N = mkN "ornithotrophion" "ornithotrophii " neuter ; -- [XAXFO] :: enclosure for poultry or similar; orno_V = mkV "ornare" ; -- [XXXAX] :: equip; dress; decorate, honor; furnish, adorn, garnish, trim; ornus_F_N = mkN "ornus" ; -- [XXXDX] :: ash-tree; --- TODO oro_V : V2 oro, orere, -, - -- Declension: 3rd -- Comment: [EXXEX] :: burn; + oro_V = mkV "orere" "oro" nonExist nonExist ; -- [EXXEX] :: burn; orphana_F_N = mkN "orphana" ; -- [FLXFM] :: orphan girl; orphanotrophium_N_N = mkN "orphanotrophium" ; -- [GXXEK] :: orphanage; orphanus_M_N = mkN "orphanus" ; -- [DXXCS] :: orphan; @@ -26033,6 +27933,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ossuculum_N_N = mkN "ossuculum" ; -- [XXXDO] :: small bone; ossum_N_N = mkN "ossum" ; -- [BXXFO] :: bone; (implement, gnawed, dead); kernel (nut); heartwood (tree); stone (fruit); ostendeo_V2 = mkV2 (mkV "ostendere") ; -- [EXXFW] :: show; reveal; make clear, point out, display, exhibit; + ostendo_V2 = mkV2 (mkV "ostendere" "ostendo" "ostendi" "ostentus ") ; -- [XXXAX] :: show; reveal; make clear, point out, display, exhibit; ostensio_F_N = mkN "ostensio" "ostensionis " feminine ; -- [XXXFO] :: presenting; exposing, exhibiting, action of exposing to view; ostentatio_F_N = mkN "ostentatio" "ostentationis " feminine ; -- [XXXDX] :: exhibition, display; showing off; ostentator_M_N = mkN "ostentator" "ostentatoris " masculine ; -- [XXXDS] :: displayer; boaster; @@ -26055,7 +27956,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ostrum_N_N = mkN "ostrum" ; -- [XXXCO] :: purple dye; purple color; material/garment/anything that has been dyed purple; otiolum_N_N = mkN "otiolum" ; -- [XXXFS] :: little leisure; otior_V = mkV "otiari" ; -- [XXXDX] :: be at leisure, enjoy a holiday; --- SLASHSTUFF otiosus_A : A2 otiosus, otiosa -um, otiosior -or -us, otiosissimus -a -um -- [XXXDX] :: idle; unemployed, unoccupied, at leisure; peaceful, disengaged, free of office; + otiosus_A = mkA "otiosus" ; -- [XXXDX] :: idle; unemployed, unoccupied, at leisure; peaceful, disengaged, free of office; otiosus_M_N = mkN "otiosus" ; -- [XXXDS] :: private citizen; otis_F_N = mkN "otis" "otidis " feminine ; -- [XAXNO] :: bustard; (Otis tarda, great bustard, largest European bird); otitis_F_N = mkN "otitis" "otitidis " feminine ; -- [GBXEK] :: otitis, inflammation of the ear; @@ -26078,7 +27979,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg oxygenium_N_N = mkN "oxygenium" ; -- [GXXEK] :: oxygen; oxyporus_A = mkA "oxyporus" "oxypora" "oxyporum" ; -- [XXXFS] :: quickly-passing; easily digested; ozonium_N_N = mkN "ozonium" ; -- [GSXEK] :: ozone; --- IGNORED p_N : N1 p., abb. -- M -- [XXXDX] :: people, nation; abb. p.; [p. R. => populus Romani]; + p_N = constN "p." masculine ; -- [XXXDX] :: people, nation; abb. p.; [p. R. => populus Romani]; pabillus_M_N = mkN "pabillus" ; -- [FXXEK] :: barrow; pabulatio_F_N = mkN "pabulatio" "pabulationis " feminine ; -- [XXXDX] :: foraging; pabulator_M_N = mkN "pabulator" "pabulatoris " masculine ; -- [XXXDX] :: forager; @@ -26086,7 +27987,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pabulum_N_N = mkN "pabulum" ; -- [XXXBO] :: fodder, forage, food for cattle; food/sustenance; fuel (for fire); pacalis_A = mkA "pacalis" "pacalis" "pacale" ; -- [XXXDX] :: associated with peace; pacatum_N_N = mkN "pacatum" ; -- [XXXDS] :: friendly country; --- SLASHSTUFF pacatus_A : A2 pacatus, pacata -um, pacatior -or -us, pacatissimus -a -um -- [XXXDX] :: peaceful, calm; + pacatus_A = mkA "pacatus" ; -- [XXXDX] :: peaceful, calm; paccator_M_N = mkN "paccator" "paccatoris " masculine ; -- [EEXDX] :: sinner; paccatum_N_N = mkN "paccatum" ; -- [EEXDX] :: sin; paciencia_F_N = mkN "paciencia" ; -- [FXXBT] :: |tolerance/forbearance; complaisance/submissiveness; submission by prostitute; @@ -26098,14 +27999,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pacifico_V = mkV "pacificare" ; -- [XXXDX] :: make peace, conclude peace; grant peace; pacify, appease; pacificus_A = mkA "pacificus" "pacifica" "pacificum" ; -- [XXXDX] :: making or tending to make peace; pacifier_A = mkA "pacifier" "pacifiera" "pacifierum" ; -- [XXXDX] :: bringing peace, peaceful; --- TODO pacisco_V : V2 pacisco, paciscere, -, pactus -- Declension: 3rd -- Comment: [XXXDX] :: make a bargain or agreement; agree, enter into a marriage contract; negotiate; + pacisco_V = mkV "paciscere" "pacisco" nonExist "pactus" ; -- [XXXDX] :: make a bargain or agreement; agree, enter into a marriage contract; negotiate; + paciscor_V = mkV "pacisci" "paciscor" "pactus sum " ; -- [XXXDX] :: make a bargain or agreement; agree, enter into a marriage contract; negotiate; paco_V = mkV "pacare" ; -- [XXXBX] :: pacify, subdue; pactio_F_N = mkN "pactio" "pactionis " feminine ; -- [XXXDX] :: bargain, agreement; pactor_M_N = mkN "pactor" "pactoris " masculine ; -- [XXXFS] :: negotiator; pactum_N_N = mkN "pactum" ; -- [XXXBX] :: bargain, agreement; manner; pactus_A = mkA "pactus" "pacta" "pactum" ; -- [XXXDX] :: agreed upon, appointed; + paean_1_N = mkN "paean" "paeanis" masculine ; -- [XXXCO] :: hymn (usually of victory, to Apollo/other gods); Paean (Greek Apollo as healer); + paean_2_N = mkN "paean" "paeanos" masculine ; -- [XXXCO] :: hymn (usually of victory, to Apollo/other gods); Paean (Greek Apollo as healer); paean_M_N = mkN "paean" "paeanis " masculine ; -- [XXXCO] :: hymn (usually of victory, to Apollo/other gods); Paean (Greek Apollo as healer); --- TODO paean_N : N1 paean, paeanos/is -- M -- [XXXCO] :: hymn (usually of victory, to Apollo/other gods); Paean (Greek Apollo as healer); paedagogia_F_N = mkN "paedagogia" ; -- [GXXEK] :: pedagogy; paedagogicus_A = mkA "paedagogicus" "paedagogica" "paedagogicum" ; -- [GXXEK] :: educational; paedagogus_M_N = mkN "paedagogus" ; -- [XXXDX] :: slave, who accompanied children to school; pedagogue; @@ -26157,7 +28060,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg palaestrice_Adv = mkAdv "palaestrice" ; -- [XXXEC] :: gymnastically; palaestricus_A = mkA "palaestricus" "palaestrica" "palaestricum" ; -- [XXXEC] :: of the palaestra, gymnastic; palaestrita_M_N = mkN "palaestrita" ; -- [XXXEC] :: superintendent of a palaestra; - palam_Abl_Prep = mkPrep "palam" Abl ; -- [XXXDS] :: in presence of; + palam_Abl_Prep = mkPrep "palam" abl ; -- [XXXDS] :: in presence of; palam_Adv = mkAdv "palam" ; -- [XXXBX] :: openly, publicly; plainly; palatum_N_N = mkN "palatum" ; -- [XXXBX] :: palate; sense of taste; palea_F_N = mkN "palea" ; -- [XXXDX] :: chaff, husk; @@ -26172,7 +28075,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pallas_F_N = mkN "pallas" "palladis " feminine ; -- [XAXFS] :: olive tree; E:goddess Minerva/Athene; pallens_A = mkA "pallens" "pallentis"; -- [XXXCS] :: pale; greenish; palleo_V = mkV "pallere" ; -- [XXXBX] :: be/look pale; fade; become pale at; --- TODO pallesco_V : V2 pallesco, pallescere, pallui, - -- Declension: 3rd -- Comment: [XXXDX] :: grow pale; blanch; fade; + pallesco_V2 = mkV2 (mkV "pallescere" "pallesco" "pallui" nonExist ) ; -- [XXXDX] :: grow pale; blanch; fade; palliatus_A = mkA "palliatus" "palliata" "palliatum" ; -- [XXHEC] :: clad in a pallium; (i.e. as a Greek, not togatus);. pallidulus_A = mkA "pallidulus" "pallidula" "pallidulum" ; -- [XXXEC] :: somewhat pale; pallidus_A = mkA "pallidus" "pallida" "pallidum" ; -- [XXXBX] :: pale, yellow-green; @@ -26233,9 +28136,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pancreatitis_F_N = mkN "pancreatitis" "pancreatitidis " feminine ; -- [GBXEK] :: pancreatitis, inflammation of the pancreas; pandectes_M_N = mkN "pandectes" "pandectae " masculine ; -- [XSXFO] :: encyclopedia, book of universal knowledge; pandiculor_V = mkV "pandiculari" ; -- [XXXDS] :: stretch oneself; + pando_V2 = mkV2 (mkV "pandere" "pando" "pandi" "passus ") ; -- [XXXAX] :: spread out [passis manibus => with hands outstretched]; pandus_A = mkA "pandus" "panda" "pandum" ; -- [XXXDX] :: spreading round in a wide curve arched; pane_N_N = mkN "pane" "panis " neuter ; -- [XXXDX] :: bread; panegyris_A = mkA "panegyris" "panegyris" "panegyre" ; -- [FXXFM] :: fair; + pango_V2 = mkV2 (mkV "pangere" "pango" "pepigi" "pactus ") ; -- [XXXAO] :: compose; insert, drive in, fasten; plant; fix, settle, agree upon, stipulate; panicium_N_N = mkN "panicium" ; -- [XXXFS] :: baked dough; anything baked; bread or cakes; panicula_F_N = mkN "panicula" ; -- [XAXDS] :: plant tuft; piece of thatch; B:swelling; panicum_N_N = mkN "panicum" ; -- [XXXDX] :: Italian millet; @@ -26303,8 +28208,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg parallelismus_M_N = mkN "parallelismus" ; -- [GXXEK] :: parallelism; parallelus_A = mkA "parallelus" "parallela" "parallelum" ; -- [XSXFS] :: parallel (lines); parallelus_M_N = mkN "parallelus" ; -- [GXXEK] :: parallel (geography); + paralysis_1_N = mkN "paralysis" "paralysis" feminine ; -- [XBHCO] :: paralysis; any of several forms of paralysis; apoplexy; palsy (L+S); + paralysis_2_N = mkN "paralysis" "paralysos" feminine ; -- [XBHCO] :: paralysis; any of several forms of paralysis; apoplexy; palsy (L+S); paralysis_F_N = mkN "paralysis" "paralysis " feminine ; -- [XBHCO] :: paralysis; any of several forms of paralysis; apoplexy; palsy (L+S); --- TODO paralysis_N : N1 paralysis, paralysos/is -- F -- [XBHCO] :: paralysis; any of several forms of paralysis; apoplexy; palsy (L+S); paralyticus_A = mkA "paralyticus" "paralytica" "paralyticum" ; -- [XBHES] :: paralytic, paralyzed; palsied, struck with palsy (L+S); paralyticus_M_N = mkN "paralyticus" ; -- [XBHEO] :: paralytic, paralyzed person; palsied person (L+S); paramentum_N_N = mkN "paramentum" ; -- [FXXFM] :: apparel; adornment; ship's rigging; @@ -26312,12 +28218,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg parametrum_N_N = mkN "parametrum" ; -- [GXXEK] :: parameter; paranete_F_N = mkN "paranete" "paranetes " feminine ; -- [XDXFO] :: next-to-highest-note on certain tetrachords; lowest-string-but-one; paraphrasis_F_N = mkN "paraphrasis" "paraphrasis " feminine ; -- [XGXFS] :: paraphrase; + parapsis_1_N = mkN "parapsis" "parapsidis" feminine ; -- [XXXEO] :: dish for serving vegetables/fruit; desert dish (Cas); + parapsis_2_N = mkN "parapsis" "parapsidos" feminine ; -- [XXXEO] :: dish for serving vegetables/fruit; desert dish (Cas); parapsis_F_N = mkN "parapsis" "parapsidis " feminine ; -- [XXXCO] :: dish for serving vegetables/fruit; desert dish (Cas); --- TODO parapsis_N : N1 parapsis, parapsidos/is -- F -- [XXXEO] :: dish for serving vegetables/fruit; desert dish (Cas); parasceve_F_N = mkN "parasceve" "parasceves " feminine ; -- [DEXDS] :: day of preparation, day before the Sabbath; parasceves_F_N = mkN "parasceves" "parascevae " feminine ; -- [EEXFT] :: day of preparation, day before the Sabbath; + parasis_1_N = mkN "parasis" "parasidis" feminine ; -- [XXXFO] :: dish for serving vegetables/fruit; desert dish (Cas); + parasis_2_N = mkN "parasis" "parasidos" feminine ; -- [XXXFO] :: dish for serving vegetables/fruit; desert dish (Cas); parasis_F_N = mkN "parasis" "parasidis " feminine ; -- [XXXDO] :: dish for serving vegetables/fruit; desert dish (Cas); --- TODO parasis_N : N1 parasis, parasidos/is -- F -- [XXXFO] :: dish for serving vegetables/fruit; desert dish (Cas); parasita_F_N = mkN "parasita" ; -- [XXXDS] :: female parasite; parasitaster_M_N = mkN "parasitaster" ; -- [XXXDS] :: sorry parasite; parasiticus_A = mkA "parasiticus" "parasitica" "parasiticum" ; -- [XXXDS] :: parasitic; @@ -26326,9 +28234,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg parastaticus_A = mkA "parastaticus" "parastatica" "parastaticum" ; -- [XXXES] :: square-columnar; of square columns; paraster_M_N = mkN "paraster" ; -- [FLXFM] :: step-father; paratragoedo_V = mkV "paratragoedare" ; -- [BXXFS] :: talk theoretically; --- SLASHSTUFF paratus_A : A2 paratus, parata -um, paratior -or -us, paratissimus -a -um -- [XXXDX] :: prepared; ready; equipped, provided; + paratus_A = mkA "paratus" ; -- [XXXDX] :: prepared; ready; equipped, provided; paraveredus_M_N = mkN "paraveredus" ; -- [DXXES] :: extra post-horse; horse for special occasions; parce_Adv =mkAdv "parce" "parcius" "parcissime" ; -- [XXXDX] :: sparingly, moderately; economically, frugally, thriftily, stingily; + parco_V2 = mkV2 (mkV "parcere" "parco" "peperci" "parsus ") ; -- [XXXAO] :: forbear, refrain from; spare; show consideration; be economical/thrifty with; parcometrum_N_N = mkN "parcometrum" ; -- [GXXEK] :: parameter; parcus_A = mkA "parcus" "parca" "parcum" ; -- [XXXBX] :: sparing, frugal; scanty, slight; pardus_M_N = mkN "pardus" ; -- [XAXEC] :: panther or leopard; @@ -26348,6 +28257,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg parilis_A = mkA "parilis" "parilis" "parile" ; -- [XXXDX] :: like, equal; parilitas_F_N = mkN "parilitas" "parilitatis " feminine ; -- [FXXEN] :: equality; level to make fit; pario_V = mkV "pariare" ; -- [XXXDO] :: acquire (accounts); settle a debt; settle up; + pario_V2 = mkV2 (mkV "parire" "pario" "peperi" "paritus ") ; -- [BXXEO] :: bear; give birth to; beget, bring forth; produce, lay (eggs); create; acquire; parissumus_A = mkA "parissumus" "parissuma" "parissumum" ; -- [BXXFS] :: equal (to); a match for; of equal size/rank/age; fit/suitable/right/proper; parisumus_A = mkA "parisumus" "parisuma" "parisumum" ; -- [BXXIS] :: equal (to); a match for; of equal size/rank/age; fit/suitable/right/proper; paritarius_A = mkA "paritarius" "paritaria" "paritarium" ; -- [GXXEK] :: equal; @@ -26370,10 +28280,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg paroecia_F_N = mkN "paroecia" ; -- [EEXES] :: parish; ecclesiastical district; paroecialis_A = mkA "paroecialis" "paroecialis" "paroeciale" ; -- [GXXEK] :: parochial; paroecianus_M_N = mkN "paroecianus" ; -- [GEXEK] :: parishioner; + paropsis_1_N = mkN "paropsis" "paropsidis" feminine ; -- [XXXEO] :: dish for serving vegetables/fruit; desert dish (Cas); + paropsis_2_N = mkN "paropsis" "paropsidos" feminine ; -- [XXXEO] :: dish for serving vegetables/fruit; desert dish (Cas); paropsis_F_N = mkN "paropsis" "paropsidis " feminine ; -- [XXXCO] :: dish for serving vegetables/fruit; desert dish (Cas); --- TODO paropsis_N : N1 paropsis, paropsidos/is -- F -- [XXXEO] :: dish for serving vegetables/fruit; desert dish (Cas); + parosis_1_N = mkN "parosis" "parosidis" feminine ; -- [XXXFO] :: dish for serving vegetables/fruit; desert dish (Cas); + parosis_2_N = mkN "parosis" "parosidos" feminine ; -- [XXXFO] :: dish for serving vegetables/fruit; desert dish (Cas); parosis_F_N = mkN "parosis" "parosidis " feminine ; -- [XXXDO] :: dish for serving vegetables/fruit; desert dish (Cas); --- TODO parosis_N : N1 parosis, parosidos/is -- F -- [XXXFO] :: dish for serving vegetables/fruit; desert dish (Cas); parotis_F_N = mkN "parotis" "parotidis " feminine ; -- [XBXES] :: tumor near ear; bracket of hyperthyrum; paroxysmus_M_N = mkN "paroxysmus" ; -- [GXXEK] :: paroxysm; parricida_C_N = mkN "parricida" ; -- [XLXBO] :: murderer of near relative (father?/parent); assassin of head of state, traitor; @@ -26400,23 +28312,27 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg particularisticus_A = mkA "particularisticus" "particularistica" "particularisticum" ; -- [GXXEK] :: particular; particulariter_Adv = mkAdv "particulariter" ; -- [DXXES] :: particularly; partim_Adv = mkAdv "partim" ; -- [XXXBX] :: partly, for the most part; mostly; [partim ... partim => some ... others]; + partio_V2 = mkV2 (mkV "partire" "partio" "partivi" "partitus ") ; -- [XXXDX] :: share, divide up, distribute; + partior_V = mkV "partiri" "partior" "partitus sum " ; -- [XXXBX] :: share, divide up, distribute; partisanus_M_N = mkN "partisanus" ; -- [GXXEK] :: partisan; partite_Adv = mkAdv "partite" ; -- [XXXDX] :: with proper division of subject into its parts; partitio_F_N = mkN "partitio" "partitionis " feminine ; -- [XXXDX] :: distribution, share; classification, logical distinction; div. into sections; partitura_F_N = mkN "partitura" ; -- [GDXEK] :: partition (music); partum_N_N = mkN "partum" ; -- [XXXCO] :: gains, acquisitions; savings; what one has acquired/saved; --- TODO parturio_V : V2 parturio, parturire, parturivi, - -- Declension: 4th -- Comment: [XXXDX] :: be in labor; bring forth; produce; be pregnant with/ready to give birth; + parturio_V2 = mkV2 (mkV "parturire" "parturio" "parturivi" nonExist ) ; -- [XXXDX] :: be in labor; bring forth; produce; be pregnant with/ready to give birth; partus_M_N = mkN "partus" "partus " masculine ; -- [XXXDX] :: birth; offspring; parum_Adv =mkAdv "parum" "minus" "minime" ; -- [XXXAX] :: too/very little, not enough/so good, insufficient; less; (SUPER) not at all; parumper_Adv = mkAdv "parumper" ; -- [XXXCO] :: for a short/little while; for a moment; in a short time; quickly, hurriedly; + parvipendo_V = mkV "parvipendere" "parvipendo" "parvipependi" "parvipensus "; -- [XXXES] :: slight (Douay); pay little attention to, give little weight to; parvissimus_A = mkA "parvissimus" "parvissima" "parvissimum" ; -- [XXXEX] :: small; parvitas_F_N = mkN "parvitas" "parvitatis " feminine ; -- [XXXDO] :: smallness, minuteness; insignificance, unimportance; parvolus_A = mkA "parvolus" "parvola" "parvolum" ; -- [XXXDX] :: tiny, little, young; parvulus_A = mkA "parvulus" "parvula" "parvulum" ; -- [XXXBX] :: very small, very young; unimportant; slight, petty; parvulus_M_N = mkN "parvulus" ; -- [XXXBX] :: infancy, childhood; small child, infant; --- SLASHSTUFF parvus_A : A2 parvus, parva -um, minor -or -us, minimus -a -um -- [XXXAX] :: small, little, cheap; unimportant; (SUPER) smallest, least; + parvus_A = mkA "parvus" ; -- [XXXAX] :: small, little, cheap; unimportant; (SUPER) smallest, least; pasca_F_N = mkN "pasca" ; -- [XWXCO] :: vinegar mixed in water; (field drink of Roman soldiers); (also for slaves); paschalis_A = mkA "paschalis" "paschalis" "paschale" ; -- [EEXDX] :: of Easter; Paschal; of Passover; + pasco_V2 = mkV2 (mkV "pascere" "pasco" "pavi" "pastus ") ; -- [XXXDX] :: feed, feed on; graze; pascua_F_N = mkN "pascua" ; -- [XAXIO] :: pasture, pasture-land; piece of grazing land; pascuum_N_N = mkN "pascuum" ; -- [XAXCO] :: pasture, pasture-land; piece of grazing land; pascuus_A = mkA "pascuus" "pascua" "pascuum" ; -- [XAXDO] :: used/suitable for pasture/grazing/pasture-land; @@ -26444,6 +28360,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pastoricius_A = mkA "pastoricius" "pastoricia" "pastoricium" ; -- [XAXDO] :: of/connected with herdsmen; pastorius_A = mkA "pastorius" "pastoria" "pastorium" ; -- [XAXDS] :: shepherd's; pastus_M_N = mkN "pastus" "pastus " masculine ; -- [XXXDX] :: pasture, feeding ground; pasturage; + patefacio_V2 = mkV2 (mkV "patefacere" "patefacio" "patefeci" "patefactus ") ; -- [XXXAO] :: |open (up); (gates); clear, make available; deploy (troops); expose (to attack); patefio_V = mkV "pateferi" ; -- [XXXAO] :: be made known/opened/revealed/uncovered/disclosed/exposed; (patefacio PASS); patella_F_N = mkN "patella" ; -- [XXXDX] :: small dish or plate; patens_A = mkA "patens" "patentis"; -- [XXXDX] :: open, accessible; @@ -26452,8 +28369,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg patera_F_N = mkN "patera" ; -- [XXXDX] :: bowl; saucer; paternitas_F_N = mkN "paternitas" "paternitatis " feminine ; -- [DXXES] :: fatherly feeling/care; paternity; descendants of one father; paternus_A = mkA "paternus" "paterna" "paternum" ; -- [XXXBX] :: father's, paternal; ancestral; --- TODO patesco_V : V2 patesco, patescere, patui, - -- Declension: 3rd -- Comment: [XXXDX] :: be opened/open/revealed; become clear/known; open; extend, spread; --- SLASHSTUFF pathicus_A : A2 pathicus, pathica -um, pathicior -or -us, pathicissimus -a -um -- [XXXCO] :: submitting to (anal) sex; lascivious (L+S); (of catamites/prostitutes/books); + patesco_V2 = mkV2 (mkV "patescere" "patesco" "patui" nonExist ) ; -- [XXXDX] :: be opened/open/revealed; become clear/known; open; extend, spread; + pathicus_A = mkA "pathicus" ; -- [XXXCO] :: submitting to (anal) sex; lascivious (L+S); (of catamites/prostitutes/books); pathicus_M_N = mkN "pathicus" ; -- [XXXEO] :: sodomite, one who submits to anal sex; pathologia_F_N = mkN "pathologia" ; -- [GSXEK] :: pathology; pathologicus_A = mkA "pathologicus" "pathologica" "pathologicum" ; -- [GBXEK] :: pathological; @@ -26468,6 +28385,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg patinator_M_N = mkN "patinator" "patinatoris " masculine ; -- [GXXEK] :: skater; patino_V = mkV "patinare" ; -- [GXXEK] :: skate; patinus_M_N = mkN "patinus" ; -- [GXXEK] :: skate; + patior_V = mkV "pati" "patior" "passus sum " ; -- [XXXAX] :: suffer; allow; undergo, endure; permit; pator_M_N = mkN "pator" "patoris " masculine ; -- [EXXFS] :: opening; patrator_M_N = mkN "patrator" "patratoris " masculine ; -- [DXXDS] :: accomplisher; patria_F_N = mkN "patria" ; -- [XXXAX] :: native land; home, native city; one's country; @@ -26499,7 +28417,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg paucitas_F_N = mkN "paucitas" "paucitatis " feminine ; -- [XXXDX] :: scarcity; paucity; pauculus_A = mkA "pauculus" "paucula" "pauculum" ; -- [XXXCO] :: not very much, a little; (only) a small number (pl.), few, a few; paucum_N_N = mkN "paucum" ; -- [XXXBO] :: only a small/an indefinite number of/few things (pl.), a few words/points; --- SLASHSTUFF paucus_A : A2 paucus, pauca -um, paucior -or -us, paucissimus -a -um -- [XXXBO] :: little, small in quantity/extent; few (usu. pl.); just a few; small number of; + paucus_A = mkA "paucus" ; -- [XXXBO] :: little, small in quantity/extent; few (usu. pl.); just a few; small number of; paucus_M_N = mkN "paucus" ; -- [XXXBO] :: only a small/an indefinite number of people (pl.), few; a few; a select few; paulatim_Adv = mkAdv "paulatim" ; -- [XXXCO] :: little by little, by degrees, gradually; a small amount at a time, bit by bit; paulisper_Adv = mkAdv "paulisper" ; -- [XXXBO] :: for (only) a short time/brief while; @@ -26540,13 +28458,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pauxillum_N_N = mkN "pauxillum" ; -- [XXXEC] :: little; pauxillus_A = mkA "pauxillus" "pauxilla" "pauxillum" ; -- [XXXEC] :: small, little; pava_F_N = mkN "pava" ; -- [EAXFW] :: peacock; + pavefacio_V2 = mkV2 (mkV "pavefacere" "pavefacio" "pavefeci" "pavefactus ") ; -- [XXXDO] :: terrify; alarm; scare/frighten pavefio_V = mkV "paveferi" ; -- [XXXDO] :: be terrified/alarmed/scared/frightened; (pavefacio PASS); paveo_V = mkV "pavere" ; -- [XXXBX] :: be frightened or terrified at; --- TODO pavesco_V : V2 pavesco, pavescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: become alarmed; + pavesco_V = mkV "pavescere" "pavesco" nonExist nonExist ; -- [XXXDX] :: become alarmed; pavicula_F_N = mkN "pavicula" ; -- [XXXFS] :: rammer; pavidus_A = mkA "pavidus" "pavida" "pavidum" ; -- [XXXDX] :: fearful, terrified, panicstruck; pavimentatus_A = mkA "pavimentatus" "pavimentata" "pavimentatum" ; -- [XXXEX] :: paved (Collins); (VPAR of pavimentare); pavimentum_N_N = mkN "pavimentum" ; -- [XXXDX] :: pavement; + pavio_V2 = mkV2 (mkV "pavire" "pavio" "pavivi" "pavitus ") ; -- [DXXES] :: beat, strike; push down; pavito_V = mkV "pavitare" ; -- [XXXDX] :: be in a state of fear or trepidation (at); pavo_M_N = mkN "pavo" "pavonis " masculine ; -- [XAXCO] :: peacock; pavor_M_N = mkN "pavor" "pavoris " masculine ; -- [XXXBX] :: fear, panic; @@ -26570,6 +28490,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pecco_V = mkV "peccare" ; -- [XXXAO] :: |make mistake; make slip in speaking; act incorrectly; go wrong, be faulty; pecorosus_A = mkA "pecorosus" "pecorosa" "pecorosum" ; -- [XXXEC] :: rich in cattle; pecten_M_N = mkN "pecten" "pectinis " masculine ; -- [XXXBO] :: comb; rake; quill (playing lyre); comb-like thing, pubic bone/region; scallop; + pecto_V2 = mkV2 (mkV "pectere" "pecto" "pexi" "pexus ") ; -- [XXXDX] :: comb; card (wool, etc); pectunculus_M_N = mkN "pectunculus" ; -- [XAXFS] :: small scallop; pectus_N_N = mkN "pectus" "pectoris " neuter ; -- [XBXAX] :: breast, heart; feeling, soul, mind; pectusculum_N_N = mkN "pectusculum" ; -- [DBXES] :: breast; (breast of sacrificial animal as offering); little breast; @@ -26642,12 +28563,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pellacia_F_N = mkN "pellacia" ; -- [XXXDS] :: enticement; seduction; attraction; pellax_A = mkA "pellax" "pellacis"; -- [XXXDX] :: seductive, glib; pellectio_F_N = mkN "pellectio" "pellectionis " feminine ; -- [XXXFS] :: reading through; + pellego_V2 = mkV2 (mkV "pellegere" "pellego" "pellegi" "pellectus ") ; -- [XXXCO] :: read over/through (silent/aloud); scan, survey, run one's eyes over; recount; pellex_F_N = mkN "pellex" "pellicis " feminine ; -- [XXXBO] :: mistress (installed as rival/in addition to wife), concubine; male prostitute; pelliceus_A = mkA "pelliceus" "pellicea" "pelliceum" ; -- [XAXEO] :: skin-, made of skins; + pellicio_V2 = mkV2 (mkV "pellicere" "pellicio" "pellicui" "pellectus ") ; -- [XXXCO] :: attract/draw away; allure/seduce/entice/captivate; coax/induce/wheedle/win over; pellicius_A = mkA "pellicius" "pellicia" "pellicium" ; -- [XAXEO] :: skin-, made of skins/furs; + pellico_V2 = mkV2 (mkV "pellicere" "pellico" nonExist nonExist) ; -- [EXXFW] :: attract/draw away; allure/seduce/entice/captivate; coax/induce/wheedle/win over; pellicula_F_N = mkN "pellicula" ; -- [XXXDX] :: skin, hide; pellis_F_N = mkN "pellis" "pellis " feminine ; -- [XXXDX] :: skin, hide; pelt; pellitus_A = mkA "pellitus" "pellita" "pellitum" ; -- [XXXDX] :: covered with skins; + pello_V2 = mkV2 (mkV "pellere" "pello" "pepuli" "pulsus ") ; -- [XXXAX] :: beat; drive out; push; banish, strike, defeat, drive away, rout; pelluceeo_V = mkV "pelluceere" ; -- [XXXBO] :: transmit/admit/emit light; be transparent; shine through/out; be apparent; peloris_F_N = mkN "peloris" "peloridis " feminine ; -- [XAXDO] :: mussel; giant mussel (L+S); large edible shellfish; clam (Cal); pelta_F_N = mkN "pelta" ; -- [XXXDX] :: crescent-shaped shield; @@ -26660,11 +28585,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg penarius_A = mkA "penarius" "penaria" "penarium" ; -- [XXXEC] :: of or for provisions; penatiger_A = mkA "penatiger" "penatigera" "penatigerum" ; -- [XEIEC] :: carrying the Penates; pendeo_V = mkV "pendere" ; -- [XXXBX] :: hang, hang down; depend; [~ ab ore => hang upon the lips, listen attentively]; + pendo_V2 = mkV2 (mkV "pendere" "pendo" "pependi" "pensus ") ; -- [XLXAX] :: weigh out; pay, pay out; pendulus_A = mkA "pendulus" "pendula" "pendulum" ; -- [XXXDX] :: hanging, hanging down, uncertain; pendulus_M_N = mkN "pendulus" ; -- [GXXEK] :: pendulum; --- TODO penecostas_N : N1 penecostas, penecostados/is -- F -- [EEXEP] :: fifty; the number fifty; (7 Sundays after Easter); (Jewish 50th day of omer); + penecostas_1_N = mkN "penecostas" "penecostadis" feminine ; -- [EEXEP] :: fifty; the number fifty; (7 Sundays after Easter); (Jewish 50th day of omer); + penecostas_2_N = mkN "penecostas" "penecostados" feminine ; -- [EEXEP] :: fifty; the number fifty; (7 Sundays after Easter); (Jewish 50th day of omer); penecoste_F_N = mkN "penecoste" "penecostes " feminine ; -- [EEXEP] :: Pentecost/Whitsunday; (7th Sunday after Easter); 50 days; Jewish harvest feast; - penes_Acc_Prep = mkPrep "penes" Acc ; -- [XXXDX] :: in the power of, in the hands of (person); belonging to; + penes_Acc_Prep = mkPrep "penes" acc ; -- [XXXDX] :: in the power of, in the hands of (person); belonging to; penetentiarius_M_N = mkN "penetentiarius" ; -- [FEXEM] :: confessor; penitentiary; penetrabilis_A = mkA "penetrabilis" "penetrabilis" "penetrabile" ; -- [XXXDX] :: that can be pierced; penetrable; piercing; penetrale_N_N = mkN "penetrale" "penetralis " neuter ; -- [FXXFE] :: |innermost parts/chambers/self (pl.); spirit, life of soul; gimlet (Latham); @@ -26700,7 +28627,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pentachordus_A = mkA "pentachordus" "pentachorda" "pentachordum" ; -- [DDXFS] :: 5-stringed (instrument); pentacontarchus_M_N = mkN "pentacontarchus" ; -- [EWXFS] :: pentacontarch, commander of fifty men; (platoon commander); pentameter_M_N = mkN "pentameter" ; -- [XPXES] :: pentameter; five metric feet; --- IGNORED pente_N : N1 pente, undeclined -- N -- [FDXEZ] :: musical fifth; + pente_N = constN "pente" neuter ; -- [FDXEZ] :: musical fifth; pentecontarcus_M_N = mkN "pentecontarcus" ; -- [EWXFW] :: pentacontarch, commander of fifty men; (platoon commander); (1 Maccabbes 3:55); penteris_F_N = mkN "penteris" "penteris " feminine ; -- [XWXFO] :: quinquereme, large galley with five rowers to each room or five banks of oars; pentral_N_N = mkN "pentral" "pentralis " neuter ; -- [FXXFM] :: gimlet; innermost parts/chambers/self (pl.) (Ecc); spirit, life of soul; @@ -26717,18 +28644,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pepo_M_N = mkN "pepo" "peponis " masculine ; -- [XAXDS] :: watermelon; (other such/guard); species of large melon (L+S); pumpkin; pepon_M_N = mkN "pepon" "peponis " masculine ; -- [XAXNO] :: watermelon; (other such/guard); pepsinum_N_N = mkN "pepsinum" ; -- [GBXEK] :: pepsin; - per_Acc_Prep = mkPrep "per" Acc ; -- [XXXAX] :: through (space); during (time); by, by means of; + per_Acc_Prep = mkPrep "per" acc ; -- [XXXAX] :: through (space); during (time); by, by means of; pera_F_N = mkN "pera" ; -- [XXXDO] :: satchel; bag slung over shoulder (for day's provisions); (affected by Cynics); perabsurdus_A = mkA "perabsurdus" "perabsurda" "perabsurdum" ; -- [XXXDX] :: highly ridiculous; + peraccedo_V = mkV "peraccedere" "peraccedo" "peraccessi" "peraccessus "; -- [EXXEP] :: succeed in reaching; peraccommodatus_A = mkA "peraccommodatus" "peraccommodata" "peraccommodatum" ; -- [XXXEC] :: very convenient; peracer_A = mkA "peracer" "peracris" "peracre" ; -- [XXXDX] :: very sharp; peracerbus_A = mkA "peracerbus" "peracerba" "peracerbum" ; -- [XXXEC] :: very sour, very harsh; + peracesco_V = mkV "peracescere" "peracesco" "peracui" nonExist; -- [BXXES] :: become very bitter/sour; become vexed/upset; get teed off; peractio_F_N = mkN "peractio" "peractionis " feminine ; -- [XXXDS] :: completion; D:last act (of drama); peracutus_A = mkA "peracutus" "peracuta" "peracutum" ; -- [XXXDX] :: very penetrating; very sharp; peradulescens_A = mkA "peradulescens" "peradulescentis"; -- [XXXFS] :: very young; peraeque_Adv = mkAdv "peraeque" ; -- [XXXDX] :: equally; peraequo_V2 = mkV2 (mkV "peraequare") ; -- [DXXDS] :: equalize; make quite equal; peragito_V = mkV "peragitare" ; -- [XXXDX] :: harass with repeated attacks; + perago_V2 = mkV2 (mkV "peragere" "perago" "peregi" "peractus ") ; -- [XXXAX] :: disturb; finish; kill; carry through to the end, complete; peragratio_F_N = mkN "peragratio" "peragrationis " feminine ; -- [XXXFS] :: traveling; peragro_V = mkV "peragrare" ; -- [XXXDX] :: travel over every part of, scour; peramans_A = mkA "peramans" "peramantis"; -- [XXXDS] :: very fond; very loving; @@ -26749,19 +28679,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg perbeatus_A = mkA "perbeatus" "perbeata" "perbeatum" ; -- [XXXDX] :: very fortunate; perbene_Adv = mkAdv "perbene" ; -- [XXXDX] :: very well; perbenevolus_A = mkA "perbenevolus" "perbenevola" "perbenevolum" ; -- [XXXEC] :: very well-disposed; --- TODO perbibo_V : V2 perbibo, perbibere, perbibi, - -- Declension: 3rd -- Comment: [XXXDX] :: drink deeply, drink in; + perbibo_V2 = mkV2 (mkV "perbibere" "perbibo" "perbibi" nonExist ) ; -- [XXXDX] :: drink deeply, drink in; + perbito_V = mkV "perbitere" "perbito" nonExist nonExist; -- [XXXDS] :: perish; go over; perblandus_A = mkA "perblandus" "perblanda" "perblandum" ; -- [XXXEC] :: very charming; perbonus_A = mkA "perbonus" "perbona" "perbonum" ; -- [XXXDX] :: very good, excellent; finished, complete; perca_F_N = mkN "perca" ; -- [XXXEC] :: fish, the perch; percalefactus_A = mkA "percalefactus" "percalefacta" "percalefactum" ; -- [XXXEC] :: thoroughly heated; --- TODO percallesco_V : V2 percallesco, percallescere, percallui, - -- Declension: 3rd -- Comment: [XXXDX] :: become callous; + percalesco_V = mkV "percalescere" "percalesco" "percalui" nonExist; -- [XXXDS] :: become very warm; + percallesco_V2 = mkV2 (mkV "percallescere" "percallesco" "percallui" nonExist ) ; -- [XXXDX] :: become callous; percarus_A = mkA "percarus" "percara" "percarum" ; -- [XXXDS] :: very dear; much loved; very costly; percautus_A = mkA "percautus" "percauta" "percautum" ; -- [XXXEC] :: very cautious; percelebro_V = mkV "percelebrare" ; -- [XXXDX] :: make thoroughly known; perceler_A = mkA "perceler" "perceleris" "percelere" ; -- [XXXDS] :: very quick; + percello_V2 = mkV2 (mkV "percellere" "percello" "perculi" "perculsus ") ; -- [XXXBX] :: strike down; strike; overpower; dismay, demoralize, upset; percenseo_V2 = mkV2 (mkV "percensere") ; -- [XXXCO] :: |run one's mind over, review; survey, make complete/methodical assessment of; perceptibilis_A = mkA "perceptibilis" "perceptibilis" "perceptibile" ; -- [DEXES] :: perceptible; participating (in anything); + percido_V2 = mkV2 (mkV "percidere" "percido" "percidi" "percisus ") ; -- [XXXDX] :: hit/punch very hard; commit sodomy on; cut down/to pieces (troops); percieo_V = mkV "perciere" ; -- [XXXDX] :: excite; set in motion; + percio_V2 = mkV2 (mkV "percire" "percio" "percivi" "percitus ") ; -- [XXXDX] :: excite, stir up, move (emotions); set in motion, propel; + percipio_V2 = mkV2 (mkV "percipere" "percipio" "percepi" "perceptus ") ; -- [XXXAX] :: secure, gain; perceive, learn, feel; percitus_A = mkA "percitus" "percita" "percitum" ; -- [XXXDS] :: roused; excited; stirred up; propelled; percomis_A = mkA "percomis" "percomis" "percome" ; -- [XXXDS] :: very friendly/kind/courteous/gracious;; percommodus_A = mkA "percommodus" "percommoda" "percommodum" ; -- [XXXDX] :: very convenient; @@ -26769,12 +28705,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg percontator_M_N = mkN "percontator" "percontatoris " masculine ; -- [XXXDS] :: inquirer; percontor_V = mkV "percontari" ; -- [XXXDX] :: inquire; percontumax_A = mkA "percontumax" "percontumacis"; -- [XXXFS] :: very obstinate; --- TODO percrebesco_V : V2 percrebesco, percrebescere, percrebui, - -- Declension: 3rd -- Comment: [XXXDX] :: become very frequent, become very widespread; --- TODO percrebresco_V : V2 percrebresco, percrebrescere, percrebrui, - -- Declension: 3rd -- Comment: [XXXDX] :: become very frequent, become very widespread; + percoquo_V2 = mkV2 (mkV "percoquere" "percoquo" "percoxi" "percoctus ") ; -- [XXXDX] :: cook thoroughly; bake, heat; + percrebesco_V2 = mkV2 (mkV "percrebescere" "percrebesco" "percrebui" nonExist ) ; -- [XXXDX] :: become very frequent, become very widespread; + percrebresco_V2 = mkV2 (mkV "percrebrescere" "percrebresco" "percrebrui" nonExist ) ; -- [XXXDX] :: become very frequent, become very widespread; percrepo_V = mkV "percrepare" ; -- [XXXDS] :: resound; make resound; percupidus_A = mkA "percupidus" "percupida" "percupidum" ; -- [XXXEC] :: very fond; + percupio_V = mkV "percupere" "percupio" nonExist nonExist; -- [BXXES] :: be very eager for, long for; desire greatly, wish wholeheartedly; percuriosus_A = mkA "percuriosus" "percuriosa" "percuriosum" ; -- [XXXEC] :: very inquisitive; percuro_V2 = mkV2 (mkV "percurare") ; -- [XXXDS] :: heal completely; + percurro_V2 = mkV2 (mkV "percurrere" "percurro" "percurri" "percursus ") ; -- [XXXAO] :: |||travel quickly from end to end; make rapid tour, visit in quick succession; percursatio_F_N = mkN "percursatio" "percursationis " feminine ; -- [XXXEC] :: traveling through; percursio_F_N = mkN "percursio" "percursionis " feminine ; -- [XXXDS] :: running over; hasty thinking; percurso_V = mkV "percursare" ; -- [XXXDS] :: rove about; @@ -26782,35 +28721,43 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg percussio_F_N = mkN "percussio" "percussionis " feminine ; -- [XXXDO] :: beat (music); percussion, action of beating/striking/smiting; percussor_M_N = mkN "percussor" "percussoris " masculine ; -- [XXXDX] :: murderer, assassin; percussus_M_N = mkN "percussus" "percussus " masculine ; -- [XXXDX] :: buffeting; beating; + percutio_V2 = mkV2 (mkV "percutere" "percutio" "percussi" "percussus ") ; -- [XXXAX] :: beat, strike; pierce; percuto_V = mkV "percutare" ; -- [FXXEN] :: affect deeply; perdecorus_A = mkA "perdecorus" "perdecora" "perdecorum" ; -- [XXXEC] :: very comely; perdelirus_A = mkA "perdelirus" "perdelira" "perdelirum" ; -- [XXXEC] :: senseless; + perdepso_V2 = mkV2 (mkV "perdepsere" "perdepso" "perdepsui" "perdepstus ") ; -- [XXXFD] :: dishonor; have improper sex; (rude); perdignus_A = mkA "perdignus" "perdigna" "perdignum" ; -- [XXXEC] :: very worthy; perdiligens_A = mkA "perdiligens" "perdiligentis"; -- [XXXDS] :: very diligent; --- TODO perdisco_V : V2 perdisco, perdiscere, perdidici, - -- Declension: 3rd -- Comment: [XXXDX] :: learn thoroughly; + perdisco_V2 = mkV2 (mkV "perdiscere" "perdisco" "perdidici" nonExist ) ; -- [XXXDX] :: learn thoroughly; perdite_Adv = mkAdv "perdite" ; -- [XXXEO] :: desperately, in desperate/unrestrained way; recklessly; violently; perditim_Adv = mkAdv "perditim" ; -- [XXXFO] :: desperately, to desperation; perditio_F_N = mkN "perditio" "perditionis " feminine ; -- [DXXDS] :: destruction, ruin, perdition; perditor_M_N = mkN "perditor" "perditoris " masculine ; -- [XXXEO] :: destroyer; one who ruins/destroys; perditrix_F_N = mkN "perditrix" "perditricis " feminine ; -- [DXXES] :: destroyer (female); she who ruins/destroys; --- SLASHSTUFF perditus_A : A2 perditus, perdita -um, perditior -or -us, perditissimus -a -um -- [XXXBO] :: |degenerate, morally depraved, wild, abandoned; reckless; desperate/hopeless; + perditus_A = mkA "perditus" ; -- [XXXBO] :: |degenerate, morally depraved, wild, abandoned; reckless; desperate/hopeless; perditus_M_N = mkN "perditus" "perditus " masculine ; -- [XXXFO] :: ruination, ruin; perdiu_Adv = mkAdv "perdiu" ; -- [XXXEO] :: for a long while; perdiuturnus_A = mkA "perdiuturnus" "perdiuturna" "perdiuturnum" ; -- [XXXEC] :: lasting a very long time; perdives_A = mkA "perdives" "perdivitis"; -- [XXXDS] :: very rich; perdix_F_N = mkN "perdix" "perdicis " feminine ; -- [XXXDX] :: partridge; perdix_M_N = mkN "perdix" "perdicis " masculine ; -- [XXXDX] :: partridge; + perdo_V2 = mkV2 (mkV "perdere" "perdo" "perdidi" "perditus ") ; -- [XXXAX] :: ruin, destroy; lose; waste; perdoceo_V2 = mkV2 (mkV "perdocere") ; -- [XXXES] :: instruct thoroughly; + perdoco_V2 = mkV2 (mkV "perdocere" "perdoco" "perdocui" "perdoctus ") ; -- [XXXDX] :: teach (thoroughly); perdoleo_V = mkV "perdolere" ; -- [XXXDO] :: vex, bother, cause grief/annoyance; grieve, be annoyed; + perdolesco_V = mkV "perdolescere" "perdolesco" "perdolui" nonExist; -- [XXXDS] :: feel great pain; perdolo_V2 = mkV2 (mkV "perdolare") ; -- [XXXFO] :: hack, hew into shape, fashion by hewing/hacking; perdomo_V2 = mkV2 (mkV "perdomare") ; -- [XXXCO] :: |crush (grain)/knead (dough) thoroughly; work/break up (soil) thoroughly; + perdormisco_V = mkV "perdormiscere" "perdormisco" nonExist nonExist; -- [BXXFS] :: sleep on; + perduco_V2 = mkV2 (mkV "perducere" "perduco" "perduxi" "perductus ") ; -- [XXXBX] :: lead, guide; prolong; induce, conduct, bring through; perducto_V2 = mkV2 (mkV "perductare") ; -- [BXXES] :: guide; perductor_M_N = mkN "perductor" "perductoris " masculine ; -- [XXXDS] :: guide; pimp; perdudum_Adv = mkAdv "perdudum" ; -- [XXXFO] :: for a very long time past; long time ago; perduellio_F_N = mkN "perduellio" "perduellionis " feminine ; -- [XXXCO] :: treason; hostile action against one's country; perduellis_M_N = mkN "perduellis" "perduellis " masculine ; -- [XXXDX] :: national enemy; enemy; adherent of country with which one's own is at war; perduro_V = mkV "perdurare" ; -- [XXXEC] :: last long, endure; --- TODO peredo_V : V1 peredo, peresse, -, - -- [XXXDX] :: eat up, consume, waste; + peredo_1_V2 = mkV2 (mkV "peresse" "peredo" nonExist nonExist) ; -- [XXXDX] :: eat up, consume, waste; + peredo_2_V2 = mkV2 (mkV "peredere" "peredo" "peredi" "peresus ") ; -- [XXXDX] :: eat up, consume, waste; peregre_Adv = mkAdv "peregre" ; -- [XXXDX] :: to/from abroad; peregri_Adv = mkAdv "peregri" ; -- [XXXFS] :: abroad; away from home; peregrinabundus_A = mkA "peregrinabundus" "peregrinabunda" "peregrinabundum" ; -- [XXXEC] :: traveling about; @@ -26829,7 +28776,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg perendinus_A = mkA "perendinus" "perendina" "perendinum" ; -- [XXXDX] :: after tomorrow; [perendino die => the day after tomorrow]; perennis_A = mkA "perennis" "perennis" "perenne" ; -- [XXXBX] :: continual; everlasting, perpetual, perennial; eternal; perenno_V = mkV "perennare" ; -- [XXXEC] :: last many years; --- TODO pereo_V : V1 pereo, perire, perivi(ii), peritus -- [XXXAX] :: die, pass away; be ruined, be destroyed; go to waste; + pereo_1_V = mkV "perire" "pereo" "perivi" "peritus" ; -- [XXXAX] :: die, pass away; be ruined, be destroyed; go to waste; + pereo_2_V = mkV "perire" "pereo" "perii" "peritus" ; -- [XXXAX] :: die, pass away; be ruined, be destroyed; go to waste; perequito_V = mkV "perequitare" ; -- [XXXDX] :: ride through; ride around; pererro_V = mkV "pererrare" ; -- [XXXDX] :: wander through, roam or ramble over; pereruditus_A = mkA "pereruditus" "pererudita" "pereruditum" ; -- [XXXEC] :: very learned; @@ -26846,13 +28794,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg perfectissimus_M_N = mkN "perfectissimus" ; -- [DLXFS] :: most-perfect man; perfectus_A = mkA "perfectus" "perfecta" "perfectum" ; -- [XXXDX] :: perfect, complete; excellent; perfero_V = mkV "perferre" "perfero" "pertuli" "perlatus " ; -- Comment: [XXXAX] :: carry through; bear, endure to the end, suffer; announce; + perficio_V2 = mkV2 (mkV "perficere" "perficio" "perfeci" "perfectus ") ; -- [XXXAX] :: complete, finish; execute; bring about, accomplish; do thoroughly; perfidia_F_N = mkN "perfidia" ; -- [XXXDX] :: faithlessness, treachery, perfidy; perfidiosus_A = mkA "perfidiosus" "perfidiosa" "perfidiosum" ; -- [XXXDX] :: treacherous; perfidus_A = mkA "perfidus" "perfida" "perfidum" ; -- [XXXBX] :: faithless, treacherous, false, deceitful; + perfigo_V2 = mkV2 (mkV "perfigere" "perfigo" "perfixi" "perfixus ") ; -- [XXXDO] :: pierce; transfix; pierce through (L+S); penetrate; impale; run/thrust through; + perfinio_V2 = mkV2 (mkV "perfinire" "perfinio" "perfinivi" "perfinitus ") ; -- [FXXFM] :: complete; perflabilis_A = mkA "perflabilis" "perflabilis" "perflabile" ; -- [XXXDS] :: airy; susceptible; can be blown over; perflagitiosus_A = mkA "perflagitiosus" "perflagitiosa" "perflagitiosum" ; -- [XXXEC] :: very shameful; perflo_V = mkV "perflare" ; -- [XXXDX] :: blow through or over; perfluctuo_V2 = mkV2 (mkV "perfluctuare") ; -- [XPXFS] :: flow through; + perfluo_V2 = mkV2 (mkV "perfluere" "perfluo" "perfluxi" "perfluxus ") ; -- [XXXDX] :: flow/run through; flow on/along; stream (with moisture); flow (drapery); + perfodio_V2 = mkV2 (mkV "perfodire" "perfodio" "perfodivi" "perfoditus ") ; -- [XXXES] :: bore/dig/make hole/passage/channel/break in/through; dig/pierce/stab/perforate; perforaculum_N_N = mkN "perforaculum" ; -- [GTXEK] :: drilling machine; perforo_V2 = mkV2 (mkV "perforare") ; -- [XXXCO] :: bore/pierce/make a hole/passage/break in/through; bore/pierce/stab/perforate; perfossor_M_N = mkN "perfossor" "perfossoris " masculine ; -- [XXXDS] :: digger through; one who breaks in; @@ -26861,16 +28814,22 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg perfrico_V2 = mkV2 (mkV "perfricare") ; -- [XXXCO] :: rub all over; rub smooth; [~ os/frontem/facium => wipe off blush/abandon shame]; perfrictio_F_N = mkN "perfrictio" "perfrictionis " feminine ; -- [XBXEO] :: chill, thorough chilling; bad cold (L+S); abrasion, rubbing; perfrictiuncula_F_N = mkN "perfrictiuncula" ; -- [XBXFO] :: slight chill/cold; --- TODO perfrigesco_V : V2 perfrigesco, perfrigescere, perfrixi, - -- Declension: 3rd -- Comment: [XXXDX] :: catch cold; + perfrigefacio_V2 = mkV2 (mkV "perfrigefacere" "perfrigefacio" nonExist nonExist) ; -- [XXXDS] :: make cold; cause to shudder; + perfrigesco_V2 = mkV2 (mkV "perfrigescere" "perfrigesco" "perfrixi" nonExist ) ; -- [XXXDX] :: catch cold; perfrigidus_A = mkA "perfrigidus" "perfrigida" "perfrigidum" ; -- [XXXEC] :: very cold; + perfringo_V2 = mkV2 (mkV "perfringere" "perfringo" "perfregi" "perfractus ") ; -- [XXXDX] :: break through; + perfruor_V = mkV "perfrui" "perfruor" "perfructus sum " ; -- [XXXDX] :: have full enjoyment of, enjoy; perfuga_M_N = mkN "perfuga" ; -- [XXXDX] :: deserter; --- TODO perfugio_V : V2 perfugio, perfugere, perfugi, - -- Declension: 3rd -- Comment: [XXXDX] :: flee, desert; take refuge; + perfugio_V2 = mkV2 (mkV "perfugere" "perfugio" "perfugi" nonExist ) ; -- [XXXDX] :: flee, desert; take refuge; perfugium_N_N = mkN "perfugium" ; -- [XXXDX] :: refuge; asylum; excuse; perfunctorie_Adv = mkAdv "perfunctorie" ; -- [XXXES] :: carelessly; perfunctorily; --- TODO perfuro_V : V2 perfuro, perfurere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: rage, storm (throughout); + perfundo_V2 = mkV2 (mkV "perfundere" "perfundo" "perfudi" "perfusus ") ; -- [XXXBX] :: pour over/through, wet, flood, bathe; overspread, coat, overlay; imbue; + perfungor_V = mkV "perfungi" "perfungor" "perfunctus sum " ; -- [XXXDX] :: perform, discharge, have done with (w/ABL); + perfuro_V = mkV "perfurere" "perfuro" nonExist nonExist ; -- [XXXDX] :: rage, storm (throughout); pergamenicus_A = mkA "pergamenicus" "pergamenica" "pergamenicum" ; -- [EXXEK] :: of parchment; pergamenum_N_N = mkN "pergamenum" ; -- [EXXDP] :: parchment; document; pergaudeo_V = mkV "pergaudere" ; -- [XXXDS] :: rejoice greatly; + pergo_V2 = mkV2 (mkV "pergere" "pergo" "perrexi" "perrectus ") ; -- [XXXAX] :: go on, proceed; pergraecor_V = mkV "pergraecari" ; -- [XXXDS] :: enjoy oneself; behave like the Greeks; pergrandis_A = mkA "pergrandis" "pergrandis" "pergrande" ; -- [XXXDX] :: very large, huge; of very advanced age; pergraphicus_A = mkA "pergraphicus" "pergraphica" "pergraphicum" ; -- [BXXES] :: very skillful; most exquisite; @@ -26882,7 +28841,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg perhonorifice_Adv = mkAdv "perhonorifice" ; -- [XXXEC] :: very honorably, very respectfully; perhonorificus_A = mkA "perhonorificus" "perhonorifica" "perhonorificum" ; -- [XXXEC] :: very honorable, very respectful; perhorreo_V2 = mkV2 (mkV "perhorrere") ; -- [DXXDS] :: tremble at; --- TODO perhorresco_V : V2 perhorresco, perhorrescere, perhorrui, - -- Declension: 3rd -- Comment: [XXXDX] :: tremble or shudder greatly; recoil in terror from; + perhorresco_V2 = mkV2 (mkV "perhorrescere" "perhorresco" "perhorrui" nonExist ) ; -- [XXXDX] :: tremble or shudder greatly; recoil in terror from; perhorridus_A = mkA "perhorridus" "perhorrida" "perhorridum" ; -- [XXXEC] :: very dreadful; perhumaniter_Adv = mkAdv "perhumaniter" ; -- [XXXEC] :: very civilly; perhumanus_A = mkA "perhumanus" "perhumana" "perhumanum" ; -- [XXXEC] :: very friendly, very civil; @@ -26890,7 +28849,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg periclitatio_F_N = mkN "periclitatio" "periclitationis " feminine ; -- [XXXFS] :: test; experiment; periclitor_V = mkV "periclitari" ; -- [XXXDX] :: try, prove, test, make a trial of, put to the test/in peril; risk, endanger; periclum_N_N = mkN "periclum" ; -- [XLXAO] :: danger, peril; trial, attempt; risk; responsibility for damage, liability; --- SLASHSTUFF periculosus_A : A2 periculosus, periculosa -um, periculosior -or -us, periculosissimus -a -um -- [XXXBX] :: dangerous, hazardous, perilous; threatening; + periculosus_A = mkA "periculosus" ; -- [XXXBX] :: dangerous, hazardous, perilous; threatening; periculum_N_N = mkN "periculum" ; -- [XLXAO] :: danger, peril; trial, attempt; risk; responsibility for damage, liability; peridoneus_A = mkA "peridoneus" "peridonea" "peridoneum" ; -- [XXXDX] :: very suitable, very well-fitted; periegesis_F_N = mkN "periegesis" "periegesis " feminine ; -- [GXXEK] :: tourism; @@ -26898,6 +28857,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg periegeticus_A = mkA "periegeticus" "periegetica" "periegeticum" ; -- [GXXEK] :: touristy; perimbecillus_A = mkA "perimbecillus" "perimbecilla" "perimbecillum" ; -- [XXXEC] :: very weak; perimetros_F_N = mkN "perimetros" "perimetri " feminine ; -- [DSXES] :: perimeter; circumference; + perimo_V2 = mkV2 (mkV "perimere" "perimo" "peremi" "peremptus ") ; -- [XXXBX] :: kill, destroy; perincommode_Adv = mkAdv "perincommode" ; -- [XXXEC] :: very inconveniently; perincommodus_A = mkA "perincommodus" "perincommoda" "perincommodum" ; -- [XXXEC] :: very inconvenient; perinde_Adv = mkAdv "perinde" ; -- [XXXDX] :: in the same way/just as, equally; likewise [~ ac => just as if]; @@ -26918,10 +28878,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg peripsima_N_N = mkN "peripsima" "peripsimatis " neuter ; -- [EXXEP] :: refuse; filth; offscouring (that which comes off in cleaning); peripteros_A = mkA "peripteros" "peripteros" "peripteron" ; -- [XTXDO] :: having single row of columns all around; periratus_A = mkA "periratus" "perirata" "periratum" ; -- [XXXEC] :: very angry; --- TODO periscelis_N : N1 periscelis, periscelidos/is -- F -- [XXXEO] :: garter, anklet, leg-band; + periscelis_1_N = mkN "periscelis" "periscelidis" feminine ; -- [XXXEO] :: garter, anklet, leg-band; + periscelis_2_N = mkN "periscelis" "periscelidos" feminine ; -- [XXXEO] :: garter, anklet, leg-band; peristasis_F_N = mkN "peristasis" "peristasis " feminine ; -- [DXXDS] :: subject; theme; peristereos_M_N = mkN "peristereos" "peristerei " masculine ; -- [XAXNO] :: plant doves are fond of, a verbena(?); --- TODO peristeron_N : N1 peristeron, peristeronos/is -- M -- [XAXFO] :: enclosure for pigeons, pigeon coop; + peristeron_1_N = mkN "peristeron" "peristeronis" masculine ; -- [XAXFO] :: enclosure for pigeons, pigeon coop; + peristeron_2_N = mkN "peristeron" "peristeronos" masculine ; -- [XAXFO] :: enclosure for pigeons, pigeon coop; peristerotrophion_N_N = mkN "peristerotrophion" "peristerotrophii " neuter ; -- [XAXFO] :: enclosure for pigeons, pigeon coop; peristroma_N_N = mkN "peristroma" "peristromatis " neuter ; -- [XXXEC] :: curtain, coverlet, carpet, hanging; peristylium_N_N = mkN "peristylium" ; -- [XTXEO] :: inner courtyard lined with rows of columns, peristyle; @@ -26929,19 +28891,23 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg peristylum_N_N = mkN "peristylum" ; -- [XTXEO] :: inner courtyard lined with rows of columns, peristyle; peritia_F_N = mkN "peritia" ; -- [XXXDX] :: practical knowledge, skill, expertise; experience; peritonitis_F_N = mkN "peritonitis" "peritonitidis " feminine ; -- [GBXEK] :: peritonitis; --- SLASHSTUFF peritus_A : A2 peritus, perita -um, peritior -or -us, peritissimus -a -um -- [XXXBX] :: skilled, skillful; experienced, expert; with gen; + peritus_A = mkA "peritus" ; -- [XXXBX] :: skilled, skillful; experienced, expert; with gen; periurium_N_N = mkN "periurium" ; -- [XXXDX] :: false oath, perjury; perizoma_N_N = mkN "perizoma" "perizomatis " neuter ; -- [DXXES] :: girdle; perjucundus_A = mkA "perjucundus" "perjucunda" "perjucundum" ; -- [XXXDX] :: very welcome, agreeable; perjuro_V = mkV "perjurare" ; -- [XXXDX] :: swear falsely; perjurus_A = mkA "perjurus" "perjura" "perjurum" ; -- [XXXDX] :: perjured; false, lying; + perlabor_V = mkV "perlabi" "perlabor" "perlapsus sum " ; -- [XXXDX] :: glide along, over or through, skim; perlaetus_A = mkA "perlaetus" "perlaeta" "perlaetum" ; -- [XXXEC] :: very joyful; perlateo_V = mkV "perlatere" ; -- [XXXDS] :: lie well hidden; + perlego_V2 = mkV2 (mkV "perlegere" "perlego" "perlegi" "perlectus ") ; -- [XXXCO] :: read over/through (silent/aloud); scan, survey, run one's eyes over; recount; perlevis_A = mkA "perlevis" "perlevis" "perleve" ; -- [XXXDS] :: very slight; very light; perlibens_A = mkA "perlibens" "perlibentis"; -- [XXXDS] :: very willing; with pleasure; perliberalis_A = mkA "perliberalis" "perliberalis" "perliberale" ; -- [XXXDS] :: very well-bred; very honorable/gentlemanly; perlibet_V0 = mkV0 "perlibet" ; -- [XXXDS] :: it is very pleasing/agreeable; please very much; perlibro_V2 = mkV2 (mkV "perlibrare") ; -- [DXXDS] :: make level; + perlicio_V2 = mkV2 (mkV "perlicere" "perlicio" "perlicui" "perlectus ") ; -- [XXXCO] :: attract/draw away; allure/seduce/entice/captivate; coax/induce/wheedle/win over; + perligo_V2 = mkV2 (mkV "perligere" "perligo" "perligi" "perlictus ") ; -- [XXXIO] :: read over/through (silent/aloud); scan, survey, run one's eyes over; recount; perlito_V = mkV "perlitare" ; -- [XXXDX] :: make auspicious sacrifice; perlonge_Adv = mkAdv "perlonge" ; -- [XXXEC] :: very far; tediously; perlongus_A = mkA "perlongus" "perlonga" "perlongum" ; -- [XXXEC] :: very long, tedious; @@ -26949,15 +28915,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg perlucidulus_A = mkA "perlucidulus" "perlucidula" "perlucidulum" ; -- [XXXEC] :: transparent; perlucidus_A = mkA "perlucidus" "perlucida" "perlucidum" ; -- [XXXDX] :: transparent, pellucid; perluctuosus_A = mkA "perluctuosus" "perluctuosa" "perluctuosum" ; -- [XXXEC] :: very mournful; + perluo_V2 = mkV2 (mkV "perluere" "perluo" "perlui" "perlutus ") ; -- [XXXDX] :: wash off or thoroughly, bathe; perlustro_V = mkV "perlustrare" ; -- [XXXDX] :: go or wander all through; view all over, scan, scrutinize; + permadesco_V = mkV "permadescere" "permadesco" "permadui" nonExist; -- [DXXDO] :: become very/quite wet/sodden; be soaked through; be soft/effeminate; permagnus_A = mkA "permagnus" "permagna" "permagnum" ; -- [XXXDX] :: very great; + permanasco_V = mkV "permanascere" "permanasco" nonExist nonExist; -- [BXXFS] :: penetrate; permaneo_V = mkV "permanere" ; -- [XXXBX] :: last, continue; remain; endure; permano_V = mkV "permanare" ; -- [XXXDX] :: flow through; leak through; permeate; permarinus_A = mkA "permarinus" "permarina" "permarinum" ; -- [XXXEC] :: going over the sea; --- TODO permaturesco_V : V2 permaturesco, permaturescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: mature, ripen thoroughly; + permaturesco_V = mkV "permaturescere" "permaturesco" nonExist nonExist ; -- [XXXDX] :: mature, ripen thoroughly; permaturo_V = mkV "permaturare" ; -- [DAXDS] :: become quite ripe; permediocris_A = mkA "permediocris" "permediocris" "permediocre" ; -- [XXXDS] :: very moderate; permeo_V = mkV "permeare" ; -- [XXXDX] :: go or pass through, cross, traverse; pervade; + permetior_V = mkV "permetiri" "permetior" "permensus sum " ; -- [XXXCO] :: measure (exactly); traverse/travel over; pass through; complete (time/process); permirus_A = mkA "permirus" "permira" "permirum" ; -- [XXXEC] :: very wonderful; permisceo_V = mkV "permiscere" ; -- [XXXDX] :: mix or mingle together; confound; embroil; disturb thoroughly; permissio_F_N = mkN "permissio" "permissionis " feminine ; -- [XXXES] :: yielding (to another); permission; @@ -26966,6 +28936,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg permistus_A = mkA "permistus" "permista" "permistum" ; -- [DXXDS] :: confused; disordered; (=permixtus, = alt. vpar of permisceo); permitialis_A = mkA "permitialis" "permitialis" "permitiale" ; -- [XXXEC] :: destructive, annihilating; permities_F_N = mkN "permities" "permitiei " feminine ; -- [XXXEC] :: destruction, annihilation; + permitto_V2 = mkV2 (mkV "permittere" "permitto" "permisi" "permissus ") ; -- [XXXAX] :: let through; let go through; relinquish; permit, allow; entrust; hurl; permixtio_F_N = mkN "permixtio" "permixtionis " feminine ; -- [XXXEO] :: mixture/blending; thorough mixing together; permixtus_A = mkA "permixtus" "permixta" "permixtum" ; -- [XXXDS] :: promiscuous; confused; permodestus_A = mkA "permodestus" "permodesta" "permodestum" ; -- [XXXEC] :: very modest, very moderate; @@ -26974,6 +28945,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg permoveo_V = mkV "permovere" ; -- [XXXDX] :: stir up; move deeply; influence; agitate; permulceo_V = mkV "permulcere" ; -- [XXXDX] :: rub gently, stroke, touch gently; charm, please, beguile; soothe, alleviate; permultus_A = mkA "permultus" "permulta" "permultum" ; -- [XXXDX] :: very much; very many (pl.); + permunio_V2 = mkV2 (mkV "permunire" "permunio" "permunivi" "permunitus ") ; -- [XXXDX] :: fortify thoroughly, make very secure; finish constructing fortifications; permutatio_F_N = mkN "permutatio" "permutationis " feminine ; -- [XXXDX] :: change, exchange; permuto_V = mkV "permutare" ; -- [XXXDX] :: exchange (for); swap; perna_F_N = mkN "perna" ; -- [XXXEC] :: ham; @@ -26988,7 +28960,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pernix_A = mkA "pernix" "pernicis"; -- [XXXDX] :: persistent, preserving; nimble, brisk, active, agile, quick, swift, fleet; pernobilis_A = mkA "pernobilis" "pernobilis" "pernobile" ; -- [XXXDS] :: very famous; pernocto_V = mkV "pernoctare" ; -- [XXXCO] :: spend the night; occupy the night (w/person or in place); guard all night; + pernosco_V2 = mkV2 (mkV "pernoscere" "pernosco" "pernovi" "pernotus ") ; -- [XXXDO] :: get to know well; become well acquainted/conversant with; get full knowledge of; pernot_A = mkA "pernot" "pernotis"; -- [XXXEO] :: very well known; very familiar;; + pernotesco_V = mkV "pernotescere" "pernotesco" "pernotui" nonExist; -- [XXXDO] :: become generally/well/everywhere known; + pernotesct_V0 = mkV0 "pernotesct"; -- [XXXES] :: it has become well known; it has been thoroughly investigated; pernox_A = mkA "pernox" "pernoctis"; -- [XXXCO] :: lasting all night; continuing throughout the night; pernumero_V2 = mkV2 (mkV "pernumerare") ; -- [XXXDS] :: count up; reckon; pero_M_N = mkN "pero" "peronis " masculine ; -- [XXXDX] :: thick boot of raw hide; @@ -27016,12 +28991,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg perpaulum_N_N = mkN "perpaulum" ; -- [XXXEC] :: very little; perpauper_A = mkA "perpauper" "perpauperis"; -- [XXXFO] :: very poor; very hard up; perpauxillum_N_N = mkN "perpauxillum" ; -- [XXXDS] :: very little (amount); + perpello_V2 = mkV2 (mkV "perpellere" "perpello" "perpuli" "perpulsus ") ; -- [XXXDX] :: compel, constrain, prevail upon; enforce; perpendiculariter_Adv = mkAdv "perpendiculariter" ; -- [GXXEK] :: perpendicularly; perpendiculum_N_N = mkN "perpendiculum" ; -- [XXXDX] :: plummet; plumbline; [ad perpendiculum => perpendicularly]; + perpendo_V2 = mkV2 (mkV "perpendere" "perpendo" "perpendi" "perpensus ") ; -- [XXXDX] :: weigh carefully; assess carefully; perpensius_Adv = mkAdv "perpensius" ; -- [FXXFM] :: more deliberately; perperam_Adv = mkAdv "perperam" ; -- [XXXDX] :: wrongly, incorrectly; perpes_A = mkA "perpes" "perpetis"; -- [XXXCO] :: continuous, lasting, unbroken in time, perpetual, neverending; whole period; perpetim_Adv = mkAdv "perpetim" ; -- [DXXES] :: |continually/unceasingly (Ecc); forever (Z); + perpetior_V = mkV "perpeti" "perpetior" "perpessus sum " ; -- [XXXDX] :: endure to the full; perpetro_V = mkV "perpetrare" ; -- [XXXDX] :: carry through, accomplish; perpetualis_A = mkA "perpetualis" "perpetualis" "perpetuale" ; -- [FXXEM] :: perpetual; perpetualiter_Adv = mkAdv "perpetualiter" ; -- [FXXEM] :: perpetually; @@ -27032,22 +29010,29 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg perplexor_V = mkV "perplexari" ; -- [XXXEC] :: perplex; perplexus_A = mkA "perplexus" "perplexa" "perplexum" ; -- [XXXDX] :: entangled, muddled; intricate, cryptic; confused; perplicatus_A = mkA "perplicatus" "perplicata" "perplicatum" ; -- [XXXEC] :: entangled, involved; + perpluo_V = mkV "perpluere" "perpluo" nonExist nonExist; -- [XXXDS] :: rain through; allow rain through; + perpolio_V2 = mkV2 (mkV "perpolire" "perpolio" "perpolivi" "perpolitus ") ; -- [XXXDX] :: polish thoroughly; put the finishing touches to; perpopulor_V = mkV "perpopulari" ; -- [XXXDX] :: ravage, devastate completely; perpotatio_F_N = mkN "perpotatio" "perpotationis " feminine ; -- [XXXDS] :: drinking bout; + perpotior_V = mkV "perpotiri" "perpotior" "perpotitus sum " ; -- [ELXES] :: enjoy completely; perpoto_V = mkV "perpotare" ; -- [XXXDX] :: drink heavily; drink up; + perprimo_V2 = mkV2 (mkV "perprimere" "perprimo" "perpressi" "perpressus ") ; -- [XXXEC] :: press hard; perpropinquus_A = mkA "perpropinquus" "perpropinqua" "perpropinquum" ; -- [XXXDX] :: very near; perpropinquus_M_N = mkN "perpropinquus" ; -- [XXXDX] :: relative; perpugnax_A = mkA "perpugnax" "perpugnacis"; -- [XXXDS] :: very pugnacious; perpurgo_V2 = mkV2 (mkV "perpurgare") ; -- [XXXDS] :: purge well; clear up; explain fully; perpusillus_A = mkA "perpusillus" "perpusilla" "perpusillum" ; -- [XXXEC] :: very small; perquam_Adv = mkAdv "perquam" ; -- [XXXDX] :: extremely; + perquiro_V2 = mkV2 (mkV "perquirere" "perquiro" "perquisivi" "perquisitus ") ; -- [XXXDX] :: search everywhere for; perrarus_A = mkA "perrarus" "perrara" "perrarum" ; -- [XXXDX] :: very rare, exceptional; perreconditus_A = mkA "perreconditus" "perrecondita" "perreconditum" ; -- [XXXEC] :: very abstruse; + perrepo_V2 = mkV2 (mkV "perrepere" "perrepo" "perrepsi" "perreptus ") ; -- [XXXDS] :: crawl over; crawl along; perrepto_V = mkV "perreptare" ; -- [XXXEC] :: crawl through, crawl about; perridicule_Adv = mkAdv "perridicule" ; -- [XXXEC] :: very laughably; perridiculus_A = mkA "perridiculus" "perridicula" "perridiculum" ; -- [XXXEC] :: very laughable; perrogatio_F_N = mkN "perrogatio" "perrogationis " feminine ; -- [XXXEO] :: poll, successive asking persons for opinion; L:passage of law (L+S); decree; perrogo_V2 = mkV2 (mkV "perrogare") ; -- [XLXDO] :: ask/question/solicit in turn; L:propose/pass a law; carry (bill); + perrumpo_V2 = mkV2 (mkV "perrumpere" "perrumpo" "perrupi" "perruptus ") ; -- [XXXDX] :: break through; persaepe_Adv = mkAdv "persaepe" ; -- [XXXDX] :: very often; persalse_Adv = mkAdv "persalse" ; -- [XXXEC] :: very witty; persalsus_A = mkA "persalsus" "persalsa" "persalsum" ; -- [XXXEC] :: very witty; @@ -27056,7 +29041,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg persano_V2 = mkV2 (mkV "persanare") ; -- [DBXDS] :: cure completely; persapiens_A = mkA "persapiens" "persapientis"; -- [XXXDS] :: very wise; perscienter_Adv = mkAdv "perscienter" ; -- [XXXEC] :: very discreetly; + perscindo_V2 = mkV2 (mkV "perscindere" "perscindo" "perscidi" "perscissus ") ; -- [XXXDS] :: tear apart; perscitus_A = mkA "perscitus" "perscita" "perscitum" ; -- [XXXEC] :: very clever; + perscribo_V2 = mkV2 (mkV "perscribere" "perscribo" "perscripsi" "perscriptus ") ; -- [XXXDX] :: report; describe; write out in full; finish writing, write a detailed record; perscriptio_F_N = mkN "perscriptio" "perscriptionis " feminine ; -- [XXXDS] :: entry; assignment; perscriptor_M_N = mkN "perscriptor" "perscriptoris " masculine ; -- [XXXDS] :: scribe; writer; perscrutor_V = mkV "perscrutari" ; -- [XXXCO] :: search/look though; search high and low; study/investigate carefully; @@ -27066,7 +29053,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg persecutor_M_N = mkN "persecutor" "persecutoris " masculine ; -- [DXXCS] :: persecutor; (of Christians); prosecutor, plaintiff; persedeo_V = mkV "persedere" ; -- [XXXDS] :: remain sitting; stay seated; persegnis_A = mkA "persegnis" "persegnis" "persegne" ; -- [XXXDS] :: very slow; --- TODO persentisco_V : V2 persentisco, persentiscere, -, - -- Declension: 3rd -- Comment: [XXXEC] :: begin to perceive distinctly or feel deeply; + persentisco_V = mkV "persentiscere" "persentisco" nonExist nonExist ; -- [XXXEC] :: begin to perceive distinctly or feel deeply; + persequor_V = mkV "persequi" "persequor" "persecutus sum " ; -- [XXXBX] :: follow up, pursue; overtake; attack; take vengeance on; accomplish; perseverans_A = mkA "perseverans" "perseverantis"; -- [XXXCO] :: steadfast, persistent, untiring; continually maintained, persistent (activity); perseveranter_Adv =mkAdv "perseveranter" "perseverantius" "perseverantissime" ; -- [XXXCO] :: steadfastly, persistently; with continued action; perseverantia_F_N = mkN "perseverantia" ; -- [XXXCO] :: steadfastness; persistence (affliction); continued existence; @@ -27074,11 +29062,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg perseverus_A = mkA "perseverus" "persevera" "perseverum" ; -- [XXXEC] :: very strict; persicinus_A = mkA "persicinus" "persicina" "persicinum" ; -- [GXXEK] :: peach-colored; persicum_N_N = mkN "persicum" ; -- [FAXEK] :: peach; + persido_V = mkV "persidere" "persido" "persedi" "persessus "; -- [XPXDS] :: settle down; sink into; persigno_V2 = mkV2 (mkV "persignare") ; -- [XXXFS] :: note down; record; persimilis_A = mkA "persimilis" "persimilis" "persimile" ; -- [XXXDS] :: very like; very similar; persimplex_A = mkA "persimplex" "persimplicis"; -- [XXXDS] :: very simple; very plain; persolata_F_N = mkN "persolata" ; -- [XAXFS] :: brown mullen plant (Pliny); persolus_A = mkA "persolus" "persola" "persolum" ; -- [BXXFS] :: quite alone; + persolvo_V2 = mkV2 (mkV "persolvere" "persolvo" "persolvi" "persolutus ") ; -- [XXXDX] :: pay; persona_F_N = mkN "persona" ; -- [XXXAX] :: mask; character; personality; personalis_A = mkA "personalis" "personalis" "personale" ; -- [XXXEO] :: personal; of/relating to an individual; personatus_A = mkA "personatus" "personata" "personatum" ; -- [XXXDX] :: masked; @@ -27089,15 +29079,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg perspecto_V2 = mkV2 (mkV "perspectare") ; -- [XXXDS] :: look through to end; examine closely; perspectus_A = mkA "perspectus" "perspecta" "perspectum" ; -- [XXXDS] :: evident; well-known; perspeculor_V = mkV "perspeculari" ; -- [XXXDS] :: reconnoiter; examine well; + perspergo_V2 = mkV2 (mkV "perspergere" "perspergo" nonExist nonExist) ; -- [XXXEC] :: sprinkle, moisten; perspicace_Adv = mkAdv "perspicace" ; -- [XXXFO] :: watchfully; observantly; perspicax_A = mkA "perspicax" "perspicacis"; -- [XXXCO] :: observant, attentive to what is going on; having keen/penetrating sight/vision; perspicibilis_A = mkA "perspicibilis" "perspicibilis" "perspicibile" ; -- [XXXFO] :: clearly visible; perspicientia_F_N = mkN "perspicientia" ; -- [XXXDS] :: full knowledge; perspicillum_N_N = mkN "perspicillum" ; -- [GXXEK] :: spectacles; glasses; + perspicio_V2 = mkV2 (mkV "perspicere" "perspicio" "perspexi" "perspectus ") ; -- [XXXBX] :: see through; examine; observe; perspicue_Adv = mkAdv "perspicue" ; -- [XXXDX] :: clearly, evidently; perspicuus_A = mkA "perspicuus" "perspicua" "perspicuum" ; -- [XXXDX] :: transparent, clear; evident; + persterno_V2 = mkV2 (mkV "persternere" "persterno" "perstervi" "perstratus ") ; -- [XXXDS] :: pave all over; perstimulo_V2 = mkV2 (mkV "perstimulare") ; -- [XXXDS] :: stimulate violently; persto_V = mkV "perstare" ; -- [XXXDX] :: stand firm; last, endure; persevere, persist in; + perstringo_V2 = mkV2 (mkV "perstringere" "perstringo" "perstrinxi" "perstrictus ") ; -- [XXXDX] :: graze, graze against; make tight all over; offend, make unfavorable mention; perstudiose_Adv = mkAdv "perstudiose" ; -- [XXXEC] :: very eagerly; perstudiosus_A = mkA "perstudiosus" "perstudiosa" "perstudiosum" ; -- [XXXEC] :: very eager; persuadeo_V = mkV "persuadere" ; -- [XXXBX] :: persuade, convince (with dat.); @@ -27106,32 +29100,39 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg persubtilis_A = mkA "persubtilis" "persubtilis" "persubtile" ; -- [XXXDS] :: very subtle; very delicate; persulto_V = mkV "persultare" ; -- [XXXDX] :: leap or skip or prance about, range (over), scour; pertaedet_V0 = mkV0 "pertaedet" ; -- [XXXDX] :: it wearies; it disgusts; it bores; + pertego_V2 = mkV2 (mkV "pertegere" "pertego" "pertexi" "pertectus ") ; -- [BXXES] :: cover over; pertempto_V = mkV "pertemptare" ; -- [XXXDX] :: test, try out; explore thoroughly; agitate thoroughly; + pertendo_V2 = mkV2 (mkV "pertendere" "pertendo" "pertendi" "pertensus ") ; -- [XXXDX] :: persevere, persist; press on; pertento_V = mkV "pertentare" ; -- [XXXDX] :: test, try out; explore thoroughly; agitate thoroughly; pertenuis_A = mkA "pertenuis" "pertenuis" "pertenue" ; -- [XXXDS] :: very thin; very slender; perterebro_V2 = mkV2 (mkV "perterebrare") ; -- [XXXDS] :: bore through; + pertergo_V2 = mkV2 (mkV "pertergere" "pertergo" "pertersi" "pertersus ") ; -- [XXXDS] :: wipe over; touch lightly; + perterrefacio_V2 = mkV2 (mkV "perterrefacere" "perterrefacio" "perterrefeci" "perterrefactus ") ; -- [XXXCO] :: make extremely frightened; terrify thoroughly; perterrefactus_A = mkA "perterrefactus" "perterrefacta" "perterrefactum" ; -- [XXXDS] :: terribly/extremely frightened, thoroughly terrified; perterreo_V2 = mkV2 (mkV "perterrere") ; -- [XXXBO] :: frighten greatly, terrify; perterricrepus_A = mkA "perterricrepus" "perterricrepa" "perterricrepum" ; -- [XXXFO] :: making/characterized by terrifying crashing/clattering sound; rattling terribly; perterrito_V2 = mkV2 (mkV "perterritare") ; -- [DXXFS] :: frighten thoroughly/greatly, terrify; perterritus_A = mkA "perterritus" "perterrita" "perterritum" ; -- [DXXFS] :: very frightened, thoroughly frightened; completely terrified; + pertexo_V2 = mkV2 (mkV "pertexere" "pertexo" "pertexui" "pertextus ") ; -- [XXXDS] :: accomplish; interweave; pertica_F_N = mkN "pertica" ; -- [XXXDX] :: pole, long staff; measuring rod; perch; pertimefactus_A = mkA "pertimefactus" "pertimefacta" "pertimefactum" ; -- [XXXDS] :: very frightened; --- TODO pertimesco_V : V2 pertimesco, pertimescere, pertimui, - -- Declension: 3rd -- Comment: [XXXDX] :: become very scared (of ); + pertimesco_V2 = mkV2 (mkV "pertimescere" "pertimesco" "pertimui" nonExist ) ; -- [XXXDX] :: become very scared (of ); pertinacia_F_N = mkN "pertinacia" ; -- [XXXBO] :: determination/perseverance; persistence; obstinacy, stubbornness, defiance; pertinaciter_Adv = mkAdv "pertinaciter" ; -- [XXXCO] :: tenaciously; obstinately, stubbornly, determinedly; through thick and thin; pertinax_A = mkA "pertinax" "pertinacis"; -- [XXXDX] :: persevering, obstinate; pertinacious; pertineo_V = mkV "pertinere" ; -- [XXXAX] :: reach; extend; relate to; concerns, pertain to; --- TODO pertingo_V : V2 pertingo, pertingere, -, - -- Declension: 3rd -- Comment: [XXXCO] :: reach, get as far as; extend (in a direction); concern, affect; + pertingo_V = mkV "pertingere" "pertingo" nonExist nonExist ; -- [XXXCO] :: reach, get as far as; extend (in a direction); concern, affect; pertito_Adv = mkAdv "pertito" ; -- [ESXDX] :: in X divisions (only with numerical prefix), in X parts/categories; pertitus_A = mkA "pertitus" "pertita" "pertitum" ; -- [ESXDX] :: divided in X parts (only with numerical prefix), divisible by X, X-fold; pertolero_V2 = mkV2 (mkV "pertolerare") ; -- [XXXDS] :: endure; pertorqueo_V2 = mkV2 (mkV "pertorquere") ; -- [XXXDS] :: distort; pertractatio_F_N = mkN "pertractatio" "pertractationis " feminine ; -- [XXXEC] :: thorough handling, detailed treatment; + pertraho_V2 = mkV2 (mkV "pertrahere" "pertraho" "pertraxi" "pertractus ") ; -- [XXXDX] :: draw or drag through or to, bring or conduct forcibly to; draw on, lure; pertranseo_V = mkV "pertransire" ; -- [XXXNO] :: pass right through; go/pass by (L+S); pass away; cross (Bee); pertricosus_A = mkA "pertricosus" "pertricosa" "pertricosum" ; -- [XXXDX] :: very confused; very strange; completely taken up with trifles; pertristis_A = mkA "pertristis" "pertristis" "pertriste" ; -- [XXXDS] :: very sad; very morose; pertundiculum_N_N = mkN "pertundiculum" ; -- [GXXEK] :: piercing; + pertundo_V2 = mkV2 (mkV "pertundere" "pertundo" "pertudi" "pertusus ") ; -- [XXXDX] :: bore through, perforate; perturbatio_F_N = mkN "perturbatio" "perturbationis " feminine ; -- [XXXDX] :: disturbance; commotion; perturbatrix_F_N = mkN "perturbatrix" "perturbatricis " feminine ; -- [XXXDS] :: disturberess; she who disturbs; perturbatus_A = mkA "perturbatus" "perturbata" "perturbatum" ; -- [XXXDS] :: troubled; @@ -27141,11 +29142,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg perula_F_N = mkN "perula" ; -- [FXXEK] :: purse; perurbanus_A = mkA "perurbanus" "perurbana" "perurbanum" ; -- [XXXEC] :: very polite or witty; oversophisticated; perurgueo_V = mkV "perurguere" ; -- [EXXEP] :: press hard on; oppress; take pains; (=perurgeo); + peruro_V2 = mkV2 (mkV "perurere" "peruro" "perussi" "perusus ") ; -- [XXXBO] :: burn up/through, consume w/fire; fire (w/passion); burn/scorch; chafe/irritate; + pervado_V2 = mkV2 (mkV "pervadere" "pervado" "pervasi" "pervasus ") ; -- [XXXDX] :: go or come through; spread through; penetrate; pervade; pervagor_V = mkV "pervagari" ; -- [XXXDX] :: wander or range through, rove about; pervade, spread widely; extend; pervagus_A = mkA "pervagus" "pervaga" "pervagum" ; -- [XXXEC] :: wandering everywhere; pervasto_V = mkV "pervastare" ; -- [XXXDX] :: devastate completely; + perveho_V2 = mkV2 (mkV "pervehere" "perveho" "pervexi" "pervectus ") ; -- [XXXDX] :: bear, carry or convey through; [pervehi, pass => to sail to, ride to]; + pervenio_V2 = mkV2 (mkV "pervenire" "pervenio" "perveni" "perventus ") ; -- [XXXAX] :: come to; reach; arrive; pervenor_V = mkV "pervenari" ; -- [BXXFS] :: chase through; perversus_A = mkA "perversus" "perversa" "perversum" ; -- [XXXDX] :: askew, awry; perverse, evil, bad; + perverto_V2 = mkV2 (mkV "pervertere" "perverto" "perverti" "perversus ") ; -- [XXXDX] :: overthrow; subvert; destroy, ruin, corrupt; pervesperi_Adv = mkAdv "pervesperi" ; -- [XXXEC] :: very late in the evening; pervestigatio_F_N = mkN "pervestigatio" "pervestigationis " feminine ; -- [XXXDS] :: investigation; pervestigo_V = mkV "pervestigare" ; -- [XXXDX] :: make a thorough search of; explore fully; @@ -27158,6 +29164,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pervigilatio_F_N = mkN "pervigilatio" "pervigilationis " feminine ; -- [XXXDS] :: vigil; pervigilo_V = mkV "pervigilare" ; -- [XXXDX] :: remain awake all night; keep watch all night; keep a religious vigil; pervilis_A = mkA "pervilis" "pervilis" "pervile" ; -- [XXXDS] :: very cheap; + pervinco_V2 = mkV2 (mkV "pervincere" "pervinco" "pervici" "pervictus ") ; -- [XXXDX] :: conquer completely; carry (proposal), gain an objective, persuade; pervius_A = mkA "pervius" "pervia" "pervium" ; -- [XXXDX] :: passable, traversable; penetrable; pervolgo_V2 = mkV2 (mkV "pervolgare") ; -- [XXXDS] :: proclaim; spread abroad; (pervulo); pervolito_V = mkV "pervolitare" ; -- [XXXCO] :: flit across; fly repeatedly over/through; move rapidly through space/heavens; @@ -27190,9 +29197,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg petasus_M_N = mkN "petasus" ; -- [FXXEO] :: hat; broadbrimmed hat (worn by travelers); conical superstructure; petaurista_M_N = mkN "petaurista" ; -- [FXXEK] :: acrobat; petaurum_N_N = mkN "petaurum" ; -- [XXXEC] :: springboard; + petesso_V2 = mkV2 (mkV "petessere" "petesso" nonExist nonExist) ; -- [XXXEC] :: long for, strive after; petilus_A = mkA "petilus" "petila" "petilum" ; -- [BXXFS] :: thin; slender (archaic); + petisso_V2 = mkV2 (mkV "petissere" "petisso" nonExist nonExist) ; -- [XXXEC] :: long for, strive after; petitio_F_N = mkN "petitio" "petitionis " feminine ; -- [XXXDX] :: candidacy; petition; petitor_M_N = mkN "petitor" "petitoris " masculine ; -- [XXXDX] :: seeker striver after, applicant, candidate, claimant, plaintiff; + petiturio_V = mkV "petiturire" "petiturio" nonExist nonExist; -- [XLXEC] :: desire to stand for election; + peto_V2 = mkV2 (mkV "petere" "peto" "petivi" "petitus ") ; -- [XXXAX] :: attack; aim at; desire; beg, entreat, ask (for); reach towards, make for; petoritum_N_N = mkN "petoritum" ; -- [XXXEC] :: open four-wheeled carriage; petorritum_N_N = mkN "petorritum" ; -- [XXXEC] :: open four-wheeled carriage; petra_F_N = mkN "petra" ; -- [XXXCO] :: rock, boulder; shaped stone as used in building; @@ -27325,7 +29336,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pictor_M_N = mkN "pictor" "pictoris " masculine ; -- [XXXDX] :: painter; pictura_F_N = mkN "pictura" ; -- [XXXBX] :: painting, picture; picturatus_A = mkA "picturatus" "picturata" "picturatum" ; -- [XXXDX] :: decorated with color; --- SLASHSTUFF pictus_A : A2 pictus, picta -um, pictior -or -us, pictissimus -a -um -- [XXXCO] :: painted; colored; decorated, embroidered in color (fabrics); + pictus_A = mkA "pictus" ; -- [XXXCO] :: painted; colored; decorated, embroidered in color (fabrics); picus_M_N = mkN "picus" ; -- [XXXEC] :: woodpecker; piens_A = mkA "piens" "pientis"; -- [XXXIS] :: dutiful; conscientious; affectionate, tender; pious, patriotic; holy, godly; pietas_F_N = mkN "pietas" "pietatis " feminine ; -- [XXXAX] :: responsibility, sense of duty; loyalty; tenderness, goodness; pity; piety (Bee); @@ -27339,8 +29350,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pignoro_V2 = mkV2 (mkV "pignorare") ; -- [XXXDO] :: pledge, pawn, give a pledge; bind/engage; guarantee/assure; pignoror_V = mkV "pignorari" ; -- [XXXFO] :: appropriate; assert one's claim to; make certain, assure; guarantee, pledge; pignus_N_N = mkN "pignus" "pignoris " neuter ; -- [XXXBX] :: pledge (security for debt), hostage, mortgage; bet, stake; symbol; relict; + pigo_V = mkV "pigere" "pigo" "pigi" nonExist; -- [EXXFW] :: be weakened (Douay); pigredo_F_N = mkN "pigredo" "pigredinis " feminine ; -- [EXXFS] :: slothfulness, indolence; --- TODO pigresco_V : V2 pigresco, pigrescere, -, - -- Declension: 3rd -- Comment: [XXXES] :: become slow; + pigresco_V = mkV "pigrescere" "pigresco" nonExist nonExist ; -- [XXXES] :: become slow; pigritia_F_N = mkN "pigritia" ; -- [XXXDX] :: sloth, sluggishness, laziness, indolence; pigrities_F_N = mkN "pigrities" "pigritiei " feminine ; -- [XXXDX] :: sloth, sluggishness, laziness, indolence; pigro_V = mkV "pigrare" ; -- [XXXDO] :: hesitate; hang back; @@ -27360,7 +29372,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pilleum_N_N = mkN "pilleum" ; -- [XXXCO] :: felt cap (worn at Saturnalia/by manumited slaves); freedom/liberty; beret; pilleus_M_N = mkN "pilleus" ; -- [XXXCO] :: felt cap (worn at Saturnalia/by manumited slaves); freedom/liberty; beret; pilo_V = mkV "pilare" ; -- [XXXFS] :: grow hairy; depilate; plunder; --- SLASHSTUFF pilosus_A : A2 pilosus, pilosa -um, pilosior -or -us, pilosissimus -a -um -- [XXXCO] :: hairy, shaggy, covered with hair; uncouth; + pilosus_A = mkA "pilosus" ; -- [XXXCO] :: hairy, shaggy, covered with hair; uncouth; pilum_N_N = mkN "pilum" ; -- [XXXDO] :: pestle, pounding tool; [~ graecum => mechanical pounder]; pilus_M_N = mkN "pilus" ; -- [XXXCO] :: hair; bit/whit (thing of minimal size/value); hair shirt/garment (pl.) (L+S); pimenta_F_N = mkN "pimenta" ; -- [GXXEK] :: pimento; @@ -27372,11 +29384,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pindaricus_A = mkA "pindaricus" "pindarica" "pindaricum" ; -- [XPXFS] :: Pindaric; kind of Greek verse; pinetum_N_N = mkN "pinetum" ; -- [XXXDX] :: pine-wood; pineus_A = mkA "pineus" "pinea" "pineum" ; -- [XXXDX] :: of the pine, covered in pines; + pingo_V2 = mkV2 (mkV "pingere" "pingo" "pinxi" "pictus ") ; -- [XXXAO] :: |decorate/embellish; depict in embroidery; [acu ~ => embroidery, needle-work]; pingue_N_N = mkN "pingue" "pinguis " neuter ; -- [XXXDS] :: grease; pinguedo_F_N = mkN "pinguedo" "pinguedinis " feminine ; -- [XXXCS] :: fat/fatness; oiliness; richness/abundance (L+S); fullness; exuberance (Def); --- TODO pinguesco_V : V2 pinguesco, pinguescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: grow fat; become strong or fertile; + pinguesco_V = mkV "pinguescere" "pinguesco" nonExist nonExist ; -- [XXXDX] :: grow fat; become strong or fertile; pinguido_F_N = mkN "pinguido" "pinguidinis " feminine ; -- [XXXCW] :: fat/fatness; oiliness; richness/abundance (L+S); fullness; exuberance (Def); --- SLASHSTUFF pinguis_A : A2 pinguis, pingue, pinguior -or -us, pinguissimus -a -um -- [XXXAX] :: fat; rich, fertile; thick; dull, stupid; + pinguis_A = mkA "pinguis" ; -- [XXXAX] :: fat; rich, fertile; thick; dull, stupid; pinguitudo_F_N = mkN "pinguitudo" "pinguitudinis " feminine ; -- [XXXES] :: fatness; richness; G:broadness; pinifer_A = mkA "pinifer" "pinifera" "piniferum" ; -- [XXXDX] :: covered with/bearing/carrying/producing pine/fir trees; piniger_A = mkA "piniger" "pinigera" "pinigerum" ; -- [XXXDX] :: covered with/bearing pine/fir trees/foliage; @@ -27389,6 +29402,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pinnirapus_M_N = mkN "pinnirapus" ; -- [XXXEC] :: crestsnatcher, a kind of gladiator; pinnula_F_N = mkN "pinnula" ; -- [XAXDO] :: small/little wing/feather; little fin; skirt (of garment) (Souter); pinoteres_M_N = mkN "pinoteres" "pinoterae " masculine ; -- [XAXDS] :: hermit crab; + pinso_V2 = mkV2 (mkV "pinsere" "pinso" "pinsui" "pinsitus ") ; -- [XXXEC] :: stamp, pound, crush pinus_F_N = mkN "pinus" "pinus " feminine ; -- [XXXDX] :: pine/fir tree/wood/foliage; ship/mast/oar; pinewood torch; pio_V = mkV "piare" ; -- [XXXDX] :: appease, propitiate; cleanse, expiate; pipa_F_N = mkN "pipa" ; -- [GXXEK] :: pipe; @@ -27448,11 +29462,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pituitosus_M_N = mkN "pituitosus" ; -- [XBXFO] :: person suffering from catarrh/rheumy/full of phlegm; pityocampa_F_N = mkN "pityocampa" ; -- [DAXNS] :: pine-grub (Pliny); pityocampe_F_N = mkN "pityocampe" "pityocampes " feminine ; -- [DAXNS] :: pine-grub (Pliny); --- SLASHSTUFF pius_A : A2 pius, pia -um, -, piissimus -a -um -- [XXXAO] :: |affectionate, tender, devoted, loyal (to family); pious, devout; holy, godly; + pius_A = mkA "pius" ; -- [XXXAO] :: |affectionate, tender, devoted, loyal (to family); pious, devout; holy, godly; pius_M_N = mkN "pius" ; -- [XEXDS] :: blessed dead; pix_F_N = mkN "pix" "picis " feminine ; -- [XXXDX] :: pitch, tar; --- TODO pixis_N : N1 pixis, pixidos/is -- F -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); --- IGNORED pl_A : A2 pl., abb. -- [XXXDX] :: of the common people/plebeians; abb. pl. for plebei/plebis; (tr. pl.); + pixis_1_N = mkN "pixis" "pixidis" feminine ; -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); + pixis_2_N = mkN "pixis" "pixidos" feminine ; -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); + pl_A = constA "pl" ; -- [XXXDX] :: of the common people/plebeians; abb. pl. for plebei/plebis; (tr. pl.); placabilis_A = mkA "placabilis" "placabilis" "placabile" ; -- [XXXDX] :: easily appeased, placable, appeasing, pacifying; placabilitas_F_N = mkN "placabilitas" "placabilitatis " feminine ; -- [XXXDX] :: readiness to condone (Collins); placamen_N_N = mkN "placamen" "placaminis " neuter ; -- [XXXEC] :: means of appeasing; @@ -27482,6 +29497,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg plane_Adv = mkAdv "plane" ; -- [XXXDX] :: clearly, plainly, distinctly; completely; planes_M_N = mkN "planes" "planetis " masculine ; -- [XXXDX] :: planet; planeta_M_N = mkN "planeta" ; -- [XXXDX] :: planet; + plango_V2 = mkV2 (mkV "plangere" "plango" "planxi" "planctus ") ; -- [XXXBX] :: strike, beat; bewail; lament for, mourn; plangor_M_N = mkN "plangor" "plangoris " masculine ; -- [XXXDX] :: outcry, shriek; planipes_M_N = mkN "planipes" "planipedis " masculine ; -- [XDXEC] :: actor who wore no shoes; planitas_F_N = mkN "planitas" "planitatis " feminine ; -- [XXXFS] :: distinctness; @@ -27495,8 +29511,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg plantatio_F_N = mkN "plantatio" "plantationis " feminine ; -- [XAXNO] :: propagation from cuttings; planting, transplanting (L+S); plant transplanted; planto_V2 = mkV2 (mkV "plantare") ; -- [XAXEO] :: propagate from cuttings; set out, transplant (L+S); fix in place; form, make; planum_N_N = mkN "planum" ; -- [GTXEK] :: plan (drawing); --- SLASHSTUFF planus_A : A2 planus, plana -um, planior -or -us, planissimus -a -um -- [XXXBX] :: level, flat; + planus_A = mkA "planus" ; -- [XXXBX] :: level, flat; plas_Adv = mkAdv "plas" ; -- [XXXDX] :: more; + plascisco_V2 = mkV2 (mkV "plasciscere" "plascisco" "plascivi" "plascitus ") ; -- [FXXFY] :: compose; settle; plasma_N_N = mkN "plasma" "plasmatis " neuter ; -- [XXXEO] :: modulation of the voice (affected); image, figure, creature (L+S); fiction; plasmatio_F_N = mkN "plasmatio" "plasmationis " feminine ; -- [DEXES] :: forming, fashioning, creating; creation; plasmator_M_N = mkN "plasmator" "plasmatoris " masculine ; -- [DEXES] :: creator, fashioner, former; @@ -27508,6 +29525,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg platea_F_N = mkN "platea" ; -- [XXXDX] :: broad way, street; platinum_N_N = mkN "platinum" ; -- [HXXEK] :: turntable; plaudeo_V = mkV "plaudere" ; -- [EXXFP] :: clap, strike (w/flat hand), pat; beat (wings); applaud; express (dis)approval; + plaudo_V2 = mkV2 (mkV "plaudere" "plaudo" "plausi" "plausus ") ; -- [XXXBO] :: clap, strike (w/flat hand), pat; beat (wings); applaud; express (dis)approval; plausibilis_A = mkA "plausibilis" "plausibilis" "plausibile" ; -- [XXXEC] :: worthy of applause; plausor_M_N = mkN "plausor" "plausoris " masculine ; -- [XXXDX] :: applauder; plaustrum_N_N = mkN "plaustrum" ; -- [XXXCO] :: wagon, cart, wain; constellation of Great Bear/Big Dipper; @@ -27515,11 +29533,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg plebecula_F_N = mkN "plebecula" ; -- [XXXDX] :: mob, common people; plebeius_A = mkA "plebeius" "plebeia" "plebeium" ; -- [XXXDX] :: plebeian; plebes_F_N = mkN "plebes" "plebis " feminine ; -- [XXXBO] :: common people, general citizens, commons/plebeians; lower class/ranks; mob/mass; --- TODO plebesco_V : V2 plebesco, plebescere, -, - -- Declension: 3rd -- Comment: [FXXFM] :: become notorious; associate with common people; + plebesco_V = mkV "plebescere" "plebesco" nonExist nonExist ; -- [FXXFM] :: become notorious; associate with common people; plebicola_M_N = mkN "plebicola" ; -- [XXXDX] :: one who courts the favor of the people; plebiscitum_N_N = mkN "plebiscitum" ; -- [XXXDX] :: resolution of the people; plebs_F_N = mkN "plebs" "plebis " feminine ; -- [XXXBO] :: common people, general citizens, commons/plebeians; lower class/ranks; mob/mass; --- TODO plecto_V : V2 plecto, plectere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: buffet, beat; punish; + plecto_V = mkV "plectere" "plecto" nonExist nonExist ; -- [XXXDX] :: buffet, beat; punish; + plecto_V2 = mkV2 (mkV "plectere" "plecto" "plexi" "plectus ") ; -- [XXXDX] :: plait, twine; plectrologium_N_N = mkN "plectrologium" ; -- [GDXEK] :: keyboard; plectrum_N_N = mkN "plectrum" ; -- [XDXCO] :: quill/ plectrum/pick (to strike strings of musical instrument); keyboard key; plegio_V = mkV "plegiare" ; -- [FLXFJ] :: pledge; @@ -27530,7 +29549,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pleniter_Adv = mkAdv "pleniter" ; -- [EXXEP] :: abundantly/fully/clearly; richly/lavishly/generously; entirely/completely/widely plenitudo_F_N = mkN "plenitudo" "plenitudinis " feminine ; -- [XXXDO] :: fullness, abundance of content; thickness, fullness of shape; whole/full amount; plennus_A = mkA "plennus" "plenna" "plennum" ; -- [XXXEO] :: driveling, slavering, dribbling; silly, childish, idiotic; --- SLASHSTUFF plenus_A : A2 plenus, plena -um, plenior -or -us, plenissimus -a -um -- [XXXAX] :: full, plump; satisfied; + plenus_A = mkA "plenus" ; -- [XXXAX] :: full, plump; satisfied; pleps_F_N = mkN "pleps" "plepis " feminine ; -- [XXXDO] :: common people, general citizens, commons/plebeians; lower class/ranks; mob/mass; plerumque_Adv = mkAdv "plerumque" ; -- [XXXDX] :: generally, commonly; mostly, for the most part; often, frequently; plerus_A = mkA "plerus" "plera" "plerum" ; -- [XXXAX] :: (w/que) the majority, most, very great part; about all; very many, a good many; @@ -27547,6 +29566,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg plio_F_N = mkN "plio" "plionis " feminine ; -- [ESXDX] :: X times the amount (only with numerical prefix), X times as much; plipio_V = mkV "plipiare" ; -- [XAXFO] :: screech; (emit the cry of the hawk); plo_V = mkV "plare" ; -- [ESXDX] :: multiply by X (only with numerical prefix), X-tuple, increase X fold; + plodo_V2 = mkV2 (mkV "plodere" "plodo" "plosi" "plosus ") ; -- [XXXEO] :: clap, strike (w/flat hand), pat; beat (wings); applaud; express (dis)approval; plorabundus_A = mkA "plorabundus" "plorabunda" "plorabundum" ; -- [FXXEV] :: lamentable, causing/worthy of/accompanied by tears; doleful; ploratus_M_N = mkN "ploratus" "ploratus " masculine ; -- [XXXDX] :: wailing, crying; ploro_V = mkV "plorare" ; -- [XXXBX] :: cry over, cry aloud; lament, weep; deplore; @@ -27562,10 +29582,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg plumbeus_A = mkA "plumbeus" "plumbea" "plumbeum" ; -- [XXXDX] :: leaden; blunt, dull; heavy; stupid; lead-colored (Cal); plumbo_V2 = mkV2 (mkV "plumbare") ; -- [FXXFS] :: solder, lead; make of lead; plumbum_N_N = mkN "plumbum" ; -- [XXXDX] :: lead; [plumbum album => tin]; + plumesco_V = mkV "plumescere" "plumesco" nonExist nonExist; -- [XXXNO] :: grow feathers; begin to get feathers; become feathered/fledged; plumeus_A = mkA "plumeus" "plumea" "plumeum" ; -- [XXXDX] :: feathery, composed of or filled with feathers; plumipes_A = mkA "plumipes" "plumipedis"; -- [XXXES] :: feather-footed; plumosus_A = mkA "plumosus" "plumosa" "plumosum" ; -- [XXXDX] :: feathered; --- TODO pluo_V : V2 pluo, pluere, pluvi, - -- Declension: 3rd -- Comment: [XXXDX] :: rain; fall like rain; rain down; drip with rain; + pluo_V2 = mkV2 (mkV "pluere" "pluo" "pluvi" nonExist ) ; -- [XXXDX] :: rain; fall like rain; rain down; drip with rain; pluralis_A = mkA "pluralis" "pluralis" "plurale" ; -- [EXXEP] :: plural; pluralismus_M_N = mkN "pluralismus" ; -- [GXXEK] :: pluralism; pluralisticus_A = mkA "pluralisticus" "pluralistica" "pluralisticum" ; -- [GXXEK] :: pluralistic; @@ -27582,6 +29603,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg plus_A = mkA "plus" "pla" "plum" ; -- [XSXDX] :: X times as great/many (only w/numerical prefix) (proportion), -fold, tuple; plus_N_N = mkN "plus" "pluris " neuter ; -- [XXXDX] :: more, too much, more than enough; more than (w/NUM); higher price/value (GEN); plusculus_A = mkA "plusculus" "pluscula" "plusculum" ; -- [XXXEC] :: somewhat more, rather more; + plut_V0 = mkV0 "plut"; -- [XXXDX] :: it rains; pluteus_M_N = mkN "pluteus" ; -- [XXXDX] :: movable screen; breastwork, shed; pluvia_F_N = mkN "pluvia" ; -- [XXXDX] :: rain, shower; pluvialis_A = mkA "pluvialis" "pluvialis" "pluviale" ; -- [XXXDX] :: rain bringing, rainy; @@ -27604,6 +29626,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg poena_F_N = mkN "poena" ; -- [XXXAO] :: penalty, punishment; revenge/retribution; [poena dare => to pay the penalty]; poenicans_A = mkA "poenicans" "poenicantis"; -- [XXXEO] :: inclining to bright red; red/reddish/ruddy (L+S); blushing; Punic, Carthaginian; poeniceus_A = mkA "poeniceus" "poenicea" "poeniceum" ; -- [XXXFS] :: Phoenician; + poenio_V2 = mkV2 (mkV "poenire" "poenio" "poenivi" "poenitus ") ; -- [XXXBO] :: punish (person/offense), inflict punishment; avenge, extract retribution; + poenior_V = mkV "poeniri" "poenior" "poenitus sum " ; -- [XXXCO] :: punish (person/offense), inflict punishment; avenge, extract retribution; poenitentia_F_N = mkN "poenitentia" ; -- [XXXCO] :: regret (for act); change of mind/attitude; repentance/contrition (Def); penance; poeniteo_V = mkV "poenitere" ; -- [XXXAO] :: displease; (cause to) regret; repent, be sorry; [me paenitet => I am sorry]; poenitet_V0 = mkV0 "poenitet" ; -- [XXXCO] :: it displeases, makes angry, offends, dissatisfies, makes sorry; @@ -27618,6 +29642,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg polemonia_F_N = mkN "polemonia" ; -- [XAXNO] :: unidentified plant; polenta_F_N = mkN "polenta" ; -- [XAXCO] :: barley-meal/groats; hulled and crushed grain; parched grain (Douay); polimen_N_N = mkN "polimen" "poliminis " neuter ; -- [XXXFS] :: brightness; B:testicle; + polio_V2 = mkV2 (mkV "polire" "polio" "polivi" "politus ") ; -- [XXXDX] :: smooth, polish; refine, give finish to; polion_N_N = mkN "polion" "polii " neuter ; -- [DAXFS] :: strong smelling plant (poley-germander, Teucrium polium?); politicus_A = mkA "politicus" "politica" "politicum" ; -- [XLXEC] :: of the state, political; politus_A = mkA "politus" "polita" "politum" ; -- [XXXDX] :: refined, polished; @@ -27635,6 +29660,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pollicitor_V = mkV "pollicitari" ; -- [XXXDX] :: promise (assiduously); pollicitum_N_N = mkN "pollicitum" ; -- [XXXDX] :: promise; pollinctor_M_N = mkN "pollinctor" "pollinctoris " masculine ; -- [XXXEC] :: undertaker; + pollingo_V2 = mkV2 (mkV "pollingere" "pollingo" "pollinxi" "pollinctus ") ; -- [XXXDS] :: wash corpse; polluceo_V2 = mkV2 (mkV "pollucere") ; -- [XXXEC] :: offer, serve up; polluctum_N_N = mkN "polluctum" ; -- [XXXDS] :: offering; polluctus_A = mkA "polluctus" "pollucta" "polluctum" ; -- [XXXDX] :: offered-up (Collins); (=VPAR); @@ -27642,6 +29668,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pollulum_N_N = mkN "pollulum" ; -- [XXXCO] :: little bit, trifle; a little; (only a) small/little amount/quantity; pollulus_A = mkA "pollulus" "pollula" "pollulum" ; -- [XXXCO] :: little; small; (only a) small amount/quantity of/little bit of; pollum_N_N = mkN "pollum" ; -- [XXXCO] :: little bit, trifle; a little; (only a) small/little amount/quantity; + polluo_V2 = mkV2 (mkV "polluere" "polluo" "pollui" "pollutus ") ; -- [XXXDX] :: |violate; dishonor/defile/degrade (w/illicit sexual conduct/immoral actions); pollus_A = mkA "pollus" "polla" "pollum" ; -- [XXXCO] :: little; small; (only a) small amount/quantity of/little bit of; pollutio_F_N = mkN "pollutio" "pollutionis " feminine ; -- [GXXEK] :: pollution; polulum_N_N = mkN "polulum" ; -- [XXXCO] :: little bit, trifle; a little; (only a) small/little amount/quantity; @@ -27687,7 +29714,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ponderosus_A = mkA "ponderosus" "ponderosa" "ponderosum" ; -- [XXXEC] :: heavy, weighty; significant; pondo_Adv = mkAdv "pondo" ; -- [XXXDX] :: in or by weight; pondus_N_N = mkN "pondus" "ponderis " neuter ; -- [XXXAX] :: weight, burden, impediment; - pone_Acc_Prep = mkPrep "pone" Acc ; -- [XXXDX] :: behind (in local relations) (rare); + pone_Acc_Prep = mkPrep "pone" acc ; -- [XXXDX] :: behind (in local relations) (rare); + pono_V2 = mkV2 (mkV "ponere" "pono" "posui" "positus ") ; -- [XXXAO] :: ||||esteem/value/count; impose; ordain; lend, put out, offer, wager; rid/drop; pons_M_N = mkN "pons" "pontis " masculine ; -- [XXXBX] :: bridge; ponticulus_M_N = mkN "ponticulus" ; -- [XXXDX] :: little bridge; pontifex_M_N = mkN "pontifex" "pontificis " masculine ; -- [XXXBO] :: high priest/pontiff; (of Roman supreme college of priests); bishop (Bee); pope; @@ -27698,7 +29726,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ponto_M_N = mkN "ponto" "pontonis " masculine ; -- [XXXDX] :: large flat boat, barge; punt; pontoon; ferry boat; pontufex_M_N = mkN "pontufex" "pontuficis " masculine ; -- [XXXCO] :: high priest/pontiff; (of Roman supreme college of priests); bishop (Bee); pope; pontus_M_N = mkN "pontus" ; -- [XXXAX] :: sea; --- IGNORED pop_N : N1 pop., abb. -- M -- [XXXEX] :: people (abb. for populus), nation; + pop_N = constN "pop." masculine ; -- [XXXEX] :: people (abb. for populus), nation; popa_F_N = mkN "popa" ; -- [XXXES] :: she who sells animals for sacrifice; popa_M_N = mkN "popa" ; -- [XXXES] :: lower priest; priest's assistant; (fells sacrifice with ax); popanum_N_N = mkN "popanum" ; -- [XXXEC] :: sacrificial cake; @@ -27749,7 +29777,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg porphirio_M_N = mkN "porphirio" "porphirionis " masculine ; -- [EAXFW] :: kind of waterfowl, purple gallinule; purple coot, sultana, water-hen (OED); porphyrio_M_N = mkN "porphyrio" "porphyrionis " masculine ; -- [XAXEO] :: kind of waterfowl, purple gallinule; purple coot, sultana, water-hen (OED); porrectio_F_N = mkN "porrectio" "porrectionis " feminine ; -- [XXXDS] :: extension; straight line; --- SLASHSTUFF porrectus_A : A2 porrectus, porrecta -um, porrectior -or -us, porrectissimus -a -um -- [XXXDS] :: stretched-out; protracted; dead; + porrectus_A = mkA "porrectus" ; -- [XXXDS] :: stretched-out; protracted; dead; + porricio_V2 = mkV2 (mkV "porricere" "porricio" "porreci" "porrectus ") ; -- [XEXCO] :: offer as a sacrifice, make sacrifice/oblation of; lay before (L+S); produce; + porrigo_V2 = mkV2 (mkV "porrigere" "porrigo" "porrexi" "porrectus ") ; -- [XXXAX] :: stretch out, extend; porro_Adv = mkAdv "porro" ; -- [XXXBX] :: at distance, further on, far off, onward; of old, formerly, hereafter; again; porrum_N_N = mkN "porrum" ; -- [XXXDX] :: leek; porrus_M_N = mkN "porrus" ; -- [XXXDX] :: leek; @@ -27757,10 +29787,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg portale_N_N = mkN "portale" "portalis " neuter ; -- [GXXEK] :: portal; portarius_M_N = mkN "portarius" ; -- [GDXEK] :: goal-keeper; portatio_F_N = mkN "portatio" "portationis " feminine ; -- [XXXFS] :: conveyance; + portendo_V2 = mkV2 (mkV "portendere" "portendo" "portendi" "portentus ") ; -- [XXXDX] :: predict, foretell; point out; portentificus_A = mkA "portentificus" "portentifica" "portentificum" ; -- [XXXEC] :: marvelous, miraculous; portentum_N_N = mkN "portentum" ; -- [XXXDX] :: omen, portent; portentuosus_A = mkA "portentuosus" "portentuosa" "portentuosum" ; -- [XXXES] :: monstrous; unnatural; full of monsters; (portentosus); --- TODO porthmeus_N : N1 porthmeus, porthmeos/is -- M -- [XXXEO] :: ferryman; (Charon); + porthmeus_1_N = mkN "porthmeus" "porthmeis" masculine ; -- [XXXEO] :: ferryman; (Charon); + porthmeus_2_N = mkN "porthmeus" "porthmeos" masculine ; -- [XXXEO] :: ferryman; (Charon); porticula_F_N = mkN "porticula" ; -- [XXXEC] :: little gallery or portico; porticus_F_N = mkN "porticus" "porticus " feminine ; -- [XXXBO] :: colonnade, covered walk; portico; covered gallery atop amphitheater/siege works; porticus_M_N = mkN "porticus" "porticus " masculine ; -- [XXXBO] :: colonnade, covered walk; portico; covered gallery atop amphitheater/siege works; @@ -27774,7 +29806,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg portulaca_F_N = mkN "portulaca" ; -- [XAXES] :: purslain plant; portuosus_A = mkA "portuosus" "portuosa" "portuosum" ; -- [XXXDX] :: well provided with harbors; portus_M_N = mkN "portus" "portus " masculine ; -- [XXXBX] :: port, harbor; refuge, haven, place of refuge; --- TODO posco_V : V2 posco, poscere, poposci, - -- Declension: 3rd -- Comment: [XXXAX] :: ask, demand; + posco_V2 = mkV2 (mkV "poscere" "posco" "poposci" nonExist ) ; -- [XXXAX] :: ask, demand; posculentus_A = mkA "posculentus" "posculenta" "posculentum" ; -- [XAXFX] :: POSCULENT (similar to esculent/eatable); posea_F_N = mkN "posea" ; -- [XAXFS] :: olive species; olive with excellent oil; positio_F_N = mkN "positio" "positionis " feminine ; -- [XXXBO] :: ||attitude, mental position, condition/state; [prima ~ => word base form]; @@ -27786,20 +29818,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg possessor_M_N = mkN "possessor" "possessoris " masculine ; -- [XXXDX] :: owner, occupier; possibilis_A = mkA "possibilis" "possibilis" "possibile" ; -- [XXXDX] :: possible; possideo_V = mkV "possidere" ; -- [XXXBX] :: seize, hold, be master of; possess, take/hold possession of, occupy; inherit; --- TODO possido_V : V2 possido, possidere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: seize, hold, be master of; possess, take/hold possession of, occupy; inherit; + possido_V = mkV "possidere" "possido" nonExist nonExist ; -- [XXXDX] :: seize, hold, be master of; possess, take/hold possession of, occupy; inherit; -- TODO possum_V : V1 possum, posse, potui, - -- [XXXAX] :: be able, can; [multum posse => have much/more/most influence/power]; - post_Acc_Prep = mkPrep "post" Acc ; -- [XXXAX] :: behind (space), after (time); subordinate to (rank); + post_Acc_Prep = mkPrep "post" acc ; -- [XXXAX] :: behind (space), after (time); subordinate to (rank); post_Adv = mkAdv "post" ; -- [XXXAX] :: behind, afterwards, after; postalis_A = mkA "postalis" "postalis" "postale" ; -- [GXXEK] :: postal; postatus_A = mkA "postatus" "postata" "postatum" ; -- [XXXEX] :: door-guarding; posted at door; postea_Adv = mkAdv "postea" ; -- [XXXAX] :: afterwards; --- posteaquam_Conj : Conj posteaquam -- [XXXDX] :: after; + posteaquam_Conj = mkConj "posteaquam" missing ; -- [XXXDX] :: after; posterga_Adv = mkAdv "posterga" ; -- [EXXFP] :: behind; behind one's back; postergum_Adv = mkAdv "postergum" ; -- [EXXFP] :: behind; behind one's back; posterioritas_F_N = mkN "posterioritas" "posterioritatis " feminine ; -- [EXXFP] :: inferior/later position; posteritas_F_N = mkN "posteritas" "posteritatis " feminine ; -- [XXXDX] :: future time; posterity; posterius_Adv = mkAdv "posterius" ; -- [XXXDX] :: later, at a later day; by and by; --- SLASHSTUFF posterus_A : A2 posterus, postera -um, posterior -or -us, postremus -a -um -- [XXXBO] :: coming after, following, next; COMP next in order, latter; SUPER last/hindmost; + posterus_A = mkA "posterus" ; -- [XXXBO] :: coming after, following, next; COMP next in order, latter; SUPER last/hindmost; posterus_M_N = mkN "posterus" ; -- [XXXCO] :: descendants (pl.); posterity, future generations/ages; the future; successors; postestas_F_N = mkN "postestas" "postestatis " feminine ; -- [FXXFM] :: power, rule, force; strength, ability; chance, opportunity; (also potestas); postfactus_A = mkA "postfactus" "postfacta" "postfactum" ; -- [EXXFS] :: done afterwards; @@ -27827,14 +29859,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg postnatus_A = mkA "postnatus" "postnata" "postnatum" ; -- [FXXFM] :: younger; postnatus_M_N = mkN "postnatus" ; -- [FLXFJ] :: eldest son; postpartor_M_N = mkN "postpartor" "postpartoris " masculine ; -- [XLXEC] :: heir; + postpono_V2 = mkV2 (mkV "postponere" "postpono" "postposui" "postpositus ") ; -- [XXXDX] :: neglect; disregard; put after, consider secondary; set aside, postpone; postputo_V2 = mkV2 (mkV "postputare") ; -- [XXXES] :: consider less important; disregard; --- postquam_Conj : Conj postquam -- [XXXAX] :: after; + postquam_Conj = mkConj "postquam" missing ; -- [XXXAX] :: after; postremitas_F_N = mkN "postremitas" "postremitatis " feminine ; -- [EXXFP] :: inferior/later position; postremo_Adv = mkAdv "postremo" ; -- [XXXDX] :: at last, finally; postremum_Adv = mkAdv "postremum" ; -- [XXXDX] :: for the last time, last of all; finally; postremus_A = mkA "postremus" "postrema" "postremum" ; -- [XXXAO] :: last/final/latest/most recent; nearest end/farthest back/hindmost; worst/lowest; postridie_Adv = mkAdv "postridie" ; -- [XXXDX] :: on the following day; postscaenium_N_N = mkN "postscaenium" ; -- [XXXEC] :: theater behind scenes; + postscribo_V2 = mkV2 (mkV "postscribere" "postscribo" "postscripsi" "postscriptus ") ; -- [XXXEC] :: write after; postulatio_F_N = mkN "postulatio" "postulationis " feminine ; -- [XXXDX] :: petition, request; postulatum_N_N = mkN "postulatum" ; -- [XXXDX] :: demand, request; postulo_V = mkV "postulare" ; -- [XXXAX] :: demand, claim; require; ask/pray for; @@ -27842,7 +29876,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg postuum_N_N = mkN "postuum" ; -- [XXXFS] :: the end; that which is last/final; extremity; postuus_M_N = mkN "postuus" ; -- [XLXCS] :: posthumous child; potator_M_N = mkN "potator" "potatoris " masculine ; -- [XXXEO] :: drinker, one who drinks; tippler, drinker of intoxicants; --- IGNORED pote_A : A2 pote, undeclined -- [XXXDX] :: able, capable; possible (early Latin); + pote_A = constA "pote" ; -- [XXXDX] :: able, capable; possible (early Latin); potens_A = mkA "potens" "potentis"; -- [XXXAX] :: powerful, strong; capable; mighty; potentatus_M_N = mkN "potentatus" "potentatus " masculine ; -- [XXXDX] :: rule; political power; potenter_Adv =mkAdv "potenter" "potentius" "potentissime" ; -- [XXXDO] :: effectively/cogently; in overbearing manner; powerfully, w/force; competently; @@ -27853,7 +29887,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg potionatus_A = mkA "potionatus" "potionata" "potionatum" ; -- [XBXFO] :: dosed; that has had a potion given him to drink (L+S); potiono_V2 = mkV2 (mkV "potionare") ; -- [DXXES] :: give to drink; potior_A = mkA "potior" "potior" "potius" ; -- [XLXAO] :: ||having better claim, more entitled/qualified, carrying greater weight; --- IGNORED potis_A : A2 potis, undeclined -- [XXXAX] :: able, capable; possible; (early Latin potis sum becomes possum); + potior_V = mkV "potiri" "potior" "potitus sum " ; -- [XXXAO] :: ||be/become master of (w/GEN/ABL), get possession/submission/hold of; + potis_A = constA "potis" ; -- [XXXAX] :: able, capable; possible; (early Latin potis sum becomes possum); potissime_Adv = mkAdv "potissime" ; -- [XXXES] :: chiefly, principally, especially; eminently; above/before all; in best way; potissimum_Adv = mkAdv "potissimum" ; -- [XXXBO] :: chiefly, principally, especially; eminently; above/before all; in best way; potissimus_A = mkA "potissimus" "potissima" "potissimum" ; -- [XXXDX] :: chief, principal, most prominent/powerful; strongest; foremost; @@ -27871,10 +29906,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg potus_A = mkA "potus" "pota" "potum" ; -- [XXXDX] :: drunk; drunk up, drained; having drunk; being drunk, drunken, intoxicated; potus_M_N = mkN "potus" "potus " masculine ; -- [XXXCO] :: drink/draught; something to drink; (action of) drinking (intoxicating drink); pr_Adv = mkAdv "pr" ; -- [XXXDX] :: day before (pridie), abb. pr; used in calendar expressions; --- IGNORED pr_N : N1 pr., abb. -- M -- [XXXDX] :: praetor (official elected by the Romans who served as a judge); abb. pr.; + pr_N = constN "pr." masculine ; -- [XXXDX] :: praetor (official elected by the Romans who served as a judge); abb. pr.; practicus_A = mkA "practicus" "practica" "practicum" ; -- [ESXDX] :: practical; pradatorius_A = mkA "pradatorius" "pradatoria" "pradatorium" ; -- [XXXEC] :: plundering, predatory; - prae_Abl_Prep = mkPrep "prae" Abl ; -- [XXXAX] :: before, in front; in view of, because of; + prae_Abl_Prep = mkPrep "prae" abl ; -- [XXXAX] :: before, in front; in view of, because of; prae_Adv = mkAdv "prae" ; -- [XXXBX] :: before, in front of; forward [prae sequor => go on before]; praeacutus_A = mkA "praeacutus" "praeacuta" "praeacutum" ; -- [XXXDX] :: sharpened, pointed; praealtus_A = mkA "praealtus" "praealta" "praealtum" ; -- [XXXDX] :: very high; very deep; @@ -27885,16 +29920,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg praeambulus_M_N = mkN "praeambulus" ; -- [FXXEM] :: forerunner; praebalteatus_A = mkA "praebalteatus" "praebalteata" "praebalteatum" ; -- [FXXEN] :: girded; praebeo_V2 = mkV2 (mkV "praebere") ; -- [XXXAO] :: |make available, supply, provide; be the cause, occasion, produce; render; + praebibo_V2 = mkV2 (mkV "praebibere" "praebibo" "praebibi" nonExist) ; -- [XXXFS] :: toast; drink a toast; praebitor_M_N = mkN "praebitor" "praebitoris " masculine ; -- [XXXDS] :: purveyor; supplier; praecalidus_A = mkA "praecalidus" "praecalida" "praecalidum" ; -- [XXXEC] :: very hot; praecantrix_F_N = mkN "praecantrix" "praecantricis " feminine ; -- [XXXEC] :: witch; praecanus_A = mkA "praecanus" "praecana" "praecanum" ; -- [XXXEC] :: prematurely gray; praecaveo_V = mkV "praecavere" ; -- [XXXDX] :: guard (against), beware; praecedentia_F_N = mkN "praecedentia" ; -- [GXXEK] :: priority; + praecedo_V2 = mkV2 (mkV "praecedere" "praecedo" "praecessi" "praecessus ") ; -- [XXXBX] :: go before, precede; surpass, excel; praecelero_V = mkV "praecelerare" ; -- [DPXDS] :: hasten before; praecellens_A = mkA "praecellens" "praecellentis"; -- [EXXEF] :: surpassing, excellent, distinguished; preeminent; praecellentia_F_N = mkN "praecellentia" ; -- [EXXEP] :: preeminence; excellence; --- TODO praecello_V : V2 praecello, praecellere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: excel; surpass; + praecello_V = mkV "praecellere" "praecello" nonExist nonExist ; -- [XXXDX] :: excel; surpass; praecelsus_A = mkA "praecelsus" "praecelsa" "praecelsum" ; -- [XXXDX] :: exceptionally high or tall; praecentio_F_N = mkN "praecentio" "praecentionis " feminine ; -- [XXXDS] :: prelude; praecento_V = mkV "praecentare" ; -- [XXXDS] :: sing consolation for; @@ -27904,26 +29941,37 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg praeceptio_F_N = mkN "praeceptio" "praeceptionis " feminine ; -- [XXXCO] :: instruction; practical rule; preconception; preception, receiving legacy early; praeceptor_M_N = mkN "praeceptor" "praeceptoris " masculine ; -- [XXXDX] :: teacher, instructor; praeceptum_N_N = mkN "praeceptum" ; -- [XXXDX] :: teaching, lesson, precept; order, command; + praecerpo_V2 = mkV2 (mkV "praecerpere" "praecerpo" "praecerpsi" "praecerptus ") ; -- [XXXDX] :: pluck before time; pluck or cut off; gather before it's time; praecidentius_Adv = mkAdv "praecidentius" ; -- [FXXEN] :: cautiously; + praecido_V2 = mkV2 (mkV "praecidere" "praecido" "praecidi" "praecisus ") ; -- [XXXDX] :: cut off in front; cut back, cut short; + praecingo_V2 = mkV2 (mkV "praecingere" "praecingo" "praecinxi" "praecinctus ") ; -- [XXXDX] :: gird, surround, encircle; + praecino_V2 = mkV2 (mkV "praecinere" "praecino" "praecinui" "praecentus ") ; -- [XXXDX] :: predict; + praecipio_V2 = mkV2 (mkV "praecipere" "praecipio" "praecepi" "praeceptus ") ; -- [XXXAX] :: take or receive in advance; anticipate; warn; order; teach, instruct; praecipito_V = mkV "praecipitare" ; -- [XXXDX] :: throw headlong, cast down; praecipue_Adv = mkAdv "praecipue" ; -- [XXXDX] :: especially; chiefly; praecipuus_A = mkA "praecipuus" "praecipua" "praecipuum" ; -- [XXXAX] :: particular, especial; praecisus_A = mkA "praecisus" "praecisa" "praecisum" ; -- [XXXDX] :: abrupt, precipitous; clipped, staccato; praeclarus_A = mkA "praeclarus" "praeclara" "praeclarum" ; -- [XXXBX] :: very clear; splendid; famous; bright, illustrious; noble, distinguished; + praecludo_V2 = mkV2 (mkV "praecludere" "praecludo" "praeclusi" "praeclusus ") ; -- [XXXDX] :: close, block; praecluis_A = mkA "praecluis" "praecluis" "praeclue" ; -- [DXXDS] :: very famous; praeco_M_N = mkN "praeco" "praeconis " masculine ; -- [XXXDX] :: herald, crier; + praecognosco_V2 = mkV2 (mkV "praecognoscere" "praecognosco" "praecognovi" "praecognitus ") ; -- [XXXEO] :: have foreknowledge of, get to know/become aware of/learn beforehand; praecompositus_A = mkA "praecompositus" "praecomposita" "praecompositum" ; -- [XXXEC] :: composed beforehand, studied; praeconium_N_N = mkN "praeconium" ; -- [GXXEK] :: advertisement; praeconius_A = mkA "praeconius" "praeconia" "praeconium" ; -- [GXXEK] :: |advertising; praeconor_V = mkV "praeconari" ; -- [DXXDS] :: herald; proclaim; + praeconsumo_V2 = mkV2 (mkV "praeconsumere" "praeconsumo" "praeconsumpi" "praeconsumptus ") ; -- [XXXDX] :: use up prematurely; praecontrecto_V2 = mkV2 (mkV "praecontrectare") ; -- [XXXDS] :: pre-consider; feel in advance; praecoquis_A = mkA "praecoquis" "praecoquis" "praecoque" ; -- [XXXDS] :: ripened too soon; premature; unseasonable; precocious; first-ripe; praecordia_F_N = mkN "praecordia" ; -- [XXXCS] :: midriff; diaphragm; P:breast; praecordium_N_N = mkN "praecordium" ; -- [XXXDX] :: vitals (pl.), diaphragm; breast; chest as the seat of feelings; + praecorrumpo_V2 = mkV2 (mkV "praecorrumpere" "praecorrumpo" "praecorrupi" "praecorruptus ") ; -- [XXXDS] :: pre-bribe; bribe in advance; praecox_A = mkA "praecox" "praecocis"; -- [XXXDX] :: ripened too soon; premature; unseasonable; precocious; praecumbrans_A = mkA "praecumbrans" "praecumbrantis"; -- [DXXDS] :: darkening; obscuring; praecurrentium_N_N = mkN "praecurrentium" ; -- [XXXDS] :: antecedent; + praecurro_V2 = mkV2 (mkV "praecurrere" "praecurro" "praecurri" "praecursus ") ; -- [XXXDX] :: run before, hasten on before; precede; anticipate; praecursor_M_N = mkN "praecursor" "praecursoris " masculine ; -- [XXXDX] :: forerunner; member of advance-guard; + praecutio_V2 = mkV2 (mkV "praecutere" "praecutio" "praecussi" "praecussus ") ; -- [XXXEC] :: shake before, brandish before; praeda_F_N = mkN "praeda" ; -- [XXXAX] :: booty, loot, spoils, plunder, prey; praedabundus_A = mkA "praedabundus" "praedabunda" "praedabundum" ; -- [XXXDX] :: pillaging; praedator_M_N = mkN "praedator" "praedatoris " masculine ; -- [XXXDX] :: plunderer, pillager; hunter; @@ -27938,11 +29986,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg praediatorius_A = mkA "praediatorius" "praediatoria" "praediatorium" ; -- [XXXEC] :: relating to the sale of land; praedicamentum_N_N = mkN "praedicamentum" ; -- [FXXES] :: predicated event; praedicatio_F_N = mkN "praedicatio" "praedicationis " feminine ; -- [XXXCS] :: |publication, public proclamation; prediction/prophecy/soothsaying; preaching; - praedico_V2 = mkV2 (mkV "praedicare") ; -- [XXXBO] :: proclaim/declare/make known/publish/announce formally; praise/recommend; preach; + praedico_V2 = mkV2 (mkV "praedicere" "praedico" "praedixi" "praedictus ") ; -- [XXXBO] :: say beforehand, mention in advance; warn/predict/foretell; recommend/prescribe; praedictum_N_N = mkN "praedictum" ; -- [XXXDX] :: prediction; forewarning; command; praedictus_A = mkA "praedictus" "praedicta" "praedictum" ; -- [XXXDS] :: preceding, previously named, afore mentioned; predicted, foretold, warned; praediolum_N_N = mkN "praediolum" ; -- [XXXEC] :: small estate, little farm; --- TODO praedisco_V : V2 praedisco, praediscere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: learn in advance; + praedisco_V = mkV "praediscere" "praedisco" nonExist nonExist ; -- [XXXDX] :: learn in advance; praedisponeo_V = mkV "praedisponere" ; -- [GXXEK] :: plan; praedispositio_F_N = mkN "praedispositio" "praedispositionis " feminine ; -- [GXXEK] :: plan (project); praedispositus_A = mkA "praedispositus" "praedisposita" "praedispositum" ; -- [XXXEC] :: arranged at intervals beforehand; @@ -27954,10 +30002,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg praedo_V2 = mkV2 (mkV "praedare") ; -- [XXXDX] :: pillage, despoil, plunder; rob/ravish/take; acquire loot (robbery/war); catch; praedominium_N_N = mkN "praedominium" ; -- [GXXEK] :: pre-eminence; praedor_V = mkV "praedari" ; -- [XXXBO] :: |pillage, despoil; plunder, loot; take as prey/catch; + praeduco_V2 = mkV2 (mkV "praeducere" "praeduco" "praeduxi" "praeductus ") ; -- [XXXDX] :: extend; construct; praedulcis_A = mkA "praedulcis" "praedulcis" "praedulce" ; -- [XXXDX] :: very sweet; praeduro_V2 = mkV2 (mkV "praedurare") ; -- [DXXDS] :: harden; make very hard; praedurus_A = mkA "praedurus" "praedura" "praedurum" ; -- [XXXDX] :: very hard; very strong; --- TODO praeeo_V : V1 praeeo, praeire, praeivi(ii), praeitus -- [XXXDX] :: go before, precede; dictate; + praeeo_1_V = mkV "praeire" "praeeo" "praeivi" "praeitus" ; -- [XXXDX] :: go before, precede; dictate; + praeeo_2_V = mkV "praeire" "praeeo" "praeii" "praeitus" ; -- [XXXDX] :: go before, precede; dictate; praefabricatus_A = mkA "praefabricatus" "praefabricata" "praefabricatum" ; -- [GXXEK] :: prefabricated; praefatio_F_N = mkN "praefatio" "praefationis " feminine ; -- [XXXDX] :: preliminary form of words, formula of announcement; preface; praefectianus_A = mkA "praefectianus" "praefectiana" "praefectianum" ; -- [ELXFS] :: praetorian-perfectly; of the praetorian prefect; @@ -27970,41 +30020,59 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg praeferratus_A = mkA "praeferratus" "praeferrata" "praeferratum" ; -- [XXXEC] :: tipped with iron; praefervidus_A = mkA "praefervidus" "praefervida" "praefervidum" ; -- [XXXEC] :: burning hot, very hot; praefestino_V = mkV "praefestinare" ; -- [XXXES] :: be too hasty; hurry past; + praeficio_V2 = mkV2 (mkV "praeficere" "praeficio" "praefeci" "praefectus ") ; -- [XXXAX] :: put in charge, place in command (with ACC and DAT); + praefigo_V2 = mkV2 (mkV "praefigere" "praefigo" "praefixi" "praefixus ") ; -- [XXXDX] :: set in front; praefiguratio_F_N = mkN "praefiguratio" "praefigurationis " feminine ; -- [EXXEP] :: prototype, prefiguration; prophecy; anticipation; + praefinio_V2 = mkV2 (mkV "praefinire" "praefinio" "praefinivi" "praefinitus ") ; -- [XXXDX] :: fix the range of; determine; praefiscine_Adv = mkAdv "praefiscine" ; -- [ELXFS] :: meaning no evil; without offense; praefiscini_Adv = mkAdv "praefiscini" ; -- [ELXFS] :: meaning no evil; without offense; praefloro_V = mkV "praeflorare" ; -- [XXXEC] :: deprive of blossoms; diminish, lessen; + praefluo_V2 = mkV2 (mkV "praefluere" "praefluo" "praefluxi" "praefluxus ") ; -- [XXXEC] :: flow past; praefoco_V = mkV "praefocare" ; -- [XXXEC] :: choke, suffocate; + praefodio_V2 = mkV2 (mkV "praefodere" "praefodio" "praefodi" "praefosus ") ; -- [XXXDX] :: dig a trench in front of; bury beforehand; praefor_V = mkV "praefari" ; -- [XXXDX] :: say/utter/mention beforehand/in advance; recite (preliminary formula); praefractus_A = mkA "praefractus" "praefracta" "praefractum" ; -- [XXXDS] :: broken; abrupt; stern (of character); praefrigidus_A = mkA "praefrigidus" "praefrigida" "praefrigidum" ; -- [XXXDX] :: very cold; + praefringo_V2 = mkV2 (mkV "praefringere" "praefringo" "praefregi" "praefractus ") ; -- [XXXDX] :: break off at the end, break off short; + praefulcio_V2 = mkV2 (mkV "praefulcire" "praefulcio" "praefulsi" "praefultus ") ; -- [XXXDS] :: prop up; support; use as prop; praefulgeo_V = mkV "praefulgere" ; -- [XXXDX] :: shine with outstanding brightness, bean/shine forth; be outstanding, outshine; praefulgidus_A = mkA "praefulgidus" "praefulgida" "praefulgidum" ; -- [DXXDS] :: very bright; praefurnium_N_N = mkN "praefurnium" ; -- [XXXES] :: furnace-opening; heating room; praegelidus_A = mkA "praegelidus" "praegelida" "praegelidum" ; -- [XXXDX] :: outstandingly cold; + praegestio_V = mkV "praegestire" "praegestio" nonExist nonExist; -- [XXXES] :: be very eager; praegnans_A = mkA "praegnans" "praegnantis"; -- [XXXDX] :: with child, pregnant; praegnas_A = mkA "praegnas" "praegnatis"; -- [XXXDX] :: with child, pregnant; praegnatio_F_N = mkN "praegnatio" "praegnationis " feminine ; -- [XAXES] :: making pregnant; being pregnant; cause of fertility; praegracilis_A = mkA "praegracilis" "praegracilis" "praegracile" ; -- [DXXDS] :: very slender; praegravis_A = mkA "praegravis" "praegravis" "praegrave" ; -- [XXXDX] :: very heavy; burdensome; praegravo_V = mkV "praegravare" ; -- [XXXDX] :: weigh down, burden; + praegredior_V = mkV "praegredi" "praegredior" "praegressus sum " ; -- [XXXDX] :: go ahead; go before, precede; surpass; praegusto_V = mkV "praegustare" ; -- [XXXDX] :: taste in advance; praegustus_M_N = mkN "praegustus" "praegustus " masculine ; -- [GXXEK] :: foretaste; + praehendo_V2 = mkV2 (mkV "praehendere" "praehendo" "praehendi" "praehensus ") ; -- [XXXAS] :: |catch up with; reach shore/harbor; understand, comprehend; get a grip on; praehistoria_F_N = mkN "praehistoria" ; -- [GXXEK] :: prehistory; praehistoricus_A = mkA "praehistoricus" "praehistorica" "praehistoricum" ; -- [GXXEK] :: prehistoric; + praeicio_V2 = mkV2 (mkV "praeiciere" "praeicio" "praejeci" "praejectus ") ; -- [XXXEO] :: throw/cast before/in front of; reject (L+S); utter reproachfully; oppose (Sax); + praeintelligo_V = mkV "praeintelligere" "praeintelligo" "praeintellexi" "praeintellectus "; -- [EXXEP] :: have foreknowledge; praejaceo_V2 = mkV2 (mkV "praejacere") ; -- [DXXDS] :: lie before; + praejacio_V2 = mkV2 (mkV "praejaciere" "praejacio" "praejeci" "praejectus ") ; -- [XXXEO] :: throw/cast before/in front of; reject (L+S); utter reproachfully; oppose (Sax); + praejicio_V2 = mkV2 (mkV "praejiciere" "praejicio" "praejeci" "praejactus ") ; -- [DXXFS] :: throw/cast before/in front of; reject (L+S); utter reproachfully; oppose (Sax); praejudicatum_N_N = mkN "praejudicatum" ; -- [XXXES] :: pre-judgment; praejudicialis_A = mkA "praejudicialis" "praejudicialis" "praejudiciale" ; -- [XLXES] :: prejudged; of predecision; prejudicial; praejudicium_N_N = mkN "praejudicium" ; -- [XXXDX] :: precedent, example; prejudgment; praejudico_V2 = mkV2 (mkV "praejudicare") ; -- [XXXDX] :: prejudge; decide beforehand; praejuvo_V2 = mkV2 (mkV "praejuvare") ; -- [DXXDS] :: aid before; give aid previously; + praelabor_V = mkV "praelabi" "praelabor" "praelapsus sum " ; -- [XXXDX] :: flow/glide ahead/forward/past; + praelambo_V2 = mkV2 (mkV "praelambere" "praelambo" nonExist nonExist) ; -- [XXXDS] :: lick first; P:wash lightly; praelargus_A = mkA "praelargus" "praelarga" "praelargum" ; -- [DXXDS] :: very abundant; praelego_V = mkV "praelegare" ; -- [ELXES] :: pre-bequeath; bequeath before inheritance is divided; + praelego_V2 = mkV2 (mkV "praelegere" "praelego" "praelegi" "praelectus ") ; -- [XXXDX] :: sail along; praeligo_V2 = mkV2 (mkV "praeligare") ; -- [DXXDS] :: pre-bind; tie around; tether; praelior_V = mkV "praeliari" ; -- [XXXES] :: do battle; (variant of proelior); praelium_N_N = mkN "praelium" ; -- [XWXAO] :: battle/fight/bout/conflict/dispute; armed/hostile encounter; bout of strength; praelongus_A = mkA "praelongus" "praelonga" "praelongum" ; -- [XXXEC] :: very long; praelonguus_A = mkA "praelonguus" "praelongua" "praelonguum" ; -- [XXXDX] :: exceptionally long; + praeloquor_V = mkV "praeloqui" "praeloquor" "praelocutus sum " ; -- [XXXCO] :: speak/say first; forestall in speaking/saying; make preface/preliminary remarks; praeluceo_V = mkV "praelucere" ; -- [XXXDX] :: shine forth, outshine; light the way (for); praelusio_F_N = mkN "praelusio" "praelusionis " feminine ; -- [XXXEC] :: prelude; praelustris_A = mkA "praelustris" "praelustris" "praelustre" ; -- [XXXEC] :: very fine; @@ -28014,37 +30082,45 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg praemedicatus_A = mkA "praemedicatus" "praemedicata" "praemedicatum" ; -- [XXXEC] :: protected by medicine or charms; praemeditor_V = mkV "praemeditari" ; -- [XXXDX] :: consider in advance; praememoro_V2 = mkV2 (mkV "praememorare") ; -- [EXXEP] :: mention first; --- TODO praemetuo_V : V2 praemetuo, praemetuere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: fear beforehand; + praemetuo_V = mkV "praemetuere" "praemetuo" nonExist nonExist ; -- [XXXDX] :: fear beforehand; praemico_V = mkV "praemicare" ; -- [DXXDS] :: glitter forth; praemineo_V = mkV "praeminere" ; -- [DXXDS] :: excel; be prominent; (prae-emineo); praeminister_M_N = mkN "praeminister" ; -- [DXXDS] :: servant; praeministra_F_N = mkN "praeministra" ; -- [DXXDS] :: female servant; praeministro_V = mkV "praeministrare" ; -- [DXXDS] :: attend to; minister to; + praemitto_V2 = mkV2 (mkV "praemittere" "praemitto" "praemisi" "praemissus ") ; -- [XXXDX] :: send ahead or forward; praemium_N_N = mkN "praemium" ; -- [XXXAX] :: prize, reward; gift; recompense; praemolestia_F_N = mkN "praemolestia" ; -- [XXXEC] :: trouble beforehand; + praemolior_V = mkV "praemoliri" "praemolior" "praemolitus sum " ; -- [XXXEO] :: soften beforehand; prepare/make preparations beforehand (L+S); praemoneo_V = mkV "praemonere" ; -- [XXXDX] :: forewarn; praemonitus_M_N = mkN "praemonitus" "praemonitus " masculine ; -- [XXXDX] :: forewarning; praemonstrator_M_N = mkN "praemonstrator" "praemonstratoris " masculine ; -- [XXXFS] :: guide; praemordeo_V2 = mkV2 (mkV "praemordere") ; -- [XXXDS] :: bite off; pilfer; + praemorior_V = mkV "praemori" "praemorior" "praemortuus sum " ; -- [XXXDX] :: die beforehand (esp. body parts/facilities which cease before person's death); praemoveo_V2 = mkV2 (mkV "praemovere") ; -- [DXXDS] :: pre-move; move beforehand; stir greatly; + praemunio_V2 = mkV2 (mkV "praemunire" "praemunio" "praemunivi" "praemunitus ") ; -- [XXXDX] :: fortify, defend in advance; safeguard; praemunitio_F_N = mkN "praemunitio" "praemunitionis " feminine ; -- [XGXDS] :: preparation; pre-strengthening; praenarro_V2 = mkV2 (mkV "praenarrare") ; -- [XXXDS] :: tell beforehand; praenatalis_A = mkA "praenatalis" "praenatalis" "praenatale" ; -- [GBXEK] :: prenatal; praenato_V = mkV "praenatare" ; -- [XXXDX] :: swim by; flow by; praenavigatio_F_N = mkN "praenavigatio" "praenavigationis " feminine ; -- [DXXDS] :: sailing by; praenavigo_V = mkV "praenavigare" ; -- [DXXDS] :: sail along; sail past; + praendo_V2 = mkV2 (mkV "praendere" "praendo" "praendi" "praensus ") ; -- [XXXAS] :: |catch up with; reach shore/harbor; understand, comprehend; get a grip on; praeniteo_V = mkV "praenitere" ; -- [XXXDS] :: shine forth; praenomen_N_N = mkN "praenomen" "praenominis " neuter ; -- [XXXDX] :: first name, personal name; noun which precedes another noun (gram.); --- TODO praenosco_V : V2 praenosco, praenoscere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: foreknow; + praenosco_V = mkV "praenoscere" "praenosco" nonExist nonExist ; -- [XXXDX] :: foreknow; praenotio_F_N = mkN "praenotio" "praenotionis " feminine ; -- [XXXEC] :: preconception, innate idea; praenoto_V = mkV "praenotare" ; -- [XXXFS] :: mark before; note down; predict; L:entitle; praenubilus_A = mkA "praenubilus" "praenubila" "praenubilum" ; -- [XXXEC] :: very cloudy or dark; praenuntio_V = mkV "praenuntiare" ; -- [XXXDX] :: announce in advance; praenuntius_A = mkA "praenuntius" "praenuntia" "praenuntium" ; -- [XXXDX] :: acting as harbinger; heralding; praeoccupo_V = mkV "praeoccupare" ; -- [XXXDX] :: seize upon beforehand; anticipate; + praeolit_V0 = mkV0 "praeolit"; -- [XXXFS] :: pre-perceive; perceive before; praeopto_V = mkV "praeoptare" ; -- [XXXDX] :: prefer; + praepando_V2 = mkV2 (mkV "praepandere" "praepando" "praepandi" "praepassus ") ; -- [XXXEC] :: open wide in front, extend before; praeparatio_F_N = mkN "praeparatio" "praeparationis " feminine ; -- [XXXDX] :: preparation; praeparo_V = mkV "praeparare" ; -- [XXXAX] :: prepare; + praepedio_V2 = mkV2 (mkV "praepedire" "praepedio" "praepedivi" "praepeditus ") ; -- [XXXCO] :: shackle, fetter, tie by an extremity; hinder/obstruct/impede; entangle the feet; praependeo_V = mkV "praependere" ; -- [XXXDX] :: hang down in front; praepes_A = mkA "praepes" "praepetis"; -- [XXXDX] :: flying straight ahead; nimble, fleet; winged; praepes_F_N = mkN "praepes" "praepetis " feminine ; -- [XXXDS] :: bird; bird of omen; @@ -28052,6 +30128,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg praepinguis_A = mkA "praepinguis" "praepinguis" "praepingue" ; -- [XXXDX] :: outstandingly/exceptionally rich/fat, "filthy rich"; very thick (voice); praepolleo_V = mkV "praepollere" ; -- [XXXDS] :: be very powerful; be very strong; praepondero_V2 = mkV2 (mkV "praeponderare") ; -- [XXXDS] :: outweigh; be of more weight; + praepono_V2 = mkV2 (mkV "praeponere" "praepono" "praeposui" "praepositus ") ; -- [XXXBX] :: place in command, in front of or before; put X (ACC) in front of Y (DAT); praeporto_V2 = mkV2 (mkV "praeportare") ; -- [XXXDS] :: carry before; praepositio_F_N = mkN "praepositio" "praepositionis " feminine ; -- [XGXCO] :: prefixing (word); preposition, prefix; placing in front/in charge; preference; praepositus_M_N = mkN "praepositus" ; -- [XXXDS] :: overseer; commander; @@ -28064,28 +30141,37 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg praeputiatus_A = mkA "praeputiatus" "praeputiata" "praeputiatum" ; -- [XEXFS] :: uncircumcised, having/retaining foreskin/prepuce, uncut; praeputio_V2 = mkV2 (mkV "praeputiare") ; -- [XEXFS] :: drawing out the foreskin/prepuce; praeputium_N_N = mkN "praeputium" ; -- [XBXEO] :: foreskin, prepuce; (usu.pl.); state of not being circumcised, having prepuce; + praequeror_V = mkV "praequeri" "praequeror" "praequestus sum " ; -- [XXXFO] :: complain beforehand; praeradio_V2 = mkV2 (mkV "praeradiare") ; -- [XPXDS] :: outshine; praerapidus_A = mkA "praerapidus" "praerapida" "praerapidum" ; -- [XXXEC] :: very rapid; + praerigesco_V = mkV "praerigescere" "praerigesco" "praerigui" nonExist; -- [DXXFS] :: become very stiff; + praeripio_V2 = mkV2 (mkV "praeripere" "praeripio" "praeripui" "praereptus ") ; -- [XXXDX] :: snatch away (before the proper time); seize first; forestall; + praerodo_V2 = mkV2 (mkV "praerodere" "praerodo" "praerosi" "praerosus ") ; -- [XXXDS] :: bite off end; nibble off; praerogatio_F_N = mkN "praerogatio" "praerogationis " feminine ; -- [DXXDS] :: pre-distribution; praerogativa_F_N = mkN "praerogativa" ; -- [XXXDX] :: tribe/centuria which voted first; its verdict; omen; prior right/prerogative; praerogativus_A = mkA "praerogativus" "praerogativa" "praerogativum" ; -- [XXXEC] :: asked before others (for vote, opinion, etc.); praerogatus_A = mkA "praerogatus" "praerogata" "praerogatum" ; -- [DXXDS] :: pre-asked; asked before; praerogo_V2 = mkV2 (mkV "praerogare") ; -- [DXXDS] :: ask first; pay in advance; + praerumpo_V2 = mkV2 (mkV "praerumpere" "praerumpo" "praerupi" "praeruptus ") ; -- [XXXDX] :: break off; praeruptus_A = mkA "praeruptus" "praerupta" "praeruptum" ; -- [XXXDX] :: steep; praes_M_N = mkN "praes" "praedis " masculine ; -- [XXXDX] :: surety, bondsman; praesaepe_N_N = mkN "praesaepe" "praesaepis " neuter ; -- [XXXCO] :: crib; manger; stall (cattle/horses feed); brothel; haunt; lodging; home turf; praesaepes_F_N = mkN "praesaepes" "praesaepis " feminine ; -- [XXXDX] :: crib, manger, stall (cattle/horses feed); brothel; haunt, lodging, home turf; + praesaepio_V2 = mkV2 (mkV "praesaepire" "praesaepio" "praesaepsi" "praesaeptus ") ; -- [XXXDX] :: block up/fence in front; praesaepium_N_N = mkN "praesaepium" ; -- [XXXDX] :: crib, manger, stall (cattle/horses feed); brothel; haunt, lodging, home turf; praesaeptus_A = mkA "praesaeptus" "praesaepta" "praesaeptum" ; -- [XXXDX] :: blocked; --- TODO praesagio_V : V2 praesagio, praesagire, praesagivi, - -- Declension: 4th -- Comment: [XXXDX] :: have presentiment (of); portend; + praesagio_V2 = mkV2 (mkV "praesagire" "praesagio" "praesagivi" nonExist ) ; -- [XXXDX] :: have presentiment (of); portend; praesagitio_F_N = mkN "praesagitio" "praesagitionis " feminine ; -- [XXXEC] :: foreboding, presentiment; praesagium_N_N = mkN "praesagium" ; -- [XXXDX] :: sense of foreboding; prognostication; praesagus_A = mkA "praesagus" "praesaga" "praesagum" ; -- [XXXDX] :: having foreboding; ominous; praescienter_Adv = mkAdv "praescienter" ; -- [DXXES] :: with foreknowledge, presciently; praescientia_F_N = mkN "praescientia" ; -- [DXXDS] :: foreknowledge, prescience; + praescio_V2 = mkV2 (mkV "praescire" "praescio" "praescivi" "praescitus ") ; -- [DXXDS] :: foreknow; know in advance; + praescisco_V2 = mkV2 (mkV "praesciscere" "praescisco" "praesci" "praescitus ") ; -- [XXXCO] :: get to know/find out/learn beforehand; praescitio_F_N = mkN "praescitio" "praescitionis " feminine ; -- [DXXFS] :: foreknowledge; prognostic; pre-knowledge; prescience; praescitum_N_N = mkN "praescitum" ; -- [XXXNO] :: foreknowledge; something known beforehand; a prognostication; praescius_A = mkA "praescius" "praescia" "praescium" ; -- [XXXCO] :: having foreknowledge, prescient; + praescribo_V2 = mkV2 (mkV "praescribere" "praescribo" "praescripsi" "praescriptus ") ; -- [XXXDX] :: order, direct; praescriptio_F_N = mkN "praescriptio" "praescriptionis " feminine ; -- [XLXCO] :: preface/preamble/title/heading; preliminary; precept/rule; pretext/excuse/cover; praescriptum_N_N = mkN "praescriptum" ; -- [XXXDX] :: precept, rule; route; praeseco_V = mkV "praesecare" ; -- [XXXDX] :: cut in front, cut; @@ -28100,12 +30186,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg praesentia_F_N = mkN "praesentia" ; -- [XXXBX] :: present time; presence; praesentialis_A = mkA "praesentialis" "praesentialis" "praesentiale" ; -- [EXXEP] :: present; that is at hand; existing; prompt/quick/ready; praesentialiter_Adv = mkAdv "praesentialiter" ; -- [EXXFP] :: face to face; in the presence; + praesentio_V2 = mkV2 (mkV "praesentire" "praesentio" "praesensi" "praesensus ") ; -- [XXXBX] :: feel or perceive beforehand; have a presentiment of; praesento_V2 = mkV2 (mkV "praesentare") ; -- [XXXEO] :: present (to mind/senses), exhibit (to view), show (oneself); hold out; hand to; praesepe_N_N = mkN "praesepe" "praesepis " neuter ; -- [XXXCO] :: crib; manger; stall (cattle/horses feed); brothel; haunt; lodging; home turf; praesepes_F_N = mkN "praesepes" "praesepis " feminine ; -- [XXXDX] :: crib, manger, stall (cattle/horses feed); brothel; haunt, lodging, home turf; + praesepio_V2 = mkV2 (mkV "praesepire" "praesepio" "praesepsi" "praeseptus ") ; -- [XXXDX] :: block up/fence in front; praesepium_N_N = mkN "praesepium" ; -- [XXXDX] :: crib, manger, stall (cattle/horses feed); brothel; haunt, lodging, home turf; praesertim_Adv = mkAdv "praesertim" ; -- [XXXBX] :: especially; particularly; praeservativum_N_N = mkN "praeservativum" ; -- [GXXEK] :: preservative; condom; + praeservio_V = mkV "praeservire" "praeservio" "praeservivi" "praeservitus "; -- [XXXDS] :: serve as slave; praeses_F_N = mkN "praeses" "praesidis " feminine ; -- [XXXDX] :: protector; guard; guardian; defender; chief; president, governor, procurator; praeses_M_N = mkN "praeses" "praesidis " masculine ; -- [XXXDX] :: protector; guard; guardian; defender; chief; president, governor, procurator; praesidalis_A = mkA "praesidalis" "praesidalis" "praesidale" ; -- [DLXDS] :: gubernatorial; of/belonging to the governor of a province; @@ -28116,22 +30205,27 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg praesidiarius_A = mkA "praesidiarius" "praesidiaria" "praesidiarium" ; -- [XXXEC] :: on guard; praesidium_N_N = mkN "praesidium" ; -- [XXXAX] :: protection; help; guard; garrison, detachment; praesignis_A = mkA "praesignis" "praesignis" "praesigne" ; -- [XXXDX] :: pre-eminent, outstanding; + praespargo_V2 = mkV2 (mkV "praespargere" "praespargo" nonExist nonExist) ; -- [XXXDS] :: scatter before; praestabilis_A = mkA "praestabilis" "praestabilis" "praestabile" ; -- [XXXDX] :: pre-eminent, superior; distinguished, excellent; praestans_A = mkA "praestans" "praestantis"; -- [XXXBO] :: excellent, outstanding (in quality/worth/degree/importance), surpassing all; praestantia_F_N = mkN "praestantia" ; -- [XXXDX] :: excellence, outstanding excellence, pre-eminence, superiority; praestat_V0 = mkV0 "praestat" ; -- [XXXDX] :: it is better; praestatio_F_N = mkN "praestatio" "praestationis " feminine ; -- [XXXCO] :: payment (money/goods/services obligated); warranty/immunity/guarantee (against); + praesterno_V2 = mkV2 (mkV "praesternere" "praesterno" nonExist nonExist) ; -- [DXXDS] :: pre-spread; prepare; praestigia_F_N = mkN "praestigia" ; -- [XXXCO] :: deception (pl.), illusion, tricks; action to deceive/hoodwink; juggling (L+S); praestigiator_M_N = mkN "praestigiator" "praestigiatoris " masculine ; -- [XXXCO] :: trickster, one who practices deceit; juggler; impostor, cheat, deceiver (L+S); praestigiatrix_F_N = mkN "praestigiatrix" "praestigiatricis " feminine ; -- [XXXDS] :: trickster; conjurer; praestigiosus_A = mkA "praestigiosus" "praestigiosa" "praestigiosum" ; -- [EXXFS] :: deceitful; praestigium_N_N = mkN "praestigium" ; -- [DXXES] :: delusion, illusion, tricks; magic (Sax); praestino_V = mkV "praestinare" ; -- [XXXFS] :: buy; purchase; + praestituo_V2 = mkV2 (mkV "praestituere" "praestituo" "praestitui" "praestitutus ") ; -- [XXXDX] :: determine in advance; praesto_Adv = mkAdv "praesto" ; -- [XXXBO] :: ready, available, at hand, waiting, on the spot, at one's service; praesto_V = mkV "praestare" ; -- [XXXAO] :: ||apply, bring to bear; fulfill, make good; keep word; be responsible for; praestolatio_F_N = mkN "praestolatio" "praestolationis " feminine ; -- [DXXES] :: expectation, waiting for; praestolor_V = mkV "praestolari" ; -- [XXXDX] :: stand ready for, expect, wait for (w/DAT or ACC); praestrigia_F_N = mkN "praestrigia" ; -- [XXXDO] :: deception (pl.), illusion, tricks; action to deceive/hoodwink; juggling (L+S); + praestringo_V2 = mkV2 (mkV "praestringere" "praestringo" "praestrinxi" "praestrictus ") ; -- [XXXDX] :: bind or tie up; graze, weaken, blunt; + praestruo_V2 = mkV2 (mkV "praestruere" "praestruo" "praestruxi" "praestructus ") ; -- [XXXDX] :: block up, contrive beforehand; praesul_F_N = mkN "praesul" "praesulis " feminine ; -- [EEXEE] :: patron/protector; prelate/bishop/Church dignitary; dancer leading procession; praesul_M_N = mkN "praesul" "praesulis " masculine ; -- [EEXEE] :: patron/protector; prelate/bishop/Church dignitary; dancer leading procession; praesulatus_M_N = mkN "praesulatus" "praesulatus " masculine ; -- [EEXFS] :: superintendent's office; @@ -28139,6 +30233,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg praesultator_M_N = mkN "praesultator" "praesultatoris " masculine ; -- [XXXDS] :: public dancer; praesulto_V = mkV "praesultare" ; -- [XXXDX] :: dance/leap before/in front of; praesum_V = mkV "praeesse" "praesum" "praefui" "praefuturus " ; -- Comment: [XXXBX] :: be in charge/control/head (of) (w/DAT); take the lead (in); be present (at); + praesumo_V2 = mkV2 (mkV "praesumere" "praesumo" "praesumsi" "praesumptus ") ; -- [XXXBO] :: consume/perform/employ beforehand; anticipate; presuppose/presume/assume; dare; praesumptio_F_N = mkN "praesumptio" "praesumptionis " feminine ; -- [XXXCO] :: presumption; anticipation of objection; stubbornness; enjoying anticipation; praesumptive_Adv = mkAdv "praesumptive" ; -- [XXXES] :: presumptuously; praesumptivus_A = mkA "praesumptivus" "praesumptiva" "praesumptivum" ; -- [FXXFM] :: presumptuous; presumptive; @@ -28147,24 +30242,33 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg praesuppositio_F_N = mkN "praesuppositio" "praesuppositionis " feminine ; -- [FXXEM] :: assumption; presupposition; praesutus_A = mkA "praesutus" "praesuta" "praesutum" ; -- [XXXEC] :: sewn over in front; praetempto_V2 = mkV2 (mkV "praetemptare") ; -- [XXXDO] :: pre-test, try out in advance; feel/search/grope out beforehand; + praetendo_V2 = mkV2 (mkV "praetendere" "praetendo" "praetendi" "praetentus ") ; -- [XXXDX] :: stretch out; spread before; extend in front; allege in excuse; praetento_V2 = mkV2 (mkV "praetentare") ; -- [XXXFO] :: allege; hold out as a reason; praetenuis_A = mkA "praetenuis" "praetenuis" "praetenue" ; -- [DXXDS] :: very thin; very slender; very shrill; praetepeo_V = mkV "praetepere" ; -- [XPXDS] :: glow before; - praeter_Acc_Prep = mkPrep "praeter" Acc ; -- [XXXAX] :: besides, except, contrary to; beyond (rank), in front of, before; more than; --- TODO praeterbito_V : V2 praeterbito, praeterbitere, -, - -- Declension: 3rd -- Comment: [XXXDS] :: pass by; drive past/by; + praeter_Acc_Prep = mkPrep "praeter" acc ; -- [XXXAX] :: besides, except, contrary to; beyond (rank), in front of, before; more than; + praeterago_V2 = mkV2 (mkV "praeteragere" "praeterago" nonExist "praeteractus ") ; -- [XXXDS] :: drive past/by; + praeterbito_V = mkV "praeterbitere" "praeterbito" nonExist nonExist ; -- [XXXDS] :: pass by; drive past/by; + praeterduco_V2 = mkV2 (mkV "praeterducere" "praeterduco" "praeterduxi" "praeterductus ") ; -- [XXXDS] :: lead past; praeterea_Adv = mkAdv "praeterea" ; -- [XXXAX] :: besides, thereafter; in addition; --- TODO praetereo_V : V1 praetereo, praeterire, praeterivi(ii), praeteritus -- [XXXAO] :: pass/go by; disregard/neglect/omit/miss; surpass/excel; go overdue; pass over; + praetereo_1_V2 = mkV2 (mkV "praeterire" "praetereo" "praeterivi" "praeteritus"); -- [XXXAO] :: pass/go by; disregard/neglect/omit/miss; surpass/excel; go overdue; pass over; + praetereo_2_V2 = mkV2 (mkV "praeterire" "praetereo" "praeterii" "praeteritus"); -- [XXXAO] :: pass/go by; disregard/neglect/omit/miss; surpass/excel; go overdue; pass over; praeterequitans_A = mkA "praeterequitans" "praeterequitantis"; -- [XXXDS] :: riding past; --- TODO praeterfluo_V : V2 praeterfluo, praeterfluere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: flow past; + praeterfluo_V = mkV "praeterfluere" "praeterfluo" nonExist nonExist ; -- [XXXDX] :: flow past; + praetergredior_V = mkV "praetergredi" "praetergredior" "praetergressus sum " ; -- [XXXDX] :: march or go past; praeteritum_N_N = mkN "praeteritum" ; -- [XXXDX] :: past (pl.); past times; bygone events; praeteritus_A = mkA "praeteritus" "praeterita" "praeteritum" ; -- [XXXDX] :: past; + praeterlabor_V = mkV "praeterlabi" "praeterlabor" "praeterlapsus sum " ; -- [XXXDX] :: glide or slip past; praeterlatus_A = mkA "praeterlatus" "praeterlata" "praeterlatum" ; -- [XXXDS] :: driving past; flying past; praetermissio_F_N = mkN "praetermissio" "praetermissionis " feminine ; -- [XXXES] :: omission; passing over; neglect; + praetermitto_V2 = mkV2 (mkV "praetermittere" "praetermitto" "praetermisi" "praetermissus ") ; -- [XXXDX] :: let pass; pass over; omit; overlook; praeternavigo_V = mkV "praeternavigare" ; -- [DXXDS] :: sail by; - praeterquam_Acc_Prep = mkPrep "praeterquam" Acc ; -- [XXXDX] :: except, besides, beyond, contrary to; + praeterquam_Acc_Prep = mkPrep "praeterquam" acc ; -- [XXXDX] :: except, besides, beyond, contrary to; praeterquam_Adv = mkAdv "praeterquam" ; -- [XXXDX] :: except, besides; praetervectio_F_N = mkN "praetervectio" "praetervectionis " feminine ; -- [XXXDS] :: passing by; + praetervehor_V = mkV "praetervehi" "praetervehor" "praetervectus sum " ; -- [XXXDX] :: sail by, pass by, ride by; be born by; praetervolo_V = mkV "praetervolare" ; -- [XXXDX] :: fly past; slip by; + praetexo_V2 = mkV2 (mkV "praetexere" "praetexo" "praetexui" "praetextus ") ; -- [XXXDS] :: border; adorn; D:tragedy; praetexta_F_N = mkN "praetexta" ; -- [XXXDX] :: toga bordered with purple worn by children over 16 and magistrates; praetextatus_A = mkA "praetextatus" "praetextata" "praetextatum" ; -- [XXXDX] :: underage; juvenile; wearing a toga praetexta; praetextum_N_N = mkN "praetextum" ; -- [XXXEC] :: pretense; pretext; @@ -28183,6 +30287,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg praetrunco_V2 = mkV2 (mkV "praetruncare") ; -- [XXXDS] :: cut off; clip; praetumidus_A = mkA "praetumidus" "praetumida" "praetumidum" ; -- [DXXDS] :: very swollen; praetura_F_N = mkN "praetura" ; -- [XXXDX] :: praetorship; + praeuro_V2 = mkV2 (mkV "praeurere" "praeuro" "praeussi" "praeustus ") ; -- [XXXDX] :: scorch at the extremity or on the surface; praeustus_A = mkA "praeustus" "praeusta" "praeustum" ; -- [XXXDX] :: burnt at the end; hardened by burning; praevaleo_V = mkV "praevalere" ; -- [XXXDX] :: prevail; have superior power/force/weight/influence/worth/efficacy (medicine); praevalidus_A = mkA "praevalidus" "praevalida" "praevalidum" ; -- [XXXDX] :: very strong; strong in growth; @@ -28191,13 +30296,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg praevaricatrix_F_N = mkN "praevaricatrix" "praevaricatricis " feminine ; -- [XEXFS] :: female sinner; praevarico_V = mkV "praevaricare" ; -- [DXXDS] :: transgress, sin against; violate; be in collusion; be/walk crooked/not upright; praevaricor_V = mkV "praevaricari" ; -- [XLXDO] :: |straddle; have secret understanding w/enemy; + praevehor_V = mkV "praevehi" "praevehor" "praevectus sum " ; -- [XXXDX] :: travel past or along; + praevenio_V2 = mkV2 (mkV "praevenire" "praevenio" "praeveni" "praeventus ") ; -- [XXXBO] :: arrive/occur/come first/before/too soon; precede; surpass; anticipate/forestall; praeverbium_N_N = mkN "praeverbium" ; -- [XXXDX] :: prefix (gram.); --- TODO praeverto_V : V2 praeverto, praevertere, praeverti, - -- Declension: 3rd -- Comment: [XXXDX] :: anticipate; preoccupy, attend to first; outstrip, outrun; + praeverro_V2 = mkV2 (mkV "praeverrere" "praeverro" nonExist nonExist) ; -- [XPXDS] :: presweep; sweep before; + praeverto_V2 = mkV2 (mkV "praevertere" "praeverto" "praeverti" nonExist ) ; -- [XXXDX] :: anticipate; preoccupy, attend to first; outstrip, outrun; praevideo_V = mkV "praevidere" ; -- [XXXDX] :: foresee, see in advance; praevitio_V2 = mkV2 (mkV "praevitiare") ; -- [XXXDS] :: precorrupt; corrupt in advance; praevius_A = mkA "praevius" "praevia" "praevium" ; -- [XXXDX] :: going before, leading the way; praevolo_V = mkV "praevolare" ; -- [XXXDS] :: fly before; --- TODO praevorto_V : V2 praevorto, praevortere, praevorti, - -- Declension: 3rd -- Comment: [XXXFS] :: anticipate; preoccupy, attend to first; outstrip, outrun; + praevorto_V2 = mkV2 (mkV "praevortere" "praevorto" "praevorti" nonExist ) ; -- [XXXFS] :: anticipate; preoccupy, attend to first; outstrip, outrun; pragmaticus_A = mkA "pragmaticus" "pragmatica" "pragmaticum" ; -- [GXXEK] :: |pragmatic; pragmatismus_M_N = mkN "pragmatismus" ; -- [GXXEK] :: pragmatism; prandeo_V = mkV "prandere" ; -- [XXXDX] :: eat one's morning or midday meal; @@ -28226,17 +30334,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg precatus_M_N = mkN "precatus" "precatus " masculine ; -- [EEXES] :: prayer; request; precia_F_N = mkN "precia" ; -- [XAXEC] :: kind of vine (pl.); precium_N_N = mkN "precium" ; -- [FXXEM] :: price; reward; worth; pay; [~ natalis/nativitatis => weregeld]; + preconcipio_V2 = mkV2 (mkV "preconcipere" "preconcipio" "preconcepi" "preconceptus ") ; -- [FXXFM] :: preconceive; foreordain; precor_V = mkV "precari" ; -- [XXXAO] :: beg/implore/entreat; wish/pray for/to; pray, supplicate, beseech; precordialis_A = mkA "precordialis" "precordialis" "precordiale" ; -- [FXXFM] :: heartfelt; B:cardiac; predictus_A = mkA "predictus" "predicta" "predictum" ; -- [XXXDS] :: preceding, previously named, afore mentioned; predicted, foretold, warned; predignus_A = mkA "predignus" "predigna" "predignum" ; -- [FXXFM] :: right-worthy; preexisto_V = mkV "preexistare" ; -- [FXXFM] :: pre-exist; be previously; + prehendo_V2 = mkV2 (mkV "prehendere" "prehendo" "prehendidi" "prehenditus ") ; -- [EXXEW] :: |catch up with; reach shore/harbor; understand, comprehend; get a grip on; prehenso_V2 = mkV2 (mkV "prehensare") ; -- [XXXDS] :: grasp/clutch at/constantly; lay hold of; accost/buttonhole; canvass, solicit; preludium_N_N = mkN "preludium" ; -- [FBXDM] :: prelude; preliminary; prelum_N_N = mkN "prelum" ; -- [XXXDX] :: wine or oil-press; --- SLASHSTUFF premagnus_A : A2 premagnus, premagna -um, premajor -or -us, premaximus -a -um -- [XXXBO] :: very great/large/powerful/important/exalted; very great number/amount/price; + premagnus_A = mkA "premagnus" ; -- [XXXBO] :: very great/large/powerful/important/exalted; very great number/amount/price; + premo_V2 = mkV2 (mkV "premere" "premo" "pressi" "pressus ") ; -- [XXXAX] :: press, press hard, pursue; oppress; overwhelm; premotio_F_N = mkN "premotio" "premotionis " feminine ; -- [FXXFM] :: previous motion; prenda_F_N = mkN "prenda" ; -- [FXXEN] :: booty, loot; stolen goods; + prendo_V2 = mkV2 (mkV "prendere" "prendo" "prendidi" "prenditus ") ; -- [EXXEW] :: catch, take hold of; arrest, capture; reach; understand; seize, grasp; occupy; prensatio_F_N = mkN "prensatio" "prensationis " feminine ; -- [XXXFS] :: soliciting; canvassing; prensio_F_N = mkN "prensio" "prensionis " feminine ; -- [XXXDS] :: seizing; taking hold (of); prenso_V2 = mkV2 (mkV "prensare") ; -- [XXXCO] :: grasp/clutch at/constantly; lay hold of; accost/buttonhole; canvass, solicit; @@ -28247,6 +30359,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg presbyterium_N_N = mkN "presbyterium" ; -- [DEXES] :: assembly of elders/presbyters; priest's house?; presbyterus_M_N = mkN "presbyterus" "presbyterus " masculine ; -- [DEXES] :: office of elder/presbyter (in Christian Church); or of priest, priesthood; presbytia_F_N = mkN "presbytia" ; -- [GBXEK] :: farsightedness, longsightedness; + presignio_V2 = mkV2 (mkV "presignire" "presignio" "presignivi" "presignitus ") ; -- [FXXFM] :: ennoble; make famous; pressio_F_N = mkN "pressio" "pressionis " feminine ; -- [XXXDS] :: pressing-down; T:lever-fulcrum; presso_V = mkV "pressare" ; -- [XXXDX] :: press, squeeze; pressule_Adv = mkAdv "pressule" ; -- [DXXFS] :: while pressing against; @@ -28255,7 +30368,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pressus_M_N = mkN "pressus" "pressus " masculine ; -- [XXXDS] :: pressing; pressure; exertion of pressure; prester_M_N = mkN "prester" "presteris " masculine ; -- [XXXEC] :: fiery whirlwind or a waterspout; pretiositas_F_N = mkN "pretiositas" "pretiositatis " feminine ; -- [XXXFS] :: preciousness; costliness; --- SLASHSTUFF pretiosus_A : A2 pretiosus, pretiosa -um, pretiosior -or -us, pretiosissimus -a -um -- [XXXBX] :: expensive, costly, of great value, precious; rich in; + pretiosus_A = mkA "pretiosus" ; -- [XXXBX] :: expensive, costly, of great value, precious; rich in; pretium_N_N = mkN "pretium" ; -- [FXXEM] :: price/value/worth; reward/pay; money; prayer/request; [~ natalis => weregeld]; prex_F_N = mkN "prex" "precis " feminine ; -- [XXXAX] :: prayer, request; priapeus_A = mkA "priapeus" "priapea" "priapeum" ; -- [XXXFS] :: Priapan; of Priapus (the city or the god of procreation); @@ -28317,7 +30430,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pristis_F_N = mkN "pristis" "pristis " feminine ; -- [XAXCO] :: sea monster; whale; sawfish; light oared vessel; prius_Adv = mkAdv "prius" ; -- [XXXAX] :: earlier, before, previously, first; prius_N_N = mkN "prius" "prioris " neuter ; -- [XXXDX] :: earlier times/events/actions; a logically prior proposition --- priusquam_Conj : Conj priusquam -- [XXXBX] :: before; until; sooner than; + priusquam_Conj = mkConj "priusquam" missing ; -- [XXXBX] :: before; until; sooner than; privatim_Adv = mkAdv "privatim" ; -- [XXXDX] :: in private; as a private citizen; privatus_A = mkA "privatus" "privata" "privatum" ; -- [XXXBX] :: private; personal; ordinary; privatus_M_N = mkN "privatus" ; -- [XXXDX] :: private citizen; @@ -28327,13 +30440,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg privilegium_N_N = mkN "privilegium" ; -- [XLXCO] :: law in favor of/against specific individual; (claim of) special right/privilege; privo_V = mkV "privare" ; -- [XXXBX] :: deprive, rob, free; privus_A = mkA "privus" "priva" "privum" ; -- [XXXDX] :: one's own, private; separate, single; - pro_Abl_Prep = mkPrep "pro" Abl ; -- [XXXAX] :: on behalf of; before; in front/instead of; for; about; according to; as, like; + pro_Abl_Prep = mkPrep "pro" abl ; -- [XXXAX] :: on behalf of; before; in front/instead of; for; about; according to; as, like; proagorus_M_N = mkN "proagorus" ; -- [XLXDS] :: chief magistrate; chief magistrate in Sicilian town; proavia_F_N = mkN "proavia" ; -- [XXXDX] :: great-grandmother; proavitus_A = mkA "proavitus" "proavita" "proavitum" ; -- [XXXDX] :: ancestral; proavus_M_N = mkN "proavus" ; -- [XXXDX] :: great-grandfather; remote ancestor; proba_F_N = mkN "proba" ; -- [FLXEM] :: proof; evidence; --- SLASHSTUFF probabilis_A : A2 probabilis, probabile, probabilior -or -us, probabilissimus -a -um -- [XXXAO] :: commendable/admirable; justifiable; plausible/credible/demonstrable; probable; + probabilis_A = mkA "probabilis" ; -- [XXXAO] :: commendable/admirable; justifiable; plausible/credible/demonstrable; probable; probabilitas_F_N = mkN "probabilitas" "probabilitatis " feminine ; -- [XXXEO] :: probability; appearance of truth; approvability (Latham); soundness (Red); probabiliter_Adv =mkAdv "probabiliter" "probabilius" "probabilissime" ; -- [XXXCO] :: commendably, worthy of approval; plausibly/credibly; probably; probalis_A = mkA "probalis" "probalis" "probale" ; -- [FXXEM] :: demonstrable; conclusive; @@ -28352,17 +30465,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg probus_A = mkA "probus" "proba" "probum" ; -- [XXXBX] :: good, honest; procacitas_F_N = mkN "procacitas" "procacitatis " feminine ; -- [XXXDO] :: effrontery, forwardness; wantonness, license; procax_A = mkA "procax" "procacis"; -- [XXXDX] :: pushing, impudent; undisciplined; frivolous; + procedo_V2 = mkV2 (mkV "procedere" "procedo" "processi" "processus ") ; -- [XXXAX] :: proceed; advance; appear; proceleumaticus_M_N = mkN "proceleumaticus" ; -- [XPXFS] :: metric foot (with four short syllables); procella_F_N = mkN "procella" ; -- [XXXBX] :: storm, gale; tumult, commotion; procellosus_A = mkA "procellosus" "procellosa" "procellosum" ; -- [XXXDX] :: stormy, boisterous; procer_M_N = mkN "procer" "proceris " masculine ; -- [XXXBX] :: nobles (pl.), chiefs, princes; leading men of the country/society/profession; procere_Adv =mkAdv "procere" "procerius" "procerissime" ; -- [XXXDX] :: far, to a great distance; extensively (COMP); proceritas_F_N = mkN "proceritas" "proceritatis " feminine ; -- [XXXCO] :: height/tallness; altitude, distance up; great length (some up); metrical feet; --- SLASHSTUFF procerus_A : A2 procerus, procera -um, procerior -or -us, procerissimus -a -um -- [XXXDX] :: tall; long; high, lofty, upraised; grown/extended to great height/length; + procerus_A = mkA "procerus" ; -- [XXXDX] :: tall; long; high, lofty, upraised; grown/extended to great height/length; processus_M_N = mkN "processus" "processus " masculine ; -- [FXXEK] :: |process; --- TODO procido_V : V2 procido, procidere, procidi, - -- Declension: 3rd -- Comment: [XXXDX] :: fall prostrate, collapse; + procido_V2 = mkV2 (mkV "procidere" "procido" "procidi" nonExist ) ; -- [XXXDX] :: fall prostrate, collapse; + prociedo_V2 = mkV2 (mkV "prociedere" "prociedo" "processi" "processus ") ; -- [XXXDX] :: go forward, proceed; advance; procinctualis_A = mkA "procinctualis" "procinctualis" "procinctuale" ; -- [EWXFS] :: army-deploying; of the setting out of an army; procinctus_M_N = mkN "procinctus" "procinctus " masculine ; -- [XXXDX] :: readiness for battle; + procingo_V2 = mkV2 (mkV "procingere" "procingo" "procinxi" "procinctus ") ; -- [XXXFS] :: gird-up; prepare; proclamator_M_N = mkN "proclamator" "proclamatoris " masculine ; -- [XXXFS] :: bawler; proclamo_V = mkV "proclamare" ; -- [XXXDX] :: call/cry out, raise an outcry; appeal noisily; take claim to court; proclaim; proclino_V = mkV "proclinare" ; -- [XXXDX] :: tilt forward; cause to totter; @@ -28378,14 +30494,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg procrastinatio_F_N = mkN "procrastinatio" "procrastinationis " feminine ; -- [XXXDS] :: procrastination; procrastino_V = mkV "procrastinare" ; -- [XXXDX] :: put off till the next day, postpone; delay; procreo_V = mkV "procreare" ; -- [XXXDX] :: bring into existence, beget, procreate; produce, create; --- TODO procresco_V : V2 procresco, procrescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: grow on to maturity, grow larger; + procresco_V = mkV "procrescere" "procresco" nonExist nonExist ; -- [XXXDX] :: grow on to maturity, grow larger; procubo_V = mkV "procubare" ; -- [XXXDX] :: lie outstretched; + procudo_V2 = mkV2 (mkV "procudere" "procudo" "procudi" "procusus ") ; -- [XXXDX] :: forge, hammer out, beat out; procul_Adv = mkAdv "procul" ; -- [XXXAX] :: away; at distance, far off; proculco_V = mkV "proculcare" ; -- [XXXDX] :: trample on; + procumbo_V2 = mkV2 (mkV "procumbere" "procumbo" "procubui" "procubitus ") ; -- [XXXDX] :: sink down, lie down, lean forward; procuratio_F_N = mkN "procuratio" "procurationis " feminine ; -- [XXXDX] :: management; administration; charge, responsibility; procurator_M_N = mkN "procurator" "procuratoris " masculine ; -- [XXXDX] :: manager, overseer; agent, deputy; procuratorius_A = mkA "procuratorius" "procuratoria" "procuratorium" ; -- [XXXEO] :: procuratory; of/concerning a procurator; of an agent or manager (L+S); procuro_V = mkV "procurare" ; -- [XXXBX] :: manage; administer; attend to; + procurro_V2 = mkV2 (mkV "procurrere" "procurro" "procurri" "procursus ") ; -- [XXXDX] :: run out ahead; jut out; procursatio_F_N = mkN "procursatio" "procursationis " feminine ; -- [XXXDX] :: sudden charge, sally; procursator_M_N = mkN "procursator" "procursatoris " masculine ; -- [XWXES] :: skirmisher; fore-runner; procurso_V = mkV "procursare" ; -- [XXXDX] :: run frequently forward, dash out; @@ -28395,6 +30514,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg prodeambulo_V = mkV "prodeambulare" ; -- [XXXFS] :: take a walk; prodecessor_M_N = mkN "prodecessor" "prodecessoris " masculine ; -- [FXXEM] :: predecessor; prodeo_V = mkV "prodire" ; -- [XXXAO] :: go/come forth/out, advance; appear; sprout/spring up; issue/extend/project; + prodico_V2 = mkV2 (mkV "prodicere" "prodico" "prodixi" "prodictus ") ; -- [XXXDX] :: give notice of or fix a day; prodictator_M_N = mkN "prodictator" "prodictatoris " masculine ; -- [XLXDS] :: vice-dictator; prodigentia_F_N = mkN "prodigentia" ; -- [XXXDS] :: profusion; extravagance; prodigialiter_Adv = mkAdv "prodigialiter" ; -- [FXXEM] :: amazingly, wonderfully; @@ -28402,13 +30522,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg prodigilitas_F_N = mkN "prodigilitas" "prodigilitatis " feminine ; -- [FBXDM] :: prodigality; prodigiosus_A = mkA "prodigiosus" "prodigiosa" "prodigiosum" ; -- [XXXDX] :: freakish; prodigious; prodigium_N_N = mkN "prodigium" ; -- [XXXDX] :: portent; prodigy, wonder; + prodigo_V2 = mkV2 (mkV "prodigere" "prodigo" "prodegi" "prodactus ") ; -- [XXXBS] :: drive forth/out; get rid of; use up, consume; waste/dissipate/squander; lavish; prodigus_A = mkA "prodigus" "prodiga" "prodigum" ; -- [XXXDX] :: wasteful, lavish, prodigal; + prodio_V = mkV "prodire" "prodio" "prodivi" "proditus "; -- [EXXEE] :: go/come forth/out, advance; appear; sprout/spring up; issue/extend/project; proditio_F_N = mkN "proditio" "proditionis " feminine ; -- [XXXDX] :: treason, betrayal; proditiose_Adv = mkAdv "proditiose" ; -- [FXXFM] :: treacherously; proditor_M_N = mkN "proditor" "proditoris " masculine ; -- [XXXDX] :: traitor; proditrix_F_N = mkN "proditrix" "proditricis " feminine ; -- [EXXFS] :: betrayer (female), treacherous woman, traitress/traitoress; + prodo_V2 = mkV2 (mkV "prodere" "prodo" "prodidi" "proditus ") ; -- [XXXAO] :: ||put out; assert; betray; give up, abandon, forsake; prodoceo_V = mkV "prodocere" ; -- [XXXES] :: preach (Collins); teach, inculcate; indoctrinate (Nelson); prodromus_M_N = mkN "prodromus" ; -- [XXXEC] :: forerunner; + produco_V2 = mkV2 (mkV "producere" "produco" "produxi" "productus ") ; -- [XXXBX] :: lead forward, bring out; reveal; induce; promote; stretch out; prolong; bury; productio_F_N = mkN "productio" "productionis " feminine ; -- [FXXDF] :: production; bringing-forth; producto_V = mkV "productare" ; -- [XXXDX] :: prolong; throw before, interpose; productum_N_N = mkN "productum" ; -- [GXXEK] :: product; @@ -28428,6 +30552,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg professionalis_A = mkA "professionalis" "professionalis" "professionale" ; -- [GXXEK] :: professional; professorius_A = mkA "professorius" "professoria" "professorium" ; -- [XXXEC] :: authoritative; profestus_A = mkA "profestus" "profesta" "profestum" ; -- [XXXDX] :: not kept as a holiday, common, ordinary; + proficio_V2 = mkV2 (mkV "proficere" "proficio" "profeci" "profectus ") ; -- [XXXAX] :: make, accomplish, effect; + proficiscor_V = mkV "proficisci" "proficiscor" "profectus sum " ; -- [XXXBX] :: depart, set out; proceed; proficuus_A = mkA "proficuus" "proficua" "proficuum" ; -- [DXXFS] :: beneficial, advantageous; conducive; profisceo_V = mkV "profiscere" ; -- [BXXFS] :: set out; depart; profiteor_V = mkV "profiteri" ; -- [XXXBX] :: declare; profess; @@ -28435,13 +30561,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg profligo_V = mkV "profligare" ; -- [XXXDX] :: overthrow, rout; proflo_V = mkV "proflare" ; -- [XXXDX] :: blow out, exhale; profluentia_F_N = mkN "profluentia" ; -- [XXXFS] :: fluency; + profluo_V2 = mkV2 (mkV "profluere" "profluo" "profluxi" "profluctus ") ; -- [XXXDX] :: flow forth or along; emanate (from); profluus_A = mkA "profluus" "proflua" "profluum" ; -- [DXXES] :: flowing forth; flowing, streaming; profluvium_N_N = mkN "profluvium" ; -- [XXXEC] :: flowing forth; profor_V = mkV "profari" ; -- [XXXDX] :: speak out; --- TODO profugio_V : V2 profugio, profugere, profugi, - -- Declension: 3rd -- Comment: [XXXDX] :: escape, escape from; run away from; + profugio_V2 = mkV2 (mkV "profugere" "profugio" "profugi" nonExist ) ; -- [XXXDX] :: escape, escape from; run away from; profugus_A = mkA "profugus" "profuga" "profugum" ; -- [XXXBX] :: fugitive/fleeing/escaping; exiled; shrinking (from task); P:eluding one's grasp; profugus_C_N = mkN "profugus" ; -- [XXXDX] :: fugitive; runaway; refugee; exile; profunditas_F_N = mkN "profunditas" "profunditatis " feminine ; -- [DXXCS] :: depth; intensity; vastness, immensity; darkness; + profundo_V2 = mkV2 (mkV "profundere" "profundo" "profudi" "profusus ") ; -- [XXXBX] :: pour, pour out; utter; squander; profundum_N_N = mkN "profundum" ; -- [XXXDX] :: depths, abyss, chasm; boundless expanse; profundus_A = mkA "profundus" "profunda" "profundum" ; -- [XXXAX] :: deep, profound; boundless; insatiable; profusio_F_N = mkN "profusio" "profusionis " feminine ; -- [XBXCO] :: extravagance, lavish spending; (morbid) discharge of body fluid; libation; @@ -28451,12 +30579,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg progenero_V2 = mkV2 (mkV "progenerare") ; -- [XXXEC] :: engender, produce; progenies_F_N = mkN "progenies" "progeniei " feminine ; -- [XXXBX] :: race, family, progeny; progenitor_M_N = mkN "progenitor" "progenitoris " masculine ; -- [XXXDX] :: ancestor; + progero_V2 = mkV2 (mkV "progerere" "progero" "progessi" "progestus ") ; -- [DXXDS] :: carry forth; clear out; carry before; + progigno_V2 = mkV2 (mkV "progignere" "progigno" "progignui" "progignitus ") ; -- [XXXDX] :: beget; produce; prognariter_Adv = mkAdv "prognariter" ; -- [BXXFS] :: very skillfully; prognatus_A = mkA "prognatus" "prognata" "prognatum" ; -- [XXXDX] :: sprung from; descended; programma_N_N = mkN "programma" "programmatis " neuter ; -- [DLXES] :: proclamation; edict; program (Cal); programmatio_F_N = mkN "programmatio" "programmationis " feminine ; -- [HXXEK] :: programming; programmator_M_N = mkN "programmator" "programmatoris " masculine ; -- [HXXEK] :: programmer; programmo_V = mkV "programmare" ; -- [HXXEK] :: program (data processing); + progredior_V = mkV "progredi" "progredior" "progressus sum " ; -- [XXXBX] :: go, come forth, go forward, march forward; advance. proceed. make progress; progressio_F_N = mkN "progressio" "progressionis " feminine ; -- [XXXDO] :: progress/development; advance/forward movement; rising figure of speech; climax; progressus_M_N = mkN "progressus" "progressus " masculine ; -- [XXXDX] :: advance, progress; progymnasma_F_N = mkN "progymnasma" ; -- [GGXEM] :: essay; exercise (Erasmus); @@ -28466,6 +30597,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg prohibitio_F_N = mkN "prohibitio" "prohibitionis " feminine ; -- [XLXDO] :: prohibition; prevention, making impossible/unlawful; stopping (a legal action); prohibitorius_A = mkA "prohibitorius" "prohibitoria" "prohibitorium" ; -- [XLXEO] :: restraining; prohibitory; that restrains/prohibits; prohoemium_N_N = mkN "prohoemium" ; -- [XXXCO] :: preface, introduction, preamble; beginning, prelude; overture (music); + proicio_V2 = mkV2 (mkV "proicere" "proicio" "projeci" "projectus ") ; -- [XXXAX] :: throw down, throw out; abandon; throw away; proiectorium_N_N = mkN "proiectorium" ; -- [GXXEK] :: spotlight; proin_Adv = mkAdv "proin" ; -- [XXXCO] :: hence, so then; according to/in the same manner/degree/proportion (as/in which); proinde_Adv = mkAdv "proinde" ; -- [XXXAO] :: hence, so then; according to/in the same manner/degree/proportion (as/in which); @@ -28474,6 +30606,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg projectio_F_N = mkN "projectio" "projectionis " feminine ; -- [XXXDS] :: throwing forward; extension; projection; projectitius_A = mkA "projectitius" "projectitia" "projectitium" ; -- [DXXDS] :: cast out; rejected; projectus_A = mkA "projectus" "projecta" "projectum" ; -- [XXXDX] :: jutting out, projecting; precipitate; abject, groveling; + projicio_V2 = mkV2 (mkV "projicere" "projicio" "projeci" "projectus ") ; -- [XXXCS] :: throw down, throw out; abandon; throw away; + prolabor_V = mkV "prolabi" "prolabor" "prolapsus sum " ; -- [XXXDX] :: glide or slip forwards, fall into decay, go to ruin; collapse; prolapsio_F_N = mkN "prolapsio" "prolapsionis " feminine ; -- [XXXDS] :: falling; error; prolatio_F_N = mkN "prolatio" "prolationis " feminine ; -- [XXXDX] :: postponement; enlargement; prolato_V = mkV "prolatare" ; -- [XXXDX] :: lengthen, enlarge; prolong; put off, defer; @@ -28482,14 +30616,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg proletariatus_M_N = mkN "proletariatus" "proletariatus " masculine ; -- [GXXEK] :: proletariat; proletarius_A = mkA "proletarius" "proletaria" "proletarium" ; -- [BXXDO] :: proletarian, of lowest class; common, vulgar; proletarius_M_N = mkN "proletarius" ; -- [XXXCO] :: lowest class citizen (serving the state only by fathering); proletarian (Cal); --- TODO prolicio_V : V2 prolicio, prolicere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: lure forward, lead on; + prolicio_V = mkV "prolicere" "prolicio" nonExist nonExist ; -- [XXXDX] :: lure forward, lead on; prolixe_Adv =mkAdv "prolixe" "prolixius" "prolixissime" ; -- [XXXCO] :: |amply; lavishly, generously, wholeheartedly, without let/skimping/reserve; prolixitas_F_N = mkN "prolixitas" "prolixitatis " feminine ; -- [XXXEO] :: extent; extension in space, elongation; extension in time, long duration; prolixo_V2 = mkV2 (mkV "prolixare") ; -- [XXXFO] :: extend in space; elongate; --- SLASHSTUFF prolixus_A : A2 prolixus, prolixa -um, prolixior -or -us, prolixissimus -a -um -- [XXXBO] :: |lengthy/copious (writings); extended, wide; long, drawn-out; ample/abundant; + prolixus_A = mkA "prolixus" ; -- [XXXBO] :: |lengthy/copious (writings); extended, wide; long, drawn-out; ample/abundant; prologus_M_N = mkN "prologus" ; -- [XXXEC] :: prologue; prolongo_V2 = mkV2 (mkV "prolongare") ; -- [DXXCD] :: prolong, extend, lengthen; proloquium_N_N = mkN "proloquium" ; -- [DXXES] :: introduction; G:assertion; L:judicial sentence; utterance (Nelson); + proloquor_V = mkV "proloqui" "proloquor" "prolocutus sum " ; -- [XXXDX] :: speak out; + proludo_V2 = mkV2 (mkV "proludere" "proludo" "prolusi" "prolusus ") ; -- [XXXDX] :: carry out preliminary exercises before a fight; rehearse for; + proluo_V2 = mkV2 (mkV "proluere" "proluo" "prolui" "prolutus ") ; -- [XXXDX] :: wash out; wash away; wash up; purify; proluvier_F_N = mkN "proluvier" "proluvieris " feminine ; -- [FXXEN] :: inundation; scouring; discharge; proluvier_M_N = mkN "proluvier" "proluvieris " masculine ; -- [FXXEN] :: inundation; scouring; discharge; proluvies_F_N = mkN "proluvies" "proluviei " feminine ; -- [XXXDX] :: overflow, flood; bodily discharge; @@ -28510,6 +30647,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg promissor_M_N = mkN "promissor" "promissoris " masculine ; -- [XLXCO] :: promiser; one who promises/guarantees (usu. legal); promissum_N_N = mkN "promissum" ; -- [XXXDX] :: promise; promissus_A = mkA "promissus" "promissa" "promissum" ; -- [XXXDX] :: flowing, hanging down; + promitto_V2 = mkV2 (mkV "promittere" "promitto" "promisi" "promissus ") ; -- [XXXAX] :: promise; + promo_V2 = mkV2 (mkV "promere" "promo" "promsi" "promptus ") ; -- [XXXDX] :: take/bring out/forth; bring into view; bring out/display on the stage; promono_V = mkV "promonare" ; -- [FXXFM] :: emanate; promontorium_N_N = mkN "promontorium" ; -- [XXXDX] :: promontory, headland, cape; promonturium_N_N = mkN "promonturium" ; -- [XXXDX] :: promontory, headland, spur, projecting part of a mountain (into the sea); @@ -28522,7 +30661,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg prompto_V2 = mkV2 (mkV "promptare") ; -- [XXXDS] :: distribute widely; promptuarium_N_N = mkN "promptuarium" ; -- [XXXDO] :: storeroom; cupboard; place where things are stored for ready use; repository; promptuarius_A = mkA "promptuarius" "promptuaria" "promptuarium" ; -- [XXXEO] :: |that serves for storing things ready for use; --- SLASHSTUFF promptus_A : A2 promptus, prompta -um, promptior -or -us, promptissimus -a -um -- [XXXBX] :: set forth, brought forward, manifest, disclosed; willing, ready, eager, quick; + promptus_A = mkA "promptus" ; -- [XXXBX] :: set forth, brought forward, manifest, disclosed; willing, ready, eager, quick; promptus_M_N = mkN "promptus" "promptus " masculine ; -- [XXXDS] :: readiness; ease; exposing to view; promtuarium_N_N = mkN "promtuarium" ; -- [XXXDS] :: storeroom; cupboard; place where things are stored for ready use; repository; promtuarius_A = mkA "promtuarius" "promtuaria" "promtuarium" ; -- [XXXDS] :: of/belonging to distribution, distributing; (like storehouse/repository/prison); @@ -28554,9 +30693,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg propatruus_M_N = mkN "propatruus" ; -- [XLXES] :: great-grand-uncle; great grandfather's brother; propatulum_N_N = mkN "propatulum" ; -- [XXXEC] :: open place, unroofed space; propatulus_A = mkA "propatulus" "propatula" "propatulum" ; -- [XXXEC] :: open, uncovered; - prope_Acc_Prep = mkPrep "prope" Acc ; -- [XXXAX] :: near; + prope_Acc_Prep = mkPrep "prope" acc ; -- [XXXAX] :: near; prope_Adv =mkAdv "prope" "propius" "proxime" ; -- [XXXDX] :: near, nearly; close by; almost; propediem_Adv = mkAdv "propediem" ; -- [XXXDX] :: before long, shortly; + propello_V2 = mkV2 (mkV "propellere" "propello" "propuli" "propulsus ") ; -- [XXXDX] :: drive forward/forth; drive away/out/off; defeat; propemodo_Adv = mkAdv "propemodo" ; -- [XXXDX] :: just about, pretty well; propemodum_Adv = mkAdv "propemodum" ; -- [XXXDX] :: just about, pretty well; propendeo_V = mkV "propendere" ; -- [XXXFS] :: hand down; weigh more; be inclined; @@ -28593,6 +30733,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg propitius_A = mkA "propitius" "propitia" "propitium" ; -- [XXXDX] :: favorably inclined, well-disposed, propitious; propola_M_N = mkN "propola" ; -- [XXXEC] :: retailer, huckster; propoma_N_N = mkN "propoma" "propomatis " neuter ; -- [GXXEK] :: aperitif; + propono_V2 = mkV2 (mkV "proponere" "propono" "proposui" "propositus ") ; -- [XXXAX] :: display; propose; relate; put or place forward; proporro_Adv = mkAdv "proporro" ; -- [XXXEC] :: further, moreover, or altogether; proportio_F_N = mkN "proportio" "proportionis " feminine ; -- [XXXCO] :: proportion, proper spatial relation between parts; symmetry; analogy (grammar); proportionalis_A = mkA "proportionalis" "proportionalis" "proportionale" ; -- [ESXDX] :: proportional; @@ -28604,33 +30745,41 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg proprietas_F_N = mkN "proprietas" "proprietatis " feminine ; -- [XXXDX] :: quality; special character; ownership; propritim_Adv = mkAdv "propritim" ; -- [XXXEC] :: peculiarly, specially; proprius_A = mkA "proprius" "propria" "proprium" ; -- [XXXAX] :: own, very own; individual; special, particular, characteristic; - propter_Acc_Prep = mkPrep "propter" Acc ; -- [XXXAX] :: near; on account of; by means of; because of; + propter_Acc_Prep = mkPrep "propter" acc ; -- [XXXAX] :: near; on account of; by means of; because of; propterea_Adv = mkAdv "propterea" ; -- [XXXDX] :: therefore, for this reason; [propterea quod => because]; propudium_N_N = mkN "propudium" ; -- [XXXEC] :: shameful action; a wretch, villain; propugnaculum_N_N = mkN "propugnaculum" ; -- [XXXDX] :: bulwark, rampart; defense; propugnatio_F_N = mkN "propugnatio" "propugnationis " feminine ; -- [DXXDS] :: defense; propugnator_M_N = mkN "propugnator" "propugnatoris " masculine ; -- [XXXDX] :: defender; champion; propugno_V = mkV "propugnare" ; -- [XXXDX] :: fight (on the defensive); + propulluo_V2 = mkV2 (mkV "propulluere" "propulluo" nonExist nonExist) ; -- [XXXFS] :: defile; pollute; propulsatio_F_N = mkN "propulsatio" "propulsationis " feminine ; -- [XXXES] :: repulse; driving back; propulso_V = mkV "propulsare" ; -- [XXXDX] :: repulse, drive back/off; ward off, repel, avert; pound, batter; propulsorius_A = mkA "propulsorius" "propulsoria" "propulsorium" ; -- [GXXEK] :: propelling; proquaestor_M_N = mkN "proquaestor" "proquaestoris " masculine ; -- [XXXDX] :: ex-quaestor or junior official appointed to fill vacancy of departed quaestor; proquam_Adv = mkAdv "proquam" ; -- [XXXEC] :: in proportion as, according as; prora_F_N = mkN "prora" ; -- [XXXDX] :: prow; + prorepo_V2 = mkV2 (mkV "prorepere" "prorepo" "prorepsi" "proreptus ") ; -- [XXXDX] :: crawl or creep forth; proreta_M_N = mkN "proreta" ; -- [XXXEC] :: look-out man; proreus_M_N = mkN "proreus" ; -- [XXXEC] :: look-out man; prorex_M_N = mkN "prorex" "proregis " masculine ; -- [FLXFM] :: viceroy; + proripio_V2 = mkV2 (mkV "proripere" "proripio" "proripui" "proreptus ") ; -- [XXXDX] :: drag or snatch away; rush or burst forth; prorito_V = mkV "proritare" ; -- [EXXFS] :: prove, cause; incite; tempt; prorogatio_F_N = mkN "prorogatio" "prorogationis " feminine ; -- [XXXDX] :: extension of a term of office; postponement; prorogo_V = mkV "prorogare" ; -- [XXXDX] :: prolong, keep going; put off, defer; prorsum_Adv = mkAdv "prorsum" ; -- [XXXDX] :: forwards, right onward; absolutely, entirely, utterly, by all means; in short; prorsus_A = mkA "prorsus" "prorsa" "prorsum" ; -- [EXXES] :: straight forwards; prorsus_Adv = mkAdv "prorsus" ; -- [XXXBX] :: forwards, right onward; absolutely, entirely, utterly, by all means; in short; + prorumpo_V2 = mkV2 (mkV "prorumpere" "prorumpo" "prorupi" "proruptus ") ; -- [XXXDX] :: rush forth, break out; + proruo_V2 = mkV2 (mkV "proruere" "proruo" "prorui" "prorutus ") ; -- [XXXDX] :: rush forward; tumble down; overthrow; hurl forward; prosa_F_N = mkN "prosa" ; -- [FGXEM] :: prose; prosaicus_A = mkA "prosaicus" "prosaica" "prosaicum" ; -- [FXXEM] :: in prose; prosaic (Red); prosapia_F_N = mkN "prosapia" ; -- [XXXDX] :: family, lineage; proscaenium_N_N = mkN "proscaenium" ; -- [XXXDX] :: stage, portion of theater lying between orchestra and back wall; + proscindo_V2 = mkV2 (mkV "proscindere" "proscindo" "proscidi" "proscissus ") ; -- [XXXDX] :: cut (surface), slit, gash; plow (unbroken land); flay with words, castigate; + proscribo_V2 = mkV2 (mkV "proscribere" "proscribo" "proscripsi" "proscriptus ") ; -- [XXXDX] :: announce, make public, post, advertise; proscribe, deprive of property; proscriptio_F_N = mkN "proscriptio" "proscriptionis " feminine ; -- [XXXDX] :: advertisement; notice of confiscation; proscription, pub of names of outlaws; + proscripturio_V = mkV "proscripturire" "proscripturio" nonExist nonExist; -- [XLXEC] :: desire a proscription; proscriptus_M_N = mkN "proscriptus" ; -- [XXXDX] :: proscribed person, outlaw; prosectum_N_N = mkN "prosectum" ; -- [DEXES] :: entrails, that which is cut-off for sacrifice; severed portion/organ of victim; proseda_F_N = mkN "proseda" ; -- [XXXEC] :: prostitute; @@ -28638,8 +30787,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg proselytismus_M_N = mkN "proselytismus" ; -- [GXXEK] :: proselytism; proselytus_A = mkA "proselytus" "proselyta" "proselytum" ; -- [EEXFS] :: foreign, strange, come from abroad; proselytus_M_N = mkN "proselytus" ; -- [EEQCS] :: proselyte (male), convert; converted heathen (to Judism); sojourner/stranger; --- TODO proserpo_V : V2 proserpo, proserpere, -, - -- Declension: 3rd -- Comment: [XXXES] :: creep forward; + prosentio_V2 = mkV2 (mkV "prosentire" "prosentio" "prosensi" "prosensus ") ; -- [BXXFS] :: see beforehand; + prosequor_V = mkV "prosequi" "prosequor" "prosecutus sum " ; -- [XXXBX] :: pursue; escort; describe in detail; + prosero_V2 = mkV2 (mkV "proserere" "prosero" "prosevi" "prosatus ") ; -- [XXXFS] :: beget; bring forth, beget; produce by sowing; + proserpo_V = mkV "proserpere" "proserpo" nonExist nonExist ; -- [XXXES] :: creep forward; proseucha_F_N = mkN "proseucha" ; -- [XXXEC] :: house of prayer (Jewish); a conventicle; + prosilio_V = mkV "prosilire" "prosilio" "prosilui" nonExist; -- [XXXBO] :: jump/leap up/forward; rush/leap/spring forth/to; gush/break/jut out; proslambanomenos_M_N = mkN "proslambanomenos" "proslambanomeni " masculine ; -- [XDXFO] :: added note at bottom of system of tetrachord; A-note (L+S); prosocer_M_N = mkN "prosocer" ; -- [XXXES] :: wife's grandfather; prosodia_F_N = mkN "prosodia" ; -- [EDXES] :: syllable-accent; @@ -28650,25 +30803,31 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg prosper_A = mkA "prosper" "prospera" "prosperum" ; -- [XXXEC] :: fortunate, favorable, lucky, prosperous; prosperitas_F_N = mkN "prosperitas" "prosperitatis " feminine ; -- [XXXDX] :: success; good fortune; prospero_V = mkV "prosperare" ; -- [XXXDX] :: cause to succeed, further; --- SLASHSTUFF prosperus_A : A2 prosperus, prospera -um, prosperior -or -us, prosperrimus -a -um -- [XXXBX] :: prosperous, successful/triumphal; lucky/favorable/propitious (omens/prospects); + prosperus_A = mkA "prosperus" ; -- [XXXBX] :: prosperous, successful/triumphal; lucky/favorable/propitious (omens/prospects); prospicientia_F_N = mkN "prospicientia" ; -- [XXXDS] :: foresight; appearance; + prospicio_V2 = mkV2 (mkV "prospicere" "prospicio" "prospexi" "prospectus ") ; -- [XXXBX] :: foresee; see far off; watch for, provide for, look out for; + prosterno_V2 = mkV2 (mkV "prosternere" "prosterno" "prostravi" "prostratus ") ; -- [XXXAO] :: knock over, lay low; strike down, overthrow; exhaust; debase/demean; prostrate; prosthaphaeresis_F_N = mkN "prosthaphaeresis" "prosthaphaeresis " feminine ; -- [GSXFM] :: equation of center of movement (of planetary body/moon); prosthapheresis_F_N = mkN "prosthapheresis" "prosthapheresis " feminine ; -- [GSXFM] :: equation of center of movement (of planetary body/moon); prostibilis_A = mkA "prostibilis" "prostibilis" "prostibile" ; -- [XXXFO] :: available as a prostitute; prostibulum_N_N = mkN "prostibulum" ; -- [XXXEO] :: prostitute, whore; inmate of a brothel; + prostituo_V2 = mkV2 (mkV "prostituere" "prostituo" "prostitui" "prostitutus ") ; -- [XXXCO] :: prostitute; put to improper sexual/unworthy use; dishonor, expose to shame; prostituta_F_N = mkN "prostituta" ; -- [XXXDO] :: prostitute; whore; prostitutio_F_N = mkN "prostitutio" "prostitutionis " feminine ; -- [DXXES] :: prostitution; dishonoring, profaning; prostitutus_M_N = mkN "prostitutus" ; -- [XXXFO] :: male prostitute; prosto_V = mkV "prostare" ; -- [XXXDX] :: offer goods for sale to public; be on sale, expose for sale/prostitute oneself; --- TODO prosubigo_V : V2 prosubigo, prosubigere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: dig up in front of one; dig up, cast up; hammer out into an extended shape; + prosubigo_V = mkV "prosubigere" "prosubigo" nonExist nonExist ; -- [XXXDX] :: dig up in front of one; dig up, cast up; hammer out into an extended shape; prosum_V = mkV "prodesse" "prosum" "profui" "profuturus " ; -- Comment: [XXXAX] :: be useful, be advantageous, benefit, profit (with DAT); prosus_A = mkA "prosus" "prosa" "prosum" ; -- [GXXET] :: straightforward (of style) (i.e. prose); (Erasmus); prosus_Adv = mkAdv "prosus" ; -- [EXXCS] :: forwards, right on; absolutely, entirely, utterly, by all means; in short; protectio_F_N = mkN "protectio" "protectionis " feminine ; -- [XXXFO] :: protection; shelter; protector_M_N = mkN "protector" "protectoris " masculine ; -- [XXXDO] :: protector, guardian, defender; member of corps of guards (Souter); + protego_V2 = mkV2 (mkV "protegere" "protego" "protexi" "protectus ") ; -- [XXXBX] :: cover, protect; proteinum_N_N = mkN "proteinum" ; -- [GBXEK] :: protein; protelo_V2 = mkV2 (mkV "protelare") ; -- [XWXCO] :: drive/cause to retreat before one; drive forth, hound out, rout; beat back/off; protelum_N_N = mkN "protelum" ; -- [XAXCO] :: team/tandem of oxen/draught animals; series, succession; + protendo_V2 = mkV2 (mkV "protendere" "protendo" "protendi" "protentus ") ; -- [XXXCS] :: stretch out/forth, extend, distend; hold out; prolong; lengthen; + protero_V2 = mkV2 (mkV "proterere" "protero" "protrivi" "protritus ") ; -- [XXXDX] :: crush, tread under foot; oppress; proterreo_V = mkV "proterrere" ; -- [XXXDX] :: frighten; proteruitas_F_N = mkN "proteruitas" "proteruitatis " feminine ; -- [XXXES] :: impudence; boldness; protervus_A = mkA "protervus" "proterva" "protervum" ; -- [XXXDX] :: violent, reckless; impudent, shameless; @@ -28684,17 +30843,22 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg protinam_Adv = mkAdv "protinam" ; -- [XXXEC] :: immediately, at once; protinus_Adv = mkAdv "protinus" ; -- [XXXAX] :: straight on, forward; immediately; without pause; at once; protogenes_A = mkA "protogenes" "protogenes" "protogenes" ; -- [FXXFM] :: first-of-kind; + protollo_V2 = mkV2 (mkV "protollere" "protollo" nonExist nonExist) ; -- [XXXDS] :: stretch out; put off; raise up; protomartyr_M_N = mkN "protomartyr" "protomartyris " masculine ; -- [FEXFM] :: first martyr; (St Stephen or St Alban); protos_N_N = mkN "protos" "proti " neuter ; -- [FXHEW] :: first, foremost; best, top; initial; elementary; prime; (Greek); + protraho_V2 = mkV2 (mkV "protrahere" "protraho" "protraxi" "protractus ") ; -- [XXXDX] :: drag forward, produce; bring to light, reveal; prolong, protract; protritus_A = mkA "protritus" "protrita" "protritum" ; -- [XXXEO] :: common, trite, commonplace; protropum_N_N = mkN "protropum" ; -- [XAXFS] :: first wine; new wine from grapes before pressing; + protrudo_V2 = mkV2 (mkV "protrudere" "protrudo" "protrusi" "protrusus ") ; -- [XXXDX] :: thrust forwards or out; put off; protubero_V = mkV "protuberare" ; -- [DXXDS] :: swell/bulge out; grow forth; stand out (Sax); proturbero_V = mkV "proturberare" ; -- [DXXDS] :: bulge/swell out; grow forth; stand out (Sax); be prominent, project; proturbo_V2 = mkV2 (mkV "proturbare") ; -- [XXXDX] :: drive/push away/out of the way; drive out in confusion; repulse; pitch forward; protus_A = mkA "protus" "prota" "protum" ; -- [EXXEM] :: first; original; --- prout_Conj : Conj prout -- [XXXBX] :: as, just as; exactly as; + prout_Conj = mkConj "prout" missing ; -- [XXXBX] :: as, just as; exactly as; provectio_F_N = mkN "provectio" "provectionis " feminine ; -- [FXXEM] :: promotion, progress; provectus_A = mkA "provectus" "provecta" "provectum" ; -- [XXXDX] :: advanced, late; elderly; + proveho_V2 = mkV2 (mkV "provehere" "proveho" "provexi" "provectus ") ; -- [XXXDX] :: carry; pass, be carried, ride, sail; + provenio_V2 = mkV2 (mkV "provenire" "provenio" "proveni" "proventus ") ; -- [XXXDX] :: come forth; come into being; prosper; proventus_M_N = mkN "proventus" "proventus " masculine ; -- [XXXDX] :: outcome, result; success; proverbialis_A = mkA "proverbialis" "proverbialis" "proverbiale" ; -- [EXXES] :: proverbial; proverbialiter_Adv = mkAdv "proverbialiter" ; -- [EXXES] :: proverbially; @@ -28705,10 +30869,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg provincia_F_N = mkN "provincia" ; -- [XXXBX] :: province; office; duty; command; provincialis_A = mkA "provincialis" "provincialis" "provinciale" ; -- [XXXDX] :: provincial; provincialis_M_N = mkN "provincialis" "provincialis " masculine ; -- [XXXDS] :: provincial (person); + provinco_V2 = mkV2 (mkV "provincere" "provinco" "provici" "provictus ") ; -- [XXXFS] :: conquer before; provisor_M_N = mkN "provisor" "provisoris " masculine ; -- [XXXEO] :: one who foresees; one who takes care (of); headmaster (Cal); + provivo_V = mkV "provivere" "provivo" "provixi" "provictus "; -- [XXXDS] :: live on; sustain oneself with; provocatio_F_N = mkN "provocatio" "provocationis " feminine ; -- [XXXDX] :: challenge; provoco_V = mkV "provocare" ; -- [XXXBX] :: call forth; challenge; provoke; provolo_V = mkV "provolare" ; -- [XXXDX] :: fly forward; dash forth; + provolvo_V2 = mkV2 (mkV "provolvere" "provolvo" "provolvi" "provolutus ") ; -- [XXXDX] :: roll forward or along, bowl over; + provolvor_V = mkV "provolvi" "provolvor" "provolutus sum " ; -- [XXXDX] :: prostrate oneself; + provomo_V2 = mkV2 (mkV "provomere" "provomo" "provomui" "provomitus ") ; -- [XXXDS] :: vomit forth; provulgo_V2 = mkV2 (mkV "provulgare") ; -- [DXXDS] :: publish; make known; proxeneta_M_N = mkN "proxeneta" ; -- [XXXFS] :: negotiator; agent; proxeneticum_N_N = mkN "proxeneticum" ; -- [ELXFS] :: brokerage; @@ -28730,11 +30899,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg prunum_N_N = mkN "prunum" ; -- [XXXDX] :: plum; prunus_F_N = mkN "prunus" ; -- [XAXEC] :: plum tree; prurigo_F_N = mkN "prurigo" "pruriginis " feminine ; -- [XXXEC] :: itch; --- TODO prurio_V : V2 prurio, prurire, -, - -- Declension: 4th -- Comment: [XXXDX] :: itch, tingle (in anticipation); be sexually excited, have sexual craving; + prurio_V = mkV "prurire" "prurio" nonExist nonExist ; -- [XXXDX] :: itch, tingle (in anticipation); be sexually excited, have sexual craving; pruritus_M_N = mkN "pruritus" "pruritus " masculine ; -- [XBXFS] :: itching; prytaneum_N_N = mkN "prytaneum" ; -- [XXXEC] :: town hall in a Greek city; --- TODO prytanis_N : N1 prytanis, prytanos/is -- M -- [XLHEC] :: chief magistrate in a Greek state; --- TODO psallo_V : V2 psallo, psallere, psalli, - -- Declension: 3rd -- Comment: [XXXDX] :: play on the cithara (by plucking with fingers); sing the Psalms (eccl.) (L+S); + prytanis_1_N = mkN "prytanis" "prytanis" masculine ; -- [XLHEC] :: chief magistrate in a Greek state; + prytanis_2_N = mkN "prytanis" "prytanos" masculine ; -- [XLHEC] :: chief magistrate in a Greek state; + psallo_V2 = mkV2 (mkV "psallere" "psallo" "psalli" nonExist ) ; -- [XXXDX] :: play on the cithara (by plucking with fingers); sing the Psalms (eccl.) (L+S); psalmista_M_N = mkN "psalmista" ; -- [EEXDX] :: psalmist; psalmodia_F_N = mkN "psalmodia" ; -- [FEXFF] :: psalmody; art/practice of singing psalms; arranging/composing psalms; psalms; psalmus_M_N = mkN "psalmus" ; -- [EEXDX] :: psalm; Psalm of David; @@ -28790,7 +30960,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pubertas_F_N = mkN "pubertas" "pubertatis " feminine ; -- [XXXDX] :: puberty; virility; pubes_A = mkA "pubes" "puberis"; -- [XXXBX] :: adult, grown-up; full of sap; pubes_F_N = mkN "pubes" "pubis " feminine ; -- [XXXDX] :: manpower, adult population; private/pubic parts/hair; age/condition of puberty; --- TODO pubesco_V : V2 pubesco, pubescere, pubui, - -- Declension: 3rd -- Comment: [XXXDX] :: reach physical maturity, grow body hair/to manhood; ripen (fruit), mature; + pubesco_V2 = mkV2 (mkV "pubescere" "pubesco" "pubui" nonExist ) ; -- [XXXDX] :: reach physical maturity, grow body hair/to manhood; ripen (fruit), mature; publicanus_A = mkA "publicanus" "publicana" "publicanum" ; -- [XLXDS] :: of public revenue; publicanus_M_N = mkN "publicanus" ; -- [XXXDX] :: contractor for public works, farmer of the Roman taxes; publicatio_F_N = mkN "publicatio" "publicationis " feminine ; -- [XXXDO] :: publication, proclamation; disclosure; manifestation (Def); preaching (Latham); @@ -28845,10 +31015,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pugneus_A = mkA "pugneus" "pugnea" "pugneum" ; -- [BXXFS] :: of the fist; pugno_V = mkV "pugnare" ; -- [XWXAX] :: fight; dispute; [pugnatum est => the battle raged]; pugnus_M_N = mkN "pugnus" ; -- [XXXDX] :: fist; --- SLASHSTUFF pulcer_A : A2 pulcer, pulcra -um, pulcrior -or -us, pulcerrimus -a -um -- [FXXEW] :: pretty; beautiful; handsome; noble, illustrious; + pulcer_A = mkA "pulcer" ; -- [FXXEW] :: pretty; beautiful; handsome; noble, illustrious; pulchellus_A = mkA "pulchellus" "pulchella" "pulchellum" ; -- [XXXEC] :: pretty; --- SLASHSTUFF pulcher_A : A2 pulcher, pulchra -um, pulchrior -or -us, pulcherrimus -a -um -- [XXXAX] :: pretty; beautiful; handsome; noble, illustrious; + pulcher_A = mkA "pulcher" ; -- [XXXAX] :: pretty; beautiful; handsome; noble, illustrious; pulchre_Adv =mkAdv "pulchre" "pulchrius" "pulcherrime" ; -- [XXXDX] :: fine, beautifully; + pulchresco_V = mkV "pulchrescere" "pulchresco" nonExist nonExist; -- [EXXFS] :: grow beautiful; pulchritudo_F_N = mkN "pulchritudo" "pulchritudinis " feminine ; -- [XXXBX] :: beauty, excellence; pulcre_Adv = mkAdv "pulcre" ; -- [EXXDP] :: aptly; finely; nicely; (often used at beginning of sentence); pulcritudo_F_N = mkN "pulcritudo" "pulcritudinis " feminine ; -- [XXXDX] :: beauty, attractiveness; @@ -28891,7 +31062,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pumex_M_N = mkN "pumex" "pumicis " masculine ; -- [XXXCO] :: pumice stone, similar volcanic rock; (esp. used to polish books/depilatory); pumiceus_A = mkA "pumiceus" "pumicea" "pumiceum" ; -- [XXXCO] :: made of pumice stone or similar volcanic rock; pumico_V2 = mkV2 (mkV "pumicare") ; -- [XXXCO] :: polish/rub smooth with pumice stone; (esp. book); --- SLASHSTUFF pumicosus_A : A2 pumicosus, pumicosa -um, pumicosior -or -us, pumicosissimus -a -um -- [XXXCO] :: resembling pumice stone; + pumicosus_A = mkA "pumicosus" ; -- [XXXCO] :: resembling pumice stone; pumilio_F_N = mkN "pumilio" "pumilionis " feminine ; -- [XXXEC] :: dwarf; pumilio_M_N = mkN "pumilio" "pumilionis " masculine ; -- [XXXEC] :: dwarf; pumilus_M_N = mkN "pumilus" ; -- [XXXEC] :: dwarf; @@ -28899,8 +31070,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg punctim_Adv = mkAdv "punctim" ; -- [XXXDX] :: with the point; punctio_F_N = mkN "punctio" "punctionis " feminine ; -- [XBXDS] :: puncture; pricking pain; punctum_N_N = mkN "punctum" ; -- [FGXEK] :: |point; full-stop; period (sign of punctuation); + pungo_V2 = mkV2 (mkV "pungere" "pungo" "pupugi" "punctus ") ; -- [XXXBO] :: prick, puncture; sting (insect); jab/poke; mark with points/pricks; vex/trouble; punicans_A = mkA "punicans" "punicantis"; -- [XXXEO] :: inclining to bright red; red/reddish/ruddy (L+S); blushing; Punic, Carthaginian; puniceus_A = mkA "puniceus" "punicea" "puniceum" ; -- [XXXDX] :: scarlet, crimson; + punio_V2 = mkV2 (mkV "punire" "punio" "punivi" "punitus ") ; -- [XXXBO] :: punish (person/offense), inflict punishment; avenge, extract retribution; + punior_V = mkV "puniri" "punior" "punitus sum " ; -- [XXXCO] :: punish (person/offense), inflict punishment; avenge, extract retribution; punitor_M_N = mkN "punitor" "punitoris " masculine ; -- [XXXDX] :: punisher, one who punishes; one who extracts retribution; avenger; punnulis_F_N = mkN "punnulis" "punnulis " feminine ; -- [FAXFT] :: small/little wing/feather; little fin; skirt (of garment) (Souter); pupa_F_N = mkN "pupa" ; -- [XXXEC] :: little girl; a doll; @@ -28929,7 +31103,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg purulente_Adv = mkAdv "purulente" ; -- [XBXES] :: purulently; festeringly; purulentus_A = mkA "purulentus" "purulenta" "purulentum" ; -- [XBXES] :: festering; purulent; purum_N_N = mkN "purum" ; -- [XPXES] :: clear/bright/unclouded sky; --- SLASHSTUFF purus_A : A2 purus, pura -um, purior -or -us, purissimus -a -um -- [XXXAO] :: ||clear, limpid, free of mist/cloud; ringing (voice); open (land); net; simple; + purus_A = mkA "purus" ; -- [XXXAO] :: ||clear, limpid, free of mist/cloud; ringing (voice); open (land); net; simple; pus_N_N = mkN "pus" "puris " neuter ; -- [XXXCO] :: pus; foul/corrupt matter (from a sore); bitterness, gall, venom (Cas); pusa_F_N = mkN "pusa" ; -- [XXXFO] :: girl; little girl; pusillanimis_A = mkA "pusillanimis" "pusillanimis" "pusillanime" ; -- [DXXDS] :: fainthearted, timid, pusillanimous; discouraged/worried (Souter); meanspirited; @@ -28939,7 +31113,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pusillitas_F_N = mkN "pusillitas" "pusillitatis " feminine ; -- [XXXFO] :: tininess/insignificance; pettiness (Souter); trifling thing; faintheartedness; pusillulus_A = mkA "pusillulus" "pusillula" "pusillulum" ; -- [DXXES] :: very little/small; pusillum_N_N = mkN "pusillum" ; -- [XXXCO] :: small/tiny/little amount; trifle (L+S); little while; very little; --- SLASHSTUFF pusillus_A : A2 pusillus, pusilla -um, pusillior -or -us, pusillissimus -a -um -- [XXXBO] :: |petty, trifling, insignificant; petty/mean/ungenerous (person/character); + pusillus_A = mkA "pusillus" ; -- [XXXBO] :: |petty, trifling, insignificant; petty/mean/ungenerous (person/character); pusio_M_N = mkN "pusio" "pusionis " masculine ; -- [XXXDO] :: boy; little boy (L+S); youth, lad; pussula_F_N = mkN "pussula" ; -- [XBXCO] :: inflamed sore/blister/pustule; small prominence of a surface, bubble; pustula_F_N = mkN "pustula" ; -- [XBXCO] :: inflamed sore/blister/pustule; small prominence of a surface, bubble; @@ -28952,20 +31126,24 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg putealis_A = mkA "putealis" "putealis" "puteale" ; -- [XXXDX] :: derived from a well; puteo_V = mkV "putere" ; -- [XXXCO] :: stink, be rotten/putrid; smell bad; rot/decompose (in such a way as to stink); puter_A = mkA "puter" "putris" "putre" ; -- [XXXDX] :: rotten, decaying; stinking, putrid, crumbling; --- TODO putesco_V : V2 putesco, putescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: begin to rot, go off; + putesco_V = mkV "putescere" "putesco" nonExist nonExist ; -- [XXXDX] :: begin to rot, go off; puteulanus_A = mkA "puteulanus" "puteulana" "puteulanum" ; -- [FXXEN] :: blue; puteus_M_N = mkN "puteus" ; -- [XXXBX] :: well; putidiusculus_A = mkA "putidiusculus" "putidiuscula" "putidiusculum" ; -- [XXXFS] :: somewhat sickening; --- SLASHSTUFF putidus_A : A2 putidus, putida -um, putidior -or -us, putidissimus -a -um -- [XXXBO] :: rotten/decaying; foul/stinking; unpleasant/offensive/tiresome/affected/pedantic; + putidus_A = mkA "putidus" ; -- [XXXBO] :: rotten/decaying; foul/stinking; unpleasant/offensive/tiresome/affected/pedantic; puto_V2 = mkV2 (mkV "putare") ; -- [XXXAX] :: think, believe, suppose, hold; reckon, estimate, value; clear up, settle; putorius_M_N = mkN "putorius" ; -- [GXXEK] :: skunk; putredo_F_N = mkN "putredo" "putredinis " feminine ; -- [XXXEO] :: putrefaction, rottenness; [w/vulnerum => festering wound]; + putrefacio_V2 = mkV2 (mkV "putrefacere" "putrefacio" "putrefeci" "putrefactus ") ; -- [XXXCO] :: cause to rot/decay/crumble/disintegrate; putrefy; make friable; soften; putrefactio_F_N = mkN "putrefactio" "putrefactionis " feminine ; -- [EXXFS] :: rotting; putrefio_V = mkV "putreferi" ; -- [XXXCO] :: be/become rotten/decayed/putrefied/crumbled/softened/soft; (putrefacio PASS); + putresco_V = mkV "putrescere" "putresco" nonExist nonExist; -- [XXXFO] :: rot, putrefy, be in a state of decay; putridus_A = mkA "putridus" "putrida" "putridum" ; -- [XXXEC] :: rotten, decayed; putris_A = mkA "putris" "putris" "putre" ; -- [XXXDX] :: rotten, decaying; stinking, putrid, crumbling; + putro_V = mkV "putrere" "putro" "putrui" "putritus "; -- [XXXCO] :: decay, rot, putrefy; fester; become stale (water)/loose (soil); crumble, molder; putus_A = mkA "putus" "puta" "putum" ; -- [XXXEC] :: pure, unmixed, unadulterated; --- TODO puxis_N : N1 puxis, puxidos/is -- F -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); + puxis_1_N = mkN "puxis" "puxidis" feminine ; -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); + puxis_2_N = mkN "puxis" "puxidos" feminine ; -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); pycnostylos_A = mkA "pycnostylos" "pycnostylos" "pycnostylon" ; -- [XXXFS] :: close-columned; pycta_M_N = mkN "pycta" ; -- [XXXDS] :: boxer; pyctes_M_N = mkN "pyctes" "pyctae " masculine ; -- [XXXDS] :: boxer; @@ -28975,14 +31153,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pygargus_M_N = mkN "pygargus" ; -- [XAXEO] :: creature with white rump, pygarg; kind of antelope (addax?); kind of eagle/hawk; pylorus_M_N = mkN "pylorus" ; -- [GBXEK] :: pylorus, lower orifice of stomach, opening from stomach to duodenum; pyra_F_N = mkN "pyra" ; -- [XXXDX] :: funeral pile, pyre; --- TODO pyramis_N : N1 pyramis, pyramidos/is -- F -- [XXXDX] :: pyramid; + pyramis_1_N = mkN "pyramis" "pyramidis" feminine ; -- [XXXDX] :: pyramid; + pyramis_2_N = mkN "pyramis" "pyramidos" feminine ; -- [XXXDX] :: pyramid; pyrauloplanum_N_N = mkN "pyrauloplanum" ; -- [HTXEK] :: jet, jet plane; pyrethrum_N_N = mkN "pyrethrum" ; -- [XAXEZ] :: Spanish camomile (Collins); pyrites_F_N = mkN "pyrites" "pyritae " feminine ; -- [DSXNS] :: flint; millstone; iron sulfide; pyrius_A = mkA "pyrius" "pyria" "pyrium" ; -- [GXXEK] :: fiery; pyrogenic; [pulvis pyrius => gunpowder]; pyrobolum_N_N = mkN "pyrobolum" ; -- [GWXEK] :: bomb; pyrobolus_M_N = mkN "pyrobolus" ; -- [GWXEK] :: bomb; --- TODO pyromis_N : N1 pyromis, pyromidos/is -- F -- [EXXFW] :: pyramid; + pyromis_1_N = mkN "pyromis" "pyromidis" feminine ; -- [EXXFW] :: pyramid; + pyromis_2_N = mkN "pyromis" "pyromidos" feminine ; -- [EXXFW] :: pyramid; pyropus_M_N = mkN "pyropus" ; -- [XXXDX] :: alloy of gold and bronze; red precious stone; pyrrhica_F_N = mkN "pyrrhica" ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; pyrrhice_F_N = mkN "pyrrhice" "pyrrhices " feminine ; -- [XWXCO] :: kind of war-dance or reel; dance in armor (L+S); Pyrrhic dance; @@ -28998,8 +31178,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg pythonissa_F_N = mkN "pythonissa" ; -- [FEXFM] :: witch; sorceress; pytisma_N_N = mkN "pytisma" "pytismatis " neuter ; -- [XXXDS] :: wine spit; that which is spat out when wine-tasting; pytisso_V = mkV "pytissare" ; -- [XXXDS] :: spit out wine; to spit out wine after tasting; + pyxis_1_N = mkN "pyxis" "pyxidis" feminine ; -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); + pyxis_2_N = mkN "pyxis" "pyxidos" feminine ; -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); pyxis_F_N = mkN "pyxis" "pyxidis " feminine ; -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); --- TODO pyxis_N : N1 pyxis, pyxidos/is -- F -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); qua_Adv = mkAdv "qua" ; -- [XXXBX] :: where; by which route; quaad_Adv = mkAdv "quaad" ; -- [XXXCO] :: how long?, to what point in time?; for as great a distance as, for as long as; quacumque_Adv = mkAdv "quacumque" ; -- [XXXCO] :: wherever; in whatever part/manner, however; by whatever route/way; @@ -29061,10 +31242,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg quadrus_A = mkA "quadrus" "quadra" "quadrum" ; -- [DSXES] :: square; quadruvium_N_N = mkN "quadruvium" ; -- [XXXFO] :: place where four roads meet; crossroads; quaerito_V = mkV "quaeritare" ; -- [XXXDX] :: seek, search for; + quaero_V2 = mkV2 (mkV "quaerere" "quaero" "quaesivi" "quaesitus ") ; -- [XXXAX] :: search for, seek, strive for; obtain; ask, inquire, demand; quaesitio_F_N = mkN "quaesitio" "quaesitionis " feminine ; -- [XXXDX] :: inquisition; quaesitum_N_N = mkN "quaesitum" ; -- [XXXDX] :: question, inquiry; gain, acquisition, earnings; --- SLASHSTUFF quaesitus_A : A2 quaesitus, quaesita -um, quaesitior -or -us, quaesitissimus -a -um -- [XXXDX] :: special, sought out, looked for; select; artificial, studied, affected; --- TODO quaeso_V : V2 quaeso, quaesere, -, - -- Declension: 3rd -- Comment: [XXXBX] :: beg, ask, ask for, seek; + quaesitus_A = mkA "quaesitus" ; -- [XXXDX] :: special, sought out, looked for; select; artificial, studied, affected; + quaeso_V = mkV "quaesere" "quaeso" nonExist nonExist ; -- [XXXBX] :: beg, ask, ask for, seek; quaesticulus_M_N = mkN "quaesticulus" ; -- [XXXFS] :: small profit; quaestio_F_N = mkN "quaestio" "quaestionis " feminine ; -- [XXXDX] :: questioning, inquiry; investigation; quaestiuncula_F_N = mkN "quaestiuncula" ; -- [XXXEC] :: little question; @@ -29087,27 +31269,27 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg qualum_N_N = mkN "qualum" ; -- [XXXDX] :: wicker basket; qualus_M_N = mkN "qualus" ; -- [XXXDX] :: wicker basket; quam_Adv = mkAdv "quam" ; -- [XXXAX] :: how, how much; as, than; [quam + superlative => as ... as possible]; --- quam_Conj : Conj quam -- [XXXDX] :: how, than; + quam_Conj = mkConj "quam" missing ; -- [XXXDX] :: how, than; quamde_Adv = mkAdv "quamde" ; -- [BXXFS] :: how, how much; as; (archaic form of quam); quamdiu_Adv = mkAdv "quamdiu" ; -- [XXXBO] :: |for the preceding period until; up to the time that; inasmuch as; (quam diu); quamlibet_Adv = mkAdv "quamlibet" ; -- [XXXDX] :: however, however much; --- quamobrem_Conj : Conj quamobrem -- [XXXDX] :: why, for what reason, on what account; on account of which, where/there-fore; + quamobrem_Conj = mkConj "quamobrem" missing ; -- [XXXDX] :: why, for what reason, on what account; on account of which, where/there-fore; quamprimum_Adv = mkAdv "quamprimum" ; -- [XXXEO] :: to the highest degree possible; --- quamquam_Conj : Conj quamquam -- [XXXDX] :: though, although; yet; nevertheless; + quamquam_Conj = mkConj "quamquam" missing ; -- [XXXDX] :: though, although; yet; nevertheless; quamtocius_Adv = mkAdv "quamtocius" ; -- [FXXEM] :: as soon as possible; completely (?), all (Nelson); quamtotius_Adv = mkAdv "quamtotius" ; -- [FXXEM] :: as soon as possible; completely (?), all (Nelson); quamvis_Adv = mkAdv "quamvis" ; -- [XXXAX] :: however much; although; --- quamvis_Conj : Conj quamvis -- [XXXDX] :: however much; although; + quamvis_Conj = mkConj "quamvis" missing ; -- [XXXDX] :: however much; although; quandiu_Adv = mkAdv "quandiu" ; -- [XXXBO] :: |for the preceding period until; up to the time that; inasmuch as; (quam diu); quandiucumque_Adv = mkAdv "quandiucumque" ; -- [XXXIO] :: for as long as; (rel adv); quandius_Adv = mkAdv "quandius" ; -- [XXXIO] :: for as long as; up to the time that; quando_Adv = mkAdv "quando" ; -- [XXXAX] :: when (interog), at what time; at any time (indef adv); --- quando_Conj : Conj quando -- [XXXDX] :: when, since, because; [si quando => if ever]; + quando_Conj = mkConj "quando" missing ; -- [XXXDX] :: when, since, because; [si quando => if ever]; quandocumque_Adv = mkAdv "quandocumque" ; -- [XXXCO] :: whenever, at whatever time; at some time or other/any time; as often/soon as; quandocunque_Adv = mkAdv "quandocunque" ; -- [XXXCO] :: whenever, at whatever time; at some time or other/any time; as often/soon as; quandoque_Adv = mkAdv "quandoque" ; -- [XXXCO] :: whenever, at whatever time; at some time or other/any time/ever; whereas; --- quandoquidem_Conj : Conj quandoquidem -- [XXXDX] :: since, seeing that; --- quanquam_Conj : Conj quanquam -- [XXXDX] :: though, although; yet; nevertheless; + quandoquidem_Conj = mkConj "quandoquidem" missing ; -- [XXXDX] :: since, seeing that; + quanquam_Conj = mkConj "quanquam" missing ; -- [XXXDX] :: though, although; yet; nevertheless; quantillus_A = mkA "quantillus" "quantilla" "quantillum" ; -- [XXXES] :: how little?; quantitas_F_N = mkN "quantitas" "quantitatis " feminine ; -- [XXXBO] :: magnitude/multitude, quantity, degree, size; (specified) amount/quantity/sum; quantitativus_A = mkA "quantitativus" "quantitativa" "quantitativum" ; -- [GXXEK] :: quantitative; @@ -29135,24 +31317,26 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg quarzeus_A = mkA "quarzeus" "quarzea" "quarzeum" ; -- [GXXEK] :: in quartz; quarzicus_A = mkA "quarzicus" "quarzica" "quarzicum" ; -- [GTXEK] :: quartz-adjusted; quasi_Adv = mkAdv "quasi" ; -- [XXXAX] :: as if, just as if, as though; as it were; about; --- quasi_Conj : Conj quasi -- [XXXDX] :: as if, just as if, as though; as it were; about; + quasi_Conj = mkConj "quasi" missing ; -- [XXXDX] :: as if, just as if, as though; as it were; about; quasillum_N_N = mkN "quasillum" ; -- [XXXEC] :: little basket; quasillus_M_N = mkN "quasillus" ; -- [XXXEC] :: little basket; quassatio_F_N = mkN "quassatio" "quassationis " feminine ; -- [XXXDX] :: violent shaking; quasso_V = mkV "quassare" ; -- [XXXDX] :: shake repeatedly; wave, flourish; batter; weaken; quassus_A = mkA "quassus" "quassa" "quassum" ; -- [XXXDX] :: shaking, battered, bruised; + quatefacio_V2 = mkV2 (mkV "quatefacere" "quatefacio" "quatefeci" "quatefactus ") ; -- [XXXEC] :: shake, weaken; quatenus_Adv = mkAdv "quatenus" ; -- [XXXAO] :: how far/long?, to what point; to what extent; where; while, so far as; since; quater_Adv = mkAdv "quater" ; -- [XXXCO] :: four times (number/degree); on four occasions; (how often); time and again; quaternarius_A = mkA "quaternarius" "quaternaria" "quaternarium" ; -- [FDXES] :: containing/consisting of four; of 4 each (L+S); quaternary; [numerus ~ => 4]; quaternio_M_N = mkN "quaternio" "quaternionis " masculine ; -- [DXXES] :: number four; 4 on a di; group of 4 (men/things); quaterion/body of 4 soldiers; quatinus_Adv = mkAdv "quatinus" ; -- [XXXEO] :: how far/long?, to what point; to what extent; where; while, so far as; since; --- TODO quatio_V : V2 quatio, quatere, -, quassus -- Declension: 3rd -- Comment: [XXXAX] :: shake; + quatio_V = mkV "quatere" "quatio" nonExist "quassus" ; -- [XXXAX] :: shake; quatriduum_N_N = mkN "quatriduum" ; -- [XXXBO] :: period of four days; [~o => in the four days from now, within four day of]; quattuorvir_M_N = mkN "quattuorvir" ; -- [XXXDX] :: body of four men/officials (pl.); board of chief magistrates; quattuorviratus_M_N = mkN "quattuorviratus" "quattuorviratus " masculine ; -- [XLXES] :: quattuorvir's office; --- que_Conj : Conj que -- [FXXET] :: and; (while properly attached as enclitic sometimes copyists make mistakes); + que_Conj = mkConj "que" missing ; -- [FXXET] :: and; (while properly attached as enclitic sometimes copyists make mistakes); quemadmodum_Adv = mkAdv "quemadmodum" ; -- [XXXBX] :: in what way, how; as, just as; to the extent that; --- TODO queo_V : V1 queo, quire, quivi(ii), quitus -- [XXXBX] :: be able; + queo_1_VV = mkVV (mkV "quire" "queo" "quivi" "quitus") False ; -- [XXXBX] :: be able; + queo_2_VV = mkVV (mkV "quire" "queo" "quii" "quitus") False ; -- [XXXBX] :: be able; quercetum_N_N = mkN "quercetum" ; -- [XAXEC] :: oak forest; querceus_A = mkA "querceus" "quercea" "querceum" ; -- [XAXEC] :: oaken, of oak; quercus_F_N = mkN "quercus" "quercus " feminine ; -- [XAXBO] :: oak, oak-tree; oak wood/timber/object; oak leaf garland (honor); sea-oak; @@ -29163,23 +31347,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg queritor_V = mkV "queritari" ; -- [XXXDX] :: complain; make a public outcry, cry out in protest; complain excessively; querneus_A = mkA "querneus" "quernea" "querneum" ; -- [XAXFS] :: oaken; quernus_A = mkA "quernus" "querna" "quernum" ; -- [XXXDX] :: of oak, made of oak wood; + queror_V = mkV "queri" "queror" "questus sum " ; -- [XXXAX] :: complain; protest, grumble, gripe; make formal complaint in court of law; querquerus_A = mkA "querquerus" "querquera" "querquerum" ; -- [XXXFS] :: shivering; querquetulanus_A = mkA "querquetulanus" "querquetulana" "querquetulanum" ; -- [XAXEC] :: of an oak forest; querulus_A = mkA "querulus" "querula" "querulum" ; -- [XXXDX] :: complaining, querulous; giving forth a mournful sound; questus_M_N = mkN "questus" "questus " masculine ; -- [XXXDX] :: complaint; qui_Adv = mkAdv "qui" ; -- [XXXAO] :: how?; how so; in what way; by what/which means; whereby; at whatever price; --- quia_Conj : Conj quia -- [XXXAX] :: because; + quia_Conj = mkConj "quia" missing ; -- [XXXAX] :: because; quianam_Adv = mkAdv "quianam" ; -- [XXXDX] :: why ever?; --- IGNORED quiddam_N : N1 quiddam, undeclined -- N -- [XXXDS] :: something; + quiddam_N = constN "quiddam" neuter ; -- [XXXDS] :: something; quidditas_F_N = mkN "quidditas" "quidditatis " feminine ; -- [FEXCF] :: quiddity, what a thing is, essence of a thing; (answers question quid est res); quidem_Adv = mkAdv "quidem" ; -- [XXXAX] :: indeed (postpositive), certainly, even, at least; ne...quidem -- not...even; quidnam_Adv = mkAdv "quidnam" ; -- [XXXDX] :: what? how?; quidni_Adv = mkAdv "quidni" ; -- [XXXDX] :: why not?; quies_F_N = mkN "quies" "quietis " feminine ; -- [XXXBX] :: quiet, calm, rest, peace; sleep; + quiesco_V2 = mkV2 (mkV "quiescere" "quiesco" "quievi" "quietus ") ; -- [XXXAX] :: rest, keep quiet/calm, be at peace/rest; be inactive/neutral; permit; sleep; quiete_Adv =mkAdv "quiete" "quietius" "quietissime" ; -- [XXXDX] :: quietly, peacefully, calmly, serenely; --- SLASHSTUFF quietus_A : A2 quietus, quieta -um, quietior -or -us, quietissimus -a -um -- [XXXDX] :: at rest; quiet, tranquil, calm, peaceful; orderly; neutral; still; idle; + quietus_A = mkA "quietus" ; -- [XXXDX] :: at rest; quiet, tranquil, calm, peaceful; orderly; neutral; still; idle; quin_Adv = mkAdv "quin" ; -- [XXXAX] :: why not, in fact; --- quin_Conj : Conj quin -- [XXXDX] :: so that not, without; that not; but that; that; [quin etiam => moreover]; + quin_Conj = mkConj "quin" missing ; -- [XXXDX] :: so that not, without; that not; but that; that; [quin etiam => moreover]; quinaria_F_N = mkN "quinaria" ; -- [XTXFO] :: five quarter-digit bore of pipe used as measure of capacity; quinarius_A = mkA "quinarius" "quinaria" "quinarium" ; -- [XXXCO] :: containing five each; grouped-by-fives; made of sheet five digits wide (pipe); quinarius_M_N = mkN "quinarius" ; -- [XLXEO] :: quinarius (Roman coin worth five asses, half a denarius); @@ -29218,19 +31404,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg quiritatus_M_N = mkN "quiritatus" "quiritatus " masculine ; -- [EXXFS] :: plaintive cry; wail; quiritor_V = mkV "quiritari" ; -- [XXXDX] :: complain; make a public outcry, cry out in protest; complain excessively; quisquilia_F_N = mkN "quisquilia" ; -- [XXXEC] :: rubbish (pl.), sweepings, refuse; - qum_Abl_Prep = mkPrep "qum" Abl ; -- [BXXEO] :: |under command/at the head of; having/containing/including; using/by means of; + qum_Abl_Prep = mkPrep "qum" abl ; -- [BXXEO] :: |under command/at the head of; having/containing/including; using/by means of; quo_Adv = mkAdv "quo" ; -- [XXXDX] :: where, to what place; to what purpose; for which reason, therefore; --- quo_Conj : Conj quo -- [XXXDX] :: whither, in what place, where; --- quoad_Conj : Conj quoad -- [XXXDX] :: as long as, until; + quo_Conj = mkConj "quo" missing ; -- [XXXDX] :: whither, in what place, where; + quoad_Conj = mkConj "quoad" missing ; -- [XXXDX] :: as long as, until; quoadusque_Adv = mkAdv "quoadusque" ; -- [XXXCS] :: until that; --- quocirca_Conj : Conj quocirca -- [XXXDX] :: on account of which; wherefore; + quocirca_Conj = mkConj "quocirca" missing ; -- [XXXDX] :: on account of which; wherefore; quocumque_Adv = mkAdv "quocumque" ; -- [XXXCO] :: wherever, to/in any place/quarter to which/whatever, whithersoever; anywhere; quocunque_Adv = mkAdv "quocunque" ; -- [XXXCO] :: wherever, to/in any place/quarter to which/whatever, whithersoever; anywhere; quod_Adv = mkAdv "quod" ; -- [XXXDX] :: with respect to which; --- quod_Conj : Conj quod -- [XXXDX] :: because, as far as, insofar as; [quod si => but if]; + quod_Conj = mkConj "quod" missing ; -- [XXXDX] :: because, as far as, insofar as; [quod si => but if]; quodammodo_Adv = mkAdv "quodammodo" ; -- [XXXEC] :: in a certain way, in a certain measure; --- quodnisi_Conj : Conj quodnisi -- [XXXDX] :: but if not; and if not; (introduces conditional); (quodnisi = quod nisi); --- quodsi_Conj : Conj quodsi -- [XXXDX] :: but if; and if; (introduces conditional); (quodsi = quod si) + quodnisi_Conj = mkConj "quodnisi" missing ; -- [XXXDX] :: but if not; and if not; (introduces conditional); (quodnisi = quod nisi); + quodsi_Conj = mkConj "quodsi" missing ; -- [XXXDX] :: but if; and if; (introduces conditional); (quodsi = quod si) quoiquoimodi_Adv = mkAdv "quoiquoimodi" ; -- [BXXCS] :: of what kind/sort/nature soever; quojas_A = mkA "quojas" "quojatis"; -- [AXXCO] :: of what country/town/locality?; whence? (L+S); quojatis_A = mkA "quojatis" "quojatis"; -- [XXXCO] :: of what country/town/locality?; whence? (L+S); @@ -29238,16 +31424,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg quojuscemodi_Adv = mkAdv "quojuscemodi" ; -- [DXXFS] :: of what kind/sort/nature soever; quojusquemodi_Adv = mkAdv "quojusquemodi" ; -- [XXXFS] :: of whatever kind/sort/nature; quolibet_Adv = mkAdv "quolibet" ; -- [XXXDX] :: whithersoever you please; - quom_Abl_Prep = mkPrep "quom" Abl ; -- [BXXDO] :: |under command/at the head of; having/containing/including; using/by means of; + quom_Abl_Prep = mkPrep "quom" abl ; -- [BXXDO] :: |under command/at the head of; having/containing/including; using/by means of; quom_Adv = mkAdv "quom" ; -- [BXXAO] :: |as soon; while, as (well as); whereas, in that, seeing that; on/during which; --- quominus_Conj : Conj quominus -- [XXXDX] :: that not, from (quo minus); + quominus_Conj = mkConj "quominus" missing ; -- [XXXDX] :: that not, from (quo minus); quomodo_Adv = mkAdv "quomodo" ; -- [XXXAX] :: how, in what way; just as; quomodocumque_Adv = mkAdv "quomodocumque" ; -- [XXXCO] :: however, no matter what way; in whatever way; somehow; in some degree or other; quomodocunque_Adv = mkAdv "quomodocunque" ; -- [XXXCO] :: however, no matter what way; in whatever way; somehow; in some degree or other; quomodonam_Adv = mkAdv "quomodonam" ; -- [XXXEC] :: how then?; quonam_Adv = mkAdv "quonam" ; -- [XXXDX] :: to whatever place; quondam_Adv = mkAdv "quondam" ; -- [XXXAX] :: formerly, once, at one time; some day, hereafter; --- quoniam_Conj : Conj quoniam -- [XXXAX] :: because, since, seeing that; + quoniam_Conj = mkConj "quoniam" missing ; -- [XXXAX] :: because, since, seeing that; quopiam_Adv = mkAdv "quopiam" ; -- [XXXDX] :: somewhere; quoquam_Adv = mkAdv "quoquam" ; -- [XXXDX] :: to any place, anywhere; quoque_Adv = mkAdv "quoque" ; -- [XXXAO] :: likewise/besides/also/too; not only; even/actually; (after word emphasized); @@ -29261,10 +31447,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg quorsum_Adv = mkAdv "quorsum" ; -- [XXXBO] :: whither, in what direction; to what place/action/point/end; with what view? quorsus_Adv = mkAdv "quorsus" ; -- [XXXBO] :: whither, in what direction; to what place/action/point/end; with what view? quosum_Adv = mkAdv "quosum" ; -- [XXXBO] :: whither, in what direction; to what place/action/point/end; with what view? --- IGNORED quot_A : A2 quot, undeclined -- [XXXAX] :: how many; of what number; as many; + quot_A = constA "quot" ; -- [XXXAX] :: how many; of what number; as many; quotannis_Adv = mkAdv "quotannis" ; -- [XXXDX] :: every year, yearly; --- IGNORED quotcumque_A : A2 quotcumque, undeclined -- [XXXEO] :: whatever number of; as many as; however many; --- IGNORED quotcunque_A : A2 quotcunque, undeclined -- [XXXEO] :: whatever number of; as many as; however many; + quotcumque_A = constA "quotcumque" ; -- [XXXEO] :: whatever number of; as many as; however many; + quotcunque_A = constA "quotcunque" ; -- [XXXEO] :: whatever number of; as many as; however many; quotenus_A = mkA "quotenus" "quotena" "quotenum" ; -- [XXXES] :: how many (pl.); quotidianus_A = mkA "quotidianus" "quotidiana" "quotidianum" ; -- [XXXDO] :: daily, everyday; usual/habitual, normal/regular; ordinary/common/unremarkable; quotidie_Adv = mkAdv "quotidie" ; -- [XXXCO] :: daily, every day; day by day; usually, ordinarily, commonly; @@ -29283,25 +31469,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg quotusquisque_Adv = mkAdv "quotusquisque" ; -- [XXXES] :: how few; quousque_Adv = mkAdv "quousque" ; -- [XXXDX] :: until what time? till when? how long?; qur_Adv = mkAdv "qur" ; -- [XXXEO] :: why, wherefore, for what reason? (impatience); on account of which?; because; - quum_Abl_Prep = mkPrep "quum" Abl ; -- [DXXCS] :: with, together with, at the same time with; under; at; along with, amid; --- quum_Conj : Conj quum -- [DXXCS] :: when, while, as, since, although; as soon; + quum_Abl_Prep = mkPrep "quum" abl ; -- [DXXCS] :: with, together with, at the same time with; under; at; along with, amid; + quum_Conj = mkConj "quum" missing ; -- [DXXCS] :: when, while, as, since, although; as soon; quur_Adv = mkAdv "quur" ; -- [XXXEO] :: why, wherefore, for what reason? (impatience); on account of which?; because; --- IGNORED rabbi_N : N1 rabbi, undeclined -- M -- [DEQEE] :: rabbi; teacher, master; (Hebrew); + rabbi_N = constN "rabbi" masculine ; -- [DEQEE] :: rabbi; teacher, master; (Hebrew); rabbinus_M_N = mkN "rabbinus" ; -- [GEXEK] :: rabbi; --- IGNORED rabboni_N : N1 rabboni, undeclined -- M -- [DEQEE] :: rabbi; teacher, master; (Hebrew); + rabboni_N = constN "rabboni" masculine ; -- [DEQEE] :: rabbi; teacher, master; (Hebrew); rabidus_A = mkA "rabidus" "rabida" "rabidum" ; -- [XXXDX] :: mad, raging, frenzied, wild; rabies_F_N = mkN "rabies" "rabiei " feminine ; -- [XXXDX] :: madness; --- TODO rabio_V : V2 rabio, rabere, -, - -- Declension: 3rd -- Comment: [XPXFS] :: rave; be mad; + rabio_V = mkV "rabere" "rabio" nonExist nonExist ; -- [XPXFS] :: rave; be mad; rabiola_F_N = mkN "rabiola" ; -- [GXXEK] :: ravioli; rabiose_Adv = mkAdv "rabiose" ; -- [XXXDX] :: madly; in a frenzied manner; rabiosulus_A = mkA "rabiosulus" "rabiosula" "rabiosulum" ; -- [XXXEC] :: rather furious; rabiosus_A = mkA "rabiosus" "rabiosa" "rabiosum" ; -- [XXXDX] :: rabid (dogs), mad; lunatic, raving mad, frenzied; rabula_M_N = mkN "rabula" ; -- [XXXEC] :: bawling advocate; --- IGNORED raca_A : A2 raca, undeclined -- [EEQFP] :: foolish, empty; Hebrew word of contempt (Linddell+Scott); + raca_A = constA "raca" ; -- [EEQFP] :: foolish, empty; Hebrew word of contempt (Linddell+Scott); racana_F_N = mkN "racana" ; -- [EXXFP] :: garment; wrap; racemifer_A = mkA "racemifer" "racemifera" "racemiferum" ; -- [XXXDX] :: bearing clusters; racemus_M_N = mkN "racemus" ; -- [XXXDX] :: bunch/cluster (of grapes or other fruit); --- IGNORED racha_A : A2 racha, undeclined -- [EEQFP] :: foolish, empty; Hebrew word of contempt (Linddell+Scott); + racha_A = constA "racha" ; -- [EEQFP] :: foolish, empty; Hebrew word of contempt (Linddell+Scott); rachana_F_N = mkN "rachana" ; -- [EXXFP] :: garment; wrap; racialis_A = mkA "racialis" "racialis" "raciale" ; -- [GXXEK] :: racial; radaricus_A = mkA "radaricus" "radarica" "radaricum" ; -- [HTXEK] :: of radar; @@ -29330,6 +31516,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg radiotherapia_F_N = mkN "radiotherapia" ; -- [HBXEK] :: radiotherapy; radius_M_N = mkN "radius" ; -- [XXXBX] :: ray; rod; radix_F_N = mkN "radix" "radicis " feminine ; -- [XXXBX] :: root; base; square-root (math); + rado_V2 = mkV2 (mkV "radere" "rado" "rasi" "rasus ") ; -- [XXXDX] :: shave; scratch, scrape; coast by; raeda_F_N = mkN "raeda" ; -- [XXXDX] :: four wheeled wagon; raedarius_M_N = mkN "raedarius" ; -- [XXXDX] :: coachman; raffinatio_F_N = mkN "raffinatio" "raffinationis " feminine ; -- [GXXEK] :: refinement; @@ -29352,12 +31539,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg rapacitas_F_N = mkN "rapacitas" "rapacitatis " feminine ; -- [XXXEZ] :: rapacity; rapax_A = mkA "rapax" "rapacis"; -- [XXXDX] :: grasping, rapacious; raphaninus_A = mkA "raphaninus" "raphanina" "raphaninum" ; -- [XAXNO] :: of/made from radishes; --- TODO raphanitis_N : N1 raphanitis, raphanitidos/is -- F -- [XAHNO] :: variety of the plant Iris Illyrica; + raphanitis_1_N = mkN "raphanitis" "raphanitidis" feminine ; -- [XAHNO] :: variety of the plant Iris Illyrica; + raphanitis_2_N = mkN "raphanitis" "raphanitidos" feminine ; -- [XAHNO] :: variety of the plant Iris Illyrica; raphanus_F_N = mkN "raphanus" ; -- [XAXDO] :: radish; [~ agria => wild plant supposed to be kind of spurge/charlock]; raphanus_M_N = mkN "raphanus" ; -- [FAXEK] :: radish; horseradish; rapiditas_F_N = mkN "rapiditas" "rapiditatis " feminine ; -- [XXXEO] :: swiftness, rapidity (of movement); --- SLASHSTUFF rapidus_A : A2 rapidus, rapida -um, rapidior -or -us, rapidissimus -a -um -- [XXXAX] :: rapid, swift; + rapidus_A = mkA "rapidus" ; -- [XXXAX] :: rapid, swift; rapina_F_N = mkN "rapina" ; -- [XXXDX] :: robbery, plunder, booty; rape; + rapio_V2 = mkV2 (mkV "rapere" "rapio" "rapui" "raptus ") ; -- [XXXAX] :: drag off; snatch; destroy; seize, carry off; pillage; hurry; raptim_Adv = mkAdv "raptim" ; -- [XXXDX] :: hurriedly, suddenly; rapto_V = mkV "raptare" ; -- [XXXDX] :: drag violently off; ravage; raptor_M_N = mkN "raptor" "raptoris " masculine ; -- [XXXDX] :: robber; plunderer; @@ -29366,11 +31555,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg rapulum_N_N = mkN "rapulum" ; -- [XXXDX] :: little turnip; rapum_N_N = mkN "rapum" ; -- [FAXEK] :: turnip; rare_Adv =mkAdv "rare" "rarius" "rarissime" ; -- [XXXDX] :: sparsely, thinly; at wide intervals, loosely; rarely, seldomly; + rarefacio_V2 = mkV2 (mkV "rarefacere" "rarefacio" "rarefeci" "rarefactus ") ; -- [XXXDX] :: make less solid; rarefactio_F_N = mkN "rarefactio" "rarefactionis " feminine ; -- [GXXEK] :: rarefaction, diminution of density; rarenter_Adv = mkAdv "rarenter" ; -- [XXXES] :: uncommonly; seldom, rare; (poetic); --- TODO raresco_V : V2 raresco, rarescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: thin out, open out; become sparse; + raresco_V = mkV "rarescere" "raresco" nonExist nonExist ; -- [XXXDX] :: thin out, open out; become sparse; raro_Adv = mkAdv "raro" ; -- [XXXDX] :: seldom, rare; --- SLASHSTUFF rarus_A : A2 rarus, rara -um, rarior -or -us, rarissimus -a -um -- [XXXAX] :: thin, scattered; few, infrequent; rare; in small groups; loose knit; + rarus_A = mkA "rarus" ; -- [XXXAX] :: thin, scattered; few, infrequent; rare; in small groups; loose knit; rasilis_A = mkA "rasilis" "rasilis" "rasile" ; -- [XXXDX] :: worn smooth, polished; rasito_V2 = mkV2 (mkV "rasitare") ; -- [XXXEO] :: shave (off) habitually; rasorium_N_N = mkN "rasorium" ; -- [GXXEK] :: razor; @@ -29390,7 +31580,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ratiocinator_M_N = mkN "ratiocinator" "ratiocinatoris " masculine ; -- [XXXEC] :: calculator, accountant; ratiocinium_N_N = mkN "ratiocinium" ; -- [DLXES] :: accounting; reckoning; reasoning; obligation to render account; ratiocinor_V = mkV "ratiocinari" ; -- [XXXEC] :: compute, calculate; argue, infer, conclude; --- SLASHSTUFF rationabilis_A : A2 rationabilis, rationabile, rationabilior -or -us, rationabilissimus -a -um -- [XXXDO] :: rational, possessing powers of reasoning; reasonable, agreeable to reason; + rationabilis_A = mkA "rationabilis" ; -- [XXXDO] :: rational, possessing powers of reasoning; reasonable, agreeable to reason; rationabilitas_F_N = mkN "rationabilitas" "rationabilitatis " feminine ; -- [XXXFO] :: rationality, quality of possessing reason; rationabiliter_Adv = mkAdv "rationabiliter" ; -- [XXXEO] :: reasonably, in accordance with reason; according to correct computation (L+S); rationalabilis_A = mkA "rationalabilis" "rationalabilis" "rationalabile" ; -- [EXXFP] :: rational, reasonable, logical; @@ -29430,16 +31620,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg rebellis_A = mkA "rebellis" "rebellis" "rebelle" ; -- [XXXDX] :: insurgent, rebellious; rebellis_M_N = mkN "rebellis" "rebellis " masculine ; -- [XXXDX] :: insurgent, rebel; rebello_V = mkV "rebellare" ; -- [XXXDX] :: rebel, revolt; + rebito_V = mkV "rebitere" "rebito" nonExist nonExist; -- [BXXFS] :: turn back; return; reboo_V = mkV "reboare" ; -- [XXXDO] :: resound, re-echo; bellow back; call/cry in answer; recalcitro_V = mkV "recalcitrare" ; -- [XXXDS] :: be disobedient; P:deny access; recaleo_V = mkV "recalere" ; -- [XXXDX] :: grow warm (again); recalesceo_V = mkV "recalescere" ; -- [XXXDX] :: grow warm (again); + recalfacio_V2 = mkV2 (mkV "recalfacere" "recalfacio" "recalfeci" "recalfactus ") ; -- [XXXDX] :: make warm again, warm up; recalvaster_A = mkA "recalvaster" "recalvastra" "recalvastrum" ; -- [EBXFS] :: bald in front; that has a bald forehead; --- TODO recandesco_V : V2 recandesco, recandescere, recandui, - -- Declension: 3rd -- Comment: [XXXDX] :: glow again with heat; become/grow white (again), whiten; + recandesco_V2 = mkV2 (mkV "recandescere" "recandesco" "recandui" nonExist ) ; -- [XXXDX] :: glow again with heat; become/grow white (again), whiten; recanto_V = mkV "recantare" ; -- [XXXDX] :: charm away/back; withdraw, recall, revoke, recant; recapitulatio_F_N = mkN "recapitulatio" "recapitulationis " feminine ; -- [DXXES] :: recapitulation, restatement of/going over again the main points; summing up; recapitulo_V = mkV "recapitulare" ; -- [DXXDS] :: recapitulate, go over the main points again; --- TODO recello_V : V2 recello, recellere, -, - -- Declension: 3rd -- Comment: [XXXEC] :: spring back, fly back; + reccido_V = mkV "reccidere" "reccido" "reccidi" "reccasus "; -- [XXXEO] :: fall/sink back, lapse/relapse/revert; fall to earth; come to naught; rebound on; + recedo_V2 = mkV2 (mkV "recedere" "recedo" "recessi" "recessus ") ; -- [XXXAX] :: recede, go back, withdraw, ebb; retreat; retire; move/keep/pass/slip away; + recello_V = mkV "recellere" "recello" nonExist nonExist ; -- [XXXEC] :: spring back, fly back; recens_A = mkA "recens" "recentis"; -- [XXXBX] :: fresh, recent; rested; recenseo_V2 = mkV2 (mkV "recensere") ; -- [XXXCO] :: review/examine/survey/muster; enumerate/count, make census/roll; pass in review; recenter_Adv =mkAdv "recenter" "recentius" "recentissime" ; -- [DXXES] :: lately, newly, recently; freshly; @@ -29452,14 +31646,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg receptus_M_N = mkN "receptus" "receptus " masculine ; -- [XXXDX] :: retreat; recessus_M_N = mkN "recessus" "recessus " masculine ; -- [XXXBX] :: retreat; recess; recidivus_A = mkA "recidivus" "recidiva" "recidivum" ; -- [XXXDX] :: recurring; --- TODO recingo_V : V2 recingo, recingere, -, recinctus -- Declension: 3rd -- Comment: [XXXDX] :: ungird, unfasten, undo; --- TODO recino_V : V2 recino, recinere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: chant back, echo; call out; + recido_V = mkV "recidere" "recido" "recidi" "recasus "; -- [XXXBO] :: fall/sink back, lapse/relapse/revert; fall to earth; come to naught; rebound on; + recido_V2 = mkV2 (mkV "recidere" "recido" "recidi" "recisus ") ; -- [XXXCO] :: cut back/off (to base/tree), prune; cut back/away; get by cutting; curtail; + recingo_V2 = mkV2 (mkV "recingere" "recingo" nonExist "recinctus") ; -- [XXXDX] :: ungird, unfasten, undo; + recino_V = mkV "recinere" "recino" nonExist nonExist ; -- [XXXDX] :: chant back, echo; call out; recipeo_V = mkV "recipere" ; -- [FXXEK] :: record (sounds, pictures); reciperatio_F_N = mkN "reciperatio" "reciperationis " feminine ; -- [XLXEO] :: recovery; regaining; judgment by board of reciperatores/assessors; reciperativus_A = mkA "reciperativus" "reciperativa" "reciperativum" ; -- [XLXFO] :: relating to/involving recovery; (of disputes over property); reciperator_M_N = mkN "reciperator" "reciperatoris " masculine ; -- [XLXCO] :: assessor dealing w/disputes between aliens and Romans; recoverer/regainer; reciperatorius_A = mkA "reciperatorius" "reciperatoria" "reciperatorium" ; -- [XLXDO] :: of assessor dealing w/disputes between aliens and Romans; recoverer/regainer; recipero_V = mkV "reciperare" ; -- [XXXDX] :: restore, restore to health; refresh, recuperate; + recipio_V2 = mkV2 (mkV "recipere" "recipio" "recepi" "receptus ") ; -- [XXXAX] :: keep back; recover; undertake; guarantee; accept, take in; take back; reciprocatio_F_N = mkN "reciprocatio" "reciprocationis " feminine ; -- [XXXDS] :: returning; reciprocation; G:reciprocal action; reciproco_V = mkV "reciprocare" ; -- [XBXEC] :: move backwards and forwards; (w/animam) to breathe; reciprocus_A = mkA "reciprocus" "reciproca" "reciprocum" ; -- [XXXEC] :: going backwards and forwards; ebbing (w/mare); @@ -29471,22 +31668,30 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg reclinatorium_N_N = mkN "reclinatorium" ; -- [XXXES] :: back (of a couch); chariot seat; reclinis_A = mkA "reclinis" "reclinis" "recline" ; -- [XXXDX] :: leaning back, reclining; reclino_V = mkV "reclinare" ; -- [XXXDX] :: bend back; [se reclinare => lean back, recline]; + recludo_V2 = mkV2 (mkV "recludere" "recludo" "reclusi" "reclusus ") ; -- [XXXBX] :: open; open up, lay open, disclose, reveal; recogito_V = mkV "recogitare" ; -- [XXXDO] :: consider, reflect, think over; examine, inspect; recognitio_F_N = mkN "recognitio" "recognitionis " feminine ; -- [XXXEC] :: inspection, examination; review; revision (Red); survey; reconnaissance; recognitor_M_N = mkN "recognitor" "recognitoris " masculine ; -- [FLXEM] :: juror; editor (White); + recognosco_V2 = mkV2 (mkV "recognoscere" "recognosco" "recognovi" "recognitus ") ; -- [XXXDX] :: recognize, recollect; + recolligo_V2 = mkV2 (mkV "recolligere" "recolligo" "recollegi" "recollectus ") ; -- [XXXDX] :: recover, gather again, collect; + recolo_V2 = mkV2 (mkV "recolere" "recolo" "recolui" "recultus ") ; -- [XXXDX] :: cultivate afresh; go over in one's mind; + recomminiscor_V = mkV "recomminisci" "recomminiscor" "recommentus sum " ; -- [BXXFS] :: recollect; recompenso_V2 = mkV2 (mkV "recompensare") ; -- [XXXDF] :: repay/recompense; compensate for misdeed/wrong; make up for injury/loss; reward; reconciliatio_F_N = mkN "reconciliatio" "reconciliationis " feminine ; -- [XXXDX] :: renewal, re-establishment, reconciliation; restoration; reuniting; reconciliator_M_N = mkN "reconciliator" "reconciliatoris " masculine ; -- [XXXDX] :: restorer; reconcilio_V = mkV "reconciliare" ; -- [XXXDX] :: restore; reconcile; reconcinno_V2 = mkV2 (mkV "reconcinnare") ; -- [XXXFS] :: repair; set right; reconditus_A = mkA "reconditus" "recondita" "reconditum" ; -- [XXXDX] :: hidden, concealed; abstruse; + recondo_V2 = mkV2 (mkV "recondere" "recondo" "recondidi" "reconditus ") ; -- [XXXDX] :: hide, conceal; put away; reconflo_V2 = mkV2 (mkV "reconflare") ; -- [XXXFS] :: rekindle; + recoquo_V2 = mkV2 (mkV "recoquere" "recoquo" "recoxi" "recoctus ") ; -- [XXXDX] :: renew by cooking, boil again, rehash; reheat, melt down; forge anew; recordatio_F_N = mkN "recordatio" "recordationis " feminine ; -- [XXXDX] :: recollection; recordor_V = mkV "recordari" ; -- [XXXBX] :: think over; call to mind, remember; recreatio_F_N = mkN "recreatio" "recreationis " feminine ; -- [XXXEO] :: restoration; recovery/convalescence (L+S); refreshment, diversion/entertainment; recreo_V = mkV "recreare" ; -- [XXXDX] :: restore, revive; recrepo_V = mkV "recrepare" ; -- [XXXDX] :: sound in answer, resound; --- TODO recrudesco_V : V2 recrudesco, recrudescere, recrudui, - -- Declension: 3rd -- Comment: [XXXDX] :: become raw again; break out/open again/afresh; + recresco_V2 = mkV2 (mkV "recrescere" "recresco" "recrevi" "recretus ") ; -- [XXXDX] :: grow again; + recrudesco_V2 = mkV2 (mkV "recrudescere" "recrudesco" "recrudui" nonExist ) ; -- [XXXDX] :: become raw again; break out/open again/afresh; recta_Adv = mkAdv "recta" ; -- [XXXDX] :: directly, straight; recte_Adv = mkAdv "recte" ; -- [XXXDX] :: vertically; rightly, correctly, properly, well; rectificatio_F_N = mkN "rectificatio" "rectificationis " feminine ; -- [GXXEK] :: rectification; @@ -29496,17 +31701,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg rectitudo_F_N = mkN "rectitudo" "rectitudinis " feminine ; -- [EXXDP] :: straightness; uprightness; erect posture; correctness (spelling); rectitude; rector_M_N = mkN "rector" "rectoris " masculine ; -- [XXXBX] :: guide, director, helmsman; horseman; driver; leader, ruler, governor; rectum_N_N = mkN "rectum" ; -- [XXXDX] :: virtue; the_right --- SLASHSTUFF rectus_A : A2 rectus, recta -um, rectior -or -us, rectissimus -a -um -- [XXXAX] :: right, proper; straight; honest; + rectus_A = mkA "rectus" ; -- [XXXAX] :: right, proper; straight; honest; recubitus_M_N = mkN "recubitus" "recubitus " masculine ; -- [EXXFR] :: seat; dining/reclining couch; recubo_V = mkV "recubare" ; -- [XXXBX] :: lie down/back, recline, lie on the back; recudeo_V = mkV "recudere" ; -- [GXXEK] :: reprint; --- TODO recumbo_V : V2 recumbo, recumbere, recubui, - -- Declension: 3rd -- Comment: [XXXDX] :: recline, lie at ease, sink/lie/settle back/down; recline at table; + recumbo_V2 = mkV2 (mkV "recumbere" "recumbo" "recubui" nonExist ) ; -- [XXXDX] :: recline, lie at ease, sink/lie/settle back/down; recline at table; recuperatio_F_N = mkN "recuperatio" "recuperationis " feminine ; -- [XLXEO] :: recovery; regaining; judgment by board of reciperatores/assessors; recuperativus_A = mkA "recuperativus" "recuperativa" "recuperativum" ; -- [XLXFO] :: relating to/involving recovery; (of disputes over property); recuperator_M_N = mkN "recuperator" "recuperatoris " masculine ; -- [XLXCO] :: assessor dealing w/disputes between aliens and Romans; recoverer/regainer; recuperatorius_A = mkA "recuperatorius" "recuperatoria" "recuperatorium" ; -- [XLXDO] :: of assessor dealing w/disputes between aliens and Romans; recoverer/regainer; recupero_V = mkV "recuperare" ; -- [XXXBX] :: regain, restore, restore to health; refresh, recuperate; recuro_V = mkV "recurare" ; -- [XXXDX] :: cure, restore, refresh; + recurro_V2 = mkV2 (mkV "recurrere" "recurro" "recurri" "recursus ") ; -- [XXXDX] :: run or hasten back; return; have recourse (to); recurso_V = mkV "recursare" ; -- [XXXDX] :: keep rebounding/recoiling; keep recurring to the mind; recursus_M_N = mkN "recursus" "recursus " masculine ; -- [XXXDX] :: running back, retreat, return; recurvo_V = mkV "recurvare" ; -- [XXXDX] :: bend back; @@ -29514,20 +31720,27 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg recusatio_F_N = mkN "recusatio" "recusationis " feminine ; -- [XXXDX] :: refusal; recuso_V = mkV "recusare" ; -- [XXXBX] :: reject, refuse, refuse to; object; decline; recussus_A = mkA "recussus" "recussa" "recussum" ; -- [XXXDX] :: reverberating (Collins); + recutio_V2 = mkV2 (mkV "recutere" "recutio" "recussi" "recussus ") ; -- [XXXDX] :: strike so as to cause to vibrate; redactor_M_N = mkN "redactor" "redactoris " masculine ; -- [GXXEK] :: editor; redambulo_V = mkV "redambulare" ; -- [BXXFS] :: come back; redamo_V = mkV "redamare" ; -- [XXXES] :: love back; love in return; --- TODO redardesco_V : V2 redardesco, redardescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: blaze up again; --- TODO redarguo_V : V2 redarguo, redarguere, redargui, - -- Declension: 3rd -- Comment: [XXXDX] :: refute; prove untrue; + redardesco_V = mkV "redardescere" "redardesco" nonExist nonExist ; -- [XXXDX] :: blaze up again; + redarguo_V2 = mkV2 (mkV "redarguere" "redarguo" "redargui" nonExist ) ; -- [XXXDX] :: refute; prove untrue; redauspico_V = mkV "redauspicare" ; -- [BXXFS] :: retake auspices; + reddo_V2 = mkV2 (mkV "reddere" "reddo" "reddidi" "redditus ") ; -- [XXXAX] :: return; restore; deliver; hand over, pay back, render, give back; translate; redemptio_F_N = mkN "redemptio" "redemptionis " feminine ; -- [XXXBX] :: redemption, buying back, ransoming; deliverance; redemptor_M_N = mkN "redemptor" "redemptoris " masculine ; -- [XXXDX] :: contractor, undertaker, purveyor, farmer; redeemer; one who buys back; --- TODO redeo_V : V1 redeo, redire, redivi(ii), reditus -- [XXXAX] :: return, go back, give back; fall back on, revert to; respond, pay back; + redeo_1_V2 = mkV2 (mkV "redire" "redeo" "redivi" "reditus") ; -- [XXXAX] :: return, go back, give back; fall back on, revert to; respond, pay back; + redeo_2_V2 = mkV2 (mkV "redire" "redeo" "redii" "reditus") ; -- [XXXAX] :: return, go back, give back; fall back on, revert to; respond, pay back; redhalo_V2 = mkV2 (mkV "redhalare") ; -- [XXXFS] :: exhale; redhibeo_V2 = mkV2 (mkV "redhibere") ; -- [XXXEC] :: take back; redicor_V = mkV "redicari" ; -- [XAXEO] :: take root; grow roots; + redigo_V2 = mkV2 (mkV "redigere" "redigo" "redegi" "redactus ") ; -- [XXXDX] :: drive back; reduce; render; redimiculum_N_N = mkN "redimiculum" ; -- [XXXDX] :: female headband; + redimio_V2 = mkV2 (mkV "redimire" "redimio" "redimivi" "redimitus ") ; -- [XXXBO] :: encircle with a garland, wreathe around; surround, encircle; + redimo_V2 = mkV2 (mkV "redimere" "redimo" "redimi" nonExist) ; -- [EXXAW] :: |redeem; atone for; ransom; rescue/save; contract for; buy/purchase; buy off; redintegro_V = mkV "redintegrare" ; -- [XXXDX] :: renew; revive; + redipiscor_V = mkV "redipisci" "redipiscor" nonExist ; -- [XXXEC] :: get back; reditio_F_N = mkN "reditio" "reditionis " feminine ; -- [XXXDX] :: returning; going back; redituarius_M_N = mkN "redituarius" ; -- [GXXEK] :: man of means; reditus_M_N = mkN "reditus" "reditus " masculine ; -- [XXXCS] :: return, returning; revenue, income, proceeds; produce (Plater); @@ -29536,6 +31749,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg redoleo_V = mkV "redolere" ; -- [XXXDX] :: emit a scent, be odorous; redomitus_A = mkA "redomitus" "redomita" "redomitum" ; -- [XXXEC] :: tamed again; redono_V = mkV "redonare" ; -- [XXXDX] :: give back again; forgive; + redormio_V = mkV "redormire" "redormio" "redormivi" "redormitus "; -- [XXXEO] :: go back to sleep, fall asleep again; + redormisco_V = mkV "redormiscere" "redormisco" nonExist nonExist; -- [GXXFT] :: go back to sleep, fall asleep again; (Erasmus); + reduco_V2 = mkV2 (mkV "reducere" "reduco" "reduxi" "reductus ") ; -- [XXXAX] :: lead back, bring back; restore; reduce; reductivus_A = mkA "reductivus" "reductiva" "reductivum" ; -- [GXXEK] :: reducing; reductor_M_N = mkN "reductor" "reductoris " masculine ; -- [XXXDX] :: restorer; reductus_A = mkA "reductus" "reducta" "reductum" ; -- [XXXDX] :: receding deeply, set back; @@ -29550,16 +31766,22 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg refector_M_N = mkN "refector" "refectoris " masculine ; -- [XXXEO] :: restorer, repairer, renewer; (spiritual of persons); refectorium_N_N = mkN "refectorium" ; -- [EEXDP] :: refectory; dining room; refectorius_A = mkA "refectorius" "refectoria" "refectorium" ; -- [EXXFS] :: refreshing; --- TODO refello_V : V2 refello, refellere, refelli, - -- Declension: 3rd -- Comment: [XXXDX] :: refute, rebut; + refello_V2 = mkV2 (mkV "refellere" "refello" "refelli" nonExist ) ; -- [XXXDX] :: refute, rebut; + refercio_V2 = mkV2 (mkV "refercire" "refercio" "refersi" "refertus ") ; -- [XXXDX] :: fill up, stuff/cram full; pack close, condense, mass together; referendarius_M_N = mkN "referendarius" ; -- [FXXFZ] :: letter-reporter; one who reports all letters to ruler (JFW); + referio_V2 = mkV2 (mkV "referire" "referio" nonExist nonExist) ; -- [XXXES] :: strike back; P:reflect; refero_V = mkV "referre" "refero" "retuli" "relatus " ; -- Comment: [XXXEO] :: ||give/pay back, render, tender; restore; redirect; revive, repeat; recall; refert_V0 = mkV0 "refert" ; -- [XXXBO] :: it matters/makes a difference/is of importance; matter/be of importance (PERS); --- SLASHSTUFF refertus_A : A2 refertus, referta -um, refertior -or -us, refertissimus -a -um -- [XXXDX] :: stuffed, crammed, filled full to bursting with, replete; crowded; loaded; + refertus_A = mkA "refertus" ; -- [XXXDX] :: stuffed, crammed, filled full to bursting with, replete; crowded; loaded; referveo_V = mkV "refervere" ; -- [XXXDS] :: boil over; + reficio_V2 = mkV2 (mkV "reficere" "reficio" "refeci" "refectus ") ; -- [XXXBX] :: rebuild, repair, restore; + refigo_V2 = mkV2 (mkV "refigere" "refigo" "refixi" "refixus ") ; -- [XXXDX] :: unfix, unfasten, detach; pull out, take off, tear down; + refingo_V2 = mkV2 (mkV "refingere" "refingo" nonExist nonExist) ; -- [XXXFS] :: remake; make anew; feign; reflagito_V2 = mkV2 (mkV "reflagitare") ; -- [XXXDS] :: redemand; reflatus_M_N = mkN "reflatus" "reflatus " masculine ; -- [XXXDS] :: contrary wind; + reflecto_V2 = mkV2 (mkV "reflectere" "reflecto" "reflexi" "reflexus ") ; -- [XXXDX] :: bend back; turn back; turn round; reflo_V = mkV "reflare" ; -- [XXXDX] :: blow back again; --- TODO refluo_V : V2 refluo, refluere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: flow back, recede; + refluo_V = mkV "refluere" "refluo" nonExist nonExist ; -- [XXXDX] :: flow back, recede; refluus_A = mkA "refluus" "reflua" "refluum" ; -- [XXXDX] :: flowing back; refocillatio_F_N = mkN "refocillatio" "refocillationis " feminine ; -- [FXXEF] :: refreshment; reinvigoration; refocillatrix_F_N = mkN "refocillatrix" "refocillatricis " feminine ; -- [EXXFS] :: reviver, she who revives/revivifies(/refreshes/reinvorgates?); @@ -29579,19 +31801,23 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg refrigeratio_F_N = mkN "refrigeratio" "refrigerationis " feminine ; -- [XXXDS] :: coolness; refrigerium_N_N = mkN "refrigerium" ; -- [XXXEO] :: rest; relief; cool period; cooling; consolation, mitigation (L+S); refrigero_V = mkV "refrigerare" ; -- [XXXDX] :: make cool; --- TODO refrigesco_V : V2 refrigesco, refrigescere, refrixi, - -- Declension: 3rd -- Comment: [XXXDX] :: grow cold, cool down; --- TODO refugio_V : V2 refugio, refugere, refugi, - -- Declension: 3rd -- Comment: [XXXBX] :: flee back; run away, escape; + refrigesco_V2 = mkV2 (mkV "refrigescere" "refrigesco" "refrixi" nonExist ) ; -- [XXXDX] :: grow cold, cool down; + refringo_V2 = mkV2 (mkV "refringere" "refringo" "refregi" "refractus ") ; -- [XXXDX] :: break open; + refugio_V2 = mkV2 (mkV "refugere" "refugio" "refugi" nonExist ) ; -- [XXXBX] :: flee back; run away, escape; refugium_N_N = mkN "refugium" ; -- [XXXDX] :: refuge; refugus_A = mkA "refugus" "refuga" "refugum" ; -- [XXXDX] :: fleeing, receding; refulgeo_V = mkV "refulgere" ; -- [XXXDX] :: flash back, reflect light; shine brightly; gleam, glitter, glisten; --- TODO refulgo_V : V2 refulgo, refulgere, refulsi, - -- Declension: 3rd -- Comment: [XXXDX] :: flash back, glitter; + refulgo_V2 = mkV2 (mkV "refulgere" "refulgo" "refulsi" nonExist ) ; -- [XXXDX] :: flash back, glitter; + refundo_V2 = mkV2 (mkV "refundere" "refundo" "refudi" "refusus ") ; -- [XXXDX] :: pour back; refutatio_F_N = mkN "refutatio" "refutationis " feminine ; -- [XXXDS] :: refutation; refutatus_M_N = mkN "refutatus" "refutatus " masculine ; -- [XXXFS] :: refutation; refuto_V = mkV "refutare" ; -- [XXXDX] :: check; refute; regalis_A = mkA "regalis" "regalis" "regale" ; -- [XXXBX] :: royal, regal; regeneratio_F_N = mkN "regeneratio" "regenerationis " feminine ; -- [DXXES] :: regeneration; being born again; [lavacrum ~ => baptism]; + regero_V2 = mkV2 (mkV "regerere" "regero" "regessi" "regestus ") ; -- [XXXDX] :: carry back; throw back; throw back by way of retort; regia_F_N = mkN "regia" ; -- [XXXDX] :: palace, court; residence; regificus_A = mkA "regificus" "regifica" "regificum" ; -- [XXXDX] :: fit for a king; + regigno_V2 = mkV2 (mkV "regignere" "regigno" "regenui" "regenitus ") ; -- [XXXDS] :: beget again; regimen_N_N = mkN "regimen" "regiminis " neuter ; -- [XXXDX] :: control, steering; direction; regina_F_N = mkN "regina" ; -- [XXXAX] :: queen; regio_F_N = mkN "regio" "regionis " feminine ; -- [XXXAX] :: area, region; neighborhood; district, country; direction; @@ -29602,6 +31828,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg regnatrix_A = mkA "regnatrix" "regnatricis"; -- [XXXFS] :: imperial; regno_V = mkV "regnare" ; -- [XXXAX] :: reign, rule; be king; play the lord, be master; regnum_N_N = mkN "regnum" ; -- [XXXAX] :: royal power; power; control; kingdom; + rego_V2 = mkV2 (mkV "regere" "rego" "rexi" "rectus ") ; -- [XXXAX] :: rule, guide; manage, direct; + regredior_V = mkV "regredi" "regredior" "regressus sum " ; -- [XXXBX] :: go back, return, retreat; regressivus_A = mkA "regressivus" "regressiva" "regressivum" ; -- [GXXEK] :: regressive; regressus_M_N = mkN "regressus" "regressus " masculine ; -- [XXXDX] :: going back, return; regula_F_N = mkN "regula" ; -- [XXXBO] :: ruler, straight edge (drawing); basic principle, rule, standard; rod/bar/rail; @@ -29610,6 +31838,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg regulatim_Adv = mkAdv "regulatim" ; -- [FXXFE] :: by way of general rule; according to rule (L+S); regularly (Souter); regulus_M_N = mkN "regulus" ; -- [XXXDX] :: petty king, prince; Regulus (Roman consul captured by Carthaginians); regusto_V2 = mkV2 (mkV "regustare") ; -- [XXXFS] :: retaste; taste again; + rehendo_V2 = mkV2 (mkV "rehendere" "rehendo" "rehendi" "rehensus ") ; -- [XXXDX] :: hold back, seize, catch; blame, reprove; + reicio_V2 = mkV2 (mkV "reicere" "reicio" "rejeci" "rejectus ") ; -- [XXXDX] :: throw back; drive back; repulse, repel; refuse, reject, scorn; reiculus_A = mkA "reiculus" "reicula" "reiculum" ; -- [XXXFS] :: worthless; useless; wasted; reimpressio_F_N = mkN "reimpressio" "reimpressionis " feminine ; -- [GXXEK] :: reprint; reimprimeo_V = mkV "reimprimere" ; -- [GXXEK] :: reprint; @@ -29617,7 +31847,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg rejectaneus_A = mkA "rejectaneus" "rejectanea" "rejectaneum" ; -- [XXXDS] :: rejectable; rejectio_F_N = mkN "rejectio" "rejectionis " feminine ; -- [XXXES] :: throwing-back; rejection; rejecto_V2 = mkV2 (mkV "rejectare") ; -- [XXXFS] :: throw back; --- TODO relanguesco_V : V2 relanguesco, relanguescere, relangui, - -- Declension: 3rd -- Comment: [XXXDX] :: become faint, become weak; sink down; + rejicio_V2 = mkV2 (mkV "rejicere" "rejicio" "rejeci" "rejectus ") ; -- [XXXCS] :: throw back; drive back; repulse, repel; refuse, reject, scorn; + relabor_V = mkV "relabi" "relabor" "relapsus sum " ; -- [XXXDX] :: fall back, vanish; + relanguesco_V2 = mkV2 (mkV "relanguescere" "relanguesco" "relangui" nonExist ) ; -- [XXXDX] :: become faint, become weak; sink down; relapsus_M_N = mkN "relapsus" "relapsus " masculine ; -- [GXXEK] :: relapse; relatio_F_N = mkN "relatio" "relationis " feminine ; -- [XLXAO] :: |reference to standard; retorting on accuser; giving oath in reply; repayment; relationalis_A = mkA "relationalis" "relationalis" "relationale" ; -- [GXXEK] :: relational; @@ -29631,15 +31863,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg relaxo_V = mkV "relaxare" ; -- [XXXDX] :: loosen, widen; relax; relegatio_F_N = mkN "relegatio" "relegationis " feminine ; -- [XXXDX] :: banishment; relego_V = mkV "relegare" ; -- [XXXDX] :: banish, remove; relegate; + relego_V2 = mkV2 (mkV "relegere" "relego" "relegi" "relectus ") ; -- [XXXDX] :: read again, reread; + relentesco_V = mkV "relentescere" "relentesco" nonExist nonExist; -- [XPXFS] :: slacken off; relevium_N_N = mkN "relevium" ; -- [FLXFM] :: relief; E:alms; remnant of meal; relevo_V2 = mkV2 (mkV "relevare") ; -- [XXXBO] :: relieve/alleviate/diminish/lighten; ease/refresh; exonerate; raise; lift (eyes); relictio_F_N = mkN "relictio" "relictionis " feminine ; -- [XXXDS] :: abandoning; relictum_N_N = mkN "relictum" ; -- [XXXDX] :: that which is left/forsaken/abandoned/left untouched; the residue/remaining; --- SLASHSTUFF relictus_A : A2 relictus, relicta -um, relictior -or -us, relictissimus -a -um -- [XXXDX] :: forsaken, abandoned, derelict; left untouched; + relictus_A = mkA "relictus" ; -- [XXXDX] :: forsaken, abandoned, derelict; left untouched; relicum_N_N = mkN "relicum" ; -- [XXXAO] :: |mortal remains (pl.); future, things yet to be, subsequent events; relicus_A = mkA "relicus" "relica" "relicum" ; -- [XXXAO] :: rest of/remaining/available/left; surviving; future/further; yet to be/owed; relicuum_N_N = mkN "relicuum" ; -- [XXXAO] :: |mortal remains (pl.); future, things yet to be, subsequent events; relicuus_A = mkA "relicuus" "relicua" "relicuum" ; -- [XXXAO] :: rest of/remaining/available/left; surviving; future/further; yet to be/owed; + relido_V2 = mkV2 (mkV "relidere" "relido" "relisi" "relisus ") ; -- [XXXCS] :: strike (back); refuse, reject; tear to pieces (Saxo), remove, rub out; destroy; religatio_F_N = mkN "religatio" "religationis " feminine ; -- [XXXFS] :: binding; religio_F_N = mkN "religio" "religionis " feminine ; -- [XXXAO] :: |reverence/respect/awe/conscience/scruples; religion; order of monks/nuns (Bee); religiose_Adv = mkAdv "religiose" ; -- [XXXDX] :: carefully; reverently; conscientiously; @@ -29647,12 +31882,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg religiosus_A = mkA "religiosus" "religiosa" "religiosum" ; -- [XXXAO] :: pious/devout/religious/scrupulous; superstitious; taboo/sacred; reverent/devout; religiosus_M_N = mkN "religiosus" ; -- [XXXCO] :: religious devotee; member of a religious order (Bee); religo_V = mkV "religare" ; -- [XXXDX] :: tie out of the way; bind fast; moor; + relino_V2 = mkV2 (mkV "relinere" "relino" "relinevi" "relinitus ") ; -- [XXXFS] :: unseal; + relinquo_V2 = mkV2 (mkV "relinquere" "relinquo" "reliqui" "relictus ") ; -- [XXXAX] :: leave behind, abandon; (pass.) be left, remain; bequeath; reliquator_M_N = mkN "reliquator" "reliquatoris " masculine ; -- [ELXFS] :: defaulter; one in arrears; reliquia_F_N = mkN "reliquia" ; -- [XXXAO] :: remains/relics (pl.) (esp. post cremation); remnants/traces/vestiges; survivors; reliquum_N_N = mkN "reliquum" ; -- [XXXAO] :: |mortal remains (pl.); future, things yet to be, subsequent events; reliquus_A = mkA "reliquus" "reliqua" "reliquum" ; -- [XXXAO] :: rest of/remaining/available/left; surviving; future/further; yet to be/owed; reluceo_V = mkV "relucere" ; -- [XXXDX] :: shine out; --- TODO relucesco_V : V2 relucesco, relucescere, reluxi, - -- Declension: 3rd -- Comment: [XXXDX] :: grow bright again; + relucesco_V2 = mkV2 (mkV "relucescere" "relucesco" "reluxi" nonExist ) ; -- [XXXDX] :: grow bright again; reluctor_V = mkV "reluctari" ; -- [XXXDX] :: resist, struggle against, make opposition; remaneo_V = mkV "remanere" ; -- [XXXAX] :: stay behind; continue, remain; remano_V = mkV "remanare" ; -- [XXXEC] :: flow back; @@ -29660,16 +31897,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg remedium_N_N = mkN "remedium" ; -- [XXXBX] :: remedy, cure; medicine; rememoratio_F_N = mkN "rememoratio" "rememorationis " feminine ; -- [EXXES] :: remembrance; remeo_V = mkV "remeare" ; -- [XXXDX] :: go or come back, return; + remetior_V = mkV "remetiri" "remetior" "remensus sum " ; -- [XXXDX] :: go back over; remex_M_N = mkN "remex" "remigis " masculine ; -- [XXXDX] :: oarsman, rower; remigatio_F_N = mkN "remigatio" "remigationis " feminine ; -- [XXXFO] :: rowing; oar (Cal); remigium_N_N = mkN "remigium" ; -- [XXXDX] :: rowing, oarage; remigo_V = mkV "remigare" ; -- [XWXCO] :: row, use oars; remigro_V = mkV "remigrare" ; -- [XXXDX] :: move back; return; + reminiscor_V = mkV "reminisci" "reminiscor" nonExist ; -- [XXXDX] :: call to mind, recollect; remisceo_V2 = mkV2 (mkV "remiscere") ; -- [XXXDO] :: mix/mingle in; remix/remingle (L+S); mix up/again; intermingle; remisse_Adv =mkAdv "remisse" "remissius" "remississime" ; -- [XXXAO] :: |half-heartedly/feebly; inattentively; w/laxity of discipline; mildly/leniently; remissio_F_N = mkN "remissio" "remissionis " feminine ; -- [XXXDX] :: sending back/away, returning, releasing; abating; forgiveness; remiss; --- SLASHSTUFF remissus_A : A2 remissus, remissa -um, remissior -or -us, remississimus -a -um -- [XXXAO] :: |lenient, forbearing; moderate, not intense/potent; low (valuation); fever-free; --- TODO remollesco_V : V2 remollesco, remollescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: become soft again; grow soft; + remissus_A = mkA "remissus" ; -- [XXXAO] :: |lenient, forbearing; moderate, not intense/potent; low (valuation); fever-free; + remitto_V2 = mkV2 (mkV "remittere" "remitto" "remisi" "remissus ") ; -- [XXXAX] :: send back, remit; throw back, relax, diminish; + remolior_V = mkV "remoliri" "remolior" "remolitus sum " ; -- [XXXDX] :: push/press/heave back/away; + remollesco_V = mkV "remollescere" "remollesco" nonExist nonExist ; -- [XXXDX] :: become soft again; grow soft; + remollio_V2 = mkV2 (mkV "remollire" "remollio" "remollivi" "remollitus ") ; -- [XXXDS] :: resoften; make soft again; weaken; remora_F_N = mkN "remora" ; -- [XXXDS] :: hindrance; delay; remoramen_N_N = mkN "remoramen" "remoraminis " neuter ; -- [XXXEC] :: delay; remordeo_V = mkV "remordere" ; -- [XXXDX] :: bite back; gnaw, nag; @@ -29677,7 +31919,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg remote_Adv = mkAdv "remote" ; -- [XXXDX] :: far off; at a distance; remotely; distantly; remotus_A = mkA "remotus" "remota" "remotum" ; -- [XXXDX] :: remote; distant, far off; removed, withdrawn; removed/freed from; removeo_V = mkV "removere" ; -- [XXXAX] :: move back; put away; withdraw; remove; --- TODO remugio_V : V2 remugio, remugire, -, - -- Declension: 4th -- Comment: [XXXDX] :: bellow back, moo in reply; resound; + remugio_V = mkV "remugire" "remugio" nonExist nonExist ; -- [XXXDX] :: bellow back, moo in reply; resound; remulceo_V = mkV "remulcere" ; -- [XXXDX] :: stroke/fold back; remulcum_N_N = mkN "remulcum" ; -- [XXXDX] :: tow-rope; remuneratio_F_N = mkN "remuneratio" "remunerationis " feminine ; -- [XXXEO] :: repaying, making payment in return; recompense/reward (L+S); remuneration; @@ -29689,10 +31931,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ren_M_N = mkN "ren" "renis " masculine ; -- [XBXCO] :: kidney(s) (usu. pl.); name of precious stone; (sg. ren not used L+S); renarro_V = mkV "renarrare" ; -- [XXXDX] :: tell over again; renascentia_F_N = mkN "renascentia" ; -- [GXXEK] :: rebirth (time); + renascor_V = mkV "renasci" "renascor" "renatus sum " ; -- [XXXDX] :: be born again, be renewed, be revived; renavigo_V = mkV "renavigare" ; -- [XXXDS] :: sail back; reneo_V2 = mkV2 (mkV "renere") ; -- [XXXDS] :: unspin; undo; renidens_A = mkA "renidens" "renidentis"; -- [XXXDX] :: shining, gleaming; renideo_V = mkV "renidere" ; -- [XXXDX] :: shine (back), gleam; smile back (at); + renidesco_V = mkV "renidescere" "renidesco" nonExist nonExist; -- [XXXDS] :: grow bright; + renitor_V = mkV "reniti" "renitor" "renisus sum " ; -- [XXXDX] :: struggle, offer physical resistance; be resistant (substance), not to yield; + rennuo_V2 = mkV2 (mkV "rennuere" "rennuo" "rennui" "rennutus ") ; -- [XXXCO] :: refuse; disapprove; decline; give a refusal; throw back head/eye/brows as sign; reno_M_N = mkN "reno" "renonis " masculine ; -- [XXXDX] :: reindeer-skin; deerskin garment; fur cloak; renodo_V2 = mkV2 (mkV "renodare") ; -- [XXXDS] :: bind back; tie back; renovamen_N_N = mkN "renovamen" "renovaminis " neuter ; -- [XXXEC] :: renewal; @@ -29703,26 +31949,35 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg renunculus_M_N = mkN "renunculus" ; -- [DXXES] :: little kidney (usu. pl.); renuntiatio_F_N = mkN "renuntiatio" "renuntiationis " feminine ; -- [XXXCO] :: |resignation; withdrawal; renunciation; renuntio_V = mkV "renuntiare" ; -- [XXXDX] :: report, announce; reject; + renuo_V2 = mkV2 (mkV "renuere" "renuo" "renui" "renutus ") ; -- [XXXCO] :: refuse; disapprove; decline; give a refusal; throw back head/eye/brows as sign; renuto_V = mkV "renutare" ; -- [XXXDS] :: refuse; decline; reor_V = mkV "reri" ; -- [XXXAX] :: think, regard; deem; suppose, believe, reckon; repagulum_N_N = mkN "repagulum" ; -- [XXXDX] :: door-bars (pl.); repandus_A = mkA "repandus" "repanda" "repandum" ; -- [XXXDX] :: spread out, flattened back; reparabilis_A = mkA "reparabilis" "reparabilis" "reparabile" ; -- [XXXDX] :: capable of being recovered or restored; reparatio_F_N = mkN "reparatio" "reparationis " feminine ; -- [DXXES] :: restoration; renewal; + reparco_V2 = mkV2 (mkV "reparcere" "reparco" nonExist nonExist) ; -- [XXXDS] :: spare; be sparing; restrain; reparo_V = mkV "reparare" ; -- [XXXBX] :: prepare again; renew, revive; repastinatio_F_N = mkN "repastinatio" "repastinationis " feminine ; -- [XXXEC] :: digging up again; repatrio_F_N = mkN "repatrio" "repatrionis " feminine ; -- [DXXES] :: return to one's country; go home again; + repecto_V2 = mkV2 (mkV "repectere" "repecto" "repexi" "repexus ") ; -- [XXXEO] :: comb back; repedo_V = mkV "repedare" ; -- [XXXEO] :: return, go back; retire; + repello_V2 = mkV2 (mkV "repellere" "repello" "repuli" "repulsus ") ; -- [EXXDO] :: drive/push/thrust back/away; repel/rebuff/spurn; fend off; exclude/bar; refute; + rependo_V2 = mkV2 (mkV "rependere" "rependo" "rependi" "repensus ") ; -- [XXXDX] :: weigh/balance (against); weigh out/pat in return; purchase, compensate; repens_A = mkA "repens" "repentis"; -- [XXXDX] :: sudden, unexpected; repente_Adv = mkAdv "repente" ; -- [XXXBX] :: suddenly, unexpectedly; repentinus_A = mkA "repentinus" "repentina" "repentinum" ; -- [XXXDX] :: sudden, hasty; unexpected; + reperco_V2 = mkV2 (mkV "repercere" "reperco" "repersi" nonExist) ; -- [XXXEC] :: spare, be sparing, abstain; repercussio_F_N = mkN "repercussio" "repercussionis " feminine ; -- [XXXES] :: rebounding; repercussion; repercussus_M_N = mkN "repercussus" "repercussus " masculine ; -- [XXXDS] :: reverberation; reflection; echo; + repercutio_V2 = mkV2 (mkV "repercutere" "repercutio" "repercussi" "repercussus ") ; -- [XXXDX] :: cause to rebound, reflect, strike against; + reperio_V2 = mkV2 (mkV "reperire" "reperio" "repperi" "repertus ") ; -- [XXXAO] :: discover, learn; light on; find/obtain/get; find out/to be, get to know; invent; repertor_M_N = mkN "repertor" "repertoris " masculine ; -- [XXXDX] :: discoverer, inventor, author; repertum_N_N = mkN "repertum" ; -- [XXXEO] :: discovery; invention; finding again (L+S); repetitio_F_N = mkN "repetitio" "repetitionis " feminine ; -- [XXXDX] :: repetition; repetitor_M_N = mkN "repetitor" "repetitoris " masculine ; -- [XXXFS] :: reclaimer; one who reclaims; repetitus_A = mkA "repetitus" "repetita" "repetitum" ; -- [XXXDS] :: repeated; + repeto_V2 = mkV2 (mkV "repetere" "repeto" "repetivi" "repetitus ") ; -- [XXXAX] :: return to; get back; demand back/again; repeat; recall; claim; repetunda_F_N = mkN "repetunda" ; -- [XXXDX] :: recovery (pl.) of extorted money; replebilis_A = mkA "replebilis" "replebilis" "replebile" ; -- [GXXEK] :: refillable; replegio_V = mkV "replegiare" ; -- [FLXFJ] :: bail (person); recover security taken for court appearance; @@ -29730,27 +31985,33 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg repletus_A = mkA "repletus" "repleta" "repletum" ; -- [XXXDX] :: full (of); replico_V2 = mkV2 (mkV "replicare") ; -- [FXXEV] :: repeat; turn/fold/bend back (on); unroll, unwind; go over and over; replum_N_N = mkN "replum" ; -- [FXXEK] :: frame; + repo_V2 = mkV2 (mkV "repere" "repo" "repsi" "reptus ") ; -- [XXXDX] :: creep, crawl; + repono_V2 = mkV2 (mkV "reponere" "repono" "reposui" "repositus ") ; -- [XXXBX] :: put back; restore; store; repeat; reporto_V = mkV "reportare" ; -- [XXXBX] :: carry back; report; --- TODO reposco_V : V2 reposco, reposcere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: demand back; claim as one's due; + reposco_V = mkV "reposcere" "reposco" nonExist nonExist ; -- [XXXDX] :: demand back; claim as one's due; repositorium_N_N = mkN "repositorium" ; -- [FXXEK] :: servicing, small table of service; repositus_A = mkA "repositus" "reposita" "repositum" ; -- [XXXDO] :: remote, out of the way; repostor_M_N = mkN "repostor" "repostoris " masculine ; -- [XXXEC] :: restorer; repostus_A = mkA "repostus" "reposta" "repostum" ; -- [XXXDO] :: remote, out of the way; repotium_N_N = mkN "repotium" ; -- [XXXDX] :: drinking (pl.), raveling; + repperio_V2 = mkV2 (mkV "repperire" "repperio" "repperi" "reppertus ") ; -- [XXXAO] :: discover, learn; light on; find/obtain/get; find out/to be, get to know; invent; reppertum_N_N = mkN "reppertum" ; -- [DXXEO] :: discovery; invention; finding again (L+S); repraesentativus_A = mkA "repraesentativus" "repraesentativa" "repraesentativum" ; -- [GXXEK] :: representative; repraesento_V = mkV "repraesentare" ; -- [XXXDX] :: represent, depict; show, exhibit, display; manifest; pay down, pay in cash; + reprehendo_V2 = mkV2 (mkV "reprehendere" "reprehendo" "reprehendi" "reprehensus ") ; -- [XXXDX] :: hold back, seize, catch; blame; reprehensibilis_A = mkA "reprehensibilis" "reprehensibilis" "reprehensibile" ; -- [XXXEO] :: reprehensible, blameworthy, open to censure; (people/conduct); reprehensio_F_N = mkN "reprehensio" "reprehensionis " feminine ; -- [XXXBO] :: blame/reprimand/criticism; censuring/finding fault; refutation; self-correction; reprehenso_V2 = mkV2 (mkV "reprehensare") ; -- [XXXDS] :: blamer; critic; reprensio_F_N = mkN "reprensio" "reprensionis " feminine ; -- [XXXBO] :: blame/reprimand/criticism; censuring/finding fault; refutation; self-correction; repressor_M_N = mkN "repressor" "repressoris " masculine ; -- [XXXFS] :: restrainer; one who restrains; + reprimo_V2 = mkV2 (mkV "reprimere" "reprimo" "repressi" "repressus ") ; -- [XXXDX] :: press back, repress; check, prevent, restrain; reprobatio_F_N = mkN "reprobatio" "reprobationis " feminine ; -- [XEXES] :: rejection; reprobation; reprobo_V2 = mkV2 (mkV "reprobare") ; -- [XXXEO] :: condemn; reject; reprobus_A = mkA "reprobus" "reproba" "reprobum" ; -- [XXXEO] :: base, rejected; rejected/condemned as below standard; reproductio_F_N = mkN "reproductio" "reproductionis " feminine ; -- [GXXEK] :: reproduction (of the living beings); repromissio_F_N = mkN "repromissio" "repromissionis " feminine ; -- [XXXDO] :: formal promise/guarantee/undertaking; repromissum_N_N = mkN "repromissum" ; -- [XXXIO] :: formal promise/guarantee/undertaking; + repromitto_V2 = mkV2 (mkV "repromittere" "repromitto" "repromisi" "repromissus ") ; -- [XLXCO] :: guarantee, give one's word; promise (do/give, that); give formal undertaking; reptatus_A = mkA "reptatus" "reptata" "reptatum" ; -- [XXXES] :: crawled/crept through; reptatus_M_N = mkN "reptatus" "reptatus " masculine ; -- [XXXFO] :: act of crawling; reptile_N_N = mkN "reptile" "reptilis " neuter ; -- [DAXES] :: reptile; @@ -29760,58 +32021,71 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg repudiatio_F_N = mkN "repudiatio" "repudiationis " feminine ; -- [XXXES] :: rejection; refusal; repudio_V = mkV "repudiare" ; -- [XXXDX] :: reject; repudiate; scorn; repudium_N_N = mkN "repudium" ; -- [XXXDX] :: repudiation/rejection of prospective spouse, notification of; divorce; + repuerasco_V = mkV "repuerascere" "repuerasco" nonExist nonExist; -- [XXXEC] :: become a boy again; frolic; repugnantia_F_N = mkN "repugnantia" ; -- [FXXFS] :: resistance, opposition; contradiction; repugnance; repugno_V = mkV "repugnare" ; -- [XXXDX] :: fight back, oppose; be incompatible with; disagree with; repulsa_F_N = mkN "repulsa" ; -- [XXXDX] :: electoral defeat; rebuff; repulsivus_A = mkA "repulsivus" "repulsiva" "repulsivum" ; -- [GXXEK] :: repulsive; repulso_V = mkV "repulsare" ; -- [XXXDX] :: drive back; reject; repulsus_M_N = mkN "repulsus" "repulsus " masculine ; -- [XXXDS] :: reverberation; reflection; echo; + repungo_V2 = mkV2 (mkV "repungere" "repungo" "repepugi" "repunctus ") ; -- [XXXFS] :: reprod; prod again; repuo_V = mkV "repuare" ; -- [FXXEN] :: reject; repurgo_V2 = mkV2 (mkV "repurgare") ; -- [XXXDS] :: recleanse; clear again; purge away; reputatio_F_N = mkN "reputatio" "reputationis " feminine ; -- [XXXEZ] :: pondering over (Collins); reputo_V = mkV "reputare" ; -- [XXXDX] :: think over, reflect; requies_F_N = mkN "requies" "requietis " feminine ; -- [XXXBO] :: rest (from labor), respite; intermission, pause, break; amusement, hobby; + requiesco_V2 = mkV2 (mkV "requiescere" "requiesco" "requievi" "requietus ") ; -- [XXXBX] :: quiet down; rest; end; requietio_F_N = mkN "requietio" "requietionis " feminine ; -- [XXXIO] :: rest; repose; requietus_A = mkA "requietus" "requieta" "requietum" ; -- [XXXDX] :: rested; improved by lying fallow; requirito_V2 = mkV2 (mkV "requiritare") ; -- [BXXFS] :: inquire repeatedly; keep asking after; + requiro_V2 = mkV2 (mkV "requirere" "requiro" "requisivi" "requisitus ") ; -- [XXXAX] :: require, seek, ask for; need; miss, pine for; res_F_N = mkN "res" "rei " feminine ; -- [XXXAX] :: thing; event/affair/business; fact; cause; property; [~ familiaris => property]; --- IGNORED res_N : N1 res, undeclined -- N -- [DEQEW] :: res; (20th letter of Hebrew alphabet); (transliterate as R); + res_N = constN "res" neuter ; -- [DEQEW] :: res; (20th letter of Hebrew alphabet); (transliterate as R); resacro_V = mkV "resacrare" ; -- [XXXEC] :: implore again and again; free from a curse; + resaevio_V = mkV "resaevire" "resaevio" nonExist nonExist; -- [XPXFS] :: rage again; resaluto_V2 = mkV2 (mkV "resalutare") ; -- [XXXDS] :: greet back; greet in return; --- TODO resanesco_V : V2 resanesco, resanescere, resanui, - -- Declension: 3rd -- Comment: [XXXDX] :: be healed; + resanesco_V2 = mkV2 (mkV "resanescere" "resanesco" "resanui" nonExist ) ; -- [XXXDX] :: be healed; + resarcio_V2 = mkV2 (mkV "resarcire" "resarcio" "resarsi" "resartus ") ; -- [XXXCO] :: restore, make good (loss); mend, repair (something damaged); + rescindo_V2 = mkV2 (mkV "rescindere" "rescindo" "rescidi" "rescissus ") ; -- [XXXDX] :: cut out; cut down, destroy; annul; rescind; + rescisco_V2 = mkV2 (mkV "resciscere" "rescisco" "rescivi" "rescitus ") ; -- [XXXDX] :: learn, find out, ascertain; bring to light; + rescribo_V2 = mkV2 (mkV "rescribere" "rescribo" "rescripsi" "rescriptus ") ; -- [XXXDX] :: write back in reply; reseantia_F_N = mkN "reseantia" ; -- [FXXFM] :: residence; reseantisa_F_N = mkN "reseantisa" ; -- [FXXFM] :: residence; reseco_V = mkV "resecare" ; -- [XXXDX] :: cut back, trim; reap, cut short; resecro_V = mkV "resecrare" ; -- [XXXEC] :: implore again and again; free from a curse; resemino_V = mkV "reseminare" ; -- [XXXDX] :: reproduce; + resequor_V = mkV "resequi" "resequor" "resecutus sum " ; -- [XXXDX] :: reply to; resero_V = mkV "reserare" ; -- [XXXBX] :: open up, unseal, unbar (gate/door), unfasten; make accessible; uncover, expose; reservo_V = mkV "reservare" ; -- [XXXDX] :: reserve; spare; hold on to; reses_A = mkA "reses" "residis"; -- [XXXDX] :: motionless, inactive, idle, sluggish; residentia_F_N = mkN "residentia" ; -- [FXXFM] :: residence; residentialis_A = mkA "residentialis" "residentialis" "residentiale" ; -- [GXXFE] :: residential; resideo_V = mkV "residere" ; -- [XXXBO] :: |abate/subside; be left over/retained, persist/stay; fall back; W:be encamped; --- TODO resido_V : V2 resido, residere, residi, - -- Declension: 3rd -- Comment: [XXXAX] :: sit down; settle; abate; subside, quieten down; + resido_V2 = mkV2 (mkV "residere" "resido" "residi" nonExist ) ; -- [XXXAX] :: sit down; settle; abate; subside, quieten down; residuus_A = mkA "residuus" "residua" "residuum" ; -- [XXXDX] :: remaining (to be done); lingering, persisting, surviving; left over; surplus; resignatio_F_N = mkN "resignatio" "resignationis " feminine ; -- [GXXEK] :: resignation; resigno_V = mkV "resignare" ; -- [XXXDX] :: unseal; open; resign; --- TODO resilio_V : V2 resilio, resilire, resilui, - -- Declension: 4th -- Comment: [XXXDX] :: leap or spring back; recoil; rebound; shrink (back again); + resilio_V2 = mkV2 (mkV "resilire" "resilio" "resilui" nonExist ) ; -- [XXXDX] :: leap or spring back; recoil; rebound; shrink (back again); resimus_A = mkA "resimus" "resima" "resimum" ; -- [XXXDX] :: turned up, snub; resina_F_N = mkN "resina" ; -- [XAXCO] :: resin (solid/liquid); (product secreted by various trees); resinaceus_A = mkA "resinaceus" "resinacea" "resinaceum" ; -- [XAXFO] :: resinous, having the qualities of resin; resinaria_F_N = mkN "resinaria" ; -- [XAXIO] :: woman who sells/prepares resin; resinosus_A = mkA "resinosus" "resinosa" "resinosum" ; -- [XXXFS] :: resinous; resipicentia_F_N = mkN "resipicentia" ; -- [XXXES] :: change of mind; reformation; repentance; --- TODO resipio_V : V2 resipio, resipere, -, - -- Declension: 3rd -- Comment: [XXXEC] :: have flavor of anything; --- TODO resipisco_V : V2 resipisco, resipiscere, resipui, - -- Declension: 3rd -- Comment: [XXXDX] :: become reasonable again; recover/come to the senses, come to, revive, recover; --- TODO resisto_V : V2 resisto, resistere, restiti, - -- Declension: 3rd -- Comment: [XXXBX] :: pause; continue; resist, oppose; reply; withstand, stand (DAT); make a stand; + resipio_V = mkV "resipere" "resipio" nonExist nonExist ; -- [XXXEC] :: have flavor of anything; + resipisco_V2 = mkV2 (mkV "resipiscere" "resipisco" "resipui" nonExist ) ; -- [XXXDX] :: become reasonable again; recover/come to the senses, come to, revive, recover; + resisto_V2 = mkV2 (mkV "resistere" "resisto" "restiti" nonExist ) ; -- [XXXBX] :: pause; continue; resist, oppose; reply; withstand, stand (DAT); make a stand; resolutio_F_N = mkN "resolutio" "resolutionis " feminine ; -- [XBXCO] :: |untying/unfastening; unraveling/solution/resolution/solving (of a puzzle); + resolvo_V2 = mkV2 (mkV "resolvere" "resolvo" "resolvi" "resolutus ") ; -- [XXXBX] :: loosen, release, disperse, melt; relax; pay; enervate, pay back; break up; resonabilis_A = mkA "resonabilis" "resonabilis" "resonabile" ; -- [XPXDS] :: resounding; resono_V = mkV "resonare" ; -- [XXXBX] :: resound; resonus_A = mkA "resonus" "resona" "resonum" ; -- [XXXDX] :: echoing; resorbeo_V = mkV "resorbere" ; -- [XXXDX] :: swallow down; respecto_V = mkV "respectare" ; -- [XXXDX] :: keep on looking round or back; await; have regard for; respectus_M_N = mkN "respectus" "respectus " masculine ; -- [XXXDX] :: looking back (at); refuge, regard, consideration (for); + respergo_V2 = mkV2 (mkV "respergere" "respergo" "respersi" "respersus ") ; -- [XXXDX] :: sprinkle, spatter; respersio_F_N = mkN "respersio" "respersionis " feminine ; -- [XXXDS] :: sprinkling; + respicio_V2 = mkV2 (mkV "respicere" "respicio" "respexi" "respectus ") ; -- [XXXAX] :: look back at; gaze at; consider; respect; care for, provide for; respiramen_N_N = mkN "respiramen" "respiraminis " neuter ; -- [XXXDX] :: means or channel of breathing; respiratio_F_N = mkN "respiratio" "respirationis " feminine ; -- [XXXDX] :: taking of breath; respiratus_M_N = mkN "respiratus" "respiratus " masculine ; -- [XXXDS] :: inhaling; inspiration; @@ -29828,33 +32102,42 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg responsoria_F_N = mkN "responsoria" ; -- [FEXEQ] :: responsory; (OED); response, repetitions; responsorium_N_N = mkN "responsorium" ; -- [DEXES] :: response; responsory; repetitive reply; repetitions (pl.) in vocal worship; responsum_N_N = mkN "responsum" ; -- [XXXBX] :: answer, response; + respuo_V2 = mkV2 (mkV "respuere" "respuo" "respui" nonExist) ; -- [XXXDX] :: reject, spit, spew out; turn away, repel; reject, destain, spurn, refuse; restagno_V = mkV "restagnare" ; -- [XXXDX] :: overflow; be covered with flood-water; restat_V0 = mkV0 "restat" ; -- [XXXDX] :: it remains to; it remains standing; restauro_V2 = mkV2 (mkV "restaurare") ; -- [XXXCO] :: restore (condition); rebuild; bring back, re-establish, take up again; renew; resticula_F_N = mkN "resticula" ; -- [XXXEC] :: thin rope; restinctio_F_N = mkN "restinctio" "restinctionis " feminine ; -- [XXXFS] :: quenching; + restinguo_V2 = mkV2 (mkV "restinguere" "restinguo" "restinxi" "restinctus ") ; -- [XXXDX] :: extinguish, quench, put out; exterminate, destroy; assuage, allay, mitigate; restio_M_N = mkN "restio" "restionis " masculine ; -- [FXXES] :: rope-maker; restipulatio_F_N = mkN "restipulatio" "restipulationis " feminine ; -- [XXXDS] :: counterobligation; restipulor_V = mkV "restipulari" ; -- [XXXCO] :: demand (from the stipulator) a counter-guarantee; (w/ACC of thing guaranteed); restis_F_N = mkN "restis" "restis " feminine ; -- [XXXDX] :: rope, cord; restito_V = mkV "restitare" ; -- [XXXDS] :: stay behind; hesitate; + restituo_V2 = mkV2 (mkV "restituere" "restituo" "restitui" "restitutus ") ; -- [XXXBX] :: restore; revive; bring back; make good; restitutio_F_N = mkN "restitutio" "restitutionis " feminine ; -- [XXXDX] :: rebuilding; reinstatement; restitutor_M_N = mkN "restitutor" "restitutoris " masculine ; -- [XXXCO] :: restorer, rebuilder, one who restores to health/revives/reinstates (an exile); restitutorius_A = mkA "restitutorius" "restitutoria" "restitutorium" ; -- [XLXCO] :: restoratory; restitutory; concerned with restoring status quo/initial position; resto_V = mkV "restare" ; -- [XXXBX] :: stand firm; stay behind; be left, be left over; remain; restrictivus_A = mkA "restrictivus" "restrictiva" "restrictivum" ; -- [GXXEK] :: restraining; --- SLASHSTUFF restrictus_A : A2 restrictus, restricta -um, restrictior -or -us, restrictissimus -a -um -- [XXXEX] :: tight; short; niggardly; severe (Collins); + restrictus_A = mkA "restrictus" ; -- [XXXEX] :: tight; short; niggardly; severe (Collins); + restringo_V2 = mkV2 (mkV "restringere" "restringo" "restrinxi" "restrictus ") ; -- [XXXDX] :: draw tight; fasten behind one, tie up; resulto_V = mkV "resultare" ; -- [XXXDX] :: reverberate, resound; re-echo; rebound, spring back; resummonitio_F_N = mkN "resummonitio" "resummonitionis " feminine ; -- [FLXFJ] :: re-summons; + resumo_V2 = mkV2 (mkV "resumere" "resumo" "resumpsi" "resumptus ") ; -- [XXXBX] :: pick up again; resume; recover; resupinus_A = mkA "resupinus" "resupina" "resupinum" ; -- [XXXDX] :: lying on one's back; + resurgo_V2 = mkV2 (mkV "resurgere" "resurgo" "resurrexi" "resurrectus ") ; -- [XXXBX] :: rise/appear again; rare up again, lift oneself, be restored/rebuilt, revive; resurrectio_F_N = mkN "resurrectio" "resurrectionis " feminine ; -- [EEXDX] :: resurrection, rising again; resuscito_V = mkV "resuscitare" ; -- [XXXDX] :: rouse again, reawaken; retardatio_F_N = mkN "retardatio" "retardationis " feminine ; -- [XXXDS] :: hindering; retardo_V = mkV "retardare" ; -- [XXXDX] :: delay, hold up; rete_N_N = mkN "rete" "retis " neuter ; -- [XXXDX] :: net, snare; + retego_V2 = mkV2 (mkV "retegere" "retego" "retexi" "retectus ") ; -- [XXXDX] :: uncover, lay bare, reveal, disclose; retempto_V2 = mkV2 (mkV "retemptare") ; -- [XXXDS] :: reattempt; try again; (=retento); + retendo_V2 = mkV2 (mkV "retendere" "retendo" "retendi" "retentus ") ; -- [XXXDO] :: slacken; relax; unbend (bow); free from tension; hold back (?); retentio_F_N = mkN "retentio" "retentionis " feminine ; -- [XLXCO] :: restraining/holding back; retention/holding against loss; withholding (payment); retento_V2 = mkV2 (mkV "retentare") ; -- [XXXCO] :: hold fast/back, keep hold of; restrain/detain, keep in check/place; retain; + retexo_V2 = mkV2 (mkV "retexere" "retexo" "retexui" "retextus ") ; -- [XXXBO] :: undo/reverse/cancel; retrace/go back over; retract; unravel/unweave; break down; retiaculum_N_N = mkN "retiaculum" ; -- [XXXCS] :: small (fish) net; small mesh bag; hair net; some sort of undergarment; network; retiarius_M_N = mkN "retiarius" ; -- [XXXDO] :: net-fighter in the arena; reticeo_V = mkV "reticere" ; -- [XXXCO] :: keep silent; give no reply; refrain from speaking/mentioning; leave unsaid; @@ -29872,45 +32155,58 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg retorta_F_N = mkN "retorta" ; -- [GSXEK] :: retort (chemistry); retracto_V = mkV "retractare" ; -- [XXXDX] :: undertake anew; draw back, be reluctant; reconsider; withdraw; retractus_A = mkA "retractus" "retracta" "retractum" ; -- [XXXDS] :: remote; + retraho_V2 = mkV2 (mkV "retrahere" "retraho" "retraxi" "retractus ") ; -- [XXXDX] :: draw back, withdraw; make known again, divert; bring back; retrecto_V = mkV "retrectare" ; -- [XXXDS] :: undertake anew; draw back, be reluctant; reconsider; withdraw; (= retracto); + retribuo_V2 = mkV2 (mkV "retribuere" "retribuo" "retribui" "retributus ") ; -- [XXXCO] :: hand back duly (money owed); recompense (Vulgate); render; reward; retributio_F_N = mkN "retributio" "retributionis " feminine ; -- [DEXDS] :: retribution, recompense/repayment; punishment (Souter); reward (from judgment); retro_Adv = mkAdv "retro" ; -- [XXXBX] :: backwards, back, to the rear; behind, on the back side; back (time), formerly; + retroago_V2 = mkV2 (mkV "retroagere" "retroago" "retroegi" "retroactus ") ; -- [XXXEC] :: drive back, reverse; retrogradatio_F_N = mkN "retrogradatio" "retrogradationis " feminine ; -- [EXXES] :: going-back; retrorsum_Adv = mkAdv "retrorsum" ; -- [XXXDX] :: back, backwards; in reverse order; retrorsus_Adv = mkAdv "retrorsus" ; -- [XXXDX] :: back, backwards; in reverse order; retroscopicus_A = mkA "retroscopicus" "retroscopica" "retroscopicum" ; -- [GXXEK] :: back-viewing; retrospective_Adv = mkAdv "retrospective" ; -- [GXXEK] :: retrospectively; retrospectivus_A = mkA "retrospectivus" "retrospectiva" "retrospectivum" ; -- [GXXEK] :: retrospective; + retrotraho_V2 = mkV2 (mkV "retrotrahere" "retrotraho" "retrotraxi" "retrotractus ") ; -- [FLXFM] :: refer back; retroversus_Adv = mkAdv "retroversus" ; -- [XXXDX] :: back, backwards; in reverse order; --- SLASHSTUFF retunsus_A : A2 retunsus, retunsa -um, retunsior -or -us, retunsissimus -a -um -- [XXXCS] :: blunt, dull; --- SLASHSTUFF retusus_A : A2 retusus, retusa -um, retusior -or -us, retusissimus -a -um -- [XXXCS] :: blunt, dull; + retundo_V2 = mkV2 (mkV "retundere" "retundo" "retudi" "retusus ") ; -- [XXXDX] :: blunt; weaken; repress, quell; + retunsus_A = mkA "retunsus" ; -- [XXXCS] :: blunt, dull; + retusus_A = mkA "retusus" ; -- [XXXCS] :: blunt, dull; reubarbarum_N_N = mkN "reubarbarum" ; -- [GAXEK] :: rhubarb; reus_A = mkA "reus" "rea" "reum" ; -- [FLXEL] :: liable to (penalty of); guilty; [mens rea => guilty mind (modern legal term)]; reus_M_N = mkN "reus" ; -- [XLXAO] :: party in law suit; plaintiff/defendant; culprit/guilty party, debtor; sinner; --- TODO revalesco_V : V2 revalesco, revalescere, revalui, - -- Declension: 3rd -- Comment: [XXXDX] :: grow well again; + revalesco_V2 = mkV2 (mkV "revalescere" "revalesco" "revalui" nonExist ) ; -- [XXXDX] :: grow well again; + reveho_V2 = mkV2 (mkV "revehere" "reveho" "revexi" "revectus ") ; -- [XXXDX] :: carry/bring back; ride/sail back (PASS); revelatio_F_N = mkN "revelatio" "revelationis " feminine ; -- [EEXDS] :: revelation; uncovering, laying bare; Revelation of St. John; + revello_V2 = mkV2 (mkV "revellere" "revello" "revulsi" "revolsus ") ; -- [XXXBO] :: |raise/pull up (skin); pluck away/loose (L+S); open (vein); violate/disturb; revelo_V = mkV "revelare" ; -- [XXXDX] :: show; reveal; + revenio_V2 = mkV2 (mkV "revenire" "revenio" "reveni" "reventus ") ; -- [XXXDX] :: come back, return; revera_Adv = mkAdv "revera" ; -- [XXXCO] :: in fact; in reality, actually; [re vera => true thing]; reverberatio_F_N = mkN "reverberatio" "reverberationis " feminine ; -- [XXXEF] :: reverberation; reflecting/reflection of light/heat; reverberatus_A = mkA "reverberatus" "reverberata" "reverberatum" ; -- [XXXFF] :: beaten back; struck; reverbero_V2 = mkV2 (mkV "reverberare") ; -- [XXXCO] :: beat back; repel (violently from a surface); --- SLASHSTUFF reverendus_A : A2 reverendus, reverenda -um, reverendior -or -us, reverendissimus -a -um -- [XPXDS] :: awe-inspiring; venerable; + reverendus_A = mkA "reverendus" ; -- [XPXDS] :: awe-inspiring; venerable; reverens_A = mkA "reverens" "reverentis"; -- [XXXCO] :: reverent; feeling /showing restraint before superiors; shy/apprehensive/uneasy; reverenter_Adv =mkAdv "reverenter" "reverentius" "reverentissime" ; -- [XXXDO] :: reverently, with religious awe; respectfully, with deference/consideration; reverentia_F_N = mkN "reverentia" ; -- [XXXBO] :: respect, deference, restraint; awe, reverence; shyness, felling of misgiving; revereor_V = mkV "revereri" ; -- [XXXDX] :: respect, stand in awe of, honor, fear; reverence, revere, venerate; reversio_F_N = mkN "reversio" "reversionis " feminine ; -- [XXXCO] :: return, reversing/turning back; coming around again; reversal of natural order; --- TODO reverto_V : V2 reverto, revertere, reverti, - -- Declension: 3rd -- Comment: [XXXAX] :: turn back, go back, return; recur (usually DEP); --- TODO reviresco_V : V2 reviresco, revirescere, revirui, - -- Declension: 3rd -- Comment: [XXXDX] :: grow green again; grow strong or young again; --- TODO reviso_V : V2 reviso, revisere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: revisit, go back and see; --- TODO revivisco_V : V2 revivisco, reviviscere, revivixi, - -- Declension: 3rd -- Comment: [XXXDX] :: come to life again, revive (in spirit); + reverto_V2 = mkV2 (mkV "revertere" "reverto" "reverti" nonExist ) ; -- [XXXAX] :: turn back, go back, return; recur (usually DEP); + revertor_V = mkV "reverti" "revertor" "reversus sum " ; -- [XXXDX] :: turn back, go back, return; recur; + revincio_V2 = mkV2 (mkV "revincire" "revincio" "revinxi" "revinctus ") ; -- [XXXDX] :: bind fast, fasten; + revinco_V2 = mkV2 (mkV "revincere" "revinco" "revici" "revictus ") ; -- [XXXDX] :: conquer, crush, disprove; + reviresco_V2 = mkV2 (mkV "revirescere" "reviresco" "revirui" nonExist ) ; -- [XXXDX] :: grow green again; grow strong or young again; + reviso_V = mkV "revisere" "reviso" nonExist nonExist ; -- [XXXDX] :: revisit, go back and see; + revivisco_V2 = mkV2 (mkV "reviviscere" "revivisco" "revivixi" nonExist ) ; -- [XXXDX] :: come to life again, revive (in spirit); + revivo_V = mkV "revivere" "revivo" "revixi" "revictus "; -- [DXXES] :: live again; revocabilis_A = mkA "revocabilis" "revocabilis" "revocabile" ; -- [XXXDX] :: capable of being revoked or retracted; revocamen_N_N = mkN "revocamen" "revocaminis " neuter ; -- [XXXDX] :: summons to return; revoco_V = mkV "revocare" ; -- [XXXAX] :: call back, recall; revive; regain; revolo_V = mkV "revolare" ; -- [XXXDX] :: fly back; revolubilis_A = mkA "revolubilis" "revolubilis" "revolubile" ; -- [XXXDX] :: that may be rolled back to the beginning; rolling backward; revolutio_F_N = mkN "revolutio" "revolutionis " feminine ; -- [DXXES] :: revolution, rotation, revolving, turning, turn; --- TODO revomo_V : V2 revomo, revomere, revomui, - -- Declension: 3rd -- Comment: [XXXDX] :: vomit up again, spew out; + revolvo_V2 = mkV2 (mkV "revolvere" "revolvo" "revolvi" "revolutus ") ; -- [XXXBX] :: throw back, roll back; + revomo_V2 = mkV2 (mkV "revomere" "revomo" "revomui" nonExist ) ; -- [XXXDX] :: vomit up again, spew out; rex_M_N = mkN "rex" "regis " masculine ; -- [XLXAX] :: king; rhagadis_F_N = mkN "rhagadis" "rhagadis " feminine ; -- [DBXNS] :: body-sore (Pliny); rhagadium_N_N = mkN "rhagadium" ; -- [DBXNS] :: body-sore (Pliny); @@ -29920,8 +32216,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg rhetorice_F_N = mkN "rhetorice" "rhetorices " feminine ; -- [XXXEO] :: rhetoric; art of oratory; systematized art of public speaking; rhetoricus_A = mkA "rhetoricus" "rhetorica" "rhetoricum" ; -- [XXXDX] :: of rhetoric, rhetorical; rheumatismus_M_N = mkN "rheumatismus" ; -- [XBXES] :: catarrh; rheum; --- TODO rhinoceros_N : N1 rhinoceros, rhinocerotos/is -- M -- [XAXCO] :: rhinoceros (African or Indian); rhinoceros horn oil-flask; --- IGNORED rho_N : N1 rho, undeclined -- N -- [XGXEC] :: Greek name of the letter R; + rhinoceros_1_N = mkN "rhinoceros" "rhinocerotis" masculine ; -- [XAXCO] :: rhinoceros (African or Indian); rhinoceros horn oil-flask; + rhinoceros_2_N = mkN "rhinoceros" "rhinocerotos" masculine ; -- [XAXCO] :: rhinoceros (African or Indian); rhinoceros horn oil-flask; + rho_N = constN "rho" neuter ; -- [XGXEC] :: Greek name of the letter R; rhododendron_N_N = mkN "rhododendron" "rhododendri " neuter ; -- [DAXNS] :: rose-bay; oleander (Pliny); rhombus_M_N = mkN "rhombus" ; -- [XXXDX] :: turbot (fish), flatfish; magician's circle; rhomium_N_N = mkN "rhomium" ; -- [GXXEK] :: rum; @@ -29954,7 +32251,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg rigatio_F_N = mkN "rigatio" "rigationis " feminine ; -- [XXXDS] :: watering; rigens_A = mkA "rigens" "rigentis"; -- [DXXDS] :: stiff; rigid; frozen; rigeo_V = mkV "rigere" ; -- [XXXDX] :: be stiff or numb; stand on end; be solidified; --- TODO rigesco_V : V2 rigesco, rigescere, rigui, - -- Declension: 3rd -- Comment: [XXXDX] :: grow stiff or numb; stiffen harden; + rigesco_V2 = mkV2 (mkV "rigescere" "rigesco" "rigui" nonExist ) ; -- [XXXDX] :: grow stiff or numb; stiffen harden; rigidus_A = mkA "rigidus" "rigida" "rigidum" ; -- [XXXBX] :: stiff, hard; stern; rough; rigo_V = mkV "rigare" ; -- [XXXDX] :: moisten, wet, water, irrigate; rigor_M_N = mkN "rigor" "rigoris " masculine ; -- [XXXDX] :: stiffness, rigidity, coldness, numbness, hardness; inflexibility; severity; @@ -29963,7 +32260,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg rimor_V = mkV "rimari" ; -- [XXXDX] :: probe, search; rummage about for, examine, explore; rimosus_A = mkA "rimosus" "rimosa" "rimosum" ; -- [XXXDX] :: full of cracks or fissures; ringa_F_N = mkN "ringa" ; -- [FWXEM] :: sword-belt; ring; hoop; --- TODO rinoceros_N : N1 rinoceros, rinocerotos/is -- M -- [XAXCO] :: rhinoceros (African or Indian); rhinoceros horn oil-flask; + ringor_V = mkV "ringi" "ringor" nonExist ; -- [XXXEC] :: snarl, show the teeth; be angry; + rinoceros_1_N = mkN "rinoceros" "rinocerotis" masculine ; -- [XAXCO] :: rhinoceros (African or Indian); rhinoceros horn oil-flask; + rinoceros_2_N = mkN "rinoceros" "rinocerotos" masculine ; -- [XAXCO] :: rhinoceros (African or Indian); rhinoceros horn oil-flask; ripa_F_N = mkN "ripa" ; -- [XXXAX] :: bank; ripensis_A = mkA "ripensis" "ripensis" "ripense" ; -- [EXXFS] :: on river-bank; ripula_F_N = mkN "ripula" ; -- [XXXEC] :: little bank; @@ -29997,7 +32296,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg robureus_A = mkA "robureus" "roburea" "robureum" ; -- [XXXCO] :: oak-, oaken, made/consisting of oak; robus_A = mkA "robus" "roba" "robum" ; -- [XAXEO] :: red (esp. of oxen/domestic animals); red (type of wheat, other contexts); robus_N_N = mkN "robus" "roboris " neuter ; -- [AXXAO] :: |||mainstay/bulwark, source of strength; stronghold, position of strength; --- SLASHSTUFF robustus_A : A2 robustus, robusta -um, robustior -or -us, robustissimus -a -um -- [XXXAO] :: |physically mature/grown up; mature in taste/judgment; strong/powerful in arms; + robustus_A = mkA "robustus" ; -- [XXXAO] :: |physically mature/grown up; mature in taste/judgment; strong/powerful in arms; + rodo_V2 = mkV2 (mkV "rodere" "rodo" "rosi" "rosus ") ; -- [XXXDX] :: gnaw, peck; rodus_N_N = mkN "rodus" "roderis " neuter ; -- [XXXCO] :: lump, rough piece; piece of bronze, (sometimes a bronze coin); rogalis_A = mkA "rogalis" "rogalis" "rogale" ; -- [XXXDX] :: of a funeral pyre; rogamen_N_N = mkN "rogamen" "rogaminis " neuter ; -- [FXXFM] :: request; @@ -30040,13 +32340,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg rotundatio_F_N = mkN "rotundatio" "rotundationis " feminine ; -- [XXXES] :: rounding; circumference; rotunditas_F_N = mkN "rotunditas" "rotunditatis " feminine ; -- [XXXDO] :: roundness of form; rotundity (L+S); rotundo_V2 = mkV2 (mkV "rotundare") ; -- [XXXCO] :: make round, give circular/spherical shape to; round off (sum); --- SLASHSTUFF rotundus_A : A2 rotundus, rotunda -um, rotundior -or -us, rotundissimus -a -um -- [XXXAO] :: round, circular; wheel-like; spherical, globular; smooth, finished; facile; + rotundus_A = mkA "rotundus" ; -- [XXXAO] :: round, circular; wheel-like; spherical, globular; smooth, finished; facile; rubecula_F_N = mkN "rubecula" ; -- [GXXEK] :: robin; + rubefacio_V2 = mkV2 (mkV "rubefacere" "rubefacio" "rubefeci" "rubefactus ") ; -- [XXXDX] :: redden; rubellus_A = mkA "rubellus" "rubella" "rubellum" ; -- [XXXEC] :: reddish; rubens_A = mkA "rubens" "rubentis"; -- [XXXDX] :: colored or tinged with red; rubeo_V = mkV "rubere" ; -- [XXXBX] :: be red, become red; ruber_A = mkA "ruber" "rubra" "rubrum" ; -- [XXXBX] :: red, ruddy, painted red; [Rubrum Mare => Red Sea, Arabian/Persian Gulf]; --- TODO rubesco_V : V2 rubesco, rubescere, rubui, - -- Declension: 3rd -- Comment: [XXXDX] :: turn red, redden, become red; + rubesco_V2 = mkV2 (mkV "rubescere" "rubesco" "rubui" nonExist ) ; -- [XXXDX] :: turn red, redden, become red; rubeta_F_N = mkN "rubeta" ; -- [XXXDX] :: toad; rubetum_N_N = mkN "rubetum" ; -- [XXXDX] :: bramble thicket (pl.); rubeus_A = mkA "rubeus" "rubea" "rubeum" ; -- [XAXDO] :: red (esp. of oxen/domestic animals); red (type of wheat, other contexts); @@ -30072,10 +32373,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg rudimentum_N_N = mkN "rudimentum" ; -- [XXXDX] :: first lesson(s); early training; rudis_A = mkA "rudis" "rudis" "rude" ; -- [XXXBX] :: undeveloped, rough, wild; coarse; rudis_F_N = mkN "rudis" "rudis " feminine ; -- [XWXBS] :: |staff; foil; instructor's baton; symbol of gladiator/military discharge; + rudo_V2 = mkV2 (mkV "rudere" "rudo" "rudivi" "ruditus ") ; -- [XXXDX] :: bellow, roar, bray, creak loudly; rudus_N_N = mkN "rudus" "ruderis " neuter ; -- [XXXCO] :: lump, rough piece; piece of bronze, (sometimes a bronze coin); rufulus_A = mkA "rufulus" "rufula" "rufulum" ; -- [XXXDS] :: red-headed; --- SLASHSTUFF rufus_A : A2 rufus, rufa -um, rufior -or -us, rufissimus -a -um -- [XXXCO] :: red (of various shades); (esp. hair); red-haired; tawny; ruddy; + rufus_A = mkA "rufus" ; -- [XXXCO] :: red (of various shades); (esp. hair); red-haired; tawny; ruddy; ruga_F_N = mkN "ruga" ; -- [XXXDX] :: wrinkle; crease, small fold; + rugio_V = mkV "rugire" "rugio" "rugivi" "rugitus "; -- [XXXFO] :: bellow, roar; rugo_V = mkV "rugare" ; -- [XXXES] :: wrinkle, crease; corrugate; become wrinkled/rumpled/creased; rugosus_A = mkA "rugosus" "rugosa" "rugosum" ; -- [XXXDX] :: full of wrinkles, folds or creases; ruina_F_N = mkN "ruina" ; -- [XXXBX] :: fall; catastrophe; collapse, destruction; @@ -30087,11 +32390,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ruminor_V = mkV "ruminari" ; -- [XXXDX] :: chew over again; chew the cud; rumor_M_N = mkN "rumor" "rumoris " masculine ; -- [XXXBX] :: hearsay, rumor, gossip; reputation; shouting; rumpia_F_N = mkN "rumpia" ; -- [XWXCO] :: long spear/javelin; (Thracian origin); + rumpo_V2 = mkV2 (mkV "rumpere" "rumpo" "rupi" "ruptus ") ; -- [XXXAX] :: break; destroy; rumusculus_M_N = mkN "rumusculus" ; -- [XXXEC] :: trifling rumor, idle talk, gossip; runa_F_N = mkN "runa" ; -- [XWXEC] :: dart; runcina_F_N = mkN "runcina" ; -- [XXXNO] :: carpenter's plane; runcino_V2 = mkV2 (mkV "runcinare") ; -- [XXXFO] :: plane (as a carpenter); runco_V2 = mkV2 (mkV "runcare") ; -- [XAXEC] :: weed, thin out; + ruo_V2 = mkV2 (mkV "ruere" "ruo" "rui" "rutus ") ; -- [XXXAX] :: destroy, ruin, overthrow; rush on, run; fall; charge (in + ACC); be ruined; rupes_F_N = mkN "rupes" "rupis " feminine ; -- [XXXBX] :: cliff; rock; ruptor_M_N = mkN "ruptor" "ruptoris " masculine ; -- [XXXDX] :: one who breaks or violates; ruricola_C_N = mkN "ruricola" ; -- [XXXDX] :: one who tills the land, country-dweller; @@ -30125,11 +32430,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg rutula_F_N = mkN "rutula" ; -- [XAXEC] :: little bit of rue; rutunditas_F_N = mkN "rutunditas" "rutunditatis " feminine ; -- [XXXDO] :: roundness of form; rotundity (L+S); rutundo_V2 = mkV2 (mkV "rutundare") ; -- [XXXCO] :: make round, give circular/spherical shape to; round off (sum); --- SLASHSTUFF rutundus_A : A2 rutundus, rutunda -um, rutundior -or -us, rutundissimus -a -um -- [XXXAO] :: round, circular; wheel-like; spherical, globular; smooth, finished; facile; + rutundus_A = mkA "rutundus" ; -- [XXXAO] :: round, circular; wheel-like; spherical, globular; smooth, finished; facile; rutus_A = mkA "rutus" "ruta" "rutum" ; -- [ELXDS] :: dug-up; (ruta et caesa = everything dug up and cut down on an estate); rythmicus_A = mkA "rythmicus" "rythmica" "rythmicum" ; -- [XDXEO] :: rhythmic; of/concerned with rhythm; --- IGNORED sabacthani_V : V1 sabacthani, undeclined -- [EEQFW] :: forsaken; [Heli Heli lemma ~ => My God, my God why hast thou forsaken me]; --- IGNORED sabath_N : N1 sabath, undeclined -- N -- [EXQEW] :: Shebat, Jewish month; (eleventh in ecclesiastic year); + sabacthani_V = constV "sabacthani" ; -- [EEQFW] :: forsaken; [Heli Heli lemma ~ => My God, my God why hast thou forsaken me]; + sabath_N = constN "sabath" neuter ; -- [EXQEW] :: Shebat, Jewish month; (eleventh in ecclesiastic year); sabbataria_F_N = mkN "sabbataria" ; -- [XEXFO] :: woman who keeps the sabbath; Jewish woman; sabbatismus_M_N = mkN "sabbatismus" ; -- [EEXES] :: observing/keeping of the sabbath; sabbatizo_V = mkV "sabbatizare" ; -- [EEXES] :: observe/keep the sabbath; @@ -30176,7 +32481,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sacro_V = mkV "sacrare" ; -- [XEXBX] :: consecrate, make sacred, dedicate; sacrosanctus_A = mkA "sacrosanctus" "sacrosancta" "sacrosanctum" ; -- [XEXDX] :: consecrated by religious ceremony, sacred, inviolable, most holy; venerable; sacrum_N_N = mkN "sacrum" ; -- [XEXDX] :: sacrifice; sacred vessel; religious rites (pl.); --- IGNORED sade_N : N1 sade, undeclined -- N -- [DEQEW] :: sade; (18th letter of Hebrew alphabet); (transliterate as TS); + sade_N = constN "sade" neuter ; -- [DEQEW] :: sade; (18th letter of Hebrew alphabet); (transliterate as TS); saeclaris_A = mkA "saeclaris" "saeclaris" "saeclare" ; -- [CXXEO] :: of/belonging to saeculum/century/generation; of Roman century games/hymns; saeclum_N_N = mkN "saeclum" ; -- [XXXCO] :: age; generation, people born at a time; breed, race; present time/age; century; saecularis_A = mkA "saecularis" "saecularis" "saeculare" ; -- [DEXBS] :: secular, of world not church; ecclesiastics not member of order (Bee); gentile; @@ -30186,14 +32491,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg saepes_F_N = mkN "saepes" "saepis " feminine ; -- [XXXCO] :: hedge; fence; anything planted/erected to form surrounding barrier; saepicule_Adv = mkAdv "saepicule" ; -- [XXXES] :: pretty often; saepimentum_N_N = mkN "saepimentum" ; -- [XXXDX] :: fence, enclosure; + saepio_V2 = mkV2 (mkV "saepire" "saepio" "saepsi" "saeptus ") ; -- [XXXAO] :: |hedge/fence in, surround (w/hedge/wall/fence/barrier/troops); enclose; confine; saeps_F_N = mkN "saeps" "saepis " feminine ; -- [XXXFO] :: hedge; fence; anything planted/erected to form surrounding barrier; saeptum_N_N = mkN "saeptum" ; -- [XXXDX] :: fold, paddock; enclosure; voting enclosure in the Campus Martius; saeta_F_N = mkN "saeta" ; -- [XXXCO] :: hair; (coarse/stiff); bristle; brush; morbid internal growth; fishing-leader; saetiger_A = mkA "saetiger" "saetigera" "saetigerum" ; -- [XXXDX] :: bristly; saetosus_A = mkA "saetosus" "saetosa" "saetosum" ; -- [XXXDX] :: bristly, shaggy; saevidicus_A = mkA "saevidicus" "saevidica" "saevidicum" ; -- [XXXEC] :: angrily spoken; + saevio_V = mkV "saevire" "saevio" "saevivi" "saevitus "; -- [XXXBO] :: rage; rave, bluster; be/act angry/violent/ferocious; vent rage on (DAT); saevitia_F_N = mkN "saevitia" ; -- [XXXDX] :: rage, fierceness, ferocity; cruelty, barbarity, violence; --- SLASHSTUFF saevus_A : A2 saevus, saeva -um, saevior -or -us, saevissimus -a -um -- [XXXAO] :: savage; fierce/ferocious; violent/wild/raging; cruel, harsh, severe; vehement; + saevus_A = mkA "saevus" ; -- [XXXAO] :: savage; fierce/ferocious; violent/wild/raging; cruel, harsh, severe; vehement; saffranum_N_N = mkN "saffranum" ; -- [FAXFM] :: saffron; saga_F_N = mkN "saga" ; -- [XXXDX] :: witch, sorceress, wise woman; sagacitas_F_N = mkN "sagacitas" "sagacitatis " feminine ; -- [XXXCO] :: keenness (of scent/senses); acuteness/instinct/flair; sagacity/shrewdness (L+S); @@ -30234,17 +32541,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg salillum_N_N = mkN "salillum" ; -- [XXXDX] :: little salt-cellar; saltcellar (Cal); salina_F_N = mkN "salina" ; -- [XXXDX] :: salt-pans (pl.); salinum_N_N = mkN "salinum" ; -- [XXXDX] :: salt-cellar; + salio_V2 = mkV2 (mkV "salire" "salio" "salui" "saltus ") ; -- [XXXBO] :: |spurt, discharge, be ejected under force (water/fluid); mount/cover (by stud); saliunca_F_N = mkN "saliunca" ; -- [XAXEC] :: wild nard; plant yielding aromatic ointment; saliva_F_N = mkN "saliva" ; -- [XXXDX] :: spittle; distinctive flavor; salix_F_N = mkN "salix" "salicis " feminine ; -- [XXXDX] :: willow-tree, willow; + sallio_V2 = mkV2 (mkV "sallire" "sallio" "sallivi" "sallitus ") ; -- [XXXDO] :: salt, salt down, preserve with salt; sprinkle before sacrifice; + sallo_V2 = mkV2 (mkV "sallere" "sallo" nonExist "sallsus ") ; -- [XXXDS] :: salt, salt down, preserve with salt; sprinkle before sacrifice; salmoneus_A = mkA "salmoneus" "salmonea" "salmoneum" ; -- [GXXEK] :: salmon-colored; + salo_V2 = mkV2 (mkV "salere" "salo" nonExist "salsus ") ; -- [XXXDS] :: salt, salt down, preserve with salt; sprinkle before sacrifice; salpa_F_N = mkN "salpa" ; -- [XAXEC] :: kind of stock-fish; salsamentum_N_N = mkN "salsamentum" ; -- [XXXEC] :: fish-pickle, brine; salted or pickled fish; salsedo_F_N = mkN "salsedo" "salsedinis " feminine ; -- [XXXFS] :: saltiness (Pliny); salsugo_F_N = mkN "salsugo" "salsuginis " feminine ; -- [XXXDO] :: brine, water full of salt; salinity, salt quality; salsum_N_N = mkN "salsum" ; -- [XXXFS] :: salted things (pl.); salted food; salsura_F_N = mkN "salsura" ; -- [XXXEC] :: salting, pickling; --- SLASHSTUFF salsus_A : A2 salsus, salsa -um, salsior -or -us, salsissimus -a -um -- [XXXBO] :: salted, salty, preserved in salt; briny; witty, funny, salted wit humor; + salsus_A = mkA "salsus" ; -- [XXXBO] :: salted, salty, preserved in salt; briny; witty, funny, salted wit humor; saltatio_F_N = mkN "saltatio" "saltationis " feminine ; -- [XDXEZ] :: dancing; dance (Collins); saltatiuncula_F_N = mkN "saltatiuncula" ; -- [DDXFS] :: little dance; saltator_M_N = mkN "saltator" "saltatoris " masculine ; -- [XXXDX] :: dancer; @@ -30258,7 +32569,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg salto_V = mkV "saltare" ; -- [XXXDX] :: dance, jump; portray or represent in a dance; saltuosus_A = mkA "saltuosus" "saltuosa" "saltuosum" ; -- [XXXDX] :: characterized by wooded valleys; saltus_M_N = mkN "saltus" "saltus " masculine ; -- [XXXAO] :: narrow passage (forest/mountain); defile, pass; woodland with glades (pl.); --- SLASHSTUFF saluber_A : A2 saluber, salubris -e, salubrior -or -us, saluberrimus -a -um -- [XXXBO] :: healthy, salubrious; salutary, beneficial; in good condition (body); wholesome; + saluber_A = mkA "saluber" ; -- [XXXBO] :: healthy, salubrious; salutary, beneficial; in good condition (body); wholesome; salubritas_F_N = mkN "salubritas" "salubritatis " feminine ; -- [XXXDX] :: good health; wholesomeness; salubriter_Adv =mkAdv "salubriter" "salubrius" "salubrissime" ; -- [XXXCO] :: wholesomely, w/advantage to health; beneficially, profitably; cheaply; salum_N_N = mkN "salum" ; -- [XXXDX] :: open sea, high sea, main, deep, ocean; sea in motion, billow, waves; @@ -30284,12 +32595,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sambuca_F_N = mkN "sambuca" ; -- [XDXEC] :: species of harp; sambucistria_F_N = mkN "sambucistria" ; -- [XXXDX] :: player (female) an the small harp/sambuca; sambucus_M_N = mkN "sambucus" ; -- [XDXES] :: sambuca-player; Itriangular stringed-instrument w/very sharp shrill tone OED); --- IGNORED samech_N : N1 samech, undeclined -- N -- [DEQEW] :: samekh; (15th letter of Hebrew alphabet); (transliterate as S); + samech_N = constN "samech" neuter ; -- [DEQEW] :: samekh; (15th letter of Hebrew alphabet); (transliterate as S); samera_F_N = mkN "samera" ; -- [DAXNS] :: elm-seed (Pliny); sampsuchum_N_N = mkN "sampsuchum" ; -- [XAXFS] :: marjoram plant; sampsucum_N_N = mkN "sampsucum" ; -- [XAXFS] :: marjoram plant; sanabilis_A = mkA "sanabilis" "sanabilis" "sanabile" ; -- [XXXDX] :: curable; sanatorium_N_N = mkN "sanatorium" ; -- [GXXEK] :: sanatorium; + sancio_V2 = mkV2 (mkV "sancire" "sancio" "sanxi" "sanctus ") ; -- [XXXAO] :: confirm, ratify; sanction; fulfill (prophesy); enact (law); ordain; dedicate; sanctificatio_F_N = mkN "sanctificatio" "sanctificationis " feminine ; -- [XXXDX] :: holiness; holy mystery; sanctuary (Plater); sanctifico_V = mkV "sanctificare" ; -- [XXXDX] :: sanctify, treat as holy; sanctimonia_F_N = mkN "sanctimonia" ; -- [XEXEC] :: sanctity, sacredness; purity, chastity, virtue; @@ -30300,7 +32612,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sanctitudo_F_N = mkN "sanctitudo" "sanctitudinis " feminine ; -- [XXXCO] :: sanctity, holiness; moral purity, probity; sanctor_M_N = mkN "sanctor" "sanctoris " masculine ; -- [XXXDS] :: establisher; one who enacts; sanctuarium_N_N = mkN "sanctuarium" ; -- [XEXCO] :: sanctuary, shrine; place keeping holy things or private/confidential records; --- SLASHSTUFF sanctus_A : A2 sanctus, sancta -um, sanctior -or -us, sanctissimus -a -um -- [XXXAX] :: consecrated, sacred, inviolable; venerable, august, divine, holy, pious, just; + sanctus_A = mkA "sanctus" ; -- [XXXAX] :: consecrated, sacred, inviolable; venerable, august, divine, holy, pious, just; sanctus_M_N = mkN "sanctus" ; -- [EEXDX] :: saint; sandaliarius_A = mkA "sandaliarius" "sandaliaria" "sandaliarium" ; -- [XXXEC] :: relating to sandals; (statue of Apollo on street of sandal makers); sandaligerula_F_N = mkN "sandaligerula" ; -- [XXXEC] :: female slaves (pl.) who carried their mistresses sandals; @@ -30308,6 +32620,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sandapila_F_N = mkN "sandapila" ; -- [XXXEC] :: bier used for poor people; sandyx_F_N = mkN "sandyx" "sandycis " feminine ; -- [XXXDX] :: red dye (from oxides of lead and iron); scarlet cloth; sane_Adv = mkAdv "sane" ; -- [XXXDX] :: reasonably, sensibly; certainly, truly; however; yes, of course; + sanesco_V = mkV "sanescere" "sanesco" nonExist nonExist; -- [XBXEO] :: recover, get well (patient); heal (wound); sanguinans_A = mkA "sanguinans" "sanguinantis"; -- [XXXEC] :: bloodthirsty; sanguinarius_A = mkA "sanguinarius" "sanguinaria" "sanguinarium" ; -- [XXXEC] :: of blood; bloodthirsty, savage; sanguineus_A = mkA "sanguineus" "sanguinea" "sanguineum" ; -- [XXXDX] :: bloody, bloodstained; blood-red; @@ -30332,7 +32645,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sapientia_F_N = mkN "sapientia" ; -- [XXXBO] :: |prudence, discretion, discernment (L+S); good sense; good taste; intelligence; sapineus_A = mkA "sapineus" "sapinea" "sapineum" ; -- [XXXFS] :: of the fir tree; of the pine tree; sapinus_F_N = mkN "sapinus" ; -- [XAXFS] :: fir tree; pine tree; its lower part; --- TODO sapio_V : V2 sapio, sapere, sapivi, - -- Declension: 3rd -- Comment: [XXXBX] :: taste of; understand; have sense; + sapio_V2 = mkV2 (mkV "sapere" "sapio" "sapivi" nonExist ) ; -- [XXXBX] :: taste of; understand; have sense; sapo_M_N = mkN "sapo" "saponis " masculine ; -- [FXXEK] :: soap; saponatum_N_N = mkN "saponatum" ; -- [GXXEK] :: shampoo; sapor_M_N = mkN "sapor" "saporis " masculine ; -- [XXXBX] :: taste, flavor; sense of taste; @@ -30352,6 +32665,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sarcinarius_A = mkA "sarcinarius" "sarcinaria" "sarcinarium" ; -- [XXXFO] :: employed in carrying packs; sarcinator_M_N = mkN "sarcinator" "sarcinatoris " masculine ; -- [XXXEC] :: cobbler; sarcinula_F_N = mkN "sarcinula" ; -- [XXXDX] :: (small) pack/bundle; baggage (pl.), belongings/chattels, effects, paraphernalia; + sarcio_V2 = mkV2 (mkV "sarcire" "sarcio" "sarsi" "sartus ") ; -- [XXXDX] :: make good; redeem; restore; sarcophagus_M_N = mkN "sarcophagus" ; -- [XXXEC] :: coffin, grave; sarculum_N_N = mkN "sarculum" ; -- [XXXDX] :: hoe; sardina_F_N = mkN "sardina" ; -- [XAXFO] :: sardine; pilchard; small fish; @@ -30360,18 +32674,24 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sardius_M_N = mkN "sardius" ; -- [DXXCS] :: carnelian/sardian; (deep red precious stone); sardonichus_A = mkA "sardonichus" "sardonicha" "sardonichum" ; -- [EXXFS] :: of/pertaining to sardonyx (precious stone); [~ lapis => sardonyx]; sardonicus_C_N = mkN "sardonicus" ; -- [EXXFW] :: sardonyx, precious stone; --- TODO sardonyx_N : N1 sardonyx, sardonychos/is -- C -- [XXXCO] :: sardonyx, precious stone; + sardonyx_1_F_N = mkN "sardonyx" "sardonychis" feminine ; -- [XXXCO] :: sardonyx, precious stone; + sardonyx_1_M_N = mkN "sardonyx" "sardonychis" masculine ; -- [XXXCO] :: sardonyx, precious stone; + sardonyx_2_F_N = mkN "sardonyx" "sardonychis" feminine ; -- [XXXCO] :: sardonyx, precious stone; + sardonyx_2_M_N = mkN "sardonyx" "sardonychos" masculine ; -- [XXXCO] :: sardonyx, precious stone; sargus_M_N = mkN "sargus" ; -- [XAXEC] :: salt-water fish, the sargue; + sario_V2 = mkV2 (mkV "sarire" "sario" "sarivi" "saritus ") ; -- [XAXCS] :: hoe; weed (crops); dig over (land); sarisa_F_N = mkN "sarisa" ; -- [XXXES] :: Macedonian lance; sarisophorus_M_N = mkN "sarisophorus" ; -- [XXXEC] :: Macedonian pikeman; sarmentum_N_N = mkN "sarmentum" ; -- [XXXDX] :: shoot; twigs (pl.), cut twigs, brushwood; sarracum_N_N = mkN "sarracum" ; -- [XXXDO] :: kind of wagon/cart/wain; S:Charles's Wain constellation (Big Dipper); + sarrio_V2 = mkV2 (mkV "sarrire" "sarrio" "sarrui" "sarritus ") ; -- [XAXCO] :: hoe; weed (crops); dig over (land); sarritor_M_N = mkN "sarritor" "sarritoris " masculine ; -- [XAXDS] :: hoer; weeder; sartago_F_N = mkN "sartago" "sartaginis " feminine ; -- [XXXEO] :: frying pan; mixture/medley/jumble/farrago; stove (Cal); sartio_F_N = mkN "sartio" "sartionis " feminine ; -- [XAXFX] :: hoeing; digging-over; (in Columella; JFW guess, Old form of satio?); sartor_M_N = mkN "sartor" "sartoris " masculine ; -- [XXXDS] :: patcher; mender; A:hoer; weeder; --- IGNORED sat_A : A2 sat, undeclined -- [XXXCO] :: enough, adequate, sufficient; satisfactory; + sat_A = constA "sat" ; -- [XXXCO] :: enough, adequate, sufficient; satisfactory; sat_Adv = mkAdv "sat" ; -- [XXXCO] :: enough, adequately; sufficiently; well enough, quite; fairly, pretty; + satago_V2 = mkV2 (mkV "satagere" "satago" "sategi" "satactus ") ; -- [XXXCO] :: bustle about, fuss, busy one's self; be hard pressed, have one's hands full; satanicus_A = mkA "satanicus" "satanica" "satanicum" ; -- [GXXEK] :: satanic; satanismus_M_N = mkN "satanismus" ; -- [GXXEK] :: wickedness; satelles_F_N = mkN "satelles" "satellitis " feminine ; -- [XXXDX] :: attendant; courtier; follower; life guard; companion; accomplice, abettor; @@ -30381,12 +32701,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg satietas_F_N = mkN "satietas" "satietatis " feminine ; -- [XXXDX] :: satiety; the state of being sated; satio_F_N = mkN "satio" "sationis " feminine ; -- [XAXEZ] :: sowing, planting; field (Collins); satio_V = mkV "satiare" ; -- [XXXBX] :: satisfy, sate; nourish; --- IGNORED satis_A : A2 satis, undeclined -- [XXXAO] :: enough, adequate, sufficient; satisfactory; + satis_A = constA "satis" ; -- [XXXAO] :: enough, adequate, sufficient; satisfactory; satis_Adv = mkAdv "satis" ; -- [XXXAO] :: enough, adequately; sufficiently; well enough, quite; fairly, pretty; satisdatio_F_N = mkN "satisdatio" "satisdationis " feminine ; -- [XXXEC] :: giving bail or security; + satisfacio_V2 = mkV2 (mkV "satisfacere" "satisfacio" "satisfeci" "satisfactus ") ; -- [XXXAO] :: |give satisfactory assurance (to/that); give all (attention) that is required; satisfactio_F_N = mkN "satisfactio" "satisfactionis " feminine ; -- [XXXDX] :: penalty; satisfaction for an offense; satisfio_V = mkV "satisferi" ; -- [XXXAO] :: be satisfied; be compensated; be given enough/sufficient; (satisfacio PASS); --- IGNORED satius_A : A2 satius, undeclined -- [XXXCO] :: better, more serviceable/satisfactory; fitter, preferable; (COMP of satis); + satius_A = constA "satius" ; -- [XXXCO] :: better, more serviceable/satisfactory; fitter, preferable; (COMP of satis); satius_Adv = mkAdv "satius" ; -- [XXXCO] :: rather; preferably; sativus_A = mkA "sativus" "sativa" "sativum" ; -- [XAXES] :: sown; that is sown; sator_M_N = mkN "sator" "satoris " masculine ; -- [XXXDX] :: sower, planter; founder, progenitor (usu. divine); originator; @@ -30419,12 +32740,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg saxulum_N_N = mkN "saxulum" ; -- [XXXEC] :: little rock; saxum_N_N = mkN "saxum" ; -- [XXXAX] :: stone; scabellum_N_N = mkN "scabellum" ; -- [XDXEC] :: footstool; a musical instrument played with the foot; --- SLASHSTUFF scaber_A : A2 scaber, scabra -um, scabrior -or -us, scaberrimus -a -um -- [XAXCO] :: rough/scabrous from disease, scabby (esp. sheep); rough/corroded (surface); + scaber_A = mkA "scaber" ; -- [XAXCO] :: rough/scabrous from disease, scabby (esp. sheep); rough/corroded (surface); scabies_F_N = mkN "scabies" "scabiei " feminine ; -- [XXXDX] :: itch, mange; scabillum_N_N = mkN "scabillum" ; -- [XDXEC] :: footstool; a musical instrument played with the foot; scabinus_M_N = mkN "scabinus" ; -- [GXXEK] :: alderman; scabiosus_A = mkA "scabiosus" "scabiosa" "scabiosum" ; -- [XXXEC] :: scabby, mangy; --- TODO scabo_V : V2 scabo, scabere, scabi, - -- Declension: 3rd -- Comment: [XXXDX] :: scratch, scrape; + scabo_V2 = mkV2 (mkV "scabere" "scabo" "scabi" nonExist ) ; -- [XXXDX] :: scratch, scrape; scabritia_F_N = mkN "scabritia" ; -- [XXXES] :: roughness; B:itch; scab; scabrities_F_N = mkN "scabrities" "scabritiae " feminine ; -- [XXXFS] :: roughness; B:itch; scab; scabrosus_A = mkA "scabrosus" "scabrosa" "scabrosum" ; -- [DXXES] :: scabrous, rough; @@ -30442,6 +32763,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg scalpellum_N_N = mkN "scalpellum" ; -- [XBXDO] :: scalpel, lancet; small surgical knife; similar tool used in grafting; scalpellus_M_N = mkN "scalpellus" ; -- [XBXDO] :: scalpel, lancet; small surgical knife; similar tool used in grafting; scalper_M_N = mkN "scalper" ; -- [XXXDX] :: tool for scraping/paring/cutting away/removing parts of bone/sharpening pens; + scalpo_V2 = mkV2 (mkV "scalpere" "scalpo" "scalpsi" "scalptus ") ; -- [XXXBO] :: scratch, draw nails across (itch/affection); dig out (w/nails); carve/engrave; scalpratus_A = mkA "scalpratus" "scalprata" "scalpratum" ; -- [XXXCO] :: fitted with a scraper; having a sharp or cutting edge; scalprum_N_N = mkN "scalprum" ; -- [XXXDX] :: tool for scraping/paring/cutting away/removing parts of bone/sharpening pens; scamillus_M_N = mkN "scamillus" ; -- [XXXFS] :: stool; little bench; T:pedestal step; @@ -30454,6 +32776,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg scandalosus_A = mkA "scandalosus" "scandalosa" "scandalosum" ; -- [FXXEF] :: scandalous; slanderous; scandalum_N_N = mkN "scandalum" ; -- [EEXCS] :: temptation/inducement to sin; cause of offense; stumbling block; scandal (Bee); scandix_F_N = mkN "scandix" "scandicis " feminine ; -- [DAXNS] :: chervil herb (Pliny); + scando_V2 = mkV2 (mkV "scandere" "scando" "scandi" "scansus ") ; -- [XXXBX] :: climb; mount, ascend, get up, clamber; scandula_F_N = mkN "scandula" ; -- [XXXFS] :: roof-shingle; scapha_F_N = mkN "scapha" ; -- [XXXDX] :: skiff; light boat; scaphium_N_N = mkN "scaphium" ; -- [XXXEC] :: pot, bowl, drinking vessel; @@ -30467,11 +32790,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg scarpus_M_N = mkN "scarpus" ; -- [FGXFY] :: abstract; scatebra_F_N = mkN "scatebra" ; -- [XXXDX] :: gush of water from the ground, bubbling spring; scateo_V = mkV "scatere" ; -- [XXXDX] :: gush out, bubble, spring forth; swarm (with), be alive (with); --- TODO scato_V : V2 scato, scatere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: gush out, bubble, spring forth; swarm (with), be alive (with); + scato_V = mkV "scatere" "scato" nonExist nonExist ; -- [XXXDX] :: gush out, bubble, spring forth; swarm (with), be alive (with); scaturigo_F_N = mkN "scaturigo" "scaturiginis " feminine ; -- [XXXDX] :: bubbling spring; + scaturrio_V = mkV "scaturrire" "scaturrio" nonExist nonExist; -- [XXXEC] :: gush, bubble over; scaurus_A = mkA "scaurus" "scaura" "scaurum" ; -- [XXXEC] :: with swollen ankles; scazon_M_N = mkN "scazon" "scazontis " masculine ; -- [XPXEC] :: iambic trimeter with a spondee or trochee in the last foot; --- SLASHSTUFF sceleratus_A : A2 sceleratus, scelerata -um, sceleratior -or -us, sceleratissimus -a -um -- [XXXAO] :: criminal, wicked; accursed; lying under a ban; sinful, atrocious, heinous; + sceleratus_A = mkA "sceleratus" ; -- [XXXAO] :: criminal, wicked; accursed; lying under a ban; sinful, atrocious, heinous; sceleratus_M_N = mkN "sceleratus" ; -- [XXXDX] :: criminal; scelero_V = mkV "scelerare" ; -- [XXXDX] :: defile; scelerosus_A = mkA "scelerosus" "scelerosa" "scelerosum" ; -- [XXXDX] :: steeped in wickedness; @@ -30517,13 +32841,20 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg scientificus_A = mkA "scientificus" "scientifica" "scientificum" ; -- [FSXFM] :: scientific; learned; scilicet_Adv = mkAdv "scilicet" ; -- [XXXAX] :: one may know, certainly; of course; scilla_F_N = mkN "scilla" ; -- [XAXDO] :: squill, sea-onion (bulbous seaside plane); squill bulb/root/preparation; --- TODO scinifes_N : N1 scinifes, scinifos/is -- C -- [XAHES] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); --- TODO sciniphes_N : N1 sciniphes, sciniphos/is -- C -- [XAHEO] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); + scindo_V2 = mkV2 (mkV "scindere" "scindo" "scidi" "scissus ") ; -- [XXXAO] :: tear, split, divide; rend, cut to pieces; tear in rage/grief/despair; + scinifes_1_F_N = mkN "scinifes" "scinifis" feminine ; -- [XAHES] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); + scinifes_1_M_N = mkN "scinifes" "scinifis" masculine ; -- [XAHES] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); + scinifes_2_F_N = mkN "scinifes" "scinifis" feminine ; -- [XAHES] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); + scinifes_2_M_N = mkN "scinifes" "scinifos" masculine ; -- [XAHES] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); + sciniphes_1_F_N = mkN "sciniphes" "sciniphis" feminine ; -- [XAHEO] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); + sciniphes_1_M_N = mkN "sciniphes" "sciniphis" masculine ; -- [XAHEO] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); + sciniphes_2_F_N = mkN "sciniphes" "sciniphis" feminine ; -- [XAHEO] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); + sciniphes_2_M_N = mkN "sciniphes" "sciniphos" masculine ; -- [XAHEO] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); scintilla_F_N = mkN "scintilla" ; -- [XXXDX] :: spark; scintillo_V = mkV "scintillare" ; -- [XXXDX] :: send out sparks; scintillula_F_N = mkN "scintillula" ; -- [XXXEC] :: little spark; scinus_F_N = mkN "scinus" ; -- [EAXFS] :: mastic tree; (Vulgate Susanna 1:54); - scio_V2 = mkV2 (mkV "scire") ; -- [XXXAX] :: know, understand; + scio_V2 = mkV2 (mkV "scire" "scio" "scivi" "scitus ") ; -- [XXXAX] :: know, understand; sciolus_M_N = mkN "sciolus" ; -- [XXXES] :: smatterer; one with a little knowledge; sciphus_M_N = mkN "sciphus" ; -- [FXXCL] :: bowl, goblet, cup; communion cup; scipio_M_N = mkN "scipio" "scipionis " masculine ; -- [XXXDX] :: ceremonial rod, baton; @@ -30538,6 +32869,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg scirros_M_N = mkN "scirros" "scirri " masculine ; -- [XBXNO] :: hard tumor; scirto_V = mkV "scirtare" ; -- [EDXFW] :: dance; (4 Ezra 6:21); sciscitor_V = mkV "sciscitari" ; -- [XXXDX] :: ask; question; consult; + scisco_V2 = mkV2 (mkV "sciscere" "scisco" "scivi" "scitus ") ; -- [XXXEC] :: investigate, inquire; (political) vote; ordain; scisma_N_N = mkN "scisma" "scismatis " neuter ; -- [EEXDW] :: schism/split/deep divide; separation/breaking away; (refusal to submit to Pope); scissilis_A = mkA "scissilis" "scissilis" "scissile" ; -- [XXXEO] :: torn, tattered (clothes); easily split, fissile (minerals); scissor_M_N = mkN "scissor" "scissoris " masculine ; -- [XXXDX] :: carver; @@ -30554,6 +32886,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sclopeto_V = mkV "sclopetare" ; -- [GXXEK] :: fire rifle; sclopetum_N_N = mkN "sclopetum" ; -- [GXXEK] :: rifle; scobis_F_N = mkN "scobis" "scobis " feminine ; -- [XXXEC] :: filings, chips, shavings, sawdust; + scobo_V2 = mkV2 (mkV "scobere" "scobo" nonExist nonExist) ; -- [EXXFS] :: probe; look into; search; scope out; sweep (Douay) (prob. confused with V 1 1); scola_F_N = mkN "scola" ; -- [XGXAO] :: school; followers of a system/teacher/subject; thesis/subject; area w/benches; scolastica_F_N = mkN "scolastica" ; -- [XGXFO] :: debate on imaginary case in school of rhetoric (controversia scholastica); scolasticus_A = mkA "scolasticus" "scolastica" "scolasticum" ; -- [XGXCO] :: of/appropriate to a school of rhetoric/any school; @@ -30561,7 +32894,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg scolymos_M_N = mkN "scolymos" "scolymi " masculine ; -- [DAXNS] :: edible thistle (Pliny); scomber_M_N = mkN "scomber" ; -- [XXXDX] :: mackerel; scopa_F_N = mkN "scopa" ; -- [XXXCO] :: butcher's broom (shrub); branches/sprigs tied together (pl.); broom (sweeping); - scopo_V2 = mkV2 (mkV "scopare") ; -- [EXXFS] :: brush/sweep away; + scopo_V2 = mkV2 (mkV "scopere" "scopo" nonExist nonExist) ; -- [EXXFW] :: probe; look into; search; scope out; sweep (Douay) (prob. confused with V 1 1); scopulosus_A = mkA "scopulosus" "scopulosa" "scopulosum" ; -- [XXXFS] :: rocky; full of rocks; scopulus_M_N = mkN "scopulus" ; -- [XXXBX] :: rock, boulder; scorbutus_M_N = mkN "scorbutus" ; -- [GBXEK] :: scurvy; @@ -30581,6 +32914,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg screo_V = mkV "screare" ; -- [XBXEC] :: clear the throat, hawk, hem; scriba_M_N = mkN "scriba" ; -- [XXXDX] :: scribe, clerk; scriblita_F_N = mkN "scriblita" ; -- [XXXEC] :: kind of pastry; + scribo_V2 = mkV2 (mkV "scribere" "scribo" "scripsi" "scriptus ") ; -- [XXXAX] :: write; compose; scribtus_A = mkA "scribtus" "scribta" "scribtum" ; -- [BXXFX] :: written; composed; (archaic vpar of scribo); scrinium_N_N = mkN "scrinium" ; -- [XXXDX] :: box, case; scriptito_V = mkV "scriptitare" ; -- [XXXFS] :: write often; compose; @@ -30625,6 +32959,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg scrutor_M_N = mkN "scrutor" "scrutoris " masculine ; -- [XXXCO] :: searcher/investigator/inquirer; scrutinizer/watcher/examiner; who looks closely; scrutor_V = mkV "scrutari" ; -- [XXXAO] :: search/probe/examine carefully/thoroughly; explore/scan/scrutinize/investigate; scrutum_N_N = mkN "scrutum" ; -- [XXXCS] :: trash (pl.), old/broken stuff; job lot; trumpery; + sculpo_V2 = mkV2 (mkV "sculpere" "sculpo" "sculpsi" "sculptus ") ; -- [XTXCO] :: carve, engrave (inscription/face); fashion/work into form by carving/engraving; sculponea_F_N = mkN "sculponea" ; -- [XXXDS] :: cheap wooden shoe; sculptilis_A = mkA "sculptilis" "sculptilis" "sculptile" ; -- [XXXDX] :: engraved; sculptor_M_N = mkN "sculptor" "sculptoris " masculine ; -- [XDXEC] :: sculptor; @@ -30651,21 +32986,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg scyphus_M_N = mkN "scyphus" ; -- [FXXCM] :: bowl, goblet, cup; communion cup; two-handled drinking vessel; scytala_F_N = mkN "scytala" ; -- [XXXEO] :: wooden cylinder; roller; secret writing/letter (L+S); cylindrical snake; scytale_F_N = mkN "scytale" "scytales " feminine ; -- [XXXEO] :: wooden cylinder; roller; secret writing/letter (L+S); cylindrical snake; --- IGNORED sebboleth_N : N1 sebboleth, undeclined -- N -- [EEQFW] :: scibboleth (grain ear) which mispronounciation Gileadites uncovered Ephraimite; + sebboleth_N = constN "sebboleth" neuter ; -- [EEQFW] :: scibboleth (grain ear) which mispronounciation Gileadites uncovered Ephraimite; sebum_N_N = mkN "sebum" ; -- [XXXDX] :: suet, tallow, hard animal fat; secamentum_N_N = mkN "secamentum" ; -- [XTXNO] :: piece of carpentry; + secedo_V2 = mkV2 (mkV "secedere" "secedo" "secessi" "secessus ") ; -- [XXXDX] :: withdraw; rebel; secede; + secerno_V2 = mkV2 (mkV "secernere" "secerno" "secrevi" "secretus ") ; -- [XXXDX] :: separate; secespita_F_N = mkN "secespita" ; -- [XEXEO] :: type of sacrificial knife; secessio_F_N = mkN "secessio" "secessionis " feminine ; -- [XXXDX] :: revolt, secession; secessus_M_N = mkN "secessus" "secessus " masculine ; -- [XXXDX] :: withdrawal; secluded place; secius_Adv = mkAdv "secius" ; -- [XXXDX] :: otherwise, none the less; + secludo_V2 = mkV2 (mkV "secludere" "secludo" "seclusi" "seclusus ") ; -- [XXXDX] :: shut off; seclusus_A = mkA "seclusus" "seclusa" "seclusum" ; -- [XXXDS] :: remote; seco_V2 = mkV2 (mkV "secare") ; -- [XXXAO] :: cut, sever; decide; divide in two/halve/split; slice/chop/cut up/carve; detach; + secor_V = mkV "seci" "secor" "secutus sum " ; -- [XXXAO] :: |support/back/side with; obey, observe; pursue/chase; range/spread over; attain; secretarium_N_N = mkN "secretarium" ; -- [EEXDS] :: |council chamber; conclave, consistory; private chapel; retirement place; secretarius_M_N = mkN "secretarius" ; -- [GXXEK] :: secretary; secretio_F_N = mkN "secretio" "secretionis " feminine ; -- [XXXFS] :: separation; secreto_Adv = mkAdv "secreto" ; -- [XXXDX] :: separately; secretly, in private; secretum_N_N = mkN "secretum" ; -- [XXXDX] :: secret, mystic rite, haunt; --- SLASHSTUFF secretus_A : A2 secretus, secreta -um, secretior -or -us, secretissimus -a -um -- [XXXAX] :: separate, apart (from); private, secret; remote; hidden; + secretus_A = mkA "secretus" ; -- [XXXAX] :: separate, apart (from); private, secret; remote; hidden; sectarius_A = mkA "sectarius" "sectaria" "sectarium" ; -- [XXXDS] :: castrated; gelded; sectilis_A = mkA "sectilis" "sectilis" "sectile" ; -- [XXXDX] :: capable of being cut into thin layers; sectio_F_N = mkN "sectio" "sectionis " feminine ; -- [XBXBO] :: cutting/severing; mowing; surgery; castration; disposal/buying up booty; @@ -30676,7 +33015,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg secubo_V = mkV "secubare" ; -- [XXXDX] :: sleep apart from one's spouse or lover; sleep alone; live alone; secularitas_F_N = mkN "secularitas" "secularitatis " feminine ; -- [EEXCM] :: worldliness; worldly life; seculariter_Adv = mkAdv "seculariter" ; -- [EEXCM] :: worldly, in a worldly fashion; --- SLASHSTUFF secularus_A : A2 secularus, seculara -um, secularior -or -us, secularissimus -a -um -- [EEXCM] :: secular/temporal/worldly (as opposed to ecclesiastical); lay, laic; + secularus_A = mkA "secularus" ; -- [EEXCM] :: secular/temporal/worldly (as opposed to ecclesiastical); lay, laic; secularus_M_N = mkN "secularus" ; -- [EEXCM] :: layman (as opposed to ecclesiastical); seculis_A = mkA "seculis" "seculis" "secule" ; -- [EEXCM] :: secular/temporal/earthly/worldly; transitory; pagan; seculizo_V = mkV "seculizare" ; -- [EEXCM] :: live a worldly life; @@ -30687,21 +33026,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg secundarius_A = mkA "secundarius" "secundaria" "secundarium" ; -- [XXXES] :: second-rate; of the second rank; secundo_V2 = mkV2 (mkV "secundare") ; -- [XXXCO] :: make conditions favorable (winds/deities), favor; adjust, adapt; prosper; secundogenitus_A = mkA "secundogenitus" "secundogenita" "secundogenitum" ; -- [FXXFM] :: second-born; - secundum_Acc_Prep = mkPrep "secundum" Acc ; -- [XXXBS] :: after; according to; along/next to, following/immediately after, close behind; + secundum_Acc_Prep = mkPrep "secundum" acc ; -- [XXXBS] :: after; according to; along/next to, following/immediately after, close behind; secundum_N_N = mkN "secundum" ; -- [XXXCS] :: good luck/fortune (pl.), success; favorable circumstances; --- SLASHSTUFF secundus_A : A2 secundus, secunda -um, secundior -or -us, secundissimus -a -um -- [XXXAX] :: |favorable, fair (wind/current); fortunate, propitious; smooth, w/the grain; + secundus_A = mkA "secundus" ; -- [XXXAX] :: |favorable, fair (wind/current); fortunate, propitious; smooth, w/the grain; securicula_F_N = mkN "securicula" ; -- [XXXFS] :: hatchet; hatchet-shaped mortise; securifer_A = mkA "securifer" "securifera" "securiferum" ; -- [XXXDX] :: armed with axe; securiger_A = mkA "securiger" "securigera" "securigerum" ; -- [XXXDX] :: armed with axe; securis_F_N = mkN "securis" "securis " feminine ; -- [XXXBO] :: |ax (bundled in fasces); sovereignty (usu. pl.), authority, domain, supremacy; securitas_F_N = mkN "securitas" "securitatis " feminine ; -- [XXXDX] :: freedom from care; carelessness; safety, security; securus_A = mkA "securus" "secura" "securum" ; -- [XXXAX] :: secure, safe, untroubled, free from care; - secus_Acc_Prep = mkPrep "secus" Acc ; -- [XXXCO] :: by, beside, alongside; in accordance with; + secus_Acc_Prep = mkPrep "secus" acc ; -- [XXXCO] :: by, beside, alongside; in accordance with; secus_Adv = mkAdv "secus" ; -- [XXXAO] :: otherwise; differently, in another way; contrary to what is right/expected; --- IGNORED secus_N : N1 secus, undeclined -- N -- [XBXDS] :: sex; + secus_N = constN "secus" neuter ; -- [XBXDS] :: sex; secutor_M_N = mkN "secutor" "secutoris " masculine ; -- [XXXDS] :: pursuer; attendant; secuutus_M_N = mkN "secuutus" ; -- [FXXEN] :: follower, pursuer; --- sed_Conj : Conj sed -- [XXXAX] :: but, but also; yet; however, but in fact/truth; not to mention; yes but; + sed_Conj = mkConj "sed" missing ; -- [XXXAX] :: but, but also; yet; however, but in fact/truth; not to mention; yes but; sedatio_F_N = mkN "sedatio" "sedationis " feminine ; -- [XXXDS] :: calming; sedatus_A = mkA "sedatus" "sedata" "sedatum" ; -- [XXXDX] :: calm, untroubled; quiet; sedda_F_N = mkN "sedda" ; -- [AXXBS] :: |sedan/carrying chair; toilet seat, stool; work-stool; coach/wagon seat; saddle; @@ -30713,6 +33052,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg seditio_F_N = mkN "seditio" "seditionis " feminine ; -- [XXXBX] :: sedition, riot, strife,rebellion; seditiosus_A = mkA "seditiosus" "seditiosa" "seditiosum" ; -- [XXXDX] :: mutinous; troubled; quarrelsome; sedo_V = mkV "sedare" ; -- [XXXDX] :: settle, allay; restrain; calm down; + seduco_V2 = mkV2 (mkV "seducere" "seduco" "seduxi" "seductus ") ; -- [XXXDX] :: lead away, lead apart; lead astray, seduce; seductio_F_N = mkN "seductio" "seductionis " feminine ; -- [XXXDS] :: leading aside; separation; E:leading astray; seduction; seductor_M_N = mkN "seductor" "seductoris " masculine ; -- [EEXDX] :: seducer (eccl.); seductus_A = mkA "seductus" "seducta" "seductum" ; -- [XXXDX] :: distant; retired, secluded; @@ -30725,7 +33065,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg segmentatus_A = mkA "segmentatus" "segmentata" "segmentatum" ; -- [XXXEC] :: adorned with borders or patches; segmentum_N_N = mkN "segmentum" ; -- [XXXEC] :: cutting, shred; borders/patches (pl.) of purple or gold; segnipes_A = mkA "segnipes" "segnipedis"; -- [XXXEC] :: slow-footed; --- SLASHSTUFF segnis_A : A2 segnis, segne, segnior -or -us, segnissimus -a -um -- [XXXAO] :: slow, sluggish, torpid, inactive; slothful, unenergetic; slow moving, slow; + segnis_A = mkA "segnis" ; -- [XXXAO] :: slow, sluggish, torpid, inactive; slothful, unenergetic; slow moving, slow; segnitas_F_N = mkN "segnitas" "segnitatis " feminine ; -- [XXXEO] :: sloth, sluggishness; segniter_Adv =mkAdv "segniter" "segnitius" "segnitissime" ; -- [XXXBO] :: half-heartedly; without spirit/energy, feebly; [nihlo ~ius => no less actively]; segnitia_F_N = mkN "segnitia" ; -- [XXXCO] :: sloth, sluggishness, inertia; weakness, feebleness; disinclination for action; @@ -30738,9 +33078,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg seiugis_M_N = mkN "seiugis" "seiugis " masculine ; -- [XXXEC] :: chariot drawn by six horses; seiunctim_Adv = mkAdv "seiunctim" ; -- [XXXEC] :: separately; seiunctio_F_N = mkN "seiunctio" "seiunctionis " feminine ; -- [XXXFS] :: separation; + sejungo_V2 = mkV2 (mkV "sejungere" "sejungo" "sejunxi" "sejunctus ") ; -- [XXXDX] :: separate; exclude; selectio_F_N = mkN "selectio" "selectionis " feminine ; -- [XXXEC] :: choosing out, selection; selectivus_A = mkA "selectivus" "selectiva" "selectivum" ; -- [GXXEK] :: selective; + selego_V2 = mkV2 (mkV "selegere" "selego" "selegi" "selectus ") ; -- [XXXDO] :: select, choose, pick out; weed out; selibra_F_N = mkN "selibra" ; -- [XXXDX] :: half-pound; + seligo_V2 = mkV2 (mkV "seligere" "seligo" "selegi" "selectus ") ; -- [XXXCO] :: select, choose, pick out; weed out; seliquastrum_N_N = mkN "seliquastrum" ; -- [XXXEO] :: seat, kind of seat/stool; sella_F_N = mkN "sella" ; -- [XXXBO] :: |sedan/carrying chair; toilet seat, stool; work-stool; coach/wagon seat; saddle; sellaria_F_N = mkN "sellaria" ; -- [XXXDS] :: sitting/drawing-room. place w/seats; debauchery; prostitute, public courtesan; @@ -30853,7 +33196,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg semunciarius_A = mkA "semunciarius" "semunciaria" "semunciarium" ; -- [XXXEC] :: of the fraction 1/24; semustulatus_A = mkA "semustulatus" "semustulata" "semustulatum" ; -- [XXXEC] :: half-burnt; semustus_A = mkA "semustus" "semusta" "semustum" ; -- [XXXDX] :: half-burnt, singed; --- IGNORED sen_N : N1 sen, undeclined -- N -- [DEQEW] :: sin, shin; (21st letter of Hebrew alphabet); (transliterate as S and SH); + sen_N = constN "sen" neuter ; -- [DEQEW] :: sin, shin; (21st letter of Hebrew alphabet); (transliterate as S and SH); senaculum_N_N = mkN "senaculum" ; -- [XXXEC] :: open space in the Forum, used by the Senate; senariolus_M_N = mkN "senariolus" ; -- [XPXFS] :: little trimeter; small verse of six feet; senarius_A = mkA "senarius" "senaria" "senarium" ; -- [XXXEC] :: composed of six in a group; @@ -30866,7 +33209,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg senectus_A = mkA "senectus" "senecta" "senectum" ; -- [XXXES] :: very old, aged; senectus_F_N = mkN "senectus" "senectutis " feminine ; -- [XXXAX] :: old age; extreme age; senility; old men; gray hairs; shed snake skin; seneo_V = mkV "senere" ; -- [XXXDX] :: be old; --- TODO senesco_V : V2 senesco, senescere, senui, - -- Declension: 3rd -- Comment: [XXXDX] :: grow old; grow weak, be in a decline; become exhausted; + senesco_V2 = mkV2 (mkV "senescere" "senesco" "senui" nonExist ) ; -- [XXXDX] :: grow old; grow weak, be in a decline; become exhausted; senex_A = mkA "senex" "senis"; -- [XXXAX] :: aged, old; [senior => Roman over 45]; senex_M_N = mkN "senex" "senis " masculine ; -- [XXXDX] :: old man; senilis_A = mkA "senilis" "senilis" "senile" ; -- [XXXDX] :: senile, aged; @@ -30897,7 +33240,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sentimentalis_A = mkA "sentimentalis" "sentimentalis" "sentimentale" ; -- [GXXEK] :: sentimental; sentimentum_N_N = mkN "sentimentum" ; -- [GXXEK] :: feeling, opinion; sentina_F_N = mkN "sentina" ; -- [XXXDX] :: bilgewater; scum or dregs of society; + sentio_V2 = mkV2 (mkV "sentire" "sentio" "sensi" "sensus ") ; -- [XXXAX] :: perceive, feel, experience; think, realize, see, understand; sentis_M_N = mkN "sentis" "sentis " masculine ; -- [XXXDX] :: thorn, briar; + sentisco_V = mkV "sentiscere" "sentisco" nonExist nonExist; -- [XXXEC] :: begin to perceive; sentus_A = mkA "sentus" "senta" "sentum" ; -- [XXXDX] :: rough, rugged, uneven; senus_A = mkA "senus" "sena" "senum" ; -- [XXXDX] :: six each (pl.); seorsum_Adv = mkAdv "seorsum" ; -- [XXXDX] :: separately, apart from the rest; @@ -30908,11 +33253,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg separatista_M_N = mkN "separatista" ; -- [GXXEK] :: separatist; separo_V = mkV "separare" ; -- [XXXBX] :: divide, distinguish; separate; sepeleo_V2 = mkV2 (mkV "sepelere") ; -- [EXXFW] :: bury/inter; (Romans cremate + inter ashes); submerge, overcome; suppress; ruin; + sepelio_V2 = mkV2 (mkV "sepelire" "sepelio" "sepelivi" "sepultus ") ; -- [XXXBO] :: bury/inter; (Romans cremate + inter ashes); submerge, overcome; suppress; ruin; + sepelo_V2 = mkV2 (mkV "sepelere" "sepelo" "sepeli" "sepelitus ") ; -- [DXXES] :: bury/inter; (Romans cremate + inter ashes); submerge, overcome; suppress; ruin; sepes_A = mkA "sepes" "sepedis"; -- [XXXFO] :: six-footed; sepes_F_N = mkN "sepes" "sepis " feminine ; -- [XXXCO] :: hedge; fence; anything planted/erected to form surrounding barrier; sepia_F_N = mkN "sepia" ; -- [XXXDX] :: cuttlefish; the secretion of a cuttlefish used as ink, ink; sepiaceus_A = mkA "sepiaceus" "sepiacea" "sepiaceum" ; -- [GXXEK] :: sepia-colored; + sepio_V2 = mkV2 (mkV "sepire" "sepio" "sepsi" "septus ") ; -- [XXXAO] :: |hedge/fence in, surround (w/hedge/wall/fence/barrier/troops); enclose; confine; seplasium_N_N = mkN "seplasium" ; -- [XXXDX] :: perfume; Seplasian unguent; + sepono_V2 = mkV2 (mkV "seponere" "sepono" "seposui" "sepositus ") ; -- [XXXDX] :: put away from one; disregard; isolate; reserve; sepositus_A = mkA "sepositus" "seposita" "sepositum" ; -- [XXXDS] :: remote; distinct; septemfluus_A = mkA "septemfluus" "septemflua" "septemfluum" ; -- [XXXDX] :: that flows in seven streams ("seven-flowing mouth of the Nile"); septemgeminus_A = mkA "septemgeminus" "septemgemina" "septemgeminum" ; -- [XXXDX] :: sevenfold; @@ -30966,16 +33315,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sequestre_N_N = mkN "sequestre" "sequestris " neuter ; -- [XXXEO] :: depository, escrow; [~ dare/ponere => place disputed property in trust]; sequestro_V2 = mkV2 (mkV "sequestrare") ; -- [XLXES] :: sequestrate, place/surrender into hands of trustee; separate, remove (L+S); sequius_Adv = mkAdv "sequius" ; -- [XXXDX] :: otherwise; contrary to what is expected/desired; amiss, unfavorably; + sequor_V = mkV "sequi" "sequor" "secutus sum " ; -- [XXXAO] :: |support/back/side with; obey, observe; pursue/chase; range/spread over; attain; sera_F_N = mkN "sera" ; -- [XXXCO] :: bar (for fastening doors); rail of post and rail fence; lock (Cal); seraphicus_A = mkA "seraphicus" "seraphica" "seraphicum" ; -- [FEXFM] :: Seraphic, of/like a Seraphim/angel; epithet of St. Francis/Bonaventura/Teresa; seraphicus_M_N = mkN "seraphicus" ; -- [EEXEW] :: one angel/seraph-like; zealot; Franciscan friar (Seraphic Father=St. Francis); seraphinus_A = mkA "seraphinus" "seraphina" "seraphinum" ; -- [FEXFM] :: Seraphic, of/like a Seraphim/angel; epithet of St. Francis/Bonaventura/Teresa; --- TODO seren_N : N1 seren, serenos/is -- F -- [XAXNO] :: type of drone/solitary bee/wasp); + seren_1_N = mkN "seren" "serenis" feminine ; -- [XAXNO] :: type of drone/solitary bee/wasp); + seren_2_N = mkN "seren" "serenos" feminine ; -- [XAXNO] :: type of drone/solitary bee/wasp); serenitas_F_N = mkN "serenitas" "serenitatis " feminine ; -- [XXXDX] :: fine weather; favorable conditions; sereno_V = mkV "serenare" ; -- [XXXDX] :: clear up, brighten; lighten; serenum_N_N = mkN "serenum" ; -- [XXXDX] :: fair weather; serenus_A = mkA "serenus" "serena" "serenum" ; -- [XXXAX] :: clear, fair, bright; serene, tranquil; cheerful, glad; --- TODO seresco_V : V2 seresco, serescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: grow dry; + seresco_V = mkV "serescere" "seresco" nonExist nonExist ; -- [XXXDX] :: grow dry; seria_F_N = mkN "seria" ; -- [XXXDX] :: large earthenware jar; sericaria_F_N = mkN "sericaria" ; -- [XXXIO] :: silk dealer; woman who deals in silk; sericarius_A = mkA "sericarius" "sericaria" "sericarium" ; -- [XXXIO] :: that deals in silk; @@ -30998,12 +33349,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sermonizo_V = mkV "sermonizare" ; -- [FEXEM] :: preach; sermunculus_M_N = mkN "sermunculus" ; -- [XXXEC] :: rumor, tittle-tattle; sero_Adv =mkAdv "sero" "serius" "serissime" ; -- [XXXBO] :: late, at a late hour, tardily; of a late period; too late (COMP); + sero_V2 = mkV2 (mkV "serere" "sero" "sevi" "satus ") ; -- [XXXDX] :: sow, plant; strew, scatter, spread; cultivate; beget, bring forth; serotinus_A = mkA "serotinus" "serotina" "serotinum" ; -- [XXXAO] :: late in coming/happening, belated; deferred/later; late to blossom/fruit (tree); serpens_F_N = mkN "serpens" "serpentis " feminine ; -- [XXXAX] :: serpent, snake; serpens_M_N = mkN "serpens" "serpentis " masculine ; -- [XXXAX] :: serpent, snake; serpentigena_M_N = mkN "serpentigena" ; -- [XXXEC] :: sprung from a serpent; serpentipes_A = mkA "serpentipes" "serpentipedis"; -- [XXXEC] :: snake-footed; serperastrum_N_N = mkN "serperastrum" ; -- [XXXEC] :: bandages (pl.) or knee-splints; + serpo_V2 = mkV2 (mkV "serpere" "serpo" "serpsi" "serptus ") ; -- [XXXDX] :: crawl; move slowly on, glide; creep on; serpyllum_N_N = mkN "serpyllum" ; -- [XXXDX] :: wild thyme; serra_F_N = mkN "serra" ; -- [XXXDX] :: saw; serracum_N_N = mkN "serracum" ; -- [XXXEO] :: kind of wagon/cart/wain; S:Charles's Wain constellation (Big Dipper); @@ -31016,7 +33369,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sertum_N_N = mkN "sertum" ; -- [XXXCO] :: wreath; chains of flowers (pl.), garlands, festoons; sertus_A = mkA "sertus" "serta" "sertum" ; -- [XXXDX] :: linked, connected; serum_N_N = mkN "serum" ; -- [XXXDO] :: whey, the watery part of curdled milk; any similar fluid; --- SLASHSTUFF serus_A : A2 serus, sera -um, serior -or -us, serissimus -a -um -- [XXXBX] :: late; too late; slow, tardy; after the expected/proper time; at a late hour; + serus_A = mkA "serus" ; -- [XXXBX] :: late; too late; slow, tardy; after the expected/proper time; at a late hour; serva_F_N = mkN "serva" ; -- [XXXDX] :: slave; servabilis_A = mkA "servabilis" "servabilis" "servabile" ; -- [XXXDX] :: capable of being saved; servans_A = mkA "servans" "servantis"; -- [XXXFO] :: ready to maintain (law/principle); @@ -31024,6 +33377,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg servatrix_F_N = mkN "servatrix" "servatricis " feminine ; -- [XXXDX] :: female preserver, protecotress; servianus_A = mkA "servianus" "serviana" "servianum" ; -- [XLXES] :: Servian; of Servius Sulpitus (jurist); servilis_A = mkA "servilis" "servilis" "servile" ; -- [XXXDX] :: servile, of slaves; + servio_V2 = mkV2 (mkV "servire" "servio" "servivi" "servitus ") ; -- [XXXAX] :: serve; be a slave to; with DAT; servitium_N_N = mkN "servitium" ; -- [XXXBX] :: slavery, servitude; slaves; the slave class; servitudo_F_N = mkN "servitudo" "servitudinis " feminine ; -- [XXXEC] :: slavery, servitude; servitus_F_N = mkN "servitus" "servitutis " feminine ; -- [XXXDX] :: slavery; slaves; servitude; @@ -31067,14 +33421,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sessorium_N_N = mkN "sessorium" ; -- [XXXDX] :: chair; residence, dwelling, habitation; sestertium_N_N = mkN "sestertium" ; -- [XXXDS] :: 1000 sestertii; two and a half feet; (measure of depth/width); sestertius_M_N = mkN "sestertius" ; -- [XXXDX] :: sesterce; [semis-tertius => 2 1/2 assses, small silver coin]; --- set_Conj : Conj set -- [XXXBX] :: but, but also; yet; however, but in fact/truth; not to mention; yes but; + set_Conj = mkConj "set" missing ; -- [XXXBX] :: but, but also; yet; however, but in fact/truth; not to mention; yes but; seta_F_N = mkN "seta" ; -- [XXXCO] :: hair; (coarse/stiff); bristle; brush; morbid internal growth; fishing-leader; setius_Adv = mkAdv "setius" ; -- [XXXDX] :: less, worse; [nihilo setius => none the less, nevertheless]; --- IGNORED setthim_N : N1 setthim, undeclined -- N -- [EXQEW] :: shittim/setim wood, wood of shittah tree/acacia wood; (not the tree); (Hebrew); --- seu_Conj : Conj seu -- [XXXAX] :: or if; or; [sive ... sive => whether ... or, either ... or]; + setthim_N = constN "setthim" neuter ; -- [EXQEW] :: shittim/setim wood, wood of shittah tree/acacia wood; (not the tree); (Hebrew); + seu_Conj = mkConj "seu" missing ; -- [XXXAX] :: or if; or; [sive ... sive => whether ... or, either ... or]; severitas_F_N = mkN "severitas" "severitatis " feminine ; -- [XXXDX] :: strictness, severity; severitudo_F_N = mkN "severitudo" "severitudinis " feminine ; -- [XXXFS] :: severity; austerity; --- SLASHSTUFF severus_A : A2 severus, severa -um, severior -or -us, severissimus -a -um -- [XXXBX] :: stern, strict, severe; grave, austere; weighty, serious; unadorned, plain; + severus_A = mkA "severus" ; -- [XXXBX] :: stern, strict, severe; grave, austere; weighty, serious; unadorned, plain; seviratus_M_N = mkN "seviratus" "seviratus " masculine ; -- [XXXDX] :: sexvirate; the position of a sevir; a member of a board of six men; sevoco_V = mkV "sevocare" ; -- [XXXDX] :: call aside; remove; separate; sexagenarius_A = mkA "sexagenarius" "sexagenaria" "sexagenarium" ; -- [XXXEC] :: containing sixty; sixty years old; @@ -31103,9 +33457,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sexualis_A = mkA "sexualis" "sexualis" "sexuale" ; -- [GBXEK] :: sexual; sexualitas_F_N = mkN "sexualitas" "sexualitatis " feminine ; -- [GBXEK] :: sexuality; sexus_M_N = mkN "sexus" "sexus " masculine ; -- [XXXAS] :: sex; (male or female); (also for plants); sexual organs; --- IGNORED sexus_N : N1 sexus, undeclined -- N -- [XBXDS] :: sex; (male or female); --- si_Conj : Conj si -- [XXXAX] :: if, if only; whether; [quod si/si quis or quid => but if/if anyone or anything]; --- IGNORED siban_N : N1 siban, undeclined -- N -- [EXQEW] :: Sivan/Siban; third month of the Jewish ecclesiastical year; + sexus_N = constN "sexus" neuter ; -- [XBXDS] :: sex; (male or female); + si_Conj = mkConj "si" missing ; -- [XXXAX] :: if, if only; whether; [quod si/si quis or quid => but if/if anyone or anything]; + siban_N = constN "siban" neuter ; -- [EXQEW] :: Sivan/Siban; third month of the Jewish ecclesiastical year; sibilo_V = mkV "sibilare" ; -- [XXXDX] :: hiss; hiss at; sibilum_N_N = mkN "sibilum" ; -- [XXXDX] :: hissing, whistling; hiss of contempt or disfavor; sibilus_A = mkA "sibilus" "sibila" "sibilum" ; -- [XXXDX] :: hissing; @@ -31130,13 +33484,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg siclus_M_N = mkN "siclus" ; -- [DLQDS] :: shekel; (Jewish coin); sicubi_Adv = mkAdv "sicubi" ; -- [XXXDX] :: if anywhere, if at any place; sicula_F_N = mkN "sicula" ; -- [XXXFO] :: small dagger; penis; --- sicumquam_Conj : Conj sicumquam -- [XXXFO] :: if ever; [si cumquam => if ever]; + sicumquam_Conj = mkConj "sicumquam" missing ; -- [XXXFO] :: if ever; [si cumquam => if ever]; sicunde_Adv = mkAdv "sicunde" ; -- [XXXDX] :: if from any place or source; sicut_Adv = mkAdv "sicut" ; -- [XXXAX] :: as, just as; like; in same way; as if; as it certainly is; as it were; --- sicut_Conj : Conj sicut -- [XXXDX] :: as, just as; like; in same way; as if; as it certainly is; as it were; + sicut_Conj = mkConj "sicut" missing ; -- [XXXDX] :: as, just as; like; in same way; as if; as it certainly is; as it were; sicuti_Adv = mkAdv "sicuti" ; -- [XXXDX] :: as, just as; like; in same way; as if; as it certainly is; as it were; sidereus_A = mkA "sidereus" "siderea" "sidereum" ; -- [XXXBX] :: starry; relating to stars; heavenly; star-like; --- TODO sido_V : V2 sido, sidere, sidi, - -- Declension: 3rd -- Comment: [XXXDX] :: settle; sink down; sit down; run aground; + sido_V2 = mkV2 (mkV "sidere" "sido" "sidi" nonExist ) ; -- [XXXDX] :: settle; sink down; sit down; run aground; sidus_N_N = mkN "sidus" "sideris " neuter ; -- [XXXAX] :: star; constellation; tempest (Vulgate 4 Ezra 15:39); sifo_M_N = mkN "sifo" "sifonis " masculine ; -- [XXXCO] :: siphon; tube for sucking/blowing liquid, straw; fire-engine device; liquid jet; sifonarius_M_N = mkN "sifonarius" ; -- [XXXIO] :: fireman in charge of a siphon (fire-engine device); @@ -31172,7 +33526,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg silentium_N_N = mkN "silentium" ; -- [XXXAX] :: silence; sileo_V = mkV "silere" ; -- [XXXBX] :: be silent, not to speak (about); be quiet; not to function; siler_N_N = mkN "siler" "sileris " neuter ; -- [XAXEC] :: brook-willow; --- TODO silesco_V : V2 silesco, silescere, silui, - -- Declension: 3rd -- Comment: [XXXDX] :: grow quiet; + silesco_V2 = mkV2 (mkV "silescere" "silesco" "silui" nonExist ) ; -- [XXXDX] :: grow quiet; silex_F_N = mkN "silex" "silicis " feminine ; -- [XXXBX] :: pebble/stone, flint; boulder, stone; silex_M_N = mkN "silex" "silicis " masculine ; -- [XXXBX] :: pebble/stone, flint; boulder, stone; silicernium_N_N = mkN "silicernium" ; -- [XXXEC] :: funeral feast; @@ -31189,6 +33543,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg silus_A = mkA "silus" "sila" "silum" ; -- [XXXEC] :: snub-nosed, pug-nosed; silva_F_N = mkN "silva" ; -- [XXXAX] :: wood, forest (sylvan); silvanus_M_N = mkN "silvanus" ; -- [XXXDX] :: gods (pl.)associated with forest and uncultivated land; + silvesco_V = mkV "silvescere" "silvesco" nonExist nonExist; -- [XAXEC] :: run wild (of a vine), run to wood; silvester_A = mkA "silvester" "silvestris" "silvestre" ; -- [XAXBO] :: wooded, covered with woods; found/situated/living in woodlands; wild, untamed; silvestre_N_N = mkN "silvestre" "silvestris " neuter ; -- [XAXCO] :: woodlands (pl.), woods; silvestris_A = mkA "silvestris" "silvestris" "silvestre" ; -- [XAXAO] :: wooded, covered with woods; found/situated/living in woodlands; wild, untamed; @@ -31206,7 +33561,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg similago_F_N = mkN "similago" "similaginis " feminine ; -- [XAQEO] :: normal flour produced from triticum; finest wheat flour (L+S); similax_F_N = mkN "similax" "similacis " feminine ; -- [XAXDS] :: bindweed; kind of tree (Pliny gives two tree types); simile_N_N = mkN "simile" "similis " neuter ; -- [XXXDS] :: comparison; parallel; --- SLASHSTUFF similis_A : A2 similis, simile, similior -or -us, simillimus -a -um -- [XXXAX] :: like, similar, resembling; + similis_A = mkA "similis" ; -- [XXXAX] :: like, similar, resembling; similiter_Adv = mkAdv "similiter" ; -- [XXXDX] :: similarly; similitudo_F_N = mkN "similitudo" "similitudinis " feminine ; -- [XXXDX] :: likeness, imitation; similarity, resemblance; by-word (Plater); parable; similo_V = mkV "similare" ; -- [XXXAO] :: imitate, copy; pretend (to have/be); look like; simulate; counterfeit; feint; @@ -31239,32 +33594,33 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg simultas_F_N = mkN "simultas" "simultatis " feminine ; -- [XXXDX] :: enmity, rivalry; hatred; simulus_A = mkA "simulus" "simula" "simulum" ; -- [XXXDX] :: flatnosed, snub-nosed; simus_A = mkA "simus" "sima" "simum" ; -- [XBXCO] :: flatnosed, snub-nosed; having flattened nose; flatten/splayed (nose/other); --- sin_Conj : Conj sin -- [XXXBX] :: but if; if on the contrary; + sin_Conj = mkConj "sin" missing ; -- [XXXBX] :: but if; if on the contrary; sinapis_F_N = mkN "sinapis" "sinapis " feminine ; -- [XXXEC] :: mustard; sinceris_A = mkA "sinceris" "sinceris" "sincere" ; -- [XXXEO] :: pure, w/no admixture of foreign material; clear/unclouded; free from fever; sinceritas_F_N = mkN "sinceritas" "sinceritatis " feminine ; -- [XXXCO] :: integrity, honesty, straightforwardness; soundness, physical wholeness; purity; --- SLASHSTUFF sincerus_A : A2 sincerus, sincera -um, sincerior -or -us, sincerissimus -a -um -- [XXXDX] :: clean, pure, uninjured, whole; sound, genuine, truthful, candid, sincere; + sincerus_A = mkA "sincerus" ; -- [XXXDX] :: clean, pure, uninjured, whole; sound, genuine, truthful, candid, sincere; sincipitamentum_N_N = mkN "sincipitamentum" ; -- [BAXFS] :: half-head; half/side of a head (as article of food); smoked cheek of a pig; sinciput_N_N = mkN "sinciput" "sincipitis " neuter ; -- [XXXCO] :: half/side of a head (as article of food); smoked cheek of a pig; head; brain; sindon_F_N = mkN "sindon" "sindonis " feminine ; -- [XXXFO] :: muslin; woven material of fine texture; fine linen (Vulgate); - sine_Abl_Prep = mkPrep "sine" Abl ; -- [XXXAX] :: without; (sometimes after object); lack; [Johannis sine Terra => John Lackland]; + sine_Abl_Prep = mkPrep "sine" abl ; -- [XXXAX] :: without; (sometimes after object); lack; [Johannis sine Terra => John Lackland]; singillatim_Adv = mkAdv "singillatim" ; -- [XXXCO] :: one by one, singly, separately; singularis_A = mkA "singularis" "singularis" "singulare" ; -- [XXXBX] :: alone, unique; single, one by one; singular, remarkable, unusual; singularitas_F_N = mkN "singularitas" "singularitatis " feminine ; -- [XXXEZ] :: singularity; singulariter_Adv = mkAdv "singulariter" ; -- [XXXDX] :: |particularly; exceedingly; singularly; unusually, remarkably; singulatim_Adv = mkAdv "singulatim" ; -- [XXXCO] :: one by one, singly, separately; singultim_Adv = mkAdv "singultim" ; -- [XXXFO] :: sobbingly, with sobs; stammeringly; --- TODO singultio_V : V2 singultio, singultire, -, singultus -- Declension: 4th -- Comment: [XXXFS] :: hiccup; sob; cluck; (see also singulto); + singultio_V = mkV "singultire" "singultio" nonExist "singultus" ; -- [XXXFS] :: hiccup; sob; cluck; (see also singulto); singulto_V = mkV "singultare" ; -- [XXXDX] :: catch the breath, gasp; hiccup; sob, utter with sobs; gasp out (one's life); singultus_M_N = mkN "singultus" "singultus " masculine ; -- [XXXDX] :: sobbing; convulsive catching of breath; singulus_A = mkA "singulus" "singula" "singulum" ; -- [XXXAX] :: apiece (pl.); every; one each/at a time; individual/separate/single; several; sinisbrorsus_Adv = mkAdv "sinisbrorsus" ; -- [XXXDX] :: to the left; sinisbrosus_Adv = mkAdv "sinisbrosus" ; -- [XXXDX] :: to the left; --- SLASHSTUFF sinister_A : A2 sinister, sinistra -um, sinistrior -or -us, sinistimus -a -um -- [XXXAX] :: left, improper,adverse; inauspicious; + sinister_A = mkA "sinister" ; -- [XXXAX] :: left, improper,adverse; inauspicious; sinistra_F_N = mkN "sinistra" ; -- [XXXDX] :: left hand; sinistrorsum_Adv = mkAdv "sinistrorsum" ; -- [XXXDX] :: to the left; sinistrorsus_Adv = mkAdv "sinistrorsus" ; -- [XXXDX] :: to the left; sinistrosum_Adv = mkAdv "sinistrosum" ; -- [XXXDX] :: to the left; + sino_V2 = mkV2 (mkV "sinere" "sino" "sivi" "situs ") ; -- [XXXAX] :: allow, permit; sinum_N_N = mkN "sinum" ; -- [XXXDX] :: bowl for serving wine, etc; sinuo_V = mkV "sinuare" ; -- [XXXDX] :: bend into a curve; bend; billow out; sinuosus_A = mkA "sinuosus" "sinuosa" "sinuosum" ; -- [XXXDX] :: characterized by bending, winding; sinuous; full of folds/recesses; @@ -31282,7 +33638,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sipunculus_M_N = mkN "sipunculus" ; -- [XXXEO] :: small tube/pipe (through which water is forced); jet (of a fountain); sipus_M_N = mkN "sipus" ; -- [XXXFO] :: pipe/tube (for distributing water); siquando_Adv = mkAdv "siquando" ; -- [XXXDX] :: if when; at what time; if/when some day; if at any time (assumed probable); --- siquidem_Conj : Conj siquidem -- [XXXBX] :: accordingly; if indeed/in fact/it is possible, even supposing; since/in that; + siquidem_Conj = mkConj "siquidem" missing ; -- [XXXBX] :: accordingly; if indeed/in fact/it is possible, even supposing; since/in that; siremps_Adv = mkAdv "siremps" ; -- [XXXDS] :: like, the same; sirempse_Adv = mkAdv "sirempse" ; -- [XXXDS] :: like, the same; sirpea_F_N = mkN "sirpea" ; -- [XAXEC] :: basket-work; @@ -31297,6 +33653,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sirus_M_N = mkN "sirus" ; -- [XAXDS] :: corn pit; underground granary; sisamum_N_N = mkN "sisamum" ; -- [XAXFM] :: sesame; (sesamum); sisinbrium_N_N = mkN "sisinbrium" ; -- [EAXFP] :: aromatic herb, perhaps mint; (= sisymbrium); + sisto_V2 = mkV2 (mkV "sistere" "sisto" "stiti" "status ") ; -- [XXXBX] :: stop, check; cause to stand; set up; sistrum_N_N = mkN "sistrum" ; -- [XXXDX] :: brazen/metal rattle used in the worship of Isis; sisymbrium_N_N = mkN "sisymbrium" ; -- [XXXEC] :: aromatic herb, perhaps mint; sitarchia_F_N = mkN "sitarchia" ; -- [XXXCO] :: provisions for a journey; bag/receptacle for such provisions, scrip; @@ -31304,15 +33661,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sitella_F_N = mkN "sitella" ; -- [XXXEC] :: urn for drawing lots; siticulosus_A = mkA "siticulosus" "siticulosa" "siticulosum" ; -- [XXXEC] :: very dry, parched; sitiens_A = mkA "sitiens" "sitientis"; -- [XXXDX] :: thirsting, producing thirst, arid, dry, parched, thirsty (for); --- TODO sitio_V : V2 sitio, sitire, sitivi, - -- Declension: 4th -- Comment: [XXXBX] :: be thirsty; + sitio_V2 = mkV2 (mkV "sitire" "sitio" "sitivi" nonExist ) ; -- [XXXBX] :: be thirsty; sitis_F_N = mkN "sitis" "sitis " feminine ; -- [XXXBX] :: thirst; --- IGNORED sitthim_N : N1 sitthim, undeclined -- N -- [EXQEW] :: shittim/setim wood, wood of shittah tree/acacia wood; (not the tree); (Hebrew); + sitthim_N = constN "sitthim" neuter ; -- [EXQEW] :: shittim/setim wood, wood of shittah tree/acacia wood; (not the tree); (Hebrew); sittybus_M_N = mkN "sittybus" ; -- [XXXEC] :: strip of parchment showing the title of a book; situalis_A = mkA "situalis" "situalis" "situale" ; -- [FXXFM] :: local, localized; situla_F_N = mkN "situla" ; -- [XXXDO] :: basin/urn/jar; bucket, vessel for drawing/holding water; urn/basin on monument; situs_A = mkA "situs" "sita" "situm" ; -- [XXXDX] :: laid up, stored; positioned, situated; centered (on); situs_M_N = mkN "situs" "situs " masculine ; -- [XXXBX] :: situation, position, site; structure; neglect, disuse, stagnation; mold; --- sive_Conj : Conj sive -- [XXXAX] :: or if; or; [sive ... sive => whether ... or]; + sive_Conj = mkConj "sive" missing ; -- [XXXAX] :: or if; or; [sive ... sive => whether ... or]; smalto_V = mkV "smaltare" ; -- [GXXEK] :: enamel; smaltum_N_N = mkN "smaltum" ; -- [GXXEK] :: enamel; smaragdachates_F_N = mkN "smaragdachates" "smaragdachatae " feminine ; -- [XXHNO] :: precious stone (described as a variety of agate); @@ -31381,18 +33738,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg soldus_A = mkA "soldus" "solda" "soldum" ; -- [XXXES] :: solid; dense; unbroken; (solidus); solea_F_N = mkN "solea" ; -- [XXXBO] :: sandal, sole fastened w/thong; sole (Cal); solearius_A = mkA "solearius" "solearia" "solearium" ; -- [BXXFS] :: sandal-maker; --- SLASHSTUFF solemnis_A : A2 solemnis, solemne, solemnior -or -us, solemnissimus -a -um -- [XXXCO] :: solemn, ceremonial, sacred, in accordance w/religion/law; traditional/customary; + solemnis_A = mkA "solemnis" ; -- [XXXCO] :: solemn, ceremonial, sacred, in accordance w/religion/law; traditional/customary; solemnitas_F_N = mkN "solemnitas" "solemnitatis " feminine ; -- [XXXEO] :: solemnity; ritual/solemn observance; proper/necessary/proper formality (legal); solemniter_Adv = mkAdv "solemniter" ; -- [XXXDO] :: solemnly; with due ritual/ceremony; with proper/necessary formalities (legal); solemnitus_Adv = mkAdv "solemnitus" ; -- [XXXFO] :: solemnly; with due ritual/ceremony; with proper/necessary formalities (legal); solempniter_Adv = mkAdv "solempniter" ; -- [XXXFS] :: solemnly; soleo_V = mkV "solere" ; -- [XXXAX] :: be in the habit of; become accustomed to; solidarietas_F_N = mkN "solidarietas" "solidarietatis " feminine ; -- [GXXEK] :: solidarity; --- TODO solidesco_V : V2 solidesco, solidescere, -, - -- Declension: 3rd -- Comment: [EXXFS] :: become firm; become solid; + solidesco_V = mkV "solidescere" "solidesco" nonExist nonExist ; -- [EXXFS] :: become firm; become solid; soliditas_F_N = mkN "soliditas" "soliditatis " feminine ; -- [XXXCO] :: solidity; lack of cavities; density/firmness of texture; entirety (legal); solido_V = mkV "solidare" ; -- [XXXDX] :: make solid/whole/dense/firm/crack free; strengthen, consolidate; solder; knit; solidum_N_N = mkN "solidum" ; -- [XXXCO] :: solid figure; firm/hard material; firm/solid/unyielding ground; a whole; --- SLASHSTUFF solidus_A : A2 solidus, solida -um, solidior -or -us, solidissimus -a -um -- [XXXAO] :: |three dimensional; retaining form/rigidity, firm; real, lasting; perfect; full; + solidus_A = mkA "solidus" ; -- [XXXAO] :: |three dimensional; retaining form/rigidity, firm; real, lasting; perfect; full; solidus_M_N = mkN "solidus" ; -- [XXXCO] :: gold coin; (aurus introduced by Constantine); soliferreum_N_N = mkN "soliferreum" ; -- [XXXEC] :: javelin entirely of iron; solifuga_F_N = mkN "solifuga" ; -- [XXXFS] :: poisonous ant/spider; @@ -31408,12 +33765,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg solium_N_N = mkN "solium" ; -- [XXXBX] :: throne, seat; solivagus_A = mkA "solivagus" "solivaga" "solivagum" ; -- [XXXEC] :: wandering alone; solitary, lonely; sollemne_N_N = mkN "sollemne" "sollemnis " neuter ; -- [XXXCO] :: |ritual offerings (pl.); legal formalities; --- SLASHSTUFF sollemnis_A : A2 sollemnis, sollemne, sollemnior -or -us, sollemnissimus -a -um -- [XXXAO] :: solemn, ceremonial, sacred, in accordance w/religion/law; traditional/customary; + sollemnis_A = mkA "sollemnis" ; -- [XXXAO] :: solemn, ceremonial, sacred, in accordance w/religion/law; traditional/customary; sollemnitas_F_N = mkN "sollemnitas" "sollemnitatis " feminine ; -- [XXXEO] :: solemnity; ritual/solemn observance; proper/necessary/proper formality (legal); sollemniter_Adv = mkAdv "sollemniter" ; -- [XXXDO] :: solemnly; with due ritual/ceremony; with proper/necessary formalities (legal); sollemnitus_Adv = mkAdv "sollemnitus" ; -- [XXXFO] :: solemnly; with due ritual/ceremony; with proper/necessary formalities (legal); sollemnizo_V = mkV "sollemnizare" ; -- [FXXEM] :: celebrate; solemnize; --- SLASHSTUFF sollempnis_A : A2 sollempnis, sollempne, sollempnior -or -us, sollempnissimus -a -um -- [XXXEO] :: solemn, ceremonial, sacred, in accordance w/religion/law; traditional/customary; + sollempnis_A = mkA "sollempnis" ; -- [XXXEO] :: solemn, ceremonial, sacred, in accordance w/religion/law; traditional/customary; sollers_A = mkA "sollers" "sollertis"; -- [XXXDX] :: clever, dexterous, adroit, expert, skilled, ingenious, accomplished; sollerter_Adv =mkAdv "sollerter" "sollertius" "sollertissime" ; -- [XXXCO] :: cleverly; skillfully; resourcefully; sollertia_F_N = mkN "sollertia" ; -- [XXXDX] :: skill, cleverness; resourcefulness; @@ -31434,10 +33791,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg solum_Adv = mkAdv "solum" ; -- [XXXDO] :: only/just/merely/barely/alone; solum_N_N = mkN "solum" ; -- [XXXBX] :: bottom, ground, floor; soil, land; solummodo_Adv = mkAdv "solummodo" ; -- [XXXBO] :: only/just/merely/barely/alone; [nonsolum ...sed etiam => not only ...but also]; --- SLASHSTUFF solus_A : A2 solus, sola, solum (gen -ius) -- [XXXAX] :: only, single; lonely; alone, having no companion/friend/protector; unique; + solus_A = mkA "solus" ; -- [XXXAX] :: only, single; lonely; alone, having no companion/friend/protector; unique; solutilis_A = mkA "solutilis" "solutilis" "solutile" ; -- [XXXFO] :: easily broken up; (of structures); solutio_F_N = mkN "solutio" "solutionis " feminine ; -- [XXXDX] :: loosing, relaxation, weakening; payment; --- SLASHSTUFF solutus_A : A2 solutus, soluta -um, solutior -or -us, solutissimus -a -um -- [XXXDX] :: unbound, released; free, at large; unrestrained, profligate; lax, careless; + solutus_A = mkA "solutus" ; -- [XXXDX] :: unbound, released; free, at large; unrestrained, profligate; lax, careless; + solvo_V2 = mkV2 (mkV "solvere" "solvo" "solvi" "solutus ") ; -- [XXXAX] :: loosen, release, unbind, untie, free; open; set sail; scatter; pay off/back; somniculose_Adv = mkAdv "somniculose" ; -- [XXXEC] :: sleepily, drowsily; somniculosus_A = mkA "somniculosus" "somniculosa" "somniculosum" ; -- [XXXEC] :: sleepy, drowsy; somnifer_A = mkA "somnifer" "somnifera" "somniferum" ; -- [XXXDX] :: inducing sleep; @@ -31451,6 +33809,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sonitus_M_N = mkN "sonitus" "sonitus " masculine ; -- [XXXBX] :: noise, loud sound; sonivius_A = mkA "sonivius" "sonivia" "sonivium" ; -- [XXXEC] :: sounding; sono_V = mkV "sonare" ; -- [DXXAO] :: |echo/resound; be heard, sound; be spoken of (as); celebrate in speech; + sono_V2 = mkV2 (mkV "sonere" "sono" "sonui" "sonitus ") ; -- [BXXAO] :: |echo/resound; be heard, sound; be spoken of (as); celebrate in speech; sonor_M_N = mkN "sonor" "sonoris " masculine ; -- [XXXDX] :: sound, noise, din; sonoritas_F_N = mkN "sonoritas" "sonoritatis " feminine ; -- [DDXES] :: melodiousness; fullness of sound; sonorus_A = mkA "sonorus" "sonora" "sonorum" ; -- [XXXDX] :: noisy, loud, resounding, sonorous; @@ -31471,6 +33830,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sophus_A = mkA "sophus" "sopha" "sophum" ; -- [XXXES] :: wise; sophus_M_N = mkN "sophus" ; -- [XXXEC] :: wise man; sopio_M_N = mkN "sopio" "sopionis " masculine ; -- [XXXCO] :: penis; (perhaps rude); + sopio_V2 = mkV2 (mkV "sopire" "sopio" "sopivi" "sopitus ") ; -- [XXXBX] :: cause to sleep, render insensible by a blow or sudden shock; sopor_M_N = mkN "sopor" "soporis " masculine ; -- [XXXBX] :: deep sleep; soporifer_A = mkA "soporifer" "soporifera" "soporiferum" ; -- [XXXDX] :: bringing sleep or unconsciousness; soporo_V = mkV "soporare" ; -- [XXXDX] :: rend to sleep, render unconscious, stupefy; @@ -31490,7 +33850,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sordidatus_A = mkA "sordidatus" "sordidata" "sordidatum" ; -- [XXXDX] :: shabby, in dirty clothes; meanly dressed; sordide_Adv =mkAdv "sordide" "sordidius" "sordidissime" ; -- [XXXDX] :: meanly, basely; vulgarly, unbecomingly, poorly; stingily; sordidly, squalidly; sordidulus_A = mkA "sordidulus" "sordidula" "sordidulum" ; -- [XXXEC] :: somewhat dirty or mean; --- SLASHSTUFF sordidus_A : A2 sordidus, sordida -um, sordidior -or -us, sordidissimus -a -um -- [XXXBX] :: dirty, unclean, foul, filthy; vulgar, sordid; low, base, mean, paltry; vile; + sordidus_A = mkA "sordidus" ; -- [XXXBX] :: dirty, unclean, foul, filthy; vulgar, sordid; low, base, mean, paltry; vile; sorex_M_N = mkN "sorex" "soricis " masculine ; -- [XAXEC] :: shrew-mouse; soricinus_A = mkA "soricinus" "soricina" "soricinum" ; -- [BXXFS] :: of the shrewmouse; sorites_M_N = mkN "sorites" "soritae " masculine ; -- [XGXFS] :: sophism; an accumulation of arguments; @@ -31501,6 +33861,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sors_F_N = mkN "sors" "sortis " feminine ; -- [XXXAX] :: lot, fate; oracular response; sortilegus_A = mkA "sortilegus" "sortilega" "sortilegum" ; -- [XXXEC] :: prophetic, oracular; sortilegus_M_N = mkN "sortilegus" ; -- [XXXEC] :: soothsayer, fortune-teller; + sortior_V = mkV "sortiri" "sortior" "sortitus sum " ; -- [XXXBX] :: cast or draw lots; obtain by lot; appoint by lot; choose; sortitus_A = mkA "sortitus" "sortita" "sortitum" ; -- [XXXDS] :: assigned; sortitus_M_N = mkN "sortitus" "sortitus " masculine ; -- [XXXDX] :: process of lottery; sospes_A = mkA "sospes" "sospitis"; -- [XXXBX] :: safe and sound; auspicious; @@ -31515,6 +33876,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg spadix_A = mkA "spadix" "spadicis"; -- [XXXEC] :: chestnut-colored; spado_M_N = mkN "spado" "spadonis " masculine ; -- [XXXDX] :: eunuch; spaera_F_N = mkN "spaera" ; -- [XSXCO] :: globe, sphere, orb, ball; orrery/working model of universe (spheres of planets); + spargo_V2 = mkV2 (mkV "spargere" "spargo" "sparsi" "sparsus ") ; -- [XXXAX] :: scatter, strew, sprinkle; spot; sparteus_A = mkA "sparteus" "spartea" "sparteum" ; -- [XAXFS] :: of broom; made of broom; spartum_N_N = mkN "spartum" ; -- [XAXEC] :: Spanish broom; sparulus_M_N = mkN "sparulus" ; -- [XAXEC] :: fish, sea-bream; @@ -31538,9 +33900,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg species_F_N = mkN "species" "speciei " feminine ; -- [XXXAX] :: sight, appearance, show; splendor, beauty; kind, type; specillum_N_N = mkN "specillum" ; -- [XBXEC] :: surgeon's probe; specimen_N_N = mkN "specimen" "speciminis " neuter ; -- [XXXDX] :: mark, proof; idea; model; --- TODO specio_V : V2 specio, specere, spexi, - -- Declension: 3rd -- Comment: [XXXEC] :: look at, see; + specio_V2 = mkV2 (mkV "specere" "specio" "spexi" nonExist ) ; -- [XXXEC] :: look at, see; speciose_Adv =mkAdv "speciose" "speciosius" "speciosissime" ; -- [XXXCO] :: attractively, gracefully; strikingly, impressively; speciously, plausibly; --- SLASHSTUFF speciosus_A : A2 speciosus, speciosa -um, speciosior -or -us, speciosissimus -a -um -- [XXXBO] :: |spectacular/brilliant/impressive/splendid; showy/public; plausible, specious; + speciosus_A = mkA "speciosus" ; -- [XXXBO] :: |spectacular/brilliant/impressive/splendid; showy/public; plausible, specious; spectabilis_A = mkA "spectabilis" "spectabilis" "spectabile" ; -- [XXXCO] :: noteworthy, outstanding; worth consideration/looking at; able to be seen; spectabilitas_F_N = mkN "spectabilitas" "spectabilitatis " feminine ; -- [DLXES] :: office/dignity of spectabilis (title of high imperial officers); spectaclum_N_N = mkN "spectaclum" ; -- [XDXDS] :: show, spectacle; spectators' seat; (spectaculum); @@ -31570,6 +33932,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sperabilis_A = mkA "sperabilis" "sperabilis" "sperabile" ; -- [XXXDS] :: hoped for; sperma_F_N = mkN "sperma" ; -- [FBXEM] :: seed, semen, sperm; spermatozoidum_N_N = mkN "spermatozoidum" ; -- [GXXEK] :: spermatozoid; sperm; + sperno_V2 = mkV2 (mkV "spernere" "sperno" "sprevi" "spretus ") ; -- [XXXAX] :: scorn, despise, spurn; spero_V = mkV "sperare" ; -- [XXXAX] :: hope for; trust; look forward to; hope; spes_F_N = mkN "spes" "spei " feminine ; -- [XXXAO] :: |object/embodiment of hope; [optio ad ~ => junior hoping to make centurion]; sphacos_M_N = mkN "sphacos" "sphaci " masculine ; -- [DAXNS] :: fragment moss; sage (Pliny); @@ -31589,7 +33952,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg spica_F_N = mkN "spica" ; -- [XXXDX] :: head/ear of grain/cereal; spiceus_A = mkA "spiceus" "spicea" "spiceum" ; -- [XXXDX] :: consisting of heads/ears of grain/cereal; spicifer_A = mkA "spicifer" "spicifera" "spiciferum" ; -- [XAXEC] :: carrying heads/ears of corn/cereal; --- TODO spicio_V : V2 spicio, spicere, spixi, - -- Declension: 3rd -- Comment: [XXXEC] :: look at, see; + spicio_V2 = mkV2 (mkV "spicere" "spicio" "spixi" nonExist ) ; -- [XXXEC] :: look at, see; spico_V = mkV "spicare" ; -- [EXXFS] :: furnish with spikes; provide ears; spiculo_V2 = mkV2 (mkV "spiculare") ; -- [FXXFY] :: stab; spiculum_N_N = mkN "spiculum" ; -- [XXXDX] :: sting; javelin; arrow; sharp point of a weapon; @@ -31619,12 +33982,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg spirituosus_A = mkA "spirituosus" "spirituosa" "spirituosum" ; -- [GXXEK] :: spiritual; spiritus_M_N = mkN "spiritus" "spiritus " masculine ; -- [XXXAX] :: breath, breathing, air, soul, life; spiro_V = mkV "spirare" ; -- [XXXAX] :: breathe; blow; live; breathe out; exhale; breathe the spirit of; --- TODO spissesco_V : V2 spissesco, spissescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: become more compact, thicken; + spissesco_V = mkV "spissescere" "spissesco" nonExist nonExist ; -- [XXXDX] :: become more compact, thicken; spissitudo_F_N = mkN "spissitudo" "spissitudinis " feminine ; -- [DXXFS] :: thickness, density; spisso_V = mkV "spissare" ; -- [XXXDX] :: thicken, condense; spissus_A = mkA "spissus" "spissa" "spissum" ; -- [XXXDX] :: thick, dense, crowded; splendeo_V = mkV "splendere" ; -- [XXXCO] :: shine/gleam/glitter, be bright/radiant/resplendent (white/color)/distinguished; --- TODO splendesco_V : V2 splendesco, splendescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: become bright, begin to shine; derive luster; + splendesco_V = mkV "splendescere" "splendesco" nonExist nonExist ; -- [XXXDX] :: become bright, begin to shine; derive luster; splendidus_A = mkA "splendidus" "splendida" "splendidum" ; -- [XXXBX] :: splendid, glittering; splendor_M_N = mkN "splendor" "splendoris " masculine ; -- [XXXDX] :: brilliance, luster, sheen; magnificence, sumptuousness, grandeur, splendor; splenium_N_N = mkN "splenium" ; -- [XBXEC] :: adhesive plaster; @@ -31664,12 +34027,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg spretio_F_N = mkN "spretio" "spretionis " feminine ; -- [XXXDS] :: contempt; spretor_M_N = mkN "spretor" "spretoris " masculine ; -- [XXXDX] :: one who despises or scorns; spuma_F_N = mkN "spuma" ; -- [XXXDX] :: foam, froth; slime, scum, spume; hair pomade/dye; --- TODO spumesco_V : V2 spumesco, spumescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: become foamy; + spumesco_V = mkV "spumescere" "spumesco" nonExist nonExist ; -- [XXXDX] :: become foamy; spumeus_A = mkA "spumeus" "spumea" "spumeum" ; -- [XXXDX] :: foamy, frothy; covered with foam; spumifer_A = mkA "spumifer" "spumifera" "spumiferum" ; -- [XXXEC] :: foaming; spumiger_A = mkA "spumiger" "spumigera" "spumigerum" ; -- [XXXEC] :: foaming; spumo_V = mkV "spumare" ; -- [XXXDX] :: foam, froth; be covered in foam; cover with foam; spumosus_A = mkA "spumosus" "spumosa" "spumosum" ; -- [XXXDX] :: foaming, frothy; + spuo_V2 = mkV2 (mkV "spuere" "spuo" "spui" "sputus ") ; -- [XXXDX] :: spit, spit out; spurcalium_N_N = mkN "spurcalium" ; -- [FXXEM] :: pollution; filth; spurcamen_N_N = mkN "spurcamen" "spurcaminis " neuter ; -- [DXXES] :: filth; dirt; spurcidicus_A = mkA "spurcidicus" "spurcidica" "spurcidicum" ; -- [BXXFS] :: obscene; @@ -31697,6 +34061,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg squilla_F_N = mkN "squilla" ; -- [XAXDO] :: shrimp; prawn; crayfish; term covering number of crustaceans; st_Interj = ss "st" ; -- [XXXDX] :: hush! hist!; stabilimentum_N_N = mkN "stabilimentum" ; -- [XXXEC] :: stay, support; + stabilio_V2 = mkV2 (mkV "stabilire" "stabilio" "stabilivi" "stabilitus ") ; -- [XXXDX] :: make firm, establish; stabilis_A = mkA "stabilis" "stabilis" "stabile" ; -- [XXXDX] :: stable; steadfast; stabilitas_F_N = mkN "stabilitas" "stabilitatis " feminine ; -- [XXXDX] :: stability, steadiness; stabulo_V = mkV "stabulare" ; -- [XAXCO] :: stable/house (domestic animals, poultry, etc); be housed, have stall/lair/den; @@ -31742,6 +34107,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg statulibera_F_N = mkN "statulibera" ; -- [XLXEO] :: slave (female) to which freedom has been promised subject to stated conditions; statulibertas_F_N = mkN "statulibertas" "statulibertatis " feminine ; -- [XLXFO] :: condition of being statuliber (slave w/freedom promised subject to condition); statumen_N_N = mkN "statumen" "statuminis " neuter ; -- [XXXDX] :: support; + statuo_V2 = mkV2 (mkV "statuere" "statuo" "statui" "statutus ") ; -- [XXXAX] :: set up, establish, set, place, build; decide, think; statura_F_N = mkN "statura" ; -- [XXXDX] :: height, stature; status_A = mkA "status" "stata" "statum" ; -- [XXXDS] :: appointed; status_M_N = mkN "status" "status " masculine ; -- [XXXBX] :: position, situation, condition; rank; standing, status; @@ -31779,14 +34145,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sterilizatio_F_N = mkN "sterilizatio" "sterilizationis " feminine ; -- [GXXEK] :: sterilization; sterilizo_V = mkV "sterilizare" ; -- [GXXEK] :: sterilize; sternax_A = mkA "sternax" "sternacis"; -- [XXXDX] :: liable to throw its rider (of a horse); + sterno_V2 = mkV2 (mkV "sternere" "sterno" "stravi" "stratus ") ; -- [XXXAX] :: spread, strew, scatter; lay out; sternumentum_N_N = mkN "sternumentum" ; -- [XBXCO] :: sneeze; sneezing powder; + sternuo_V = mkV "sternuere" "sternuo" "sternui" nonExist; -- [XBXCO] :: sneeze; sternutamentum_N_N = mkN "sternutamentum" ; -- [XBXDO] :: attack of sneezing; sternutatio_F_N = mkN "sternutatio" "sternutationis " feminine ; -- [XBXEO] :: sneezing; action of violent or repeated sneezing; sternuto_V = mkV "sternutare" ; -- [XBXCO] :: sneeze (repeatedly or violently); sterquilinium_N_N = mkN "sterquilinium" ; -- [XXXCO] :: dung heap/hill/pit, manure pile; midden; sterquilinum_N_N = mkN "sterquilinum" ; -- [XXXCO] :: dung heap/hill/pit, manure pile; midden; sterteia_F_N = mkN "sterteia" ; -- [XXXDX] :: snorer, sniveler; --- TODO sterto_V : V2 sterto, stertere, stertui, - -- Declension: 3rd -- Comment: [XXXDX] :: snore; + sterto_V2 = mkV2 (mkV "stertere" "sterto" "stertui" nonExist ) ; -- [XXXDX] :: snore; stibadium_N_N = mkN "stibadium" ; -- [XXXEC] :: semicircular seat; stibi_N_N = mkN "stibi" "stibis " neuter ; -- [XXXCO] :: antimony; (used in eye-salve and makeup); stibium/sulphuret of antimony (L+S); stibinus_A = mkA "stibinus" "stibina" "stibinum" ; -- [DXXFS] :: antimonial, of antimony; (used in eye-salve and makeup); @@ -31807,7 +34175,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg stimuleus_A = mkA "stimuleus" "stimulea" "stimuleum" ; -- [XXXDS] :: made-of-prickles; stimulo_V = mkV "stimulare" ; -- [XXXBX] :: urge forward with a goad, torment,"sting"; incite, rouse to frenzy; stimulus_M_N = mkN "stimulus" ; -- [XXXBO] :: spur/goad; trap/spike in earth; prick/sting/cause of torment/torture instrument; --- TODO stinguo_V : V2 stinguo, stinguere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: extinguish, put out; annihilate; + stinguo_V = mkV "stinguere" "stinguo" nonExist nonExist ; -- [XXXDX] :: extinguish, put out; annihilate; stipatio_F_N = mkN "stipatio" "stipationis " feminine ; -- [XXXDS] :: crowd; retinue; stipator_M_N = mkN "stipator" "stipatoris " masculine ; -- [XXXDX] :: one of train surrounding a king; bodyguard, close attendant; stipendiarius_A = mkA "stipendiarius" "stipendiaria" "stipendiarium" ; -- [XXXDX] :: mercenary; paying tribute in the form of cash; @@ -31825,12 +34193,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg stlatarius_A = mkA "stlatarius" "stlataria" "stlatarium" ; -- [XXXEC] :: brought by the sea; imported; costly; stlattarius_A = mkA "stlattarius" "stlattaria" "stlattarium" ; -- [XXXFS] :: of a ship; sea-borne; sto_V = mkV "stare" ; -- [XXXAX] :: stand, stand still, stand firm; remain, rest; --- TODO stoechas_N : N1 stoechas, stoechados/is -- F -- [DAXNS] :: French lavender (Pliny); + stoechas_1_N = mkN "stoechas" "stoechadis" feminine ; -- [DAXNS] :: French lavender (Pliny); + stoechas_2_N = mkN "stoechas" "stoechados" feminine ; -- [DAXNS] :: French lavender (Pliny); stola_F_N = mkN "stola" ; -- [XXXCO] :: stola, Roman matron's outer garment; dress; clothing; stolatus_A = mkA "stolatus" "stolata" "stolatum" ; -- [XXXFS] :: stola-wearing; befitting a matron; stolide_Adv = mkAdv "stolide" ; -- [XXXDX] :: stupidly, obtusely; brutishly; solidly (physical growth), thickly; stoliditas_F_N = mkN "stoliditas" "stoliditatis " feminine ; -- [XXXDO] :: stupidity, cloddishness, brutish insensibility; dullness, obtuseness (L+S); --- SLASHSTUFF stolidus_A : A2 stolidus, stolida -um, stolidior -or -us, stolidissimus -a -um -- [XXXDX] :: dull, stupid, insensible; brutish; inert (things); + stolidus_A = mkA "stolidus" ; -- [XXXDX] :: dull, stupid, insensible; brutish; inert (things); stomachor_V = mkV "stomachari" ; -- [XXXDX] :: be angry, boil with rage; stomachosus_A = mkA "stomachosus" "stomachosa" "stomachosum" ; -- [XXXDX] :: irritable, short tempered; stomachus_M_N = mkN "stomachus" ; -- [XXXDX] :: gullet; stomach; annoyance; ill-temper; @@ -31862,11 +34231,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg strepes_F_N = mkN "strepes" "strepae " feminine ; -- [FXXDM] :: stirrup; stirrup-leather; strepito_V = mkV "strepitare" ; -- [XXXDX] :: make a loud or harsh noise; strepitus_M_N = mkN "strepitus" "strepitus " masculine ; -- [XXXBX] :: noise, racket; sound; din, crash, uproar; + strepo_V2 = mkV2 (mkV "strepere" "strepo" "strepui" "strepitus ") ; -- [XXXDX] :: make a loud noise; shout confusedly; resound; stria_F_N = mkN "stria" ; -- [XXXFS] :: furrow, channel; T:flute of column; strictim_Adv = mkAdv "strictim" ; -- [XXXEC] :: so as to graze; superficially, slightly, summarily; strictura_F_N = mkN "strictura" ; -- [XXXDX] :: hardened mass of iron; strictus_A = mkA "strictus" "stricta" "strictum" ; -- [XXXDX] :: tight, close, strait, drawn together; strideo_V = mkV "stridere" ; -- [XXXBO] :: creak, squeak, grate, shriek, whistle; (make shrill sound); hiss; gnash; + strido_V = mkV "stridere" "strido" "stridi" nonExist; -- [XXXBO] :: creak, squeak, grate, shriek, whistle; (make shrill sound); hiss; gnash; stridor_M_N = mkN "stridor" "stridoris " masculine ; -- [XXXDX] :: hissing, buzzing, rattling, whistling; high-pitched sound; stridulus_A = mkA "stridulus" "stridula" "stridulum" ; -- [XXXDX] :: whizzing, hissing; striga_F_N = mkN "striga" ; -- [DWXEO] :: |side-avenue (in military camp); space between squadrons; @@ -31874,6 +34245,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg strigio_M_N = mkN "strigio" "strigionis " masculine ; -- [XDXFO] :: actor in mime; strigo_V = mkV "strigare" ; -- [XXXEC] :: halt, stop; strigosus_A = mkA "strigosus" "strigosa" "strigosum" ; -- [XXXDX] :: lean, scraggy; + stringo_V2 = mkV2 (mkV "stringere" "stringo" "strinxi" "strictus ") ; -- [XXXBX] :: draw tight; draw; graze; strip off; stringor_M_N = mkN "stringor" "stringoris " masculine ; -- [XXXFS] :: touch; shock; slight pain; strinuus_A = mkA "strinuus" "strinua" "strinuum" ; -- [FXXFX] :: active, vigorous, strenuous; (also strenuus); strio_V = mkV "striare" ; -- [XTXFS] :: provide with channels; groove; wrinkle; @@ -31891,6 +34263,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg struix_F_N = mkN "struix" "struicis " feminine ; -- [XXXEO] :: heap, pile; struma_F_N = mkN "struma" ; -- [XXXEC] :: scrofulous tumor; strumosus_A = mkA "strumosus" "strumosa" "strumosum" ; -- [XXXEC] :: scrofulous; + struo_V2 = mkV2 (mkV "struere" "struo" "struxi" "structus ") ; -- [XXXBX] :: build, construct; strutheus_A = mkA "strutheus" "struthea" "strutheum" ; -- [XAXFS] :: sparrow-; of sparrows; struthiocamelinus_A = mkA "struthiocamelinus" "struthiocamelina" "struthiocamelinum" ; -- [XAXNS] :: of/belonging/pertaining to an ostrich; struthiocamelus_C_N = mkN "struthiocamelus" ; -- [XAXDS] :: ostrich; @@ -31900,7 +34273,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg strutio_M_N = mkN "strutio" "strutionis " masculine ; -- [DAXDS] :: ostrich; studeo_V = mkV "studere" ; -- [XXXAX] :: desire, be eager for; busy oneself with; strive; studiose_Adv =mkAdv "studiose" "studiosius" "studiosissime" ; -- [XXXDX] :: eagerly, zealously, studiously, ardently, earnestly, attentively, assiduously; --- SLASHSTUFF studiosus_A : A2 studiosus, studiosa -um, studiosior -or -us, studiosissimus -a -um -- [XXXBX] :: eager, keen, full of zeal; studious; devoted to, fond of; + studiosus_A = mkA "studiosus" ; -- [XXXBX] :: eager, keen, full of zeal; studious; devoted to, fond of; studiosus_M_N = mkN "studiosus" ; -- [XXXDS] :: student; studium_N_N = mkN "studium" ; -- [XXXAX] :: eagerness, enthusiasm, zeal, spirit; devotion, pursuit, study; stulte_Adv = mkAdv "stulte" ; -- [XXXDX] :: foolishly; @@ -31911,10 +34284,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg stultus_A = mkA "stultus" "stulta" "stultum" ; -- [XXXBX] :: foolish, stupid; stultus_M_N = mkN "stultus" ; -- [XXXDX] :: fool; stupa_F_N = mkN "stupa" ; -- [FXXDM] :: stirrup; stirrup-leather; + stupefacio_V2 = mkV2 (mkV "stupefacere" "stupefacio" "stupefeci" "stupefactus ") ; -- [XXXDX] :: strike dumb/stun with amazement, stupefy; strike senseless; stupefactivus_A = mkA "stupefactivus" "stupefactiva" "stupefactivum" ; -- [GXXEK] :: stupefying (drug); stupefio_V = mkV "stupeferi" ; -- [DXXDX] :: be stunned (w/amazement), be stupefied/struck senseless; (stupefacio PASS); stupeo_V = mkV "stupere" ; -- [XXXBX] :: be astounded; --- TODO stupesco_V : V2 stupesco, stupescere, -, - -- Declension: 3rd -- Comment: [XXXES] :: become amazed; + stupesco_V = mkV "stupescere" "stupesco" nonExist nonExist ; -- [XXXES] :: become amazed; stupeus_A = mkA "stupeus" "stupea" "stupeum" ; -- [XXXDS] :: coarse-flaxen; (see also stuppeus); stupiditas_F_N = mkN "stupiditas" "stupiditatis " feminine ; -- [XXXEC] :: dullness, senselessness; stupidus_A = mkA "stupidus" "stupida" "stupidum" ; -- [XXXEC] :: senseless, stunned; stupid, dull; @@ -31947,12 +34321,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg suaviloquens_A = mkA "suaviloquens" "suaviloquentis"; -- [XXXDX] :: speaking agreeably; suaviloquentia_F_N = mkN "suaviloquentia" ; -- [XXXDS] :: sweetness of speech; suaviolum_N_N = mkN "suaviolum" ; -- [XXXDX] :: tender kiss; --- SLASHSTUFF suavis_A : A2 suavis, suave, suavior -or -us, suavissimus -a -um -- [XXXDX] :: agreeable, pleasant, gratifying, sweet; charming, attractive; + suavis_A = mkA "suavis" ; -- [XXXDX] :: agreeable, pleasant, gratifying, sweet; charming, attractive; suavitas_F_N = mkN "suavitas" "suavitatis " feminine ; -- [XXXBX] :: charm, attractiveness; sweetness; suaviter_Adv = mkAdv "suaviter" ; -- [XXXDX] :: pleasantly, sweetly; suavium_N_N = mkN "suavium" ; -- [XXXAX] :: kiss; sweetheart; - sub_Abl_Prep = mkPrep "sub" Abl ; -- [XXXAX] :: under, beneath, behind, at the foot of (rest); within; during, about (time); - sub_Acc_Prep = mkPrep "sub" Acc ; -- [XXXAX] :: under; up to, up under, close to (of motion); until, before, up to, about; + sub_Abl_Prep = mkPrep "sub" abl ; -- [XXXAX] :: under, beneath, behind, at the foot of (rest); within; during, about (time); + sub_Acc_Prep = mkPrep "sub" acc ; -- [XXXAX] :: under; up to, up under, close to (of motion); until, before, up to, about; subabsurde_Adv = mkAdv "subabsurde" ; -- [XXXEC] :: somewhat absurdly; subabsurdus_A = mkA "subabsurdus" "subabsurda" "subabsurdum" ; -- [XXXEC] :: somewhat absurd; subaccuso_V2 = mkV2 (mkV "subaccusare") ; -- [XXXDS] :: blame somewhat; @@ -31972,41 +34346,54 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg subarmalis_A = mkA "subarmalis" "subarmalis" "subarmale" ; -- [DXXDS] :: passing underarm; subarrho_V = mkV "subarrhare" ; -- [FLXFM] :: pledge, pay earnest money; espouse, undertake; subasso_V2 = mkV2 (mkV "subassare") ; -- [XXXDS] :: roast a little; + subaudio_V = mkV "subaudire" "subaudio" "subaudivi" "subauditus "; -- [DLXES] :: understand, supply a word; hear a little; subausculto_V = mkV "subauscultare" ; -- [XXXES] :: listen secretly; eavesdrop; subausterus_A = mkA "subausterus" "subaustera" "subausterum" ; -- [DXXDS] :: rather harsh; less austere; subbasilicanus_M_N = mkN "subbasilicanus" ; -- [XXXDS] :: lounger; --- subblandio_V2 : V4 subblandio, subblandire, subblandivi, subblanditus -- Declension: 4th -- Case: DAT -- Comment: [BXXDS] :: flirt; caress a little; + subblandio_V2 = mkV2 (mkV "subblandire" "subblandio" "subblandivi" "subblanditus ") Dat_Prep ; -- [BXXDS] :: flirt; caress a little; subcaesius_A = mkA "subcaesius" "subcaesia" "subcaesium" ; -- [GXXET] :: grayish; (Erasmus); subcavus_A = mkA "subcavus" "subcava" "subcavum" ; -- [DXXDS] :: hollow below; + subcido_V = mkV "subcidere" "subcido" "subcidi" nonExist; -- [XXXCO] :: sink/collapse (support gave way); give way (knees); fall (under), be included; subcinericius_A = mkA "subcinericius" "subcinericia" "subcinericium" ; -- [EXXDS] :: prepared/baked under the ashes; subconscientia_F_N = mkN "subconscientia" ; -- [GXXEK] :: subconscious; subconscius_A = mkA "subconscius" "subconscia" "subconscium" ; -- [GXXEK] :: subconscious; subcrudus_A = mkA "subcrudus" "subcruda" "subcrudum" ; -- [XXXDS] :: somewhat raw; + subcumbo_V = mkV "subcumbere" "subcumbo" "subcubui" "subcubitus "; -- [XXXAO] :: ||give in/way; lower itself (animal to take load); be rival to (DAT of a woman); subdiaconus_M_N = mkN "subdiaconus" ; -- [EEXCV] :: subdeacon; cleric of minor orders (second level from top/deacon); subdialis_A = mkA "subdialis" "subdialis" "subdiale" ; -- [XXXFS] :: open-aired; that is in open air; subdifficilis_A = mkA "subdifficilis" "subdifficilis" "subdifficile" ; -- [XXXES] :: somewhat difficult; + subdiffido_V = mkV "subdiffidere" "subdiffido" nonExist nonExist; -- [XXXDS] :: be somewhat distrustful; subdio_Adv = mkAdv "subdio" ; -- [XXXEO] :: in the open air; (sub dio); subdisjunctivus_A = mkA "subdisjunctivus" "subdisjunctiva" "subdisjunctivum" ; -- [FXXFM] :: weakened disjunctive; non-exclusive; subdistinctio_F_N = mkN "subdistinctio" "subdistinctionis " feminine ; -- [EGXFP] :: minor punctuation; exact difference; + subdistinguo_V2 = mkV2 (mkV "subdistinguere" "subdistinguo" "subdistinxi" "subdistinctus ") ; -- [XGXDS] :: reduce distinction; make smaller interpunctuation; subditicius_A = mkA "subditicius" "subditicia" "subditicium" ; -- [XXXEC] :: substituted, counterfeit; spurious; subditivus_A = mkA "subditivus" "subditiva" "subditivum" ; -- [XXXEC] :: substituted, counterfeit; spurious; subditus_A = mkA "subditus" "subdita" "subditum" ; -- [EEXDX] :: subordinate; submissive; + subdo_V2 = mkV2 (mkV "subdere" "subdo" "subdidi" "subditus ") ; -- [XXXBX] :: place under, apply; supply; subdolus_A = mkA "subdolus" "subdola" "subdolum" ; -- [XXXDX] :: sly, deceitful, treacherous; + subduco_V2 = mkV2 (mkV "subducere" "subduco" "subduxi" "subductus ") ; -- [XXXBX] :: lead up, carry off; transfer; haul; subductio_F_N = mkN "subductio" "subductionis " feminine ; -- [GSXEK] :: subtraction (math.); -- TODO subedo_V : V1 subedo, subesse, -, - -- [XXXDX] :: eat away below; + subedo_V2 = mkV2 (mkV "subedere" "subedo" "subedi" nonExist ) ; -- [XXXDX] :: eat away below; subeo_V = mkV "subire" ; -- [XXXAO] :: |place/be placed under/in support; come up w/aid; assume a form; undergo, endure suber_N_N = mkN "suber" "suberis " neuter ; -- [XAXDS] :: cork-tree; cork; subex_F_N = mkN "subex" "subicis " feminine ; -- [XXXEO] :: supports (pl.), underlying parts; underlayer (L+S); + subfervefacio_V2 = mkV2 (mkV "subfervefacere" "subfervefacio" "subfervefeci" "subfervefactus ") ; -- [XXXEO] :: simmer, bring/keep almost to a boil; warm from below (L+S); subfocatio_F_N = mkN "subfocatio" "subfocationis " feminine ; -- [XBXEO] :: suffocation; choking/stifling/suffocating; [~ mulierum => hysterical passion]; + subfodio_V2 = mkV2 (mkV "subfodere" "subfodio" "subfodi" "subfossus ") ; -- [XXXDX] :: undermine, dig under; pierce or prod below; subfuro_V2 = mkV2 (mkV "subfurare") ; -- [XXXEO] :: steal unobtrusively; steal away; subgestio_F_N = mkN "subgestio" "subgestionis " feminine ; -- [XXXFO] :: supplying an answer to one's own question; suggestion, hint (L+S); addition; subhorridus_A = mkA "subhorridus" "subhorrida" "subhorridum" ; -- [XXXEC] :: somewhat rough; + subicio_V2 = mkV2 (mkV "subicere" "subicio" "subjeci" "subjectus ") ; -- [XXXBX] :: throw under, place under; make subject; expose; subigitatio_F_N = mkN "subigitatio" "subigitationis " feminine ; -- [BXXEO] :: erotic fondling/feeling/touching; titillation/foreplay; illicit intercourse; subigito_V2 = mkV2 (mkV "subigitare") ; -- [XXXDS] :: behave improperly to; work upon, incite; + subigo_V2 = mkV2 (mkV "subigere" "subigo" "subegi" "subactus ") ; -- [XXXDX] :: conquer, subjugate; compel; subimpudens_A = mkA "subimpudens" "subimpudentis"; -- [XXXDS] :: somewhat impudent/shameless; subinanis_A = mkA "subinanis" "subinanis" "subinane" ; -- [XXXEC] :: somewhat vain; subinde_Adv = mkAdv "subinde" ; -- [XXXDX] :: immediately after, thereupon; constantly, repeatedly; subinsulsus_A = mkA "subinsulsus" "subinsulsa" "subinsulsum" ; -- [XXXEC] :: somewhat insipid; + subintellego_V2 = mkV2 (mkV "subintellegere" "subintellego" "subintellexi" "subintellectus ") ; -- [EXXDS] :: understand a little; subintro_V = mkV "subintrare" ; -- [DXXES] :: go into secretly, enter by stealth; subintroductio_F_N = mkN "subintroductio" "subintroductionis " feminine ; -- [GXXEK] :: smuggling; subintroductor_M_N = mkN "subintroductor" "subintroductoris " masculine ; -- [GXXEK] :: smuggler; @@ -32014,6 +34401,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg subinvideo_V = mkV "subinvidere" ; -- [XXXDS] :: envy a little; be somewhat envious; subinvisus_A = mkA "subinvisus" "subinvisa" "subinvisum" ; -- [XXXDS] :: somewhat odious; subinvito_V = mkV "subinvitare" ; -- [XXXDS] :: invite vaguely; + subirascor_V = mkV "subirasci" "subirascor" "subiratus sum " ; -- [XXXDO] :: be rather/somewhat annoyed/angry (at/with); subiratus_A = mkA "subiratus" "subirata" "subiratum" ; -- [XXXES] :: somewhat/rather angry/annoyed/irate; subitaneus_A = mkA "subitaneus" "subitanea" "subitaneum" ; -- [XXXDO] :: sudden; happening/arising without warning; subitarius_A = mkA "subitarius" "subitaria" "subitarium" ; -- [XXXDX] :: got together to meet an emergency, hastily enrolled; @@ -32026,7 +34414,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg subjectivismus_M_N = mkN "subjectivismus" ; -- [GXXEK] :: subjectivism; subjecto_V = mkV "subjectare" ; -- [XXXDX] :: throw up from below; apply below; subjector_M_N = mkN "subjector" "subjectoris " masculine ; -- [XXXDS] :: forger; substitutor; --- SLASHSTUFF subjectus_A : A2 subjectus, subjecta -um, subjectior -or -us, subjectissimus -a -um -- [XXXDX] :: lying near, adjacent; + subjectus_A = mkA "subjectus" ; -- [XXXDX] :: lying near, adjacent; + subjicio_V2 = mkV2 (mkV "subjicere" "subjicio" "subjeci" "subjectus ") ; -- [XXXCS] :: throw under, place under; make subject; expose; subjugalis_A = mkA "subjugalis" "subjugalis" "subjugale" ; -- [XDXES] :: yoke-accustomed; subjugalis_M_N = mkN "subjugalis" "subjugalis " masculine ; -- [EAXFS] :: beast of burden. (yoke-accustomed); (Vulgate); subjugalium_N_N = mkN "subjugalium" ; -- [FDXFM] :: lower part of a phrase (music); @@ -32034,8 +34423,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg subjugo_V2 = mkV2 (mkV "subjugare") ; -- [XXXEO] :: subjugate, make subject; bring under the yoke (L+S); subjugum_N_N = mkN "subjugum" ; -- [FXXEM] :: subjugation; unknown animal (L+S); subjunctivus_A = mkA "subjunctivus" "subjunctiva" "subjunctivum" ; -- [XXXFS] :: connecting; G:subjunctive; + subjungo_V2 = mkV2 (mkV "subjungere" "subjungo" "subjunxi" "subjunctus ") ; -- [XXXDX] :: join with, unite; subdue, subject; + sublabor_V = mkV "sublabi" "sublabor" "sublapsus sum " ; -- [XXXCO] :: collapse, fall to the ground; sink, ebb away; creep up, advance stealthily; sublatus_A = mkA "sublatus" "sublata" "sublatum" ; -- [XXXDS] :: elated; sublecto_V2 = mkV2 (mkV "sublectare") ; -- [BXXDS] :: coax; + sublego_V2 = mkV2 (mkV "sublegere" "sublego" "sublegi" "sublectus ") ; -- [XXXDX] :: pick up from the ground, steal away; sublestus_A = mkA "sublestus" "sublesta" "sublestum" ; -- [BXXES] :: slight; sublevatio_F_N = mkN "sublevatio" "sublevationis " feminine ; -- [XXXDS] :: alleviation; sublevo_V = mkV "sublevare" ; -- [XXXDX] :: lift up, raise; support; assist; lighten; @@ -32047,20 +34439,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg subligo_V = mkV "subligare" ; -- [XXXDX] :: fasten (to); sublimatio_F_N = mkN "sublimatio" "sublimationis " feminine ; -- [GSXEK] :: sublimation (chemical); sublime_Adv = mkAdv "sublime" ; -- [XXXDX] :: high into the air, on high, up aloft; in a lofty position; --- SLASHSTUFF sublimis_A : A2 sublimis, sublime, sublimior -or -us, sublimissimus -a -um -- [XXXAX] :: high, lofty; eminent, exalted, elevated; raised on high; in high position; + sublimis_A = mkA "sublimis" ; -- [XXXAX] :: high, lofty; eminent, exalted, elevated; raised on high; in high position; sublimitas_F_N = mkN "sublimitas" "sublimitatis " feminine ; -- [EXXDP] :: ||superior being; your highness (w/tua in titles); sublimo_V2 = mkV2 (mkV "sublimare") ; -- [XXXCO] :: raise, place in elevated position; soar; send up (spirits) from underworld; --- SLASHSTUFF sublimus_A : A2 sublimus, sublima -um, sublimior -or -us, sublimissimus -a -um -- [XXXCO] :: high, lofty; eminent, exalted, elevated; raised on high; in high position; + sublimus_A = mkA "sublimus" ; -- [XXXCO] :: high, lofty; eminent, exalted, elevated; raised on high; in high position; sublingio_M_N = mkN "sublingio" "sublingionis " masculine ; -- [BXXES] :: under-scullion; + sublino_V2 = mkV2 (mkV "sublinere" "sublino" "sublevi" "sublitus ") ; -- [XXXCO] :: smear over surface/on underside; back (with); plaster; apply undercoat; trick; sublividus_A = mkA "sublividus" "sublivida" "sublividum" ; -- [XXXFS] :: somewhat blue; + subllabor_V = mkV "subllabi" "subllabor" "subllapsus sum " ; -- [XXXDX] :: collapse, sink/slip/ebb away; creep up; glide under; subluceo_V = mkV "sublucere" ; -- [XXXDX] :: shine faintly, glimmer; sublucidus_A = mkA "sublucidus" "sublucida" "sublucidum" ; -- [DXXDS] :: somewhat light; + subluo_V2 = mkV2 (mkV "subluere" "subluo" "sublui" "sublutus ") ; -- [XXXDX] :: wash, flow at the base of; sublustris_A = mkA "sublustris" "sublustris" "sublustre" ; -- [XXXDX] :: faintly lit, dim; subluvies_F_N = mkN "subluvies" "subluviei " feminine ; -- [DXXDS] :: filth; dirt; A:sheep's foot foul; submedius_A = mkA "submedius" "submedia" "submedium" ; -- [DXXFS] :: middle; mean; + submergo_V2 = mkV2 (mkV "submergere" "submergo" "submersi" "submersus ") ; -- [XXXDX] :: plunge under, submerge; subministratio_F_N = mkN "subministratio" "subministrationis " feminine ; -- [DXXES] :: giving, furnishing, supplying; subministro_V = mkV "subministrare" ; -- [XXXDX] :: supply, furnish, afford; submissus_A = mkA "submissus" "submissa" "submissum" ; -- [XXXDX] :: stooping; quiet; + submitto_V2 = mkV2 (mkV "submittere" "submitto" "submisi" "submissus ") ; -- [XXXBX] :: allow to grow long; emit, put forth, raise; lower, moderate, relieve; submit; submoleste_Adv = mkAdv "submoleste" ; -- [XXXEC] :: with some difficulty/trouble; submolestus_A = mkA "submolestus" "submolesta" "submolestum" ; -- [XXXEC] :: somewhat troublesome; submoneo_V = mkV "submonere" ; -- [XXXEC] :: remind secretly; @@ -32069,6 +34466,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg submultiplex_A = mkA "submultiplex" "submultiplicis"; -- [XSXDS] :: present many times; contained many times in another number; submurmuro_V = mkV "submurmurare" ; -- [XXXFO] :: murmur softly; submuto_V2 = mkV2 (mkV "submutare") ; -- [XXXEC] :: exchange; + subnascor_V = mkV "subnasci" "subnascor" "subnatus sum " ; -- [XXXCO] :: arise, spring, grow up (under/out of/after); (esp. under or in place of); + subnecto_V2 = mkV2 (mkV "subnectere" "subnecto" "subnexui" "subnexus ") ; -- [XXXDX] :: bind under, add, subjoin, fasten up; subnego_V2 = mkV2 (mkV "subnegare") ; -- [XXXDS] :: refuse somewhat; deny somewhat; subnervio_V2 = mkV2 (mkV "subnerviare") ; -- [XXXFO] :: hamstring; (cut sinew in leg); invalidate (L+S); refute; subnervo_V2 = mkV2 (mkV "subnervare") ; -- [DXXDS] :: hamstring; (cut sinew in leg); invalidate (L+S); refute; @@ -32086,9 +34485,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg subobscurus_A = mkA "subobscurus" "subobscura" "subobscurum" ; -- [XXXEC] :: somewhat obscure; subodiosus_A = mkA "subodiosus" "subodiosa" "subodiosum" ; -- [XXXEC] :: rather unpleasant; subodoro_V = mkV "subodorare" ; -- [GXXEK] :: suspect; + suboffendo_V = mkV "suboffendere" "suboffendo" nonExist nonExist; -- [XXXDS] :: give some offense; suboles_F_N = mkN "suboles" "subolis " feminine ; -- [XXXBX] :: shoot, sucker; race; offspring; progeny; --- TODO subolesco_V : V2 subolesco, subolescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: grow up; + subolesco_V = mkV "subolescere" "subolesco" nonExist nonExist ; -- [XXXDX] :: grow up; subolet_V0 = mkV0 "subolet" ; -- [XXXDS] :: make a weak scent; [mihi subolet => I detect/smell/sniff out]; + suborior_V = mkV "suboriri" "suborior" "subortus sum " ; -- [XXXDX] :: come into being, be provided; suborno_V = mkV "subornare" ; -- [XXXDX] :: equip, adorn; subortus_M_N = mkN "subortus" "subortus " masculine ; -- [XXXDX] :: springing up (of a fresh supply); subpositivus_A = mkA "subpositivus" "subpositiva" "subpositivum" ; -- [EXXEP] :: hypothetical; @@ -32100,45 +34501,60 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg subraucus_A = mkA "subraucus" "subrauca" "subraucum" ; -- [XXXEC] :: somewhat hoarse; subregulus_M_N = mkN "subregulus" ; -- [DXXES] :: petty prince; feudatory vassal; subremigo_V = mkV "subremigare" ; -- [XXXDX] :: make rowing movements underneath; + subrepo_V2 = mkV2 (mkV "subrepere" "subrepo" "subrepsi" "subreptus ") ; -- [XXXCO] :: |come on gradually/imperceptibly/by degrees (conditions); steal along/on; subreptio_F_N = mkN "subreptio" "subreptionis " feminine ; -- [XLXEO] :: stealing/taking secretly or by deception; filching; purloining, theft (L+S); subreptum_Adv = mkAdv "subreptum" ; -- [XXXFS] :: stealthily; subrideo_V = mkV "subridere" ; -- [XXXDX] :: smile; + subrigo_V2 = mkV2 (mkV "subrigere" "subrigo" "subrexi" "subrectus ") ; -- [XXXEZ] :: rise, lift (Collins); + subringor_V = mkV "subringi" "subringor" nonExist ; -- [XXXEC] :: make a wry face; + subripio_V2 = mkV2 (mkV "subripere" "subripio" "subripui" "subreptus ") ; -- [XXXDX] :: snatch away, steal; subrogo_V2 = mkV2 (mkV "subrogare") ; -- [XLXCO] :: elect/propose/nominate/cause to be elected as successor/substitute; substitute; subrostranus_M_N = mkN "subrostranus" ; -- [XXXFO] :: loungers (pl.) about the rostra, city loafers; idlers; subrubeo_V = mkV "subrubere" ; -- [XXXDX] :: be tinged with red or purple; subrufus_A = mkA "subrufus" "subrufa" "subrufum" ; -- [XXXDS] :: somewhat red; ginger-colored; + subruo_V2 = mkV2 (mkV "subruere" "subruo" "subrui" "subrutus ") ; -- [XXXDX] :: undermine; subrusticus_A = mkA "subrusticus" "subrustica" "subrusticum" ; -- [XXXDX] :: clownish; subsannatio_F_N = mkN "subsannatio" "subsannationis " feminine ; -- [DEXES] :: mockery by gestures; derision in pantomime; subsannator_M_N = mkN "subsannator" "subsannatoris " masculine ; -- [DEXFS] :: mocker, one who insults/mocks by gestures; subsanno_V2 = mkV2 (mkV "subsannare") ; -- [DXXCS] :: mock, deride; insult by derisive gestures; sneer; subscribendarius_M_N = mkN "subscribendarius" ; -- [DLXFS] :: under-secretary; (legal); + subscribo_V2 = mkV2 (mkV "subscribere" "subscribo" "subscripsi" "subscriptus ") ; -- [XXXDX] :: write below, subscribe; subscus_F_N = mkN "subscus" "subscudis " feminine ; -- [XTXFS] :: dovetail connection; tongue of dovetail; subsecivus_A = mkA "subsecivus" "subseciva" "subsecivum" ; -- [XXXEC] :: left over; extra, superfluous, spare; subseco_V = mkV "subsecare" ; -- [XXXDX] :: cut away below; pare (the nails); subsellium_N_N = mkN "subsellium" ; -- [XXXDX] :: bench/low seat (in auditorium.theater/court); tribunes seat; courts (pl.); + subsentio_V2 = mkV2 (mkV "subsentire" "subsentio" "subsensi" nonExist) ; -- [XXXDS] :: smell/sniff out; perceive secretly; subsequenter_Adv = mkAdv "subsequenter" ; -- [DXXES] :: subsequently; in succession; one after another; + subsequor_V = mkV "subsequi" "subsequor" "subsecutus sum " ; -- [XXXBX] :: follow close after; pursue; support; subsericus_A = mkA "subsericus" "subserica" "subsericum" ; -- [XXXDS] :: half-silken; + subsero_V2 = mkV2 (mkV "subserere" "subsero" "subsevi" "subsertus ") ; -- [XXXDS] :: plant under; subsicivus_A = mkA "subsicivus" "subsiciva" "subsicivum" ; -- [XXXEC] :: left over; extra, superfluous, spare; subsidialis_A = mkA "subsidialis" "subsidialis" "subsidiale" ; -- [EXXEP] :: reserve-, of the reserve; in reserve; acting support to front line; subsidiary; subsidiarietas_F_N = mkN "subsidiarietas" "subsidiarietatis " feminine ; -- [GXXEK] :: subsidiarity, principle that central authority should do only what locals can't; subsidiarius_A = mkA "subsidiarius" "subsidiaria" "subsidiarium" ; -- [XXXDS] :: reserve-, of the reserve; in reserve; acting support to front line; subsidiary; subsidiarius_M_N = mkN "subsidiarius" ; -- [XXXCS] :: reserves (pl.); body of reserves; in form of subsidy (Latham); subsidium_N_N = mkN "subsidium" ; -- [XXXDX] :: help, relief; reinforcement; + subsido_V2 = mkV2 (mkV "subsidere" "subsido" "subsedi" "subsessus ") ; -- [XXXDX] :: settle, sink, subside; neglect (Latham); subsignanus_A = mkA "subsignanus" "subsignana" "subsignanum" ; -- [XWXEC] :: serving beneath the standard; subsignanus_M_N = mkN "subsignanus" ; -- [XWXEC] :: reserve legionaire (w/milites); - subsilio_V = mkV "subsiliare" ; -- [EXXFT] :: jump/leap/spring up; plunge beneath; --- TODO subsisto_V : V2 subsisto, subsistere, substiti, - -- Declension: 3rd -- Comment: [XXXBX] :: halt, stand; cause to stop; + subsilio_V = mkV "subsilire" "subsilio" "subsilui" nonExist; -- [XXXCO] :: jump/leap/spring up; plunge beneath; + subsisto_V2 = mkV2 (mkV "subsistere" "subsisto" "substiti" nonExist ) ; -- [XXXBX] :: halt, stand; cause to stop; + subsortior_V = mkV "subsortiri" "subsortior" "subsortitus sum " ; -- [XXXEO] :: appoint/choose/pick by lot as a substitute; (to replace challenged jurors); subsortitio_F_N = mkN "subsortitio" "subsortitionis " feminine ; -- [XXXEC] :: choice of a substitute by lot; substantia_F_N = mkN "substantia" ; -- [XXXDX] :: nature; substance, resources, wealth; [omnem ~ => every living thing (Plater)]; substantialis_A = mkA "substantialis" "substantialis" "substantiale" ; -- [DXXES] :: essential; substantial; substantive; of/belonging to essence/substance; substantialiter_Adv = mkAdv "substantialiter" ; -- [DXXES] :: substantially; essentially; substantivus_A = mkA "substantivus" "substantiva" "substantivum" ; -- [FXXES] :: self-existent; substantive; + substerno_V2 = mkV2 (mkV "substernere" "substerno" "substravi" "substratus ") ; -- [XXXDX] :: spread out (as an underlay); + substituo_V2 = mkV2 (mkV "substituere" "substituo" "substitui" "substitutus ") ; -- [XXXBO] :: place in rear/reserve; make subject/answerable to; substitute; make alternative; substitutio_F_N = mkN "substitutio" "substitutionis " feminine ; -- [XLXCO] :: putting in place of something/one else, substitution; making alternative heir; substitutus_M_N = mkN "substitutus" ; -- [XLXCO] :: alternative heir; substo_V = mkV "substare" ; -- [XXXFS] :: hold firm; stand under; substramen_N_N = mkN "substramen" "substraminis " neuter ; -- [XXXDS] :: support; what is strewn under; --- SLASHSTUFF substrictus_A : A2 substrictus, substricta -um, substrictior -or -us, substrictissimus -a -um -- [XXXDS] :: narrow; tight; + substrictus_A = mkA "substrictus" ; -- [XXXDS] :: narrow; tight; + substringo_V2 = mkV2 (mkV "substringere" "substringo" "substrinxi" "substrictus ") ; -- [XXXDX] :: draw in close, gather up; draw tight; [aurem ~ => to strain your ears]; substructio_F_N = mkN "substructio" "substructionis " feminine ; -- [XXXDX] :: foundation (of a building), substructure; + substruo_V2 = mkV2 (mkV "substruere" "substruo" "substruxi" "substructus ") ; -- [XXXDX] :: build up from the base, support by means of substructures; subsultim_Adv = mkAdv "subsultim" ; -- [XXXFO] :: with frequent jumps/leaps into the air; subsulto_V = mkV "subsultare" ; -- [XXXDO] :: keep jumping up; spring up, leap up; (also jerky rhythm); subsum_V = mkV "subesse" "subsum" "subfui" "subfuturus " ; -- Comment: [XXXDX] :: be underneath/a basis for discussion/close at hand as a reserve, be near; @@ -32149,17 +34565,22 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg subtalaris_M_N = mkN "subtalaris" "subtalaris " masculine ; -- [FXXFY] :: shoe; (gender is guess); subtegmen_N_N = mkN "subtegmen" "subtegminis " neuter ; -- [XXXCO] :: weft/woof, transverse threads woven between warp threads; threads of the Fates; subtemen_N_N = mkN "subtemen" "subteminis " neuter ; -- [XXXCO] :: weft/woof, transverse threads woven between warp threads; threads of the Fates; --- TODO subtendo_V : V2 subtendo, subtendere, -, subtentus -- Declension: 3rd -- Comment: [XXXDX] :: extend beneath, subtend; - subter_Abl_Prep = mkPrep "subter" Abl ; -- [XXXEO] :: beneath, under (cover/shelter); towards/at base (of wall/cliff); (usu. ACC); - subter_Acc_Prep = mkPrep "subter" Acc ; -- [XXXCO] :: beneath, under (cover/shelter); towards/at base (of wall/cliff); + subtendo_V2 = mkV2 (mkV "subtendere" "subtendo" nonExist "subtentus") ; -- [XXXDX] :: extend beneath, subtend; + subter_Abl_Prep = mkPrep "subter" abl ; -- [XXXEO] :: beneath, under (cover/shelter); towards/at base (of wall/cliff); (usu. ACC); + subter_Acc_Prep = mkPrep "subter" acc ; -- [XXXCO] :: beneath, under (cover/shelter); towards/at base (of wall/cliff); subter_Adv = mkAdv "subter" ; -- [XXXCO] :: beneath (surface/covering); underneath, below; at lower level/in lower position; --- TODO subterfugio_V : V2 subterfugio, subterfugere, subterfugi, - -- Declension: 3rd -- Comment: [XXXDX] :: evade, avoid by a stratagem; + subterduco_V2 = mkV2 (mkV "subterducere" "subterduco" "subterduxi" "subterductus ") ; -- [BXXDS] :: carry off secretly; + subterfugio_V2 = mkV2 (mkV "subterfugere" "subterfugio" "subterfugi" nonExist ) ; -- [XXXDX] :: evade, avoid by a stratagem; + subterlabor_V = mkV "subterlabi" "subterlabor" nonExist ; -- [XXXDX] :: glide or flow beneath, slip away; + subtero_V2 = mkV2 (mkV "subterere" "subtero" "subtrivi" "subtritus ") ; -- [XXXDS] :: rub under; rub off; pound; subterraneus_A = mkA "subterraneus" "subterranea" "subterraneum" ; -- [XXXDX] :: subterranean, underground; --- SLASHSTUFF subtilis_A : A2 subtilis, subtile, subtilior -or -us, subtilissimus -a -um -- [XXXAO] :: fine-spun, fine; slender, delicate, exact; minutely thorough; strict, literal; + subtexo_V2 = mkV2 (mkV "subtexere" "subtexo" "subtexui" "subtextus ") ; -- [XXXDX] :: weave beneath; veil; subjoin, attach as a sequel (to); + subtilis_A = mkA "subtilis" ; -- [XXXAO] :: fine-spun, fine; slender, delicate, exact; minutely thorough; strict, literal; subtilitas_F_N = mkN "subtilitas" "subtilitatis " feminine ; -- [XXXAO] :: fineness of texture/logic/detail; slenderness/exactness/acuteness; sharpness; subtiliter_Adv =mkAdv "subtiliter" "subtilius" "subtilissime" ; -- [XXXBO] :: finely; delicately; acutely, exactly; minutely; strictly, literally; logically; subtimeo_V = mkV "subtimere" ; -- [XXXFO] :: be somewhat afraid; subtractio_F_N = mkN "subtractio" "subtractionis " feminine ; -- [GSXEK] :: subtraction (math.); + subtraho_V2 = mkV2 (mkV "subtrahere" "subtraho" "subtraxi" "subtractus ") ; -- [XXXDX] :: carry off; take away; subtract; subtristis_A = mkA "subtristis" "subtristis" "subtriste" ; -- [XXXDS] :: somewhat sad/gloomy; subtularis_M_N = mkN "subtularis" "subtularis " masculine ; -- [FXXEM] :: shoe; (gender is guess); subtum_Adv = mkAdv "subtum" ; -- [XXXCO] :: below, underneath, in a lower position; in a position lower than; beneath (L+S); @@ -32178,14 +34599,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg subvectio_F_N = mkN "subvectio" "subvectionis " feminine ; -- [XXXDX] :: transporting (of supplies) to a center; subvecto_V = mkV "subvectare" ; -- [XXXDX] :: convey (often or laboriously) upwards; subvectus_M_N = mkN "subvectus" "subvectus " masculine ; -- [DXXDS] :: transport; + subveho_V2 = mkV2 (mkV "subvehere" "subveho" "subvexi" "subvectus ") ; -- [XXXDX] :: convey upwards; convey up; sail upstream (PASS); + subvenio_V2 = mkV2 (mkV "subvenire" "subvenio" "subveni" "subventus ") ; -- [XXXBX] :: come to help, assist; rescue; subvento_V2 = mkV2 (mkV "subventare") Dat_Prep ; -- [XXXBS] :: bring aid; come quickly to assistance; subvereor_V = mkV "subvereri" ; -- [XXXFO] :: be somewhat afraid/fearful/apprehensive; be rather anxious (Cas); subversio_F_N = mkN "subversio" "subversionis " feminine ; -- [EXXCS] :: overthrow, overturn; ruin, destruction; pouring out (of wine) (Souter); + subverto_V2 = mkV2 (mkV "subvertere" "subverto" "subverti" "subversus ") ; -- [XXXDX] :: overturn, cause to topple; overthrow, destroy, subvert; subvexus_A = mkA "subvexus" "subvexa" "subvexum" ; -- [XXXDX] :: sloping up; subviridis_A = mkA "subviridis" "subviridis" "subviride" ; -- [DXXDS] :: somewhat green; subvolo_V = mkV "subvolare" ; -- [XXXDX] :: fly upwards; --- TODO subvolvo_V : V2 subvolvo, subvolvere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: roll uphill; + subvolvo_V = mkV "subvolvere" "subvolvo" nonExist nonExist ; -- [XXXDX] :: roll uphill; succavus_A = mkA "succavus" "succava" "succavum" ; -- [XXXEC] :: hollow underneath; + succedo_V2 = mkV2 (mkV "succedere" "succedo" "successi" "successus ") ; -- [XXXBX] :: climb; advance; follow; succeed in; + succendo_V2 = mkV2 (mkV "succendere" "succendo" "succendi" "succensus ") ; -- [XXXBX] :: set on fire; succenturio_M_N = mkN "succenturio" "succenturionis " masculine ; -- [XWXDS] :: under-centurion; succenturio_V2 = mkV2 (mkV "succenturiare") ; -- [XXXFS] :: substitute; place in reserve; succeptor_M_N = mkN "succeptor" "succeptoris " masculine ; -- [XXXEO] :: one who takes hand in an enterprise; one admitting gamblers to his house; @@ -32193,21 +34619,27 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg successor_M_N = mkN "successor" "successoris " masculine ; -- [XXXDX] :: successor; successus_M_N = mkN "successus" "successus " masculine ; -- [XXXDX] :: approach, advance uphill, outcome, success; succidia_F_N = mkN "succidia" ; -- [XXXCO] :: leg/side of meat; (esp. salt) pork/bacon; cutting in joints; slaughtering (L+S); + succido_V = mkV "succidere" "succido" "succidi" nonExist; -- [XXXCO] :: sink/collapse (support gave way); give way (knees); fall (under), be included; + succido_V2 = mkV2 (mkV "succidere" "succido" "succidi" "succisus ") ; -- [XXXBO] :: cut down; cut from below, undercut; carve out underside; kill as 2nd offering; succiduus_A = mkA "succiduus" "succidua" "succiduum" ; -- [XXXDX] :: giving way under one; succinericius_A = mkA "succinericius" "succinericia" "succinericium" ; -- [EXXDS] :: prepared/baked under the ashes; + succingo_V2 = mkV2 (mkV "succingere" "succingo" "succinxi" "succinctus ") ; -- [XXXDX] :: gather up with a belt or girdle; prepare for action; surround; succingulum_N_N = mkN "succingulum" ; -- [XXXEC] :: girdle; --- TODO succino_V : V2 succino, succinere, -, - -- Declension: 3rd -- Comment: [XXXEC] :: sing to, accompany; (in speech) chime in; + succino_V = mkV "succinere" "succino" nonExist nonExist ; -- [XXXEC] :: sing to, accompany; (in speech) chime in; succinum_N_N = mkN "succinum" ; -- [XXXDS] :: amber; succlamatio_F_N = mkN "succlamatio" "succlamationis " feminine ; -- [XXXDX] :: answering shout; succlamo_V = mkV "succlamare" ; -- [XXXDX] :: shout in response (to); succollo_V = mkV "succollare" ; -- [XXXDX] :: lift/carry on one's shoulders; succontumeliose_Adv = mkAdv "succontumeliose" ; -- [XXXEC] :: somewhat insolently; --- TODO succresco_V : V2 succresco, succrescere, succrevi, - -- Declension: 3rd -- Comment: [XXXDX] :: come up; grow up; overflow; + succresco_V2 = mkV2 (mkV "succrescere" "succresco" "succrevi" nonExist ) ; -- [XXXDX] :: come up; grow up; overflow; succrispus_A = mkA "succrispus" "succrispa" "succrispum" ; -- [XXXDS] :: somewhat curled; + succumbo_V = mkV "succumbere" "succumbo" "succubui" "succubitus "; -- [XXXAO] :: ||give in/way; lower itself (animal to take load); be rival to (DAT of a woman); succurator_M_N = mkN "succurator" "succuratoris " masculine ; -- [DXXDS] :: sub-curator; + succurro_V2 = mkV2 (mkV "succurrere" "succurro" "succurri" "succursus ") ; -- [XXXBX] :: run to the aid of, help; succus_M_N = mkN "succus" ; -- [DXXCO] :: juice, sap; moisture; drink/draught, potion, medicinal liquor; vitality/spirit; succussus_M_N = mkN "succussus" "succussus " masculine ; -- [XXXDS] :: shaking; succustos_M_N = mkN "succustos" "succostodis " masculine ; -- [BXXDS] :: under-keeper; + succutio_V2 = mkV2 (mkV "succutere" "succutio" "succussi" "succussus ") ; -- [XXXDX] :: shake from below; sucidus_A = mkA "sucidus" "sucida" "sucidum" ; -- [XXXEC] :: juicy, full of sap; sucinum_N_N = mkN "sucinum" ; -- [XXXDS] :: amber; sucinus_A = mkA "sucinus" "sucina" "sucinum" ; -- [XXXEC] :: of amber; @@ -32222,22 +34654,28 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sudum_N_N = mkN "sudum" ; -- [XXXES] :: fine weather; sudus_A = mkA "sudus" "suda" "sudum" ; -- [XXXDX] :: clear and bright; sueo_V = mkV "suere" ; -- [XXXDS] :: to accustom; to be accustomed; + suesco_V2 = mkV2 (mkV "suescere" "suesco" "suevi" "suetus ") ; -- [XXXBX] :: become accustomed (to); suetus_A = mkA "suetus" "sueta" "suetum" ; -- [XXXDX] :: wont, accustomed; usual, familiar; sufes_M_N = mkN "sufes" "sufetis " masculine ; -- [XLAEC] :: chief magistrate of Carthage; suffamen_N_N = mkN "suffamen" "suffaminis " neuter ; -- [XXXDX] :: clog, brake, drag chain; hindrance; suffarcino_V = mkV "suffarcinare" ; -- [XXXEC] :: stuff, cram; suffero_V = mkV "sufferre" "suffero" "sustuli" "sublatus " ; -- Comment: [XXXDX] :: bear, endure, suffer; + suffervefacio_V2 = mkV2 (mkV "suffervefacere" "suffervefacio" "suffervefeci" "suffervefactus ") ; -- [XXXEO] :: simmer, bring/keep almost to a boil; warm from below (L+S); suffes_M_N = mkN "suffes" "suffetis " masculine ; -- [XLAEC] :: chief magistrate of Carthage; sufficiens_A = mkA "sufficiens" "sufficientis"; -- [XXXEO] :: sufficient, adequate (in number/amount); sufficienter_Adv = mkAdv "sufficienter" ; -- [XXXEO] :: sufficiently, adequately; + sufficio_V2 = mkV2 (mkV "sufficere" "sufficio" "suffeci" "suffectus ") ; -- [XXXAX] :: be sufficient, suffice; stand up to; be capable/qualified; provide, appoint; + suffigo_V2 = mkV2 (mkV "suffigere" "suffigo" "suffixi" "suffixus ") ; -- [XXXBO] :: fix/fasten/attach/affix (to top); (as punishment); crucify; fix/insert below; suffimen_N_N = mkN "suffimen" "suffiminis " neuter ; -- [XXXDX] :: fumigation; incense; a substance used to fumigate; suffimentum_N_N = mkN "suffimentum" ; -- [XXXDX] :: fumigation; incense; a substance used to fumigate; + suffio_V2 = mkV2 (mkV "suffire" "suffio" "suffivi" "suffitus ") ; -- [XXXDX] :: fumigate; perfume, scent; sufflamen_N_N = mkN "sufflamen" "sufflaminis " neuter ; -- [XXXEC] :: brake, drag, hindrance; sufflatum_N_N = mkN "sufflatum" ; -- [GXXEK] :: souffle (kitchen); sufflavus_A = mkA "sufflavus" "sufflava" "sufflavum" ; -- [GXXET] :: yellowish; (Erasmus); sufflo_V = mkV "sufflare" ; -- [XXXDX] :: blow/puff up, inflate; blow; get into a temper with; suffocatio_F_N = mkN "suffocatio" "suffocationis " feminine ; -- [XBXEO] :: suffocation; choking/stifling/suffocating; [~ mulierum => hysterical passion]; suffoco_V2 = mkV2 (mkV "suffocare") ; -- [XXXEC] :: strangle, choke, suffocate; + suffodio_V2 = mkV2 (mkV "suffodere" "suffodio" "suffodi" "suffossus ") ; -- [XXXDX] :: undermine, dig under; pierce or prod below; suffraganeus_M_N = mkN "suffraganeus" ; -- [FXXEM] :: supporter; suffragatio_F_N = mkN "suffragatio" "suffragationis " feminine ; -- [XXXDX] :: public expression of support (for); suffragator_M_N = mkN "suffragator" "suffragatoris " masculine ; -- [XXXDX] :: supporter; one who gives support to a candidate (voter, canvasser); @@ -32247,20 +34685,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg suffrago_V = mkV "suffragare" ; -- [XXXDX] :: express public support (for), canvass/vote for; lend support (to), favor; suffragor_V = mkV "suffragari" ; -- [XXXDX] :: express public support (for), canvass/vote for; lend support (to), favor; suffrico_V = mkV "suffricare" ; -- [XXXFS] :: rub-down; rub-off; --- TODO suffringo_V : V2 suffringo, suffringere, -, - -- Declension: 3rd -- Comment: [XXXEC] :: break beneath; --- TODO suffugio_V : V2 suffugio, suffugere, suffugi, - -- Declension: 3rd -- Comment: [XXXFS] :: flee away; flee from; + suffringo_V = mkV "suffringere" "suffringo" nonExist nonExist ; -- [XXXEC] :: break beneath; + suffugio_V2 = mkV2 (mkV "suffugere" "suffugio" "suffugi" nonExist ) ; -- [XXXFS] :: flee away; flee from; suffugium_N_N = mkN "suffugium" ; -- [XXXDX] :: shelter; place of refuge; + suffulcio_V2 = mkV2 (mkV "suffulcire" "suffulcio" "suffulsi" "suffultus ") ; -- [XXXDX] :: underprop, keep from falling; suffumigo_V2 = mkV2 (mkV "suffumigare") ; -- [XXXDS] :: fumigate from below; + suffundo_V2 = mkV2 (mkV "suffundere" "suffundo" "suffudi" "suffusus ") ; -- [XXXDX] :: pour in/on; cause to well up to surface; cover/fill with liquid that wells up; suffuro_V2 = mkV2 (mkV "suffurare") ; -- [XXXEO] :: steal unobtrusively; steal away; suffuscus_A = mkA "suffuscus" "suffusca" "suffuscum" ; -- [XXXEC] :: brownish, dark; suffusus_A = mkA "suffusus" "suffusa" "suffusum" ; -- [XXXDS] :: blushing; bashful; + suggero_V2 = mkV2 (mkV "suggerere" "suggero" "suggessi" "suggestus ") ; -- [XXXDX] :: suggest, furnish; suggestio_F_N = mkN "suggestio" "suggestionis " feminine ; -- [XXXFO] :: supplying an answer to one's own question; suggestion, hint (L+S); addition; suggestus_M_N = mkN "suggestus" "suggestus " masculine ; -- [XXXDX] :: raised surface; platform, dais; suggillo_V = mkV "suggillare" ; -- [XXXDX] :: insult, humiliate; suggrandis_A = mkA "suggrandis" "suggrandis" "suggrande" ; -- [XXXEC] :: somewhat large; + suggredior_V = mkV "suggredi" "suggredior" "suggressus sum " ; -- [XXXEC] :: go up to, approach, attack; sugillatio_F_N = mkN "sugillatio" "sugillationis " feminine ; -- [XXXDS] :: affronting; bruise; sugillo_V = mkV "sugillare" ; -- [XXXDX] :: insult, humiliate; sugitorium_N_N = mkN "sugitorium" ; -- [GXXEK] :: lollipop; + sugo_V2 = mkV2 (mkV "sugere" "sugo" "suxi" "suctus ") ; -- [XXXDX] :: suck; imbibe; take in; sugrunda_F_N = mkN "sugrunda" ; -- [XXXFS] :: roof-eaves; sugrundarium_N_N = mkN "sugrundarium" ; -- [XEXFS] :: baby-grave; suicida_M_N = mkN "suicida" ; -- [GXXEK] :: kamikaze; @@ -32272,6 +34715,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sulcus_M_N = mkN "sulcus" ; -- [XXXBX] :: furrow; rut; trail of a meteor, track, wake; female external genitalia (rude); sulfur_N_N = mkN "sulfur" "sulfuris " neuter ; -- [XXXCO] :: brimstone, sulfur; lightning/thunder (associated with brimstone); sulfuratus_A = mkA "sulfuratus" "sulfurata" "sulfuratum" ; -- [XXXEC] :: containing sulfur; + sullaturio_V = mkV "sullaturire" "sullaturio" nonExist nonExist; -- [XXXDS] :: be like Sulla; imitate Sulla; sulphur_N_N = mkN "sulphur" "sulphuris " neuter ; -- [XXXCO] :: brimstone, sulfur; lightning/thunder (associated with brimstone); sulphureus_A = mkA "sulphureus" "sulphurea" "sulphureum" ; -- [XXXDX] :: sulfurous; sulpur_N_N = mkN "sulpur" "sulpuris " neuter ; -- [XXXCO] :: brimstone, sulfur; lightning/thunder (associated with brimstone); @@ -32286,14 +34730,17 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg summatim_Adv = mkAdv "summatim" ; -- [XXXDX] :: summarily, briefly; summatus_M_N = mkN "summatus" "summatus " masculine ; -- [XXXEZ] :: sovereignty (Collins); summe_Adv = mkAdv "summe" ; -- [XXXDX] :: in the highest degree; intensely; superlatively well, consummately; + summergo_V2 = mkV2 (mkV "summergere" "summergo" "summersi" "summersus ") ; -- [XXXDX] :: plunge under, submerge; sumministratio_F_N = mkN "sumministratio" "sumministrationis " feminine ; -- [DXXES] :: giving, furnishing, supplying; sumministro_V = mkV "sumministrare" ; -- [XXXDX] :: supply, furnish, afford; summissio_F_N = mkN "summissio" "summissionis " feminine ; -- [XXXDS] :: lowering; B:depression; summissus_A = mkA "summissus" "summissa" "summissum" ; -- [XXXDX] :: stooping; quiet; summitas_F_N = mkN "summitas" "summitatis " feminine ; -- [XSXEO] :: culminating state (philosophy); surface (geometry); summit/top/highest part; + summitto_V2 = mkV2 (mkV "summittere" "summitto" "summisi" "summissus ") ; -- [XXXDX] :: allow to grow long; emit, put forth, raise; lower, moderate, relieve; submit; summoleste_Adv = mkAdv "summoleste" ; -- [XXXEC] :: with some difficulty/trouble; summolestus_A = mkA "summolestus" "summolesta" "summolestum" ; -- [XXXEC] :: somewhat troublesome; summoneo_V = mkV "summonere" ; -- [XXXEC] :: remind secretly; + summonio_V2 = mkV2 (mkV "summonire" "summonio" "summonivi" "summonitus ") ; -- [FLXFJ] :: summon; summonitio_F_N = mkN "summonitio" "summonitionis " feminine ; -- [FLXFJ] :: summons; summonitor_M_N = mkN "summonitor" "summonitoris " masculine ; -- [FLXFJ] :: summoner; one who summons; summopere_Adv = mkAdv "summopere" ; -- [XXXEC] :: very much, exceedingly; (summo opere); @@ -32304,95 +34751,125 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg summurmuro_V = mkV "summurmurare" ; -- [XXXFO] :: murmur softly; summus_A = mkA "summus" "summa" "summum" ; -- [XXXDX] :: highest, the top of; greatest; last; the end of; summuto_V2 = mkV2 (mkV "summutare") ; -- [XXXEC] :: exchange; + sumo_V2 = mkV2 (mkV "sumere" "sumo" "sumsi" "sumtus ") ; -- [XXXES] :: accept; begin; suppose; select; purchase; obtain; (sumpsi, sumptum); sumptuarius_A = mkA "sumptuarius" "sumptuaria" "sumptuarium" ; -- [XXXDX] :: relating to expense; sumptuosus_A = mkA "sumptuosus" "sumptuosa" "sumptuosum" ; -- [XXXDX] :: expensive, costly; sumptuous; sumptus_M_N = mkN "sumptus" "sumptus " masculine ; -- [XXXBX] :: cost, charge, expense; + suo_V2 = mkV2 (mkV "suere" "suo" "sui" "sutus ") ; -- [XXXDX] :: sew together/up, stitch; suouitaurilis_N_N = mkN "suouitaurilis" "suouitaurilis " neuter ; -- [XEXFS] :: animal sacrifice (pl.) (of pig, sheep and bull); suovetaurile_N_N = mkN "suovetaurile" "suovetaurilis " neuter ; -- [XXXDX] :: purificatory sacrifice (pl.) consisting of a boar, a ram, and a bull; supellex_F_N = mkN "supellex" "supellectilis " feminine ; -- [XXXCO] :: furniture, house furnishings; paraphernalia, articles necessary for business; - super_Abl_Prep = mkPrep "super" Abl ; -- [XXXAX] :: over (space), above, upon, in addition to; during (time); concerning; beyond; - super_Acc_Prep = mkPrep "super" Acc ; -- [XXXBX] :: upon/on; over, above, about; besides (space); during (time); beyond (degree); + super_Abl_Prep = mkPrep "super" abl ; -- [XXXAX] :: over (space), above, upon, in addition to; during (time); concerning; beyond; + super_Acc_Prep = mkPrep "super" acc ; -- [XXXBX] :: upon/on; over, above, about; besides (space); during (time); beyond (degree); super_Adv = mkAdv "super" ; -- [XXXAX] :: above, on top, over; upwards; moreover, in addition, besides; superabilis_A = mkA "superabilis" "superabilis" "superabile" ; -- [XXXDX] :: that may be got over or surmounted; that may be conquered; superabundanter_Adv = mkAdv "superabundanter" ; -- [DXXFS] :: very abundantly; superabundantia_F_N = mkN "superabundantia" ; -- [DXXFS] :: superabundance; superabundo_V = mkV "superabundare" ; -- [DXXDS] :: be very abundant; + superaddo_V2 = mkV2 (mkV "superaddere" "superaddo" "superaddidi" "superadditus ") ; -- [XXXDX] :: add or affix on the surface; + superadicio_V2 = mkV2 (mkV "superadicere" "superadicio" "superadieci" "superadiectus ") ; -- [XXXDS] :: add besides; superaedificium_N_N = mkN "superaedificium" ; -- [DXXFS] :: upper building; superaedifico_V2 = mkV2 (mkV "superaedificare") ; -- [DXXDS] :: build upon/over; superans_A = mkA "superans" "superantis"; -- [XXXDS] :: predominant; + superappono_V2 = mkV2 (mkV "superapponere" "superappono" "superapposui" "superappositus ") ; -- [DXXDS] :: place above; superator_M_N = mkN "superator" "superatoris " masculine ; -- [XXXDX] :: conqueror; superbe_Adv =mkAdv "superbe" "superbius" "superbissime" ; -- [XXXDX] :: arrogantly, proudly, haughtily; superciliously; superbia_F_N = mkN "superbia" ; -- [XXXDX] :: arrogance, pride, haughtiness; superbiloquentia_F_N = mkN "superbiloquentia" ; -- [XXXDS] :: haughty/arrogant/overbearing speaking/speech; --- TODO superbio_V : V2 superbio, superbire, -, - -- Declension: 4th -- Comment: [XXXDX] :: show pride or disdain on account (of); be proud/haughty; be splendid; + superbio_V = mkV "superbire" "superbio" "superbivi" "superbitus "; -- [XXXCO] :: show/have (too much) pride/disdain (to); be proud/gorgeous/superb/magnificent; superbiparticular_A = mkA "superbiparticular" "superbiparticularis"; -- [DSXFS] :: super-biparticular; of integer plus two thirds; (N + 2/3); superbipartiens_A = mkA "superbipartiens" "superbipartientis"; -- [FSXEM] :: super-biparticular; of integer plus two thirds; (N + 2/3); superbus_A = mkA "superbus" "superba" "superbum" ; -- [XXXAX] :: arrogant, overbearing, haughty, proud; superciliosus_A = mkA "superciliosus" "superciliosa" "superciliosum" ; -- [XXXDS] :: supercilious; disdainful; supercilium_N_N = mkN "supercilium" ; -- [XXXDX] :: eyebrow; frown; arrogance; supercilius_A = mkA "supercilius" "supercilia" "supercilium" ; -- [EXXFS] :: haughty; supercilious; + superdico_V = mkV "superdicere" "superdico" "superdixi" "superdictus "; -- [ELXES] :: say in addition; superdo_V2 = mkV2 (mkV "superdare") ; -- [XXXFO] :: lay over; put over; apply on the surface; + superduco_V2 = mkV2 (mkV "superducere" "superduco" "superduxi" "superductus ") ; -- [XXXEO] :: bring home as successor to former wife; superductio_F_N = mkN "superductio" "superductionis " feminine ; -- [XXXFO] :: drawing of a line over words in a document; superemineo_V = mkV "supereminere" ; -- [XXXDX] :: overtop, stand out above the level of; superexactio_F_N = mkN "superexactio" "superexactionis " feminine ; -- [ELXFS] :: excessive demand; superexalto_V = mkV "superexaltare" ; -- [DEXES] :: exalt above others; + superexcedo_V2 = mkV2 (mkV "superexcedere" "superexcedo" "superexcessi" "superexcessus ") ; -- [EXXDS] :: surpass; superexcellens_A = mkA "superexcellens" "superexcellentis"; -- [XXXFS] :: very excellent; superexcrescens_A = mkA "superexcrescens" "superexcrescentis"; -- [FXXFM] :: excess; incremental; [superexcrescens anno => leap year]; superficies_F_N = mkN "superficies" "superficiei " feminine ; -- [XXXDX] :: top, surface, upper layer; building (vs. land on which it stands); superficietenus_Adv = mkAdv "superficietenus" ; -- [FXXFM] :: superficially; superfio_V = mkV "superferi" ; -- [XXXDS] :: be left over; be left/remain (as residue); become superfluous/redundant; superfixus_A = mkA "superfixus" "superfixa" "superfixum" ; -- [XXXEC] :: fixed on the top; + superfluo_V2 = mkV2 (mkV "superfluere" "superfluo" "superfluxi" "superfluxus ") ; -- [XXXCO] :: overflow, flow over brim/sides/surface; be superfluous/superabundant/surplus; superfluum_N_N = mkN "superfluum" ; -- [XXXEO] :: balance. (that) remaining (after something taken), surplus; superfluus_A = mkA "superfluus" "superflua" "superfluum" ; -- [XXXCO] :: superfluous, in excess of need; remaining after something taken; surplus; + superfundo_V2 = mkV2 (mkV "superfundere" "superfundo" "superfudi" "superfusus ") ; -- [XXXCO] :: pour over, cover (surface); spill over, pour over brim; pour in (invaders); + supergredior_V = mkV "supergredi" "supergredior" "supergressus sum " ; -- [XXXDX] :: pass over or beyond; exceed, surpass; superimmineo_V = mkV "superimminere" ; -- [XXXDX] :: stand above in a threatening position; superimpendens_A = mkA "superimpendens" "superimpendentis"; -- [XXXEC] :: overhanging; + superimpendo_V2 = mkV2 (mkV "superimpendere" "superimpendo" "superimpendi" "superimpensus ") ; -- [EXXFS] :: spend, exhaust; (upon any thing); + superimpono_V2 = mkV2 (mkV "superimponere" "superimpono" "superimposui" "superimpositus ") ; -- [XXXDX] :: place on top or over; superincidens_A = mkA "superincidens" "superincidentis"; -- [XXXDX] :: falling on top; superincubans_A = mkA "superincubans" "superincubantis"; -- [XXXDX] :: lying on top; --- TODO superincumbo_V : V2 superincumbo, superincumbere, superincumbui, - -- Declension: 3rd -- Comment: [XXXDX] :: lean over; + superincumbo_V2 = mkV2 (mkV "superincumbere" "superincumbo" "superincumbui" nonExist ) ; -- [XXXDX] :: lean over; + superingo_V2 = mkV2 (mkV "superingere" "superingo" nonExist "superingestus ") ; -- [XXXDS] :: bring upon; pour down (eg sun-rays); + superinicio_V2 = mkV2 (mkV "superinicere" "superinicio" "superinjeci" "superinjectus ") ; -- [XXXDX] :: throw/scatter on/upon/over the surface; + superinjicio_V2 = mkV2 (mkV "superinjicere" "superinjicio" "superinjeci" "superinjectus ") ; -- [XXXCS] :: throw/scatter on/upon/over the surface; + superinpendo_V2 = mkV2 (mkV "superinpendere" "superinpendo" "superinpendi" "superinpensus ") ; -- [EXXFS] :: spend, exhaust; (upon any thing); + superinsterno_V2 = mkV2 (mkV "superinsternere" "superinsterno" "superinstravi" "superinstratus ") ; -- [XXXDX] :: spread/lay on over the surface; + superinungo_V2 = mkV2 (mkV "superinungere" "superinungo" nonExist nonExist) ; -- [XXXDS] :: besmear; smear over; E:anoint; superinvaleo_V = mkV "superinvalere" ; -- [EXXEP] :: excel in strength; + superinvalesco_V = mkV "superinvalescere" "superinvalesco" nonExist nonExist; -- [EXXEP] :: excel in strength; superioritas_F_N = mkN "superioritas" "superioritatis " feminine ; -- [XXXEZ] :: superiority; superjaceo_V2 = mkV2 (mkV "superjacere") ; -- [XXXFS] :: lie over; lie upon; + superjacio_V2 = mkV2 (mkV "superjacere" "superjacio" "superjeci" "superjectus ") ; -- [XXXDX] :: throw or scatter on top o; over the surface; shoot over the top of; superlatus_A = mkA "superlatus" "superlata" "superlatum" ; -- [XXXEC] :: exaggerated, hyperbolic; superlectile_N_N = mkN "superlectile" "superlectilis " neuter ; -- [FXXFM] :: bedding (gender unclear); superliminare_N_N = mkN "superliminare" "superliminaris " neuter ; -- [EXXFP] :: lintel; superliminium_N_N = mkN "superliminium" ; -- [EXXFP] :: lintel; superlinen_N_N = mkN "superlinen" "superlininis " neuter ; -- [XXXIO] :: lintel; (over door); superlininare_N_N = mkN "superlininare" "superlininaris " neuter ; -- [EXXES] :: lintel; (over door); + superlino_V2 = mkV2 (mkV "superlinere" "superlino" "superlevi" "superlitus ") ; -- [DXXDS] :: smear over; besmear; + supermitto_V2 = mkV2 (mkV "supermittere" "supermitto" "supermisi" "supermissus ") ; -- [DXXDS] :: throw over; supernato_V = mkV "supernatare" ; -- [DXXDS] :: swim on top; float; supernaturalis_A = mkA "supernaturalis" "supernaturalis" "supernaturale" ; -- [GXXEK] :: supernatural; superne_Adv = mkAdv "superne" ; -- [XXXDX] :: at or to a higher level, above; in the upper part; on top; supernus_A = mkA "supernus" "superna" "supernum" ; -- [XXXBX] :: heavenly; celestial; of the gods; lofty, above; on the surface/upper side; supero_V = mkV "superare" ; -- [XXXAX] :: overcome, conquer; survive; outdo; surpass, be above, have the upper hand; + superobruo_V2 = mkV2 (mkV "superobruere" "superobruo" "superobrui" "superobrutus ") ; -- [XXXFO] :: overwhelm (Col); overrun; overthrow; superoccupo_V = mkV "superoccupare" ; -- [XXXDX] :: take by surprise from above; superonero_V2 = mkV2 (mkV "superonerare") ; -- [FXXFM] :: overload with fetters; superparticularis_A = mkA "superparticularis" "superparticularis" "superparticulare" ; -- [DSXFS] :: super-particular; of/containing integer plus aliquot fraction; (N + 1/M); superpartiens_A = mkA "superpartiens" "superpartientis"; -- [FSXES] :: super-particular; of/containing integer plus aliquot fraction; (N + 1/M); superpendens_A = mkA "superpendens" "superpendentis"; -- [XXXDX] :: overhanging; + superpono_V2 = mkV2 (mkV "superponere" "superpono" "superposui" "superpositus ") ; -- [XXXDX] :: place over or on top; put in charge; superrealismus_M_N = mkN "superrealismus" ; -- [GXXEK] :: surrealism; --- TODO superruo_V : V2 superruo, superruere, -, - -- Declension: 3rd -- Comment: [DXXDS] :: fall upon; rush upon; --- TODO superscando_V : V2 superscando, superscandere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: climb over; + superruo_V = mkV "superruere" "superruo" nonExist nonExist ; -- [DXXDS] :: fall upon; rush upon; + superscando_V = mkV "superscandere" "superscando" nonExist nonExist ; -- [XXXDX] :: climb over; supersedeo_V = mkV "supersedere" ; -- [XXXDX] :: refrain (from), desist (from); --- supersido_V2 : V4 supersido, supersidere, supersidi, - -- Declension: 3rd -- Case: ABL -- Comment: [EXXEP] :: dispense with; + supersido_V2 = mkV2 (mkV "supersidere" "supersido" "supersidi" nonExist) Abl_Prep ; -- [EXXEP] :: dispense with; supersilium_N_N = mkN "supersilium" ; -- [FXXEM] :: saddle-cover; haughtiness (Nelson); + supersterno_V2 = mkV2 (mkV "supersternere" "supersterno" "superstravi" "superstratus ") ; -- [XXXDX] :: spread or lay on top; superstes_A = mkA "superstes" "superstitis"; -- [XXXBX] :: outliving, surviving; standing over/near; present, witnessing; superstitio_F_N = mkN "superstitio" "superstitionis " feminine ; -- [XXXDX] :: superstition; irrational religious awe; superstitiosus_A = mkA "superstitiosus" "superstitiosa" "superstitiosum" ; -- [XXXDX] :: superstitious, full of unreasoning religious awe; supersto_V = mkV "superstare" ; -- [XXXCO] :: stand on top (of) (w/DAT/ABL); stand over (someone prostrate or recumbent); + superstruo_V2 = mkV2 (mkV "superstruere" "superstruo" "superstruxi" "supertstructus ") ; -- [DXXFS] :: build over; build on top; supersubstantialis_A = mkA "supersubstantialis" "supersubstantialis" "supersubstantiale" ; -- [EEXDX] :: life-sustaining; supersum_V = mkV "superesse" "supersum" "superfui" "superfuturus " ; -- Comment: [XXXAX] :: be left over; survive; be in excess/superfluous (to); remain to be performed; + supertego_V2 = mkV2 (mkV "supertegere" "supertego" "supertexi" "supertectus ") ; -- [XXXDS] :: cover over; supertriparticular_A = mkA "supertriparticular" "supertriparticularis"; -- [DSXFS] :: super-triparticular; of integer plus three fourths; (N + 3/4); supertripartiens_A = mkA "supertripartiens" "supertripartientis"; -- [FSXEM] :: super-triparticular; of integer plus three fourths; (N + 3/4); superum_N_N = mkN "superum" ; -- [XXXDX] :: heaven (pl.); heavenly bodies; heavenly things; higher places; superumerale_N_N = mkN "superumerale" "superumeralis " neuter ; -- [EXXES] :: ephod (armless vestment of Jewish priests); (sarape-like); superurgens_A = mkA "superurgens" "superurgentis"; -- [XXXDS] :: pressing from above; --- SLASHSTUFF superus_A : A2 superus, supera -um, superior -or -us, supremus -a -um -- [XXXAX] :: above, high; higher, upper, of this world; greatest, last, highest; + superus_A = mkA "superus" ; -- [XXXAX] :: above, high; higher, upper, of this world; greatest, last, highest; superus_M_N = mkN "superus" ; -- [XXXDX] :: gods (pl.) on high, celestial deities; those above; supervacaneus_A = mkA "supervacaneus" "supervacanea" "supervacaneum" ; -- [XXXDX] :: redundant; unnecessary; supervacuaneus_A = mkA "supervacuaneus" "supervacuanea" "supervacuaneum" ; -- [CXXFX] :: superfluous; unnecessary; (a different read of supervacaneus in Cicero); supervacuus_A = mkA "supervacuus" "supervacua" "supervacuum" ; -- [XXXDX] :: superfluous, redundant, more than needed; unnecessary, pointless, purposeless; --- TODO supervado_V : V2 supervado, supervadere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: surmount; + supervado_V = mkV "supervadere" "supervado" nonExist nonExist ; -- [XXXDX] :: surmount; + supervehor_V = mkV "supervehi" "supervehor" "supervectus sum " ; -- [XXXDX] :: ride/sail/pass over/by/past; turn; + supervenio_V2 = mkV2 (mkV "supervenire" "supervenio" "superveni" "superventus ") ; -- [XXXAX] :: come up, arrive; superventus_M_N = mkN "superventus" "superventus " masculine ; -- [EXXES] :: arrival, coming up; W:attack; --- TODO supervivo_V : V2 supervivo, supervivere, supervixi, - -- Declension: 3rd -- Comment: [XXXDX] :: survive, outlive; + supervivo_V2 = mkV2 (mkV "supervivere" "supervivo" "supervixi" nonExist ) ; -- [XXXDX] :: survive, outlive; supervolito_V = mkV "supervolitare" ; -- [XXXDX] :: fly to and fro over; supervolo_V = mkV "supervolare" ; -- [XXXDX] :: fly over; supino_V = mkV "supinare" ; -- [XXXDX] :: lay on the back; turn up; tilt back; @@ -32406,10 +34883,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg supparus_M_N = mkN "supparus" ; -- [XXXDS] :: top-sail; linen garment; (see also supparum); suppeditatio_F_N = mkN "suppeditatio" "suppeditationis " feminine ; -- [XXXDS] :: abundance; suppedito_V = mkV "suppeditare" ; -- [XXXDX] :: be/make available when/as required, supply with/needs (of); + suppedo_V = mkV "suppedere" "suppedo" nonExist nonExist; -- [XXXDS] :: break wind gently, fart quietly; suppernatus_A = mkA "suppernatus" "suppernata" "suppernatum" ; -- [XXXEC] :: lamed in the hip; suppetia_F_N = mkN "suppetia" ; -- [XXXEC] :: help (pl.), aid; suppetior_V = mkV "suppetiari" ; -- [XXXEC] :: help, assist; + suppeto_V2 = mkV2 (mkV "suppetere" "suppeto" "suppetivi" "suppetitus ") ; -- [XXXDX] :: be at hand; be equal to; be sufficient for; suppilo_V2 = mkV2 (mkV "suppilare") ; -- [XXXDS] :: steal; pilfer; + suppingo_V2 = mkV2 (mkV "suppingere" "suppingo" "suppinxi" "suppactus ") ; -- [XXXDS] :: fasten underneath; paint over; supplanto_V = mkV "supplantare" ; -- [XXXEC] :: trip up; supplementum_N_N = mkN "supplementum" ; -- [XXXDX] :: reinforcements; supplies; that which fills out; suppleo_V = mkV "supplere" ; -- [XXXDX] :: supply; @@ -32419,13 +34899,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg suppliciter_Adv = mkAdv "suppliciter" ; -- [XXXDX] :: suppliantly, in an attitude of humble entreaty; supplicium_N_N = mkN "supplicium" ; -- [XXXBX] :: punishment, suffering; supplication; torture; supplico_V = mkV "supplicare" ; -- [XXXDX] :: pray, supplicate; humbly beseech; --- TODO supplodo_V : V2 supplodo, supplodere, supplosi, - -- Declension: 3rd -- Comment: [XXXEC] :: stamp; + supplodo_V2 = mkV2 (mkV "supplodere" "supplodo" "supplosi" nonExist ) ; -- [XXXEC] :: stamp; supplosio_F_N = mkN "supplosio" "supplosionis " feminine ; -- [XXXEC] :: stamping; + suppono_V2 = mkV2 (mkV "supponere" "suppono" "supposui" "suppositus ") ; -- [XXXBX] :: place under; substitute; suppose; supporto_V = mkV "supportare" ; -- [XXXDX] :: carry up, transport; suppositicius_A = mkA "suppositicius" "suppositicia" "suppositicium" ; -- [XXXET] :: substituted; spurious; put in the place of another; not genuine; suppositio_F_N = mkN "suppositio" "suppositionis " feminine ; -- [XXXEO] :: fraudulent introduction (of child) into family; placing under (eggs-hen); supposititius_A = mkA "supposititius" "supposititia" "supposititium" ; -- [GXXET] :: substituted; spurious; put in the place of another; not genuine; suppressio_F_N = mkN "suppressio" "suppressionis " feminine ; -- [XBXDS] :: pressing-down; nightmare; sense of oppression; embezzlement/keeping back money + supprimo_V2 = mkV2 (mkV "supprimere" "supprimo" "suppressi" "suppressus ") ; -- [XXXDX] :: press down or under; suppress; keep back, contain; stop, check; suppromus_M_N = mkN "suppromus" ; -- [BXXDS] :: under-butler; suppudet_V0 = mkV0 "suppudet" ; -- [XXXDS] :: be somewhat ashamed; suppullulo_V = mkV "suppullulare" ; -- [FXXFM] :: spring up secretly; @@ -32436,17 +34918,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg suppus_A = mkA "suppus" "suppa" "suppum" ; -- [XXXEC] :: head-downwards; supputatio_F_N = mkN "supputatio" "supputationis " feminine ; -- [XXXDS] :: computation; supputo_V2 = mkV2 (mkV "supputare") ; -- [XXXEC] :: count up, compute; - supra_Acc_Prep = mkPrep "supra" Acc ; -- [XXXAX] :: above, beyond; over; more than; in charge of, in authority over; + supra_Acc_Prep = mkPrep "supra" acc ; -- [XXXAX] :: above, beyond; over; more than; in charge of, in authority over; supra_Adv = mkAdv "supra" ; -- [XXXDX] :: on top; more; above; before, formerly; + supradico_V2 = mkV2 (mkV "supradicere" "supradico" "supradixi" "supradictus ") ; -- [XXXDX] :: say in addition to; say above, say before; supranistria_F_N = mkN "supranistria" ; -- [GDXEK] :: soprano; --- TODO suprascando_V : V2 suprascando, suprascandere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: climb on top of; + suprascando_V = mkV "suprascandere" "suprascando" nonExist nonExist ; -- [XXXDX] :: climb on top of; + suprascribo_V2 = mkV2 (mkV "suprascribere" "suprascribo" "suprascripsi" "suprascriptus ") ; -- [EXXEP] :: title/entitle; inscribe; suprascriptio_F_N = mkN "suprascriptio" "suprascriptionis " feminine ; -- [EXXEP] :: title; inscription (Douay); suprascriptus_A = mkA "suprascriptus" "suprascripta" "suprascriptum" ; -- [EXXEP] :: entitled; inscribed; (sometimes abb. SS.); supremum_N_N = mkN "supremum" ; -- [XXXDX] :: funeral rites (pl.) or offerings; - supter_Abl_Prep = mkPrep "supter" Abl ; -- [XXXEO] :: beneath, under (cover/shelter); towards/at base (of wall/cliff); (usu. ACC); - supter_Acc_Prep = mkPrep "supter" Acc ; -- [XXXCO] :: beneath, under (cover/shelter); towards/at base (of wall/cliff); + supter_Abl_Prep = mkPrep "supter" abl ; -- [XXXEO] :: beneath, under (cover/shelter); towards/at base (of wall/cliff); (usu. ACC); + supter_Acc_Prep = mkPrep "supter" acc ; -- [XXXCO] :: beneath, under (cover/shelter); towards/at base (of wall/cliff); supter_Adv = mkAdv "supter" ; -- [XXXCO] :: beneath (surface/covering); underneath, below; at lower level/in lower position; --- SLASHSTUFF suptilis_A : A2 suptilis, suptile, suptilior -or -us, suptilissimus -a -um -- [XXXAO] :: fine-spun, fine; slender, delicate, exact; minutely thorough; strict, literal; + suptilis_A = mkA "suptilis" ; -- [XXXAO] :: fine-spun, fine; slender, delicate, exact; minutely thorough; strict, literal; suptilitas_F_N = mkN "suptilitas" "suptilitatis " feminine ; -- [XXXAO] :: fineness of texture/logic/detail; slenderness/exactness/acuteness; sharpness; suptiliter_Adv =mkAdv "suptiliter" "suptilius" "suptilissime" ; -- [XXXBO] :: finely; delicately; acutely, exactly; minutely; strictly, literally; logically; sura_F_N = mkN "sura" ; -- [XXXDX] :: calf of the leg; @@ -32456,13 +34940,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg surditas_F_N = mkN "surditas" "surditatis " feminine ; -- [XXXDX] :: deafness; surdus_A = mkA "surdus" "surda" "surdum" ; -- [XXXDX] :: deaf, unresponsive to what is said; falling on deaf ears; muffled, muted; surena_F_N = mkN "surena" ; -- [XXXDS] :: grand vizier/chief minister (of Parthians); kind of fish; + surgo_V2 = mkV2 (mkV "surgere" "surgo" "surrexi" "surrectus ") ; -- [XXXAX] :: rise, lift; grow; surpiculus_A = mkA "surpiculus" "surpicula" "surpiculum" ; -- [XAXES] :: used for dealing with bulrushes (of a billhook); of/made of rushes (L+S); surpiculus_M_N = mkN "surpiculus" ; -- [XAXDS] :: basket made of bulrushes, rush basket; + surpo_V2 = mkV2 (mkV "surpere" "surpo" "surpui" nonExist) ; -- [BXXFS] :: take away secretly; steal, filch; (archaic form of surripere); surregulus_M_N = mkN "surregulus" ; -- [DXXES] :: petty prince; feudatory vassal; + surrepo_V2 = mkV2 (mkV "surrepere" "surrepo" "surrepsi" "surreptus ") ; -- [XXXCO] :: |come on gradually/imperceptibly/by degrees (conditions); steal along/on; surrepticius_A = mkA "surrepticius" "surrepticia" "surrepticium" ; -- [XXXDX] :: surreptitious; surreptio_F_N = mkN "surreptio" "surreptionis " feminine ; -- [XLXEO] :: stealing/taking secretly or by deception; filching; purloining, theft (L+S); surreptitius_A = mkA "surreptitius" "surreptitia" "surreptitium" ; -- [XXXES] :: stolen; surreptitious; concealed; (surrepticius); surreptum_Adv = mkAdv "surreptum" ; -- [XXXFS] :: stealthily; + surrido_V2 = mkV2 (mkV "surridere" "surrido" "surrisi" "surrisus ") ; -- [DXXFS] :: smile; + surripio_V2 = mkV2 (mkV "surripere" "surripio" "surripui" "surreptus ") ; -- [XXXEC] :: take away secretly; steal, filch; surrogo_V = mkV "surrogare" ; -- [FXXEM] :: replace; depute; surrubicundus_A = mkA "surrubicundus" "surrubicunda" "surrubicundum" ; -- [DXXDS] :: somewhat red; surruncivus_A = mkA "surruncivus" "surrunciva" "surruncivum" ; -- [DXXDS] :: grubbed-up; that is grubbed up; @@ -32475,18 +34964,21 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg susceptibilis_A = mkA "susceptibilis" "susceptibilis" "susceptibile" ; -- [FXXFM] :: acceptable; can be received; susceptio_F_N = mkN "susceptio" "susceptionis " feminine ; -- [XXXDO] :: undertaking; taking upon oneself; susceptor_M_N = mkN "susceptor" "susceptoris " masculine ; -- [EXXDP] :: ||supporter, helper, guardian; host/entertainer; receiver/collector of taxes; + suscipio_V2 = mkV2 (mkV "suscipere" "suscipio" "suscepi" "susceptus ") ; -- [XXXAX] :: undertake; support; accept, receive, take up; suscitabulum_N_N = mkN "suscitabulum" ; -- [GXXEK] :: clock; suscito_V = mkV "suscitare" ; -- [XXXDX] :: encourage, stir up; awaken, rouse, kindle; suscriptor_M_N = mkN "suscriptor" "suscriptoris " masculine ; -- [FXXEN] :: document-signer; susicivus_A = mkA "susicivus" "susiciva" "susicivum" ; -- [FXXEN] :: left over, spare; extra, superfluous; suspecto_Adv = mkAdv "suspecto" ; -- [XXXFO] :: in suspicious circumstances; suspiciously; suspecto_V2 = mkV2 (mkV "suspectare") ; -- [XXXCO] :: suspect; mistrust, be suspicious of; suspect the presence of evil; gaze up at; --- SLASHSTUFF suspectus_A : A2 suspectus, suspecta -um, suspectior -or -us, suspectissimus -a -um -- [XXXBO] :: suspected/mistrusted; of doubtful character; believed without proof; suspicious; + suspectus_A = mkA "suspectus" ; -- [XXXBO] :: suspected/mistrusted; of doubtful character; believed without proof; suspicious; suspectus_M_N = mkN "suspectus" "suspectus " masculine ; -- [DXXDS] :: esteem; admiration, looking up to; suspendium_N_N = mkN "suspendium" ; -- [XXXDX] :: act of hanging oneself; + suspendo_V2 = mkV2 (mkV "suspendere" "suspendo" "suspendi" "suspensus ") ; -- [XXXAX] :: hang up, suspend; suspensus_A = mkA "suspensus" "suspensa" "suspensum" ; -- [XXXDX] :: in a state of anxious uncertainty or suspense, light; suspicax_A = mkA "suspicax" "suspicacis"; -- [XXXDX] :: mistrustful; suspicio_F_N = mkN "suspicio" "suspicionis " feminine ; -- [XXXDX] :: suspicion; mistrust; + suspicio_V2 = mkV2 (mkV "suspicere" "suspicio" "suspexi" "suspectus ") ; -- [XXXBX] :: look up to; admire; suspiciosus_A = mkA "suspiciosus" "suspiciosa" "suspiciosum" ; -- [XXXEC] :: feeling suspicion, suspecting; exciting suspicion, suspicious; suspicor_V = mkV "suspicari" ; -- [XXXBX] :: mistrust, suspect; suppose; suspiratus_M_N = mkN "suspiratus" "suspiratus " masculine ; -- [XXXDX] :: sigh; deep breath; @@ -32500,7 +34992,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg sustentatus_M_N = mkN "sustentatus" "sustentatus " masculine ; -- [DXXES] :: support, sustaining, bearing/carrying; keeping erect/upright; hangings/drapes; sustento_V = mkV "sustentare" ; -- [XXXDX] :: endure, hold out; sustineo_V = mkV "sustinere" ; -- [XXXAX] :: support; check; put off; put up with; sustain; hold back; --- TODO sustollo_V : V2 sustollo, sustollere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: raise on high; + sustollo_V = mkV "sustollere" "sustollo" nonExist nonExist ; -- [XXXDX] :: raise on high; susum_Adv = mkAdv "susum" ; -- [XXXDX] :: up, on high; susurratim_Adv = mkAdv "susurratim" ; -- [DXXFS] :: in a low voice/whisper, softly; susurratio_F_N = mkN "susurratio" "susurrationis " feminine ; -- [DXXDS] :: whisper, whispering; @@ -32576,9 +35068,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg syngrapha_F_N = mkN "syngrapha" ; -- [XXXCO] :: written contract/IOU (signed by both) to pay the other a specific sum of money; syngraphus_M_N = mkN "syngraphus" ; -- [XXXEO] :: written contract/agreement; written pass, safe conduct; passport; synodita_M_N = mkN "synodita" ; -- [ELXFS] :: fellow-traveller; companion; + synodus_1_N = mkN "synodus" "synodontis" masculine ; -- [XAXNO] :: fish of sea-bream family; + synodus_2_N = mkN "synodus" "synodontos" masculine ; -- [XAXNO] :: fish of sea-bream family; synodus_F_N = mkN "synodus" ; -- [EEXES] :: synod, general council; college of priests; synodus_M_N = mkN "synodus" ; -- [FEXEM] :: synod, general council; book of synodal acts/constituions; --- TODO synodus_N : N1 synodus, synodontos/is -- M -- [XAXNO] :: fish of sea-bream family; synonymum_N_N = mkN "synonymum" ; -- [FXXES] :: synonym; synthesis_F_N = mkN "synthesis" "synthesis " feminine ; -- [XXXDO] :: |set of dining clothes; dressing-gown; costume (Cal); syntheticus_A = mkA "syntheticus" "synthetica" "syntheticum" ; -- [GXXEK] :: synthetic; @@ -32596,6 +35089,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tabacismus_M_N = mkN "tabacismus" ; -- [GBXEK] :: tobacco addiction; tabacum_N_N = mkN "tabacum" ; -- [GAXEK] :: tobacco; tabanus_M_N = mkN "tabanus" ; -- [XAXFS] :: horse-fly; + tabefacio_V2 = mkV2 (mkV "tabefacere" "tabefacio" "tabefaci" "tabefactus ") ; -- [EXXES] :: melt; dissolve; subdue; tabefactus_A = mkA "tabefactus" "tabefacta" "tabefactum" ; -- [EXXES] :: melted; dissolved; tabefio_V = mkV "tabeferi" ; -- [EXXES] :: be melted/dissolved/subdued; (tabefacio PASS); tabella_F_N = mkN "tabella" ; -- [XXXDX] :: small board; writing tablet; picture; ballot; deed (pl.), document, letter; @@ -32607,7 +35101,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tabernaculum_N_N = mkN "tabernaculum" ; -- [XXXCM] :: |tabernacle; canopy, covered shrine, niche; reliquary; receptacle for Host; tabernarius_M_N = mkN "tabernarius" ; -- [GXXEK] :: retailing; tabes_F_N = mkN "tabes" "tabis " feminine ; -- [XXXDX] :: wasting away; decay; putrefaction; fluid resulting from corruption or decay; --- TODO tabesco_V : V2 tabesco, tabescere, tabui, - -- Declension: 3rd -- Comment: [XXXDX] :: melt, dissolve; dry up, evaporate; waste away, dwindle away; (mental aspect); + tabesco_V2 = mkV2 (mkV "tabescere" "tabesco" "tabui" nonExist ) ; -- [XXXDX] :: melt, dissolve; dry up, evaporate; waste away, dwindle away; (mental aspect); tabidulus_A = mkA "tabidulus" "tabidula" "tabidulum" ; -- [XXXEC] :: consuming; tabidus_A = mkA "tabidus" "tabida" "tabidum" ; -- [XXXDX] :: wasting away, emaciated, putrefying, rotten; accompanied by wasting; tabificus_A = mkA "tabificus" "tabifica" "tabificum" ; -- [XXXDX] :: causing decay or wasting; @@ -32649,7 +35143,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg talio_F_N = mkN "talio" "talionis " feminine ; -- [XXXEC] :: retaliation; talis_A = mkA "talis" "talis" "tale" ; -- [XXXAX] :: such; so great; so excellent; of such kind; taliter_Adv = mkAdv "taliter" ; -- [XXXDX] :: in such a manner/way (as described), so; --- IGNORED talitha_N : N1 talitha, undeclined -- F -- [EXQFW] :: girl; damsel (Douay); (Aramaic); (Mark 5:41); + talitha_N = constN "talitha" feminine ; -- [EXQFW] :: girl; damsel (Douay); (Aramaic); (Mark 5:41); talla_F_N = mkN "talla" ; -- [XAXEO] :: layer of an onion; peel or coat of an onion (L+S); tallus_M_N = mkN "tallus" ; -- [EAXFW] :: young/green branch/bough/stalk; olive or myrtle (L+S) branch (2 Maccabee 14:4); talpa_C_N = mkN "talpa" ; -- [XXXCO] :: mole (animal); @@ -32658,14 +35152,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tamarix_F_N = mkN "tamarix" "tamaricis " feminine ; -- [XAXEC] :: tamarisk; (evergreen bush/shrub/tree genus Tamarix); (also myrica); tamdiu_Adv = mkAdv "tamdiu" ; -- [XXXDX] :: so long, for so long a time; so very long; all this time; tamen_Adv = mkAdv "tamen" ; -- [XXXAX] :: yet, nevertheless, still; --- tametsi_Conj : Conj tametsi -- [XXXDX] :: even if, although, though; + tametsi_Conj = mkConj "tametsi" missing ; -- [XXXDX] :: even if, although, though; taminius_A = mkA "taminius" "taminia" "taminium" ; -- [XAXFS] :: taminian. species of wild grape; tamisium_N_N = mkN "tamisium" ; -- [FXXEM] :: sieve, sifter; --- tamquam_Conj : Conj tamquam -- [XXXAX] :: as, just as, just as if; as it were, so to speak; as much as; so as; + tamquam_Conj = mkConj "tamquam" missing ; -- [XXXAX] :: as, just as, just as if; as it were, so to speak; as much as; so as; tandem_Adv = mkAdv "tandem" ; -- [XXXBS] :: finally; at last, in the end; after some time, eventually; at length; tangens_F_N = mkN "tangens" "tangentis " feminine ; -- [GSXEK] :: tangent (math); tangibilis_A = mkA "tangibilis" "tangibilis" "tangibile" ; -- [XXXES] :: touchable; tangible; --- tanquam_Conj : Conj tanquam -- [XXXDX] :: as, just as, just as if; as it were, so to speak; as much as; so as; + tango_V2 = mkV2 (mkV "tangere" "tango" "tetigi" "tactus ") ; -- [XXXAX] :: touch, strike; border on, influence; mention; + tanquam_Conj = mkConj "tanquam" missing ; -- [XXXDX] :: as, just as, just as if; as it were, so to speak; as much as; so as; tantillus_A = mkA "tantillus" "tantilla" "tantillum" ; -- [XXXDX] :: so small, so small a quantity; tantisper_Adv = mkAdv "tantisper" ; -- [XXXCO] :: for such time (as); for so long (as); for the present/meantime; all the time; tantopere_Adv = mkAdv "tantopere" ; -- [XXXDX] :: so much, so hard; @@ -32682,12 +35177,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tappete_N_N = mkN "tappete" "tappetis " neuter ; -- [XXXCO] :: woolen cloth or rug used as a covering, hanging, carpet, tapestry; tarandrus_M_N = mkN "tarandrus" ; -- [FXXEK] :: reindeer; taraxacum_N_N = mkN "taraxacum" ; -- [GAXEK] :: dandelion; --- TODO tardesco_V : V2 tardesco, tardescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: become slow; + tardesco_V = mkV "tardescere" "tardesco" nonExist nonExist ; -- [XXXDX] :: become slow; tardipes_A = mkA "tardipes" "tardipedis"; -- [XXXDX] :: slow-footed, lame; tarditas_F_N = mkN "tarditas" "tarditatis " feminine ; -- [XXXDX] :: slowness of movement, action, etc; tardiusculus_A = mkA "tardiusculus" "tardiuscula" "tardiusculum" ; -- [BXXFS] :: somewhat slow (Plautus); tardo_V = mkV "tardare" ; -- [XXXBX] :: check, retard; hinder; --- SLASHSTUFF tardus_A : A2 tardus, tarda -um, tardior -or -us, tardissimus -a -um -- [XXXAX] :: slow, limping; deliberate; late; + tardus_A = mkA "tardus" ; -- [XXXAX] :: slow, limping; deliberate; late; tarmes_M_N = mkN "tarmes" "tarmitis " masculine ; -- [BAXFS] :: woodworm (Plautus); tarpezita_M_N = mkN "tarpezita" ; -- [BXXFS] :: money-changer; banker; (also tarpessita or trapezita in Plautus); tat_Interj = ss "tat" ; -- [BXXFS] :: what! (Plautus); @@ -32704,8 +35199,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg taxo_V = mkV "taxare" ; -- [XXXDX] :: value, assess the worth of; access a crime; reckon the size/extent; fix sum of; taxus_F_N = mkN "taxus" ; -- [XXXDX] :: yew-tree; teanus_A = mkA "teanus" "teana" "teanum" ; -- [GXXEK] :: of tea; --- IGNORED tebboleth_N : N1 tebboleth, undeclined -- N -- [EEQFW] :: mispronunciation of scibboleth (grain ear) whereby Gileadites found Ephraimite; --- IGNORED tebeth_N : N1 tebeth, undeclined -- N -- [EXQEW] :: Tebet/Tebeth; tenth month of the Jewish ecclesiastical year; + tebboleth_N = constN "tebboleth" neuter ; -- [EEQFW] :: mispronunciation of scibboleth (grain ear) whereby Gileadites found Ephraimite; + tebeth_N = constN "tebeth" neuter ; -- [EXQEW] :: Tebet/Tebeth; tenth month of the Jewish ecclesiastical year; techina_F_N = mkN "techina" ; -- [BXXFS] :: wile; trick; (archaic); techna_F_N = mkN "techna" ; -- [XXXEC] :: cunning trick, artifice; technica_F_N = mkN "technica" ; -- [GXXEK] :: technique; @@ -32720,11 +35215,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tectorium_N_N = mkN "tectorium" ; -- [XXXEC] :: plaster; tectorius_A = mkA "tectorius" "tectoria" "tectorium" ; -- [XXXEC] :: used for covering, or for plastering; tectum_N_N = mkN "tectum" ; -- [XXXBO] :: roof; ceiling; house; --- SLASHSTUFF tectus_A : A2 tectus, tecta -um, tectior -or -us, tectissimus -a -um -- [XXXCO] :: covered, roofed; hidden, secret; concealed/disguised; guarded/secretive; + tectus_A = mkA "tectus" ; -- [XXXCO] :: covered, roofed; hidden, secret; concealed/disguised; guarded/secretive; tegimen_N_N = mkN "tegimen" "tegiminis " neuter ; -- [XXXBO] :: covering/cover/protection; clothing; body armor; skin/shell/husk (animal/fruit); tegimentum_N_N = mkN "tegimentum" ; -- [XXXCO] :: covering/cover/protection; clothing; body armor; skin/shell/husk (animal/fruit); tegmen_N_N = mkN "tegmen" "tegminis " neuter ; -- [XXXBO] :: covering/cover/protection; clothing; body armor; skin/shell/husk (animal/fruit); tegmentum_N_N = mkN "tegmentum" ; -- [XXXCO] :: covering/cover/protection; clothing; body armor; skin/shell/husk (animal/fruit); + tego_V2 = mkV2 (mkV "tegere" "tego" "texi" "tectus ") ; -- [XXXAX] :: cover, protect; defend; hide; tegula_F_N = mkN "tegula" ; -- [XXXDX] :: roof-tile; tegumen_N_N = mkN "tegumen" "teguminis " neuter ; -- [XXXBO] :: covering/cover/protection; clothing; body armor; skin/shell/husk (animal/fruit); tegumentum_N_N = mkN "tegumentum" ; -- [GXXEK] :: |book-cover; (Cal); @@ -32769,7 +35265,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg temeritas_F_N = mkN "temeritas" "temeritatis " feminine ; -- [XXXDX] :: rashness; temerity; temero_V = mkV "temerare" ; -- [XXXDX] :: violate; defile, pollute; violate sexually; temetum_N_N = mkN "temetum" ; -- [XXXDX] :: strong wine; intoxicating liquor; --- TODO temno_V : V2 temno, temnere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: scorn, despise; + temno_V = mkV "temnere" "temno" nonExist nonExist ; -- [XXXDX] :: scorn, despise; temo_M_N = mkN "temo" "temonis " masculine ; -- [XXXDX] :: pole, beam; tongue of a wagon or chariot; temperamentum_N_N = mkN "temperamentum" ; -- [XXXEC] :: right proportion, middle way, mean, moderation; temperans_A = mkA "temperans" "temperantis"; -- [XXXDX] :: restrained, self-controlled; @@ -32777,7 +35273,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg temperantia_F_N = mkN "temperantia" ; -- [XXXDX] :: self control; moderation; temperatio_F_N = mkN "temperatio" "temperationis " feminine ; -- [FXXEK] :: regulation; temperator_M_N = mkN "temperator" "temperatoris " masculine ; -- [XXXFS] :: arranger; organizer; --- SLASHSTUFF temperatus_A : A2 temperatus, temperata -um, temperatior -or -us, temperatissimus -a -um -- [XXXDX] :: temperate, mild; + temperatus_A = mkA "temperatus" ; -- [XXXDX] :: temperate, mild; temperi_Adv =mkAdv "temperi" "temperius" "temperissime" ; -- [XXXCO] :: at right/better/best time, seasonably; temperies_F_N = mkN "temperies" "temperiei " feminine ; -- [XXXDX] :: proper mixture, temper; tempero_V = mkV "temperare" ; -- [XXXAX] :: combine, blend, temper; make mild; refrain from; control oneself; @@ -32804,7 +35300,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tenaculum_N_N = mkN "tenaculum" ; -- [XXXFO] :: instrument for gripping; (fingers); tenax_A = mkA "tenax" "tenacis"; -- [XXXBO] :: |restraining; (fetters/embrace); steadfast, persistent; obstinate, stubborn; tendicula_F_N = mkN "tendicula" ; -- [XXXEC] :: snare, trap; + tendo_V2 = mkV2 (mkV "tendere" "tendo" "tetendi" "tentus ") ; -- [XXXAO] :: |pitch tent, encamp; pull tight; draw (bow); press on, insist; exert oneself; tenebra_F_N = mkN "tenebra" ; -- [XXXAX] :: darkness (pl.), obscurity; night; dark corner; ignorance; concealment; gloom; + tenebrasco_V = mkV "tenebrascere" "tenebrasco" nonExist nonExist; -- [DEXDX] :: grow dark; become dark; + tenebresco_V = mkV "tenebrescere" "tenebresco" nonExist nonExist; -- [DEXDX] :: grow dark; become dark; tenebricosus_A = mkA "tenebricosus" "tenebricosa" "tenebricosum" ; -- [XXXDX] :: dark; tenebro_V = mkV "tenebrare" ; -- [EXXES] :: darken, make dark; tenebrosus_A = mkA "tenebrosus" "tenebrosa" "tenebrosum" ; -- [XXXEC] :: dark, gloomy; @@ -32812,7 +35311,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tenellus_A = mkA "tenellus" "tenella" "tenellum" ; -- [XXXDX] :: tender; tenementum_N_N = mkN "tenementum" ; -- [FLXFJ] :: tenement; land held by tenant; teneo_V = mkV "tenere" ; -- [FXXCB] :: |represent; support; --- SLASHSTUFF tener_A : A2 tener, tenera -um, tenerior -or -us, tenerrimus -a -um -- [XXXAO] :: tender (age/food); soft/delicate/gentle; young/immature; weak/fragile/frail; + tener_A = mkA "tener" ; -- [XXXAO] :: tender (age/food); soft/delicate/gentle; young/immature; weak/fragile/frail; + tenerasco_V = mkV "tenerascere" "tenerasco" nonExist nonExist; -- [XXXEC] :: grow tender; teneritas_F_N = mkN "teneritas" "teneritatis " feminine ; -- [XXXFS] :: tenderness; softness (Pliny); teneritudo_F_N = mkN "teneritudo" "teneritudinis " feminine ; -- [XXXEO] :: tenderness (of age/disposition), youth; friableness, easy workability of soil; tenesmos_M_N = mkN "tenesmos" "tenesmi " masculine ; -- [XXXDX] :: constipation; a straining (from the Greek); @@ -32831,14 +35331,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tento_V = mkV "tentare" ; -- [XXXDX] :: handle, feel; attempt, try; prove; test; attack; brave; make an attempt; tentorium_N_N = mkN "tentorium" ; -- [XXXDX] :: tent; tenuiculus_A = mkA "tenuiculus" "tenuicula" "tenuiculum" ; -- [XXXEC] :: very mean, slight; --- SLASHSTUFF tenuis_A : A2 tenuis, tenue, tenuior -or -us, tenuissimus -a -um -- [XXXBX] :: thin, fine; delicate; slight, slender; little, unimportant; weak, feeble; + tenuis_A = mkA "tenuis" ; -- [XXXBX] :: thin, fine; delicate; slight, slender; little, unimportant; weak, feeble; tenuitas_F_N = mkN "tenuitas" "tenuitatis " feminine ; -- [XXXBO] :: thinness/fineness/leanness; poverty; frugality; simpleness (style); subtlety; tenuiter_Adv =mkAdv "tenuiter" "tenuitius" "tenuitissime" ; -- [XXXCO] :: thinly/finely; delicately; subtly; meagerly/scantily/poorly; weakly/feebly; tenuo_V = mkV "tenuare" ; -- [XXXDX] :: make thin; reduce, lessen; wear down; tenura_F_N = mkN "tenura" ; -- [FLXEM] :: holding, tenure, feudal holding; - tenus_Abl_Prep = mkPrep "tenus" Abl ; -- [XXXDX] :: as far as, to the extent of, up to, down to; + tenus_Abl_Prep = mkPrep "tenus" abl ; -- [XXXDX] :: as far as, to the extent of, up to, down to; + tepefacio_V2 = mkV2 (mkV "tepefacere" "tepefacio" "tepefeci" "tepefactus ") ; -- [XXXDX] :: make warm, warm up; tepefio_V = mkV "tepeferi" ; -- [XXXDX] :: be warmed; be made warm, be warmed up; (tepefacio PASS); tepeo_V = mkV "tepere" ; -- [XXXBO] :: be warm/tepid/lukewarm; have body warmth; feel love warmth/glow; fall flat; + tepesco_V = mkV "tepescere" "tepesco" "tepui" nonExist; -- [XXXCO] :: grow warm/acquire some heat; become tepid/lukewarm; grow warm/cool (passion); tepidarium_N_N = mkN "tepidarium" ; -- [XXXDX] :: warm bathing room; tepidarium; tepidus_A = mkA "tepidus" "tepida" "tepidum" ; -- [XXXDX] :: warm, tepid; tepor_M_N = mkN "tepor" "teporis " masculine ; -- [XXXDX] :: warmth, mild heat; @@ -32859,6 +35361,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tergeo_V = mkV "tergere" ; -- [XXXDX] :: rub, wipe; wipe off, wipe dry; clean, cleanse; terginum_N_N = mkN "terginum" ; -- [BXXES] :: rawhide (Plautus); tergiversor_V = mkV "tergiversari" ; -- [XXXDX] :: turn one's back on a task or challenge; hang back; + tergo_V2 = mkV2 (mkV "tergere" "tergo" "tersi" "tersus ") ; -- [XXXDX] :: rub, wipe; wipe off, wipe dry; clean, cleanse (sometimes tergeo); tergum_N_N = mkN "tergum" ; -- [XXXAO] :: back, rear; reverse/far side; outer covering/surface; [terga vertere => flee]; tergus_N_N = mkN "tergus" "tergoris " neuter ; -- [XXXEC] :: back; skin, hide, leather; terma_F_N = mkN "terma" ; -- [FXXFZ] :: warm bath; (medieval Latin, modern Italian); @@ -32872,6 +35375,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ternarius_A = mkA "ternarius" "ternaria" "ternarium" ; -- [XXXEO] :: ternary; containing/consisting of three of anything; of 3 feet; name of tunic; ternarius_M_N = mkN "ternarius" ; -- [XXXFS] :: third of an as; ternus_A = mkA "ternus" "terna" "ternum" ; -- [XXXDX] :: three each (pl.), three at a time; + tero_V2 = mkV2 (mkV "terere" "tero" "trivi" "tritus ") ; -- [XXXBX] :: rub, wear away, wear out; tread; terra_F_N = mkN "terra" ; -- [XXXAX] :: earth, land, ground; country, region; terracuberum_N_N = mkN "terracuberum" ; -- [EAXFP] :: country produce; unknown type of country produce; terraemotus_M_N = mkN "terraemotus" "terraemotus " masculine ; -- [EXXDW] :: earthquake; (Vulgate); @@ -32940,8 +35444,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg testum_N_N = mkN "testum" ; -- [XXXDX] :: earthenware pot/vessel (esp. placed as lid over food and heaped with coals); tetanicus_M_N = mkN "tetanicus" ; -- [DBXNS] :: one with neck-cramp (Pliny); tetanus_M_N = mkN "tetanus" ; -- [DBXNS] :: neck-cramp (Pliny); --- SLASHSTUFF teter_A : A2 teter, tetra -um, tetrior -or -us, teterrimus -a -um -- [XXXDS] :: foul, offensive; ugly; disgraceful; (taeter); --- IGNORED teth_N : N1 teth, undeclined -- N -- [DEQEW] :: tet; (9th letter of Hebrew alphabet); (transliterate as T); + teter_A = mkA "teter" ; -- [XXXDS] :: foul, offensive; ugly; disgraceful; (taeter); + teth_N = constN "teth" neuter ; -- [DEQEW] :: tet; (9th letter of Hebrew alphabet); (transliterate as T); tetrachmum_N_N = mkN "tetrachmum" ; -- [XXXEC] :: Greek coin of four drachmae; tetrachordos_A = mkA "tetrachordos" "tetrachordos" "tetrachordon" ; -- [XDXFO] :: four-stringed; having a scale of four notes; tetrachordos_N_N = mkN "tetrachordos" "tetrachordi " neuter ; -- [XDXFO] :: tetrachord; set of 4 strings (in instrument); scale of 4 notes; @@ -32950,7 +35454,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tetradrachmum_N_N = mkN "tetradrachmum" ; -- [XXGDS] :: four drachmae; Greek coin of four drachmae; tetragonum_N_N = mkN "tetragonum" ; -- [DSXES] :: quadrangle; tetragon; tetragonus_A = mkA "tetragonus" "tetragona" "tetragonum" ; -- [ESXFP] :: square; four-sided; quadrature (Latham); --- IGNORED tetragrammaton_N : N1 tetragrammaton., abb. -- N -- [FEXFM] :: tetragram, word of four letters; Tetragrammaton, YHWA, symbol/name/title of God; + tetragrammaton_N = constN "tetragrammaton." neuter ; -- [FEXFM] :: tetragram, word of four letters; Tetragrammaton, YHWA, symbol/name/title of God; tetrameter_M_N = mkN "tetrameter" ; -- [XPXES] :: tetrameter; four metric feet; tetrans_M_N = mkN "tetrans" "tetrantis " masculine ; -- [XTXFS] :: quarter; quadrant; place where two lines meet; tetrao_M_N = mkN "tetrao" "tetraonis " masculine ; -- [XAXEO] :: wood/black grouse/capercailye/capercailzie; other game bird/heathcock/moorfowl; @@ -32961,6 +35465,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tetrastylon_N_N = mkN "tetrastylon" "tetrastyli " neuter ; -- [XTXFS] :: tetrastyle; building with four columns; tetrastylos_A = mkA "tetrastylos" "tetrastylos" "tetrastylon" ; -- [XTXFS] :: four-columned; tetricus_A = mkA "tetricus" "tetrica" "tetricum" ; -- [XXXEC] :: harsh, gloomy, severe; + texo_V2 = mkV2 (mkV "texere" "texo" "texui" "textus ") ; -- [XXXBX] :: weave; plait (together); construct with elaborate care; textilis_A = mkA "textilis" "textilis" "textile" ; -- [XXXDX] :: woven; textor_M_N = mkN "textor" "textoris " masculine ; -- [XXXDX] :: weaver; textrinus_A = mkA "textrinus" "textrina" "textrinum" ; -- [XXXDX] :: related to weaving; @@ -32974,7 +35479,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg thallus_M_N = mkN "thallus" ; -- [XAXEO] :: young/green branch/bough/stalk; laurel or olive or myrtle (L+S) branch; thapsia_F_N = mkN "thapsia" ; -- [DAXNS] :: poisonous shrub (Pliny); thaspi_N_N = mkN "thaspi" "thaspis " neuter ; -- [DAXNS] :: cress (Pliny); --- IGNORED thau_N : N1 thau, undeclined -- N -- [DEQEW] :: tav; (22nd letter of Hebrew alphabet); (transliterate as T); (mark of Cain); + thau_N = constN "thau" neuter ; -- [DEQEW] :: tav; (22nd letter of Hebrew alphabet); (transliterate as T); (mark of Cain); thea_F_N = mkN "thea" ; -- [GXXEK] :: tea; theatralis_A = mkA "theatralis" "theatralis" "theatrale" ; -- [XXXDX] :: theatrical, of the_stage; theatricus_A = mkA "theatricus" "theatrica" "theatricum" ; -- [XDXFX] :: theatrical, theatric; of/belonging to theater; @@ -32995,7 +35500,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg theorices_F_N = mkN "theorices" "theoricae " feminine ; -- [DSXFS] :: theory, philosophic speculation; theoricus_A = mkA "theoricus" "theorica" "theoricum" ; -- [FSXDF] :: theoretical; observing, considering, relating to observation/consideration; theosophia_F_N = mkN "theosophia" ; -- [EEXEE] :: theosophy, wisdom concerning God; (doctrine of Boehme rejected by the Church); --- IGNORED therafin_N : N1 therafin, undeclined -- N -- [EEQEW] :: teraphim/theraphim (pl. form); theraph (sg. form); idols/images; household gods; + therafin_N = constN "therafin" neuter ; -- [EEQEW] :: teraphim/theraphim (pl. form); theraph (sg. form); idols/images; household gods; therapeuta_M_N = mkN "therapeuta" ; -- [GBXEK] :: therapist; therapia_F_N = mkN "therapia" ; -- [GBXEK] :: therapy; theristrum_N_N = mkN "theristrum" ; -- [EXXES] :: garment, covering; summer garment; @@ -33015,8 +35520,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg thiasus_M_N = mkN "thiasus" ; -- [XXXDX] :: orgiastic Bacchic dance; tholicus_A = mkA "tholicus" "tholica" "tholicum" ; -- [GXXEK] :: at dome; tholus_M_N = mkN "tholus" ; -- [XXXDX] :: circular building with a domed roof, rotunda; + thorax_1_N = mkN "thorax" "thoracis" masculine ; -- [XBXCO] :: breastplate, upper body armor/protection, cuirass; vest/waistcoat; chest/trunk; + thorax_2_N = mkN "thorax" "thoracos" masculine ; -- [XBXCO] :: breastplate, upper body armor/protection, cuirass; vest/waistcoat; chest/trunk; thorax_M_N = mkN "thorax" "thoracis " masculine ; -- [XXXDX] :: breastplate, upper body armor/protection, cuirass; vest/waistcoat; chest/trunk; --- TODO thorax_N : N1 thorax, thoracos/is -- M -- [XBXCO] :: breastplate, upper body armor/protection, cuirass; vest/waistcoat; chest/trunk; thrombosis_F_N = mkN "thrombosis" "thrombosis " feminine ; -- [GBXEK] :: thrombosis; thronus_M_N = mkN "thronus" ; -- [EEHEF] :: Lamentations (pl. of Jeremiah); (book of OT); dirge, song of mourning; elegy; thunnus_M_N = mkN "thunnus" ; -- [XAXCO] :: tunny, tunny fish; @@ -33047,14 +35553,15 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tigillum_N_N = mkN "tigillum" ; -- [XXXDX] :: small beam; small bar of wood; tignarius_A = mkA "tignarius" "tignaria" "tignarium" ; -- [XXXEC] :: of beams; tignum_N_N = mkN "tignum" ; -- [XXXDX] :: tree trunk, log, stick, post, beam; piece of timber; building materials; + tigris_1_N = mkN "tigris" "tigris" masculine ; -- [XXXDX] :: tiger; + tigris_2_N = mkN "tigris" "tigros" masculine ; -- [XXXDX] :: tiger; tigris_F_N = mkN "tigris" "tigridis " feminine ; -- [XXXDX] :: tiger; tigris_M_N = mkN "tigris" "tigris " masculine ; -- [XAXCT] :: tiger; --- TODO tigris_N : N1 tigris, tigros/is -- M -- [XXXDX] :: tiger; tilia_F_N = mkN "tilia" ; -- [XXXDX] :: lime-tree; timefactus_A = mkA "timefactus" "timefacta" "timefactum" ; -- [XXXEC] :: frightened, alarmed; timeo_V = mkV "timere" ; -- [XXXAX] :: fear, dread, be afraid (ne + SUB = lest; ut or ne non + SUB = that ... not); timide_Adv =mkAdv "timide" "timidius" "timidissime" ; -- [XXXCO] :: timidly, fearfully, apprehensively, nervously; cautiously, with hesitation; --- SLASHSTUFF timidus_A : A2 timidus, timida -um, timidior -or -us, timidissimus -a -um -- [XXXBO] :: timid; cowardly; fearful, apprehensive; without courage; afraid to; + timidus_A = mkA "timidus" ; -- [XXXBO] :: timid; cowardly; fearful, apprehensive; without courage; afraid to; timor_M_N = mkN "timor" "timoris " masculine ; -- [XXXAX] :: fear; dread; timoratus_A = mkA "timoratus" "timorata" "timoratum" ; -- [EEXDX] :: God-fearing, devout, reverent; tina_F_N = mkN "tina" ; -- [FXXEM] :: cask; tub; @@ -33062,7 +35569,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tinctus_M_N = mkN "tinctus" "tinctus " masculine ; -- [XXXDX] :: dyeing; dipping; tinea_F_N = mkN "tinea" ; -- [XXXDX] :: moth; tineo_V = mkV "tineare" ; -- [EXXFS] :: be infested with moths; (or maggots/larvae of moths which do the eating/damage); + tingo_V2 = mkV2 (mkV "tingere" "tingo" "tinxi" "tinctus ") ; -- [XXXAO] :: wet/moisten/dip/soak; color/dye/tinge/tint, stain (w/blood); imbue; impregnate; + tinguo_V2 = mkV2 (mkV "tinguere" "tinguo" "tinxi" "tinctus ") ; -- [XXXAO] :: wet/moisten/dip/soak; color/dye/tinge/tint, stain (w/blood); imbue; impregnate; tinnimentum_N_N = mkN "tinnimentum" ; -- [BXXES] :: tingling sound (Plautus); + tinnio_V = mkV "tinnire" "tinnio" "tinnivi" "tinnitus "; -- [XXXCO] :: ring/clang/jangle (metal); ring (ears); utter a shrill/metallic sound; tinnitus_M_N = mkN "tinnitus" "tinnitus " masculine ; -- [XXXDX] :: ringing, clanging, jangling; tinnulus_A = mkA "tinnulus" "tinnula" "tinnulum" ; -- [XXXDX] :: emitting a ringing or jangling sound; tintinabulum_N_N = mkN "tintinabulum" ; -- [XXXCO] :: bell; door bell, signal bell (L+S); cow bell; @@ -33092,7 +35602,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg togatus_A = mkA "togatus" "togata" "togatum" ; -- [XXXDX] :: wearing a toga; civilian; of Roman status; [fabulae ~ => native Roman comedy]; togula_F_N = mkN "togula" ; -- [XXXEC] :: little toga; tolenno_M_N = mkN "tolenno" "tolennonis " masculine ; -- [FXXEK] :: water pump; --- SLASHSTUFF tolerabilis_A : A2 tolerabilis, tolerabile, tolerabilior -or -us, tolerabilissimus -a -um -- [XXXBO] :: bearable, tolerable, patient; able to be withstood; passable; tolerant, hardy; + tolerabilis_A = mkA "tolerabilis" ; -- [XXXBO] :: bearable, tolerable, patient; able to be withstood; passable; tolerant, hardy; tolerabiter_Adv =mkAdv "tolerabiter" "tolerabilius" "tolerabilissime" ; -- [XXXCO] :: bearably, tolerably, patiently; passably, acceptably; tolerabundus_A = mkA "tolerabundus" "tolerabunda" "tolerabundum" ; -- [FXXDV] :: tolerant, patient; tolerans_A = mkA "tolerans" "tolerantis"; -- [XXXDO] :: tolerant; able to endure; @@ -33101,6 +35611,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg toleratio_F_N = mkN "toleratio" "tolerationis " feminine ; -- [XXXES] :: enduring; tolero_V = mkV "tolerare" ; -- [XXXBX] :: bear, endure, tolerate; tolleno_M_N = mkN "tolleno" "tollenonis " masculine ; -- [XYXEC] :: machine for raising weights, a crane; + tollo_V2 = mkV2 (mkV "tollere" "tollo" "sustuli" "sublatus ") ; -- [XXXAX] :: lift, raise; destroy; remove, steal; take/lift up/away; tolutilis_A = mkA "tolutilis" "tolutilis" "tolutile" ; -- [FXXEK] :: trotting; tomaclum_N_N = mkN "tomaclum" ; -- [XXXEC] :: kind of sausage; tomaculum_N_N = mkN "tomaculum" ; -- [XXXEC] :: kind of sausage; @@ -33170,7 +35681,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg torosus_A = mkA "torosus" "torosa" "torosum" ; -- [XXXDX] :: muscular, brawny; torpedo_F_N = mkN "torpedo" "torpedinis " feminine ; -- [XBXDO] :: lethargy, inertness, sluggishness; fish (stinging/numbing); electric ray; torpeo_V = mkV "torpere" ; -- [XXXDX] :: be numb or lethargic; be struck motionless from fear; --- TODO torpesco_V : V2 torpesco, torpescere, torpui, - -- Declension: 3rd -- Comment: [XXXDX] :: grow numb, become slothful; + torpesco_V2 = mkV2 (mkV "torpescere" "torpesco" "torpui" nonExist ) ; -- [XXXDX] :: grow numb, become slothful; torpidus_A = mkA "torpidus" "torpida" "torpidum" ; -- [XXXDX] :: numbed, paralyzed; torpor_M_N = mkN "torpor" "torporis " masculine ; -- [XXXDX] :: numbness, torpor, paralysis; torquatus_A = mkA "torquatus" "torquata" "torquatum" ; -- [XXXDX] :: wearing a collar or necklace; @@ -33180,6 +35691,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg torrens_A = mkA "torrens" "torrentis"; -- [XXXDX] :: burning hot; rushing; torrential; torrens_M_N = mkN "torrens" "torrentis " masculine ; -- [XXXDX] :: torrent, rushing stream; torreo_V2 = mkV2 (mkV "torrere") ; -- [XXXBO] :: parch, roast, scorch, bake, burn; dry up; begin to burn; harden by charring; + torresco_V = mkV "torrescere" "torresco" nonExist nonExist; -- [XXXFO] :: be scorched; be roasted; torridus_A = mkA "torridus" "torrida" "torridum" ; -- [XXXDX] :: parched, dried up; shriveled, desiccated; torris_M_N = mkN "torris" "torris " masculine ; -- [XXXDX] :: firebrand; torrus_M_N = mkN "torrus" ; -- [XXXFS] :: fire-brand; @@ -33201,8 +35713,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg totalitaristicus_A = mkA "totalitaristicus" "totalitaristica" "totalitaristicum" ; -- [GXXEK] :: totalitarian; totalitas_F_N = mkN "totalitas" "totalitatis " feminine ; -- [FSXCF] :: totality, wholeness; totaliter_Adv = mkAdv "totaliter" ; -- [FXXDF] :: altogether, totally, wholly, completely, entirely; --- IGNORED totidem_A : A2 totidem, undeclined -- [XXXBO] :: as many; just so/as many; the equivalent number of, same (as specified before); --- SLASHSTUFF totus_A : A2 totus, tota, totum (gen -ius) -- [XXXDX] :: whole, all, entire, total, complete; every part; all together/at once; + totidem_A = constA "totidem" ; -- [XXXBO] :: as many; just so/as many; the equivalent number of, same (as specified before); + totus_A = mkA "totus" ; -- [XXXDX] :: whole, all, entire, total, complete; every part; all together/at once; toxicologia_F_N = mkN "toxicologia" ; -- [GSXEK] :: toxicology; toxicologicus_A = mkA "toxicologicus" "toxicologica" "toxicologicum" ; -- [GSXEK] :: toxicological; toxicologus_M_N = mkN "toxicologus" ; -- [GSXEK] :: toxicologist; @@ -33210,7 +35722,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg toxicomaniacus_M_N = mkN "toxicomaniacus" ; -- [GXXEK] :: drug addict; toxicum_N_N = mkN "toxicum" ; -- [XXXDX] :: poison; toxicus_A = mkA "toxicus" "toxica" "toxicum" ; -- [GXXEK] :: toxic; poisonous; --- IGNORED tr_N : N1 tr., abb. -- M -- [XLXDX] :: tribune; abb. tr.; [tr. pl./tr. mil. => of the people/of the soldiers]; + tr_N = constN "tr." masculine ; -- [XLXDX] :: tribune; abb. tr.; [tr. pl./tr. mil. => of the people/of the soldiers]; traba_F_N = mkN "traba" ; -- [FXXEM] :: wood-beam, timber; tree-trunk; ship; table; trabalis_A = mkA "trabalis" "trabalis" "trabale" ; -- [XXXDX] :: of or used for wooden beams; trabea_F_N = mkN "trabea" ; -- [XXXDX] :: white state mantle/horiz scarlet stripes; short purple dress equites uniform; @@ -33230,6 +35742,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg traditionalis_A = mkA "traditionalis" "traditionalis" "traditionale" ; -- [GXXEK] :: traditional; traditionalismus_M_N = mkN "traditionalismus" ; -- [GXXEK] :: traditionalism; traditionalista_M_N = mkN "traditionalista" ; -- [GXXEK] :: traditionalist; + trado_V2 = mkV2 (mkV "tradere" "trado" "tradidi" "traditus ") ; -- [XXXAX] :: hand over, surrender; deliver; bequeath; relate; + traduco_V2 = mkV2 (mkV "traducere" "traduco" "traduxi" "traductus ") ; -- [XXXAO] :: |lead across; exhibit/display/carry past in parade/procession; pass/get through; traductio_F_N = mkN "traductio" "traductionis " feminine ; -- [XXXCS] :: conducting/leading around (triumph), transfer; public exposure/disgrace/reproof; traductor_M_N = mkN "traductor" "traductoris " masculine ; -- [XXXES] :: transferor; conveyer; tradux_M_N = mkN "tradux" "traducis " masculine ; -- [XAXEC] :: vine-layer; @@ -33245,11 +35759,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tragum_N_N = mkN "tragum" ; -- [XXXFS] :: porridge; traha_F_N = mkN "traha" ; -- [GXXEK] :: sleigh; trahea_F_N = mkN "trahea" ; -- [XXXDX] :: drag used as a threshing implement; + traho_V2 = mkV2 (mkV "trahere" "traho" "traxi" "tractus ") ; -- [XXXAX] :: draw, drag, haul; derive, get; + traicio_V2 = mkV2 (mkV "traicere" "traicio" "trajeci" "trajectus ") ; -- [XXXAX] :: transfer; transport; pierce, transfix; traiectoria_F_N = mkN "traiectoria" ; -- [GSXEK] :: trajectory (geometry); trajecticius_A = mkA "trajecticius" "trajecticia" "trajecticium" ; -- [XXXDO] :: lent for transportation of goods (money); transported/carried over sea (L+S); trajectio_F_N = mkN "trajectio" "trajectionis " feminine ; -- [XXXDS] :: crossing; passage; transferring; exaggeration; G:transposition; trajectitius_A = mkA "trajectitius" "trajectitia" "trajectitium" ; -- [DXXDS] :: lent for transportation of goods (money); transported/carried over sea (L+S); trajectus_A = mkA "trajectus" "trajecta" "trajectum" ; -- [XXXDX] :: crossing, passage; + trajicio_V2 = mkV2 (mkV "trajicere" "trajicio" "trajeci" "trajectus ") ; -- [XXXDX] :: transfer; transport; pierce, transfix; tralaticius_A = mkA "tralaticius" "tralaticia" "tralaticium" ; -- [XXXCO] :: traditional, handed down; customary; ordinary/common/usual; transferred (word); tralatio_F_N = mkN "tralatio" "tralationis " feminine ; -- [XLXBO] :: transportation/transference; transfer to another; change of venue; translation; trama_F_N = mkN "trama" ; -- [XXXCS] :: warp (weaving); woof, weft, web filling; thin/lank figure; trifles; bagatelles; @@ -33260,18 +35777,30 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tranquillo_V = mkV "tranquillare" ; -- [XXXDX] :: calm, quiet; tranquillum_N_N = mkN "tranquillum" ; -- [XXXDX] :: calm weather; calm state of affairs; tranquillus_A = mkA "tranquillus" "tranquilla" "tranquillum" ; -- [XXXDX] :: quiet, calm; - trans_Acc_Prep = mkPrep "trans" Acc ; -- [XXXDX] :: across, over; beyond; on the other side; (only local relations); --- TODO transabeo_V : V1 transabeo, transabire, transabivi(ii), transabitus -- [XXXDX] :: go away beyond; + trans_Acc_Prep = mkPrep "trans" acc ; -- [XXXDX] :: across, over; beyond; on the other side; (only local relations); + transabeo_1_V2 = mkV2 (mkV "transabire" "transabeo" "transabivi" "transabitus") ; -- [XXXDX] :: go away beyond; + transabeo_2_V2 = mkV2 (mkV "transabire" "transabeo" "transabii" "transabitus") ; -- [XXXDX] :: go away beyond; transactio_F_N = mkN "transactio" "transactionis " feminine ; -- [XXXCO] :: transaction; deal, business arrangement, negotiated settlement; transactor_M_N = mkN "transactor" "transactoris " masculine ; -- [XXXES] :: manager; + transadigo_V2 = mkV2 (mkV "transadigere" "transadigo" "transadegi" "transadactus ") ; -- [XXXDX] :: pierce through, thrust through; transcendens_A = mkA "transcendens" "transcendentis"; -- [GXXEK] :: transcendent; transcendentalis_A = mkA "transcendentalis" "transcendentalis" "transcendentale" ; -- [GXXEK] :: transcendental; + transcendo_V2 = mkV2 (mkV "transcendere" "transcendo" "transcendi" "transcensus ") ; -- [XXXBO] :: climb/step/go across/over; board; transgress; exceed; pass on, make transition; + transcido_V2 = mkV2 (mkV "transcidere" "transcido" "transcidi" "transcisus ") ; -- [DXXDS] :: cut through; flog hard; + transcribo_V2 = mkV2 (mkV "transcribere" "transcribo" "transcripsi" "transcriptus ") ; -- [XXXBO] :: copy (from book/tablet to another); transcribe; transfer (enrollment); forge; + transcurro_V2 = mkV2 (mkV "transcurrere" "transcurro" "transcurri" "transcursus ") ; -- [XXXDX] :: run across; run or hasten through; transcursus_M_N = mkN "transcursus" "transcursus " masculine ; -- [XXXDX] :: rapid movement across a space; + transdo_V2 = mkV2 (mkV "transdere" "transdo" "transdidi" "transditus ") ; -- [DXXDS] :: hand over, surrender; deliver; L:bequeath; G:relate; (=traho); + transduco_V2 = mkV2 (mkV "transducere" "transduco" "transduxi" "transductus ") ; -- [XXXAO] :: |lead across; exhibit/display/carry past in parade/procession; pass/get through; transenna_F_N = mkN "transenna" ; -- [XXXEC] :: lattice-work, grating; --- TODO transeo_V : V1 transeo, transire, transivi(ii), transitus -- [XXXAX] :: go over, cross; + transeo_1_V2 = mkV2 (mkV "transire" "transeo" "transivi" "transitus") ; -- [XXXAX] :: go over, cross; + transeo_2_V2 = mkV2 (mkV "transire" "transeo" "transii" "transitus") ; -- [XXXAX] :: go over, cross; transeunter_Adv = mkAdv "transeunter" ; -- [EXXES] :: in passing; cursorily; transfero_V2 = mkV2 (mkV "transferre") ; -- [XXXAO] :: |copy out (writing); translate (language); postpone, transfer date; transform; + transfigo_V2 = mkV2 (mkV "transfigere" "transfigo" "transfixi" "transfixus ") ; -- [XXXDX] :: transfix, pierce through; transfiguro_V2 = mkV2 (mkV "transfigurare") ; -- [XXXCO] :: transform, change form/appearance; + transfluo_V = mkV "transfluere" "transfluo" "transfluxi" "transfluxus "; -- [DXXFS] :: flow through; + transfodio_V2 = mkV2 (mkV "transfodere" "transfodio" "transfodi" "transfossus ") ; -- [XXXDX] :: transfix, pierce, impale; transformatio_F_N = mkN "transformatio" "transformationis " feminine ; -- [DEXFS] :: transformation; change of shape; transformis_A = mkA "transformis" "transformis" "transforme" ; -- [XXXDX] :: that undergoes transformation; transformo_V = mkV "transformare" ; -- [XXXDX] :: change in shape, transform; @@ -33279,18 +35808,24 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg transfretanus_A = mkA "transfretanus" "transfretana" "transfretanum" ; -- [DXXFS] :: transmarine, that is beyond the sea; transfreto_V = mkV "transfretare" ; -- [DXXCS] :: cross a strait; pass over the sea; put/ferry across; pass through; transfuga_F_N = mkN "transfuga" ; -- [XXXDX] :: deserter; --- TODO transfugio_V : V2 transfugio, transfugere, transfugi, - -- Declension: 3rd -- Comment: [XXXDX] :: go over to the enemy, desert; + transfugio_V2 = mkV2 (mkV "transfugere" "transfugio" "transfugi" nonExist ) ; -- [XXXDX] :: go over to the enemy, desert; transfugium_N_N = mkN "transfugium" ; -- [XXXDX] :: desertion; + transfundo_V2 = mkV2 (mkV "transfundere" "transfundo" "transfudi" "transfusus ") ; -- [XXXES] :: decant; pour from one vessel to another; transfusio_F_N = mkN "transfusio" "transfusionis " feminine ; -- [GXXEK] :: transfusion; + transgradior_V = mkV "transgradi" "transgradior" "transgrassus sum " ; -- [XXXCO] :: cross, go/move/travel over/across; go to other side; change allegiance/policy; + transgredior_V = mkV "transgredi" "transgredior" "transgressus sum " ; -- [XXXAO] :: cross, go/move/travel over/across; go to other side; change allegiance/policy; transgressio_F_N = mkN "transgressio" "transgressionis " feminine ; -- [EEXCE] :: |transgression; violation; transgressor_M_N = mkN "transgressor" "transgressoris " masculine ; -- [EEXCE] :: transgressor; transgressus_M_N = mkN "transgressus" "transgressus " masculine ; -- [XXXDX] :: crossing to the other side; --- TODO transilio_V : V2 transilio, transilire, transilui, - -- Declension: 4th -- Comment: [XXXDX] :: jump across, leap over; + transicio_V2 = mkV2 (mkV "transicere" "transicio" "transjeci" "transjectus ") ; -- [XXXDX] :: transfer; transport; pierce, transfix; + transigo_V2 = mkV2 (mkV "transigere" "transigo" "transegi" "transactus ") ; -- [XXXDX] :: stab, pierce; finish, settle, complete, accomplish; perform; bargain, transact; + transilio_V2 = mkV2 (mkV "transilire" "transilio" "transilui" nonExist ) ; -- [XXXDX] :: jump across, leap over; transitio_F_N = mkN "transitio" "transitionis " feminine ; -- [XXXDX] :: passing over, passage; desertion; infection, contagion; transitorie_Adv = mkAdv "transitorie" ; -- [DXXES] :: cursorily; in passing; by the way; transitorium_N_N = mkN "transitorium" ; -- [XXXEO] :: passage-way; transitorius_A = mkA "transitorius" "transitoria" "transitorium" ; -- [XXXEO] :: affording passage; having a passage-way; transitory, passing (L+S); cursory; transitus_M_N = mkN "transitus" "transitus " masculine ; -- [XXXDX] :: passage; crossing; + transjicio_V2 = mkV2 (mkV "transjicere" "transjicio" "transjeci" "transjectus ") ; -- [XXXDX] :: transfer; transport; pierce, transfix; translaticius_A = mkA "translaticius" "translaticia" "translaticium" ; -- [XXXCO] :: traditional, handed down; customary; ordinary/common/usual; transferred (word); translatio_F_N = mkN "translatio" "translationis " feminine ; -- [XLXBO] :: transportation/transference; transfer to another; change of venue; translation; translativus_A = mkA "translativus" "translativa" "translativum" ; -- [XXXEC] :: transferable; @@ -33306,6 +35841,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg transmigro_V = mkV "transmigrare" ; -- [XXXDX] :: change one's residence from one place to another; transport; spread (disease); transmissio_F_N = mkN "transmissio" "transmissionis " feminine ; -- [XXXDS] :: sending-across; passage; L:tax payment (sent or returned); transmissus_A = mkA "transmissus" "transmissa" "transmissum" ; -- [XXXDX] :: crossing, passage; + transmitto_V2 = mkV2 (mkV "transmittere" "transmitto" "transmisi" "transmissus ") ; -- [XXXBX] :: send across; go across; transmit; transmodulatrum_N_N = mkN "transmodulatrum" ; -- [HTXEK] :: modem; transmontanus_M_N = mkN "transmontanus" ; -- [XXXEC] :: dwellers (pl.) beyond the mountains; transmoveo_V = mkV "transmovere" ; -- [XXXES] :: remove; transfer; @@ -33320,18 +35856,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg transpadanus_A = mkA "transpadanus" "transpadana" "transpadanum" ; -- [XXXEC] :: beyond (i.e. north of) the Po, transpadane; transparentia_F_N = mkN "transparentia" ; -- [GXXEK] :: transparency; transpectus_M_N = mkN "transpectus" "transpectus " masculine ; -- [XXXEC] :: looking through, seeing through; + transpicio_V2 = mkV2 (mkV "transpiciere" "transpicio" nonExist nonExist) ; -- [XXXEC] :: look through, see through; transpiratio_F_N = mkN "transpiratio" "transpirationis " feminine ; -- [GXXEK] :: perspiration; transpito_V = mkV "transpitare" ; -- [XXXES] :: pass through; transplanto_V2 = mkV2 (mkV "transplantare") ; -- [DXXES] :: transplant; remove; transplantus_M_N = mkN "transplantus" ; -- [DEXFS] :: deified human being; transporto_V = mkV "transportare" ; -- [XXXDX] :: carry across, transport; transrhenanus_A = mkA "transrhenanus" "transrhenana" "transrhenanum" ; -- [XXXEC] :: beyond the Rhine; + transscendo_V2 = mkV2 (mkV "transscendere" "transscendo" "transscendi" "transscensus ") ; -- [XXXBO] :: climb/step/go across/over; board; transgress; exceed; pass on, make transition; + transscribo_V2 = mkV2 (mkV "transscribere" "transscribo" "transscripsi" "transscriptus ") ; -- [XXXBO] :: copy (from book/tablet to another); transcribe; transfer (enrollment); forge; + transspicio_V2 = mkV2 (mkV "transspiciere" "transspicio" nonExist nonExist) ; -- [XXXEC] :: look through, see through; transtiberinus_A = mkA "transtiberinus" "transtiberina" "transtiberinum" ; -- [XXXEC] :: beyond the Tiber; transtineo_V = mkV "transtinere" ; -- [BXXFS] :: go through (Plautus); transtrum_N_N = mkN "transtrum" ; -- [XXXDX] :: crossbeam; rower's seat; transubstantiatio_F_N = mkN "transubstantiatio" "transubstantiationis " feminine ; -- [FXXEM] :: trans-substantiation; transulto_V = mkV "transultare" ; -- [XXXDX] :: spring across; + transuo_V2 = mkV2 (mkV "transuere" "transuo" "transui" "transutus ") ; -- [XXXDX] :: pierce through; transvectio_F_N = mkN "transvectio" "transvectionis " feminine ; -- [XXXES] :: crossing; + transveho_V2 = mkV2 (mkV "transvehere" "transveho" "transvexi" "transvectus ") ; -- [XXXDX] :: transport, lead across; elapse; carry; + transvenio_V = mkV "transvenire" "transvenio" "transveni" "transventus "; -- [EXXDS] :: come; come from another place or person; transverbero_V = mkV "transverberare" ; -- [XXXDX] :: transfix; transversalis_A = mkA "transversalis" "transversalis" "transversale" ; -- [FXXFJ] :: transverse; transversarium_N_N = mkN "transversarium" ; -- [XXXEO] :: cross beam, cross piece (of timber); @@ -33339,10 +35882,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg transverse_Adv = mkAdv "transverse" ; -- [XXXFO] :: crosswise; transversely; sideways; askance; transverso_V = mkV "transversare" ; -- [XXXDX] :: pass across one from side to side; transversus_A = mkA "transversus" "transversa" "transversum" ; -- [XXXDX] :: lying across/from side to side; flanking/oblique; moving across/at right angle; + transverto_V2 = mkV2 (mkV "transvertere" "transverto" "transverti" "transverstus ") ; -- [XXXDX] :: divert from one place/purpose to another; extend across; transvolito_V = mkV "transvolitare" ; -- [XXXDX] :: fly over or through; transvolo_V = mkV "transvolare" ; -- [XXXDX] :: fly across; transvoro_V2 = mkV2 (mkV "transvorare") ; -- [DXXDS] :: gulp down; transvorsus_A = mkA "transvorsus" "transvorsa" "transvorsum" ; -- [XXXDX] :: lying across/from side to side; flanking/oblique; moving across/at right angle; + tranveho_V2 = mkV2 (mkV "tranvehere" "tranveho" "tranvexi" "tranvectus ") ; -- [XXXDX] :: transport, lead across; elapse; carry; trapetum_N_N = mkN "trapetum" ; -- [XAXDS] :: oil-press; olive-mill; trapetus_M_N = mkN "trapetus" "trapetis " masculine ; -- [XAXDS] :: oil-press (pl.); olive-mill; traumaticus_A = mkA "traumaticus" "traumatica" "traumaticum" ; -- [GXXEK] :: traumatic; @@ -33353,11 +35898,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg trebuchettum_N_N = mkN "trebuchettum" ; -- [FWXEM] :: trebuchet; siege engine; trechedipnum_N_N = mkN "trechedipnum" ; -- [XXXEC] :: light garment worn at table; tremebundus_A = mkA "tremebundus" "tremebunda" "tremebundum" ; -- [XXXDX] :: trembling; + tremefacio_V2 = mkV2 (mkV "tremefacere" "tremefacio" "tremefeci" "tremefactus ") ; -- [XXXDX] :: cause to tremble; tremendus_A = mkA "tremendus" "tremenda" "tremendum" ; -- [XXXDX] :: terrible, awe inspiring; --- TODO tremesco_V : V2 tremesco, tremescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: tremble, quiver, vibrate; tremble at; + tremesco_V = mkV "tremescere" "tremesco" nonExist nonExist ; -- [XXXDX] :: tremble, quiver, vibrate; tremble at; tremis_M_N = mkN "tremis" "tremissis " masculine ; -- [ETXFS] :: coin; third part of gold aureus; --- TODO tremisco_V : V2 tremisco, tremiscere, -, - -- Declension: 3rd -- Comment: [XXXES] :: tremble, quiver, vibrate; tremble at; (tremescere); --- TODO tremo_V : V2 tremo, tremere, tremui, - -- Declension: 3rd -- Comment: [XXXBX] :: tremble, shake, shudder at; + tremisco_V = mkV "tremiscere" "tremisco" nonExist nonExist ; -- [XXXES] :: tremble, quiver, vibrate; tremble at; (tremescere); + tremo_V2 = mkV2 (mkV "tremere" "tremo" "tremui" nonExist ) ; -- [XXXBX] :: tremble, shake, shudder at; tremor_M_N = mkN "tremor" "tremoris " masculine ; -- [XXXDX] :: trembling, shuddering; quivering, quaking; tremulus_A = mkA "tremulus" "tremula" "tremulum" ; -- [XXXBX] :: trembling; trepidans_A = mkA "trepidans" "trepidantis"; -- [XXXEW] :: trembling, anxious; panicking; @@ -33393,6 +35939,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tribunitius_A = mkA "tribunitius" "tribunitia" "tribunitium" ; -- [XXXDX] :: of/belonging to tribune; tribunitius_M_N = mkN "tribunitius" ; -- [XXXDX] :: ex-tribune; tribunus_M_N = mkN "tribunus" ; -- [XLXBX] :: tribune; [~ plebis => tribune of the people; ~ mllitum => soldier's tribune]; + tribuo_V2 = mkV2 (mkV "tribuere" "tribuo" "tribui" "tributus ") ; -- [XXXBX] :: divide, assign; present; grant, allot, bestow, attribute; tribus_F_N = mkN "tribus" "tribus " feminine ; -- [XXXDX] :: third part of the people; tribe, hereditary division (Ramnes, Tities, Luceres); tributarius_A = mkA "tributarius" "tributaria" "tributarium" ; -- [XXXEC] :: relating to tribute; tributim_Adv = mkAdv "tributim" ; -- [XXXDX] :: by tribes; @@ -33487,8 +36034,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tripodo_V = mkV "tripodare" ; -- [XXXDX] :: dance; perform ritual dance (in triple time in honor of Mars); tripudio_V = mkV "tripudiare" ; -- [XXXDX] :: dance; perform ritual dance (in triple time in honor of Mars); tripudium_N_N = mkN "tripudium" ; -- [XXXDX] :: solemn ritual dance (to Mars); favorable omen when sacred chickens ate greedily; + tripus_1_N = mkN "tripus" "tripodis" masculine ; -- [XEXCO] :: three-legged stand, tripod; the oracle at Delphi; oracles in general; + tripus_2_N = mkN "tripus" "tripodos" masculine ; -- [XEXCO] :: three-legged stand, tripod; the oracle at Delphi; oracles in general; tripus_M_N = mkN "tripus" "tripodis " masculine ; -- [XEXCO] :: three-legged stand, tripod; the oracle at Delphi; oracles in general; --- TODO tripus_N : N1 tripus, tripodos/is -- M -- [XEXCO] :: three-legged stand, tripod; the oracle at Delphi; oracles in general; triquetrus_A = mkA "triquetrus" "triquetra" "triquetrum" ; -- [XXXDX] :: three cornered, triangular; triremis_A = mkA "triremis" "triremis" "trireme" ; -- [XXXDX] :: having three oars to each bench/banks of oars; triremis_F_N = mkN "triremis" "triremis " feminine ; -- [XXXDX] :: trireme, vessel having three oars to each bench/banks of oars; @@ -33549,6 +36097,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg truculenter_Adv = mkAdv "truculenter" ; -- [XXXES] :: wildly, savagely, fiercely, cruelly, roughly; truculently (?); truculentus_A = mkA "truculentus" "truculenta" "truculentum" ; -- [XXXDX] :: ferocious, aggressive; trudis_F_N = mkN "trudis" "trudis " feminine ; -- [XXXDX] :: metal-tipped pole, barge-pole; + trudo_V2 = mkV2 (mkV "trudere" "trudo" "trusi" "trusus ") ; -- [XXXDX] :: thrust, push, shove; drive, force; drive on; trulla_F_N = mkN "trulla" ; -- [XXXEC] :: ladle, pan or basin; (instrument) eyepiece (Cal); trulleum_N_N = mkN "trulleum" ; -- [XXXFS] :: wash-basin; trunco_V = mkV "truncare" ; -- [XXXDX] :: maim, mutilate; strip of branches, foliage; cut off; @@ -33580,12 +36129,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tulipa_F_N = mkN "tulipa" ; -- [GAXEK] :: tulip; tullianum_N_N = mkN "tullianum" ; -- [XXICO] :: underground execution chamber in prison of Rome; (built by Servus Tullius?); tum_Adv = mkAdv "tum" ; -- [XXXAX] :: then, next; besides; at that time; [cum...tum => not only...but also]; --- tum_Conj : Conj tum -- [XXXDS] :: moreover; (frequent in Cicero and before; rare after); + tum_Conj = mkConj "tum" missing ; -- [XXXDS] :: moreover; (frequent in Cicero and before; rare after); tumba_F_N = mkN "tumba" ; -- [FXXEM] :: tomb; tumbarius_M_N = mkN "tumbarius" ; -- [FXXEM] :: tomb-keeper; tumbus_M_N = mkN "tumbus" ; -- [FXXEM] :: tomb; + tumefacio_V2 = mkV2 (mkV "tumefacere" "tumefacio" "tumefeci" "tumefactus ") ; -- [XXXDX] :: cause to swell; puff up; tumeo_V = mkV "tumere" ; -- [XXXDX] :: swell, become inflated; be puffed up; be bombastic; be swollen with conceit; --- TODO tumesco_V : V2 tumesco, tumescere, tumui, - -- Declension: 3rd -- Comment: [XXXDX] :: (begin to) swell; become inflamed with pride, passion, etc; + tumesco_V2 = mkV2 (mkV "tumescere" "tumesco" "tumui" nonExist ) ; -- [XXXDX] :: (begin to) swell; become inflamed with pride, passion, etc; tumidus_A = mkA "tumidus" "tumida" "tumidum" ; -- [XXXBX] :: swollen, swelling, distended; puffed up with pride or self; confidence; tumor_M_N = mkN "tumor" "tumoris " masculine ; -- [XXXDX] :: swollen or distended condition, swelling; swell (sea, waves); excitement; tumulo_V = mkV "tumulare" ; -- [XXXDX] :: cover with a burial mound; @@ -33594,10 +36144,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tumultuatio_F_N = mkN "tumultuatio" "tumultuationis " feminine ; -- [XXXDX] :: confused uproar; tumultuo_V = mkV "tumultuare" ; -- [GXXEK] :: |misbehave; (Cal); tumultuor_V = mkV "tumultuari" ; -- [XXXBO] :: make a commotion/disturbance/armed rising; scrap, scrimmage; be in confusion; --- SLASHSTUFF tumultuosus_A : A2 tumultuosus, tumultuosa -um, tumultuosior -or -us, tumultuosissimus -a -um -- [XXXDX] :: turbulent, full of commotion or uproar; + tumultuosus_A = mkA "tumultuosus" ; -- [XXXDX] :: turbulent, full of commotion or uproar; tumultus_M_N = mkN "tumultus" "tumultus " masculine ; -- [XXXAX] :: commotion, confusion, uproar; rebellion, uprising, disturbance; tumulus_M_N = mkN "tumulus" ; -- [XXXAX] :: mound, hillock; mound, tomb; tunc_Adv = mkAdv "tunc" ; -- [XXXAX] :: then, thereupon, at that time; + tundo_V2 = mkV2 (mkV "tundere" "tundo" "tutudi" "tusus ") ; -- [XXXDX] :: beat; bruise, pulp, crush; tunella_F_N = mkN "tunella" ; -- [FXBFM] :: cask, tun; (for wine); tunellus_M_N = mkN "tunellus" ; -- [FXBEM] :: cask, tun; (for wine); the Tun (London prison); bird-trap; tunica_F_N = mkN "tunica" ; -- [XXXDX] :: undergarment, shirt,tunic; @@ -33618,11 +36169,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg turbineus_A = mkA "turbineus" "turbinea" "turbineum" ; -- [XXXDX] :: gyrating like a spinning-top; turbo_M_N = mkN "turbo" "turbonis " masculine ; -- [XXXDO] :: that which whirls; whirlwind, tornado; spinning top; spiral, round, circle; turbo_V = mkV "turbare" ; -- [XXXAX] :: disturb, agitate, throw into confusion; --- SLASHSTUFF turbulentus_A : A2 turbulentus, turbulenta -um, turbulentior -or -us, turbulentissimus -a -um -- [XXXDX] :: violently disturbed, stormy, turbulent; unruly, riotous; w/violent unrest; + turbulentus_A = mkA "turbulentus" ; -- [XXXDX] :: violently disturbed, stormy, turbulent; unruly, riotous; w/violent unrest; turdus_M_N = mkN "turdus" ; -- [XXXDX] :: thrush; tureus_A = mkA "tureus" "turea" "tureum" ; -- [XXXDX] :: of or connected with incense; turgeo_V = mkV "turgere" ; -- [XXXDX] :: swell out, become swollen or tumid; --- TODO turgesco_V : V2 turgesco, turgescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: begin to swell; + turgesco_V = mkV "turgescere" "turgesco" nonExist nonExist ; -- [XXXDX] :: begin to swell; turgidulus_A = mkA "turgidulus" "turgidula" "turgidulum" ; -- [XXXDX] :: (poor little) swollen/inflated/inflamed/grandiose; turgidus_A = mkA "turgidus" "turgida" "turgidum" ; -- [XXXDX] :: swollen, inflated, distended; swollen (body of water); inflamed with passion; turgor_M_N = mkN "turgor" "turgoris " masculine ; -- [DXXFS] :: swelling; @@ -33643,7 +36194,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg turpilucricupidus_A = mkA "turpilucricupidus" "turpilucricupida" "turpilucricupidum" ; -- [BXXFO] :: basely greedy/covetous of dishonest gain; turpilucris_A = mkA "turpilucris" "turpilucris" "turpilucre" ; -- [EXXFP] :: making dishonest gain/profit; basely greedy/covetous of gain (Souter); turpilucrus_A = mkA "turpilucrus" "turpilucra" "turpilucrum" ; -- [DXXFS] :: making dishonest gain/profit; basely covetous of gain (Souter); --- SLASHSTUFF turpis_A : A2 turpis, turpe, turpior -or -us, turpissimus -a -um -- [XXXAX] :: ugly; nasty; disgraceful; indecent; base, shameful, disgusting, repulsive; + turpis_A = mkA "turpis" ; -- [XXXAX] :: ugly; nasty; disgraceful; indecent; base, shameful, disgusting, repulsive; turpissime_Adv = mkAdv "turpissime" ; -- [XXXFX] :: basely; shamefully; uglily; (found in Patrologiae Graecae, 19th Cent); turpiter_Adv = mkAdv "turpiter" ; -- [XXXDS] :: repulsively, disgracefully, shamelessly; in an ugly/unsightly manner; turpitudo_F_N = mkN "turpitudo" "turpitudinis " feminine ; -- [XXXBO] :: ugliness/deformity; shame/indecency; nakedness/genitals; disgrace; turpitude; @@ -33659,6 +36210,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tusculum_N_N = mkN "tusculum" ; -- [BXXFS] :: little frankincense (Plautus); tussicula_F_N = mkN "tussicula" ; -- [XBXFS] :: slight cough; tussilago_F_N = mkN "tussilago" "tussilaginis " feminine ; -- [DAXNS] :: colt's foot herb (Pliny); + tussio_V = mkV "tussire" "tussio" nonExist nonExist; -- [XBXCO] :: cough; suffer from a cough; have coughing fit; tussis_F_N = mkN "tussis" "tussis " feminine ; -- [XXXCO] :: cough; tutamen_N_N = mkN "tutamen" "tutaminis " neuter ; -- [XXXDX] :: means of protection; tutamentum_N_N = mkN "tutamentum" ; -- [XXXDX] :: means of protection; @@ -33668,7 +36220,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg tuto_V = mkV "tutare" ; -- [XXXDX] :: guard, protect, defend; guard against, avert; tutor_M_N = mkN "tutor" "tutoris " masculine ; -- [XXXDX] :: protector, defender; guardian, watcher; tutor; tutor_V = mkV "tutari" ; -- [XXXDX] :: guard, protect, defend; guard against, avert; --- SLASHSTUFF tutus_A : A2 tutus, tuta -um, tutior -or -us, tutissimus -a -um -- [XXXAX] :: safe, prudent; secure; protected; + tutus_A = mkA "tutus" ; -- [XXXAX] :: safe, prudent; secure; protected; tuus_A = mkA "tuus" "tua" "tuum" ; -- [XXXAX] :: your (sing.); tympanistes_M_N = mkN "tympanistes" "tympanistae " masculine ; -- [XDXFO] :: tympanum (small drum) player; tympanistria_F_N = mkN "tympanistria" ; -- [XDXFO] :: female tympanum (small drum) player; @@ -33701,7 +36253,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg uberte_Adv = mkAdv "uberte" ; -- [EXXCN] :: abundantly; copiously; ubertim_Adv = mkAdv "ubertim" ; -- [XXXDX] :: abundantly; copiously (weeping); ubi_Adv = mkAdv "ubi" ; -- [XXXBX] :: where; in what place; (time) when, whenever; as soon as; in which; with whom; --- ubi_Conj : Conj ubi -- [XXXAX] :: where, whereby; + ubi_Conj = mkConj "ubi" missing ; -- [XXXAX] :: where, whereby; ubicumque_Adv = mkAdv "ubicumque" ; -- [XXXDX] :: wherever, in whatever place; in any place, wherever that may be, somewhere; ubinam_Adv = mkAdv "ubinam" ; -- [XXXDX] :: where in the world?; ubiquaque_Adv = mkAdv "ubiquaque" ; -- [XXXDX] :: everywhere; @@ -33711,24 +36263,25 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg udus_A = mkA "udus" "uda" "udum" ; -- [XXXDX] :: wet; ulcero_V = mkV "ulcerare" ; -- [XXXDX] :: cause to fester; ulcerosus_A = mkA "ulcerosus" "ulcerosa" "ulcerosum" ; -- [XXXDX] :: full of sores; + ulciscor_V = mkV "ulcisci" "ulciscor" "ultus sum " ; -- [XXXBX] :: avenge; punish; ulcus_N_N = mkN "ulcus" "ulceris " neuter ; -- [XXXDX] :: ulcer, sore; uliginosum_N_N = mkN "uliginosum" ; -- [XXXES] :: swamp; uliginosus_A = mkA "uliginosus" "uliginosa" "uliginosum" ; -- [XXXES] :: marshy; full of moisture; uligo_F_N = mkN "uligo" "uliginis " feminine ; -- [XXXDX] :: waterlogged ground, marsh; ullatenus_Adv = mkAdv "ullatenus" ; -- [DXXFS] :: in any respect whatever; --- SLASHSTUFF ullus_A : A2 ullus, ulla, ullum (gen -ius) -- [XXXAX] :: any; + ullus_A = mkA "ullus" ; -- [XXXAX] :: any; ulmeus_A = mkA "ulmeus" "ulmea" "ulmeum" ; -- [XXXDX] :: of elm; ulmus_F_N = mkN "ulmus" ; -- [XXXDX] :: elm tree; ulna_F_N = mkN "ulna" ; -- [XXXDX] :: forearm; the span of the outstretched arms; - uls_Acc_Prep = mkPrep "uls" Acc ; -- [XXXDX] :: beyond, on the other side, on that side; more than, besides; --- SLASHSTUFF ulterior_A : A2 ulterior -or -us, ultimus -a -um -- [XXXCX] :: far; farther; farthest, latest; last; highest, greatest; + uls_Acc_Prep = mkPrep "uls" acc ; -- [XXXDX] :: beyond, on the other side, on that side; more than, besides; + ulterior_A = mkA "ulterior" ; -- [XXXCX] :: far; farther; farthest, latest; last; highest, greatest; ultimate_Adv = mkAdv "ultimate" ; -- [FXXFZ] :: extremely, to the last degree, utterly; finally, at last; ultimatim_Adv = mkAdv "ultimatim" ; -- [GXXEE] :: extremely, to the last degree, utterly; finally, at last; ultime_Adv = mkAdv "ultime" ; -- [DXXES] :: extremely, to the last degree, utterly; finally, at last; ultimum_Adv = mkAdv "ultimum" ; -- [GXXEE] :: extremely, to the last degree, utterly; finally, at last; ultio_F_N = mkN "ultio" "ultionis " feminine ; -- [XXXDX] :: revenge, vengeance, retribution; ultor_M_N = mkN "ultor" "ultoris " masculine ; -- [XXXDX] :: avenger, revenger; - ultra_Acc_Prep = mkPrep "ultra" Acc ; -- [XXXDX] :: beyond, on the other side, on that side; more than, besides; + ultra_Acc_Prep = mkPrep "ultra" acc ; -- [XXXDX] :: beyond, on the other side, on that side; more than, besides; ultra_Adv =mkAdv "ultra" "ulterius" "ultimum" ; -- [XXXAX] :: beyond, further; on the other side; more, more than, in addition, besides; ultramarinus_A = mkA "ultramarinus" "ultramarina" "ultramarinum" ; -- [FAXFM] :: from overseas; ultramarinus_M_N = mkN "ultramarinus" ; -- [FXXFM] :: overseas person; @@ -33762,7 +36315,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg umeo_V = mkV "umere" ; -- [XXXDX] :: be wet; be moist; umerale_N_N = mkN "umerale" "umeralis " neuter ; -- [XXXFO] :: cape, protective covering for shoulders; outer robe; ecclesiastical humeral; umerus_M_N = mkN "umerus" ; -- [XXXBX] :: upper arm, shoulder; --- TODO umesco_V : V2 umesco, umescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: become moist or wet; + umesco_V = mkV "umescere" "umesco" nonExist nonExist ; -- [XXXDX] :: become moist or wet; umidulus_A = mkA "umidulus" "umidula" "umidulum" ; -- [XXXDX] :: somewhat moist; umidum_N_N = mkN "umidum" ; -- [XXXDX] :: swamp; umidus_A = mkA "umidus" "umida" "umidum" ; -- [XXXBX] :: damp, moist, dank, wet, humid; @@ -33802,6 +36355,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg unetvicesimanus_M_N = mkN "unetvicesimanus" ; -- [XWXEC] :: soldiers (pl.) of the twenty-first legion; unetvicesimus_A = mkA "unetvicesimus" "unetvicesima" "unetvicesimum" ; -- [XXXES] :: twenty-first; ungella_F_N = mkN "ungella" ; -- [XXXFS] :: small claw/talon; + ungo_V2 = mkV2 (mkV "ungere" "ungo" "unxi" "unctus ") ; -- [XXXBO] :: anoint/rub (w/oil/unguent); smear with oil/grease; dress (food w/oil); add oil; unguedo_F_N = mkN "unguedo" "unguedinis " feminine ; -- [XXXFO] :: ointment, unguent; unguen_N_N = mkN "unguen" "unguinis " neuter ; -- [XXXDX] :: fat, grease; unguentarius_M_N = mkN "unguentarius" ; -- [XXXDX] :: dealer in ointments, maker of ointments; @@ -33811,6 +36365,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg unguiculus_M_N = mkN "unguiculus" ; -- [XXXEC] :: finger or toe-nail; unguis_M_N = mkN "unguis" "unguis " masculine ; -- [XXXBX] :: nail, claw, talon; ungula_F_N = mkN "ungula" ; -- [XAXCO] :: hoof; bird claw/talon; (torture); toe nail; pig's foot/trotter (food/medicine); + unguo_V2 = mkV2 (mkV "unguere" "unguo" "unxi" "unctus ") ; -- [XXXBO] :: anoint/rub (w/oil/unguent); smear with oil/grease; dress (food w/oil); add oil; unianimis_A = mkA "unianimis" "unianimis" "unianime" ; -- [XXXCO] :: acting in accord; sharing a single purpose; harmonious (L+S); unanimous; unianimiter_Adv = mkAdv "unianimiter" ; -- [DXXES] :: unanimously; cordially; harmoniously; unianimus_A = mkA "unianimus" "unianima" "unianimum" ; -- [XXXCO] :: acting in accord; sharing a single purpose; harmonious (L+S); unanimous; @@ -33831,11 +36386,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg unigenitus_A = mkA "unigenitus" "unigenita" "unigenitum" ; -- [EEXDX] :: only begotten; only; unimanus_A = mkA "unimanus" "unimana" "unimanum" ; -- [XXXDX] :: one-handed; unio_M_N = mkN "unio" "unionis " masculine ; -- [XXXEO] :: large single pearl; + unio_V2 = mkV2 (mkV "unire" "unio" "univi" "unitus ") ; -- [XXXEO] :: unite, combine into one; unitas_F_N = mkN "unitas" "unitatis " feminine ; -- [EXXDX] :: unity; oneness; uniter_Adv = mkAdv "uniter" ; -- [XXXDX] :: so as to form a singular entity; universalis_A = mkA "universalis" "universalis" "universale" ; -- [DXXDO] :: universal. having general application; of all (Souter); universaliter_Adv = mkAdv "universaliter" ; -- [XXXDO] :: universally/generally/collectively, all together/as to cover/comprise all cases; --- SLASHSTUFF universalus_A : A2 universalus, universala -um, universalior -or -us, universalissimus -a -um -- [XXXDO] :: universal, having general application; of/belonging to all/the whole, entire; + universalus_A = mkA "universalus" ; -- [XXXDO] :: universal, having general application; of/belonging to all/the whole, entire; universe_Adv = mkAdv "universe" ; -- [XXXDO] :: in general terms, generally; in respect to the whole; universim_Adv = mkAdv "universim" ; -- [XXXFO] :: generally, with universal application; universitarius_A = mkA "universitarius" "universitaria" "universitarium" ; -- [GXXEK] :: academic; @@ -33850,7 +36406,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg unoculus_A = mkA "unoculus" "unocula" "unoculum" ; -- [XXXEO] :: one-eyed, having one eye; (of Cyclops); unovirus_A = mkA "unovirus" "unovira" "unovirum" ; -- [XXXIO] :: that has had only one husband (F ADJ); unquam_Adv = mkAdv "unquam" ; -- [XXXDX] :: at any time, ever; at some time; --- SLASHSTUFF unus_A : A2 unus, una, unum (gen -ius) -- [XXXEO] :: alone, a single/sole; some, some one; only (pl.); one set of (denoting entity); + unus_A = mkA "unus" ; -- [XXXEO] :: alone, a single/sole; some, some one; only (pl.); one set of (denoting entity); upilio_M_N = mkN "upilio" "upilionis " masculine ; -- [XAXDO] :: shepherd, herdsman (for sheep/goats); kind of bird; upupa_F_N = mkN "upupa" ; -- [XXXDO] :: hoopoe (bird of family Upupidae); pickax/crowbar; (birdlike); mattock/hoe (L+S); uranicus_A = mkA "uranicus" "uranica" "uranicum" ; -- [FXXEM] :: heavenly; @@ -33866,7 +36422,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg urceus_M_N = mkN "urceus" ; -- [GXXEK] :: mug; urco_V = mkV "urcare" ; -- [XAXFO] :: urk; (verbal expression of the cry of the lynx); uredo_F_N = mkN "uredo" "uredinis " feminine ; -- [XAXCO] :: blight/scorching on plants from frost; burning sensation; --- TODO ureter_N : N1 ureter, ureteros/is -- M -- [XBXFO] :: ureter; urinary duct; + ureter_1_N = mkN "ureter" "ureteris" masculine ; -- [XBXFO] :: ureter; urinary duct; + ureter_2_N = mkN "ureter" "ureteros" masculine ; -- [XBXFO] :: ureter; urinary duct; urgeo_V = mkV "urgere" ; -- [XXXAO] :: ||hem in; threaten by proximity; press verbally/argument/point; follow up; urgueo_V = mkV "urguere" ; -- [XXXAO] :: ||hem in; threaten by proximity; press verbally/argument/point; follow up; urina_F_N = mkN "urina" ; -- [XXXDX] :: urine; @@ -33875,6 +36432,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg urino_V = mkV "urinare" ; -- [XXXDX] :: dive, plunge into water; urinor_V = mkV "urinari" ; -- [XXXDX] :: dive, plunge into water; urna_F_N = mkN "urna" ; -- [XXXBX] :: pot; cinerary urn; urn used for drawing lots; voting urn; water jar, ~13 liters; + uro_V2 = mkV2 (mkV "urere" "uro" "ussi" "ustus ") ; -- [XXXBX] :: burn; ursa_F_N = mkN "ursa" ; -- [XXXDX] :: she-bear; Great Bear; ursinus_A = mkA "ursinus" "ursina" "ursinum" ; -- [XAXES] :: bear-; of a bear; ursus_M_N = mkN "ursus" ; -- [XXXDX] :: bear; @@ -33882,11 +36440,11 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg urticaria_F_N = mkN "urticaria" ; -- [GXXEK] :: hives; urus_M_N = mkN "urus" ; -- [XXXDX] :: wild ox; usarius_A = mkA "usarius" "usaria" "usarium" ; -- [XLXDO] :: that may be used by one other than owner but not for profit; (object/slave); --- SLASHSTUFF usitatus_A : A2 usitatus, usitata -um, usitatior -or -us, usitatissimus -a -um -- [XXXCO] :: usual, customary, ordinary, common, familiar, everyday; commonly used/practiced; + usitatus_A = mkA "usitatus" ; -- [XXXCO] :: usual, customary, ordinary, common, familiar, everyday; commonly used/practiced; usitor_V = mkV "usitari" ; -- [BXXFO] :: make usual/common/habitual use of; use everyday; uspiam_Adv = mkAdv "uspiam" ; -- [XXXDX] :: anywhere, somewhere; usquam_Adv = mkAdv "usquam" ; -- [XXXBX] :: anywhere, in any place; to any place; - usque_Acc_Prep = mkPrep "usque" Acc ; -- [XXXDX] :: up to (name of town or locality); + usque_Acc_Prep = mkPrep "usque" acc ; -- [XXXDX] :: up to (name of town or locality); usque_Adv = mkAdv "usque" ; -- [XXXAX] :: all the way, right on; all the time, continuously, at every point, always; usquequaque_Adv = mkAdv "usquequaque" ; -- [XXXDX] :: in every conceivable situation; wholly, altogether; usquequo_Adv = mkAdv "usquequo" ; -- [XXXDW] :: how long? (Douay); to what point/time/extent?; until (Rufine); @@ -33897,12 +36455,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg ustulo_V = mkV "ustulare" ; -- [XXXDX] :: scorch, char, burn partially; usualis_A = mkA "usualis" "usualis" "usuale" ; -- [DXXES] :: usual, common, ordinary; fit for use, that is for use; usuarius_A = mkA "usuarius" "usuaria" "usuarium" ; -- [XXXES] :: |usable; made use of; + usucapio_V2 = mkV2 (mkV "usucapere" "usucapio" "usucepi" "usucaptus ") ; -- [XXXDX] :: acquire ownership of (thing) by virtue of uninterrupted possession; usura_F_N = mkN "usura" ; -- [XXXDX] :: interest (usu. fraction/times of 12% per annum); use, enjoyment; usurarius_A = mkA "usurarius" "usuraria" "usurarium" ; -- [XXXDO] :: of interest/usury; interest-derived; subject to interest; provided on loan; usurpatio_F_N = mkN "usurpatio" "usurpationis " feminine ; -- [XLXBO] :: |assertion of right/privilege by use; usage; constant carrying out (practices); usurpo_V = mkV "usurpare" ; -- [XXXDX] :: seize upon, usurp; use; usus_M_N = mkN "usus" "usus " masculine ; -- [XXXAX] :: use, enjoyment; experience, skill, advantage; custom; --- ut_Conj : Conj ut -- [XXXAX] :: to (+ subjunctive), in order that/to; how, as, when, while; even if; + ut_Conj = mkConj "ut" missing ; -- [XXXAX] :: to (+ subjunctive), in order that/to; how, as, when, while; even if; utcumque_Adv = mkAdv "utcumque" ; -- [XXXBO] :: whatever, as far as; in whatever manner/degree. no matter how/to what extent; utcunque_Adv = mkAdv "utcunque" ; -- [XXXBO] :: whatever, as far as; in whatever manner/degree. no matter how/to what extent; utens_A = mkA "utens" "utentis"; -- [XXXFO] :: having money to spend; @@ -33912,7 +36471,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg uter_N_N = mkN "uter" "utris " neuter ; -- [XXXDS] :: skin; wine/water skin; bag/bottle made of skin/hide; (inflated for flotation); uterum_N_N = mkN "uterum" ; -- [XXXDX] :: womb; belly, abdomen; uterus_M_N = mkN "uterus" ; -- [XXXDX] :: womb; belly, abdomen; --- uti_Conj : Conj uti -- [XXXAX] :: in order that; that, so that; as, when; [ut primum => as soon as]; + uti_Conj = mkConj "uti" missing ; -- [XXXAX] :: in order that; that, so that; as, when; [ut primum => as soon as]; utibilis_A = mkA "utibilis" "utibilis" "utibile" ; -- [BXXES] :: useful; serviceable; utilis_A = mkA "utilis" "utilis" "utile" ; -- [XXXAX] :: useful, profitable, practical, helpful, advantageous; utilitas_F_N = mkN "utilitas" "utilitatis " feminine ; -- [XXXBX] :: usefulness, advantage; @@ -33924,6 +36483,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg utlagatio_F_N = mkN "utlagatio" "utlagationis " feminine ; -- [FLXFJ] :: outlawry; utlagatus_M_N = mkN "utlagatus" ; -- [FLXFJ] :: outlaw; utlago_V = mkV "utlagare" ; -- [FLXFJ] :: outlaw; + utor_V = mkV "uti" "utor" "usus sum " ; -- [XXXAX] :: use, make use of, enjoy; enjoy the friendship of (with ABL); utpote_Adv = mkAdv "utpote" ; -- [DXXCS] :: as, in as much as; namely; inasmuch as; utputa_Adv = mkAdv "utputa" ; -- [DXXDS] :: as for example; namely; utquomque_Adv = mkAdv "utquomque" ; -- [XXXBO] :: whatever, as far as; in whatever manner/degree. no matter how/to what extent; @@ -33942,10 +36502,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg utrubique_Adv = mkAdv "utrubique" ; -- [XXXCO] :: in both places; on both parts/sides/cases/instances; on one side and the other; utrum_Adv = mkAdv "utrum" ; -- [XXXBO] :: whether; (introducing an indirect question); [utrum...an => whether...or]; utrumlibet_Adv = mkAdv "utrumlibet" ; -- [EXXFZ] :: on either side; whichever/wherever (side) you please; --- utrumnam_Conj : Conj utrumnam -- [EXXFP] :: whether; (Vulgate 1 Samuel 10:22); --- utut_Conj : Conj utut -- [XXXCO] :: however; in whatever way; + utrumnam_Conj = mkConj "utrumnam" missing ; -- [EXXFP] :: whether; (Vulgate 1 Samuel 10:22); + utut_Conj = mkConj "utut" missing ; -- [XXXCO] :: however; in whatever way; uva_F_N = mkN "uva" ; -- [XXXBX] :: grape; --- TODO uvesco_V : V2 uvesco, uvescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: become wet; + uvesco_V = mkV "uvescere" "uvesco" nonExist nonExist ; -- [XXXDX] :: become wet; uvidulus_A = mkA "uvidulus" "uvidula" "uvidulum" ; -- [XXXDX] :: wet, damp; uvidus_A = mkA "uvidus" "uvida" "uvidum" ; -- [XXXDX] :: wet, soaked, dripping; moistened with drinking; uvor_M_N = mkN "uvor" "uvoris " masculine ; -- [XXXFO] :: moisture; moistness (L+S); humidity; wetness (Ecc); dampness; @@ -33969,12 +36529,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg vacive_Adv = mkAdv "vacive" ; -- [BXXES] :: leisurely; vacivus_A = mkA "vacivus" "vaciva" "vacivum" ; -- [BXXES] :: empty; void; vaco_V = mkV "vacare" ; -- [XXXAX] :: be empty; be vacant; be idle; be free from, be unoccupied; + vacuefacio_V2 = mkV2 (mkV "vacuefacere" "vacuefacio" "vacuefeci" "vacuefactus ") ; -- [XXXCO] :: empty/free/clear place); make room; make vacant; disencumber; abolish (L+S); vacuitas_F_N = mkN "vacuitas" "vacuitatis " feminine ; -- [XXXCS] :: vacancy, empty space; absence of, freedom/exemption from; leisure, indolence; vacuo_V = mkV "vacuare" ; -- [XXXDX] :: empty; vacuus_A = mkA "vacuus" "vacua" "vacuum" ; -- [XXXBX] :: empty, vacant, unoccupied; devoid of, free of; vadimonium_N_N = mkN "vadimonium" ; -- [XXXDX] :: bail, security, surety; vadio_V = mkV "vadiare" ; -- [FLXFY] :: pledge (to meet debt); --- TODO vado_V : V2 vado, vadere, vasi, - -- Declension: 3rd -- Comment: [XXXBX] :: go, advance, rush, hurry; walk; + vado_V = mkV "vadare" ; -- [XXXDX] :: ford; + vado_V2 = mkV2 (mkV "vadere" "vado" "vasi" nonExist ) ; -- [XXXBX] :: go, advance, rush, hurry; walk; vador_V = mkV "vadari" ; -- [XXXDX] :: accept sureties from (the other party) for his appearance in court; vadosus_A = mkA "vadosus" "vadosa" "vadosum" ; -- [XXXDX] :: full of shallows; vadum_N_N = mkN "vadum" ; -- [XXXBX] :: shallow place, stream; ford, shoal; channel; @@ -33986,20 +36548,22 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg vagabundus_A = mkA "vagabundus" "vagabunda" "vagabundum" ; -- [XXXDS] :: strolling about; vagabond; roving/wandering; vage_Adv = mkAdv "vage" ; -- [XXXDX] :: so as to move in different directions over a wide area; vagina_F_N = mkN "vagina" ; -- [XXXDX] :: sheath, scabbard; --- TODO vagio_V : V2 vagio, vagire, vagivi, - -- Declension: 4th -- Comment: [XXXDX] :: utter cries of distress, wail, squall; + vagio_V2 = mkV2 (mkV "vagire" "vagio" "vagivi" nonExist ) ; -- [XXXDX] :: utter cries of distress, wail, squall; vagitus_M_N = mkN "vagitus" "vagitus " masculine ; -- [XXXDX] :: crying; vagor_V = mkV "vagari" ; -- [XXXBX] :: wander, roam; vagus_A = mkA "vagus" "vaga" "vagum" ; -- [XXXDX] :: roving, wandering; vah_Interj = ss "vah" ; -- [XXXCO] :: Ha!/oh!/ah!; (exclamation of pain/dismay, of contempt/anger, of surprise/joy); vaha_Interj = ss "vaha" ; -- [BXXCO] :: Ha!/oh!/ah!; (exclamation of pain/dismay, of contempt/anger, of surprise/joy); valde_Adv =mkAdv "valde" "valdius" "valdissime" ; -- [XXXBO] :: greatly/very/intensely; vigorously/strongly/powerfully/energetically; loudly; + valedico_V = mkV "valedicere" "valedico" "valedixi" "valedictus "; -- [XXXFO] :: say goodbye; + valefacio_V = mkV "valefacere" "valefacio" "valefeci" "valefactus "; -- [XXXFO] :: say goodbye; valens_A = mkA "valens" "valentis"; -- [XXXAO] :: strong; vigorous/healthy/robust; powerful/potent/effective; severe; influential; valenter_Adv =mkAdv "valenter" "valentius" "valentissime" ; -- [XXXCO] :: strongly/forcefully/powerfully/vigorously/sturdily; w/vigor of action/language; valentulus_A = mkA "valentulus" "valentula" "valentulum" ; -- [XXXDS] :: strong, stout; valeo_V = mkV "valere" ; -- [XXXAX] :: be strong/powerful/influential/healthy; prevail; [vale => goodbye/farewell]; valeriana_F_N = mkN "valeriana" ; -- [GXXEK] :: valerian, herbaceous plant of genus Valeriana; sedative drug from its root; valerianella_F_N = mkN "valerianella" ; -- [GXXEK] :: chew; --- TODO valesco_V : V2 valesco, valescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: become sound in health; become powerful; + valesco_V = mkV "valescere" "valesco" nonExist nonExist ; -- [XXXDX] :: become sound in health; become powerful; valet_V0 = mkV0 "valet" ; -- [XXXDX] :: farewell, goodbye, adieu (the Roman equivalent of "Live long and prosper"); valetudinarium_N_N = mkN "valetudinarium" ; -- [GXXEK] :: hospital; valetudo_F_N = mkN "valetudo" "valetudinis " feminine ; -- [XXXBX] :: good health, soundness; condition of body/health; illness, indisposition; @@ -34016,12 +36580,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg valor_M_N = mkN "valor" "valoris " masculine ; -- [XXXDX] :: valor; valorosus_A = mkA "valorosus" "valorosa" "valorosum" ; -- [GXXEK] :: brave; valorous; valva_F_N = mkN "valva" ; -- [XXXDX] :: double or folding door (usu. pl.), one leaf of the doors; --- TODO vanesco_V : V2 vanesco, vanescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: vanish, fade, disappear; + vanesco_V = mkV "vanescere" "vanesco" nonExist nonExist ; -- [XXXDX] :: vanish, fade, disappear; vanidicus_A = mkA "vanidicus" "vanidica" "vanidicum" ; -- [XXXFS] :: vain-speaking; vanidicus_M_N = mkN "vanidicus" ; -- [XXXFS] :: liar; vanilla_F_N = mkN "vanilla" ; -- [GXXEK] :: vanilla; vanilleus_A = mkA "vanilleus" "vanillea" "vanilleum" ; -- [GXXEK] :: vanilla-flavored; vaniloquentia_F_N = mkN "vaniloquentia" ; -- [XXXDX] :: idle talk, chatter; boastful speech; + vaniloquor_V = mkV "vaniloqui" "vaniloquor" "vanilocutus sum " ; -- [XXXDX] :: talk idly; vaniloquus_A = mkA "vaniloquus" "vaniloqua" "vaniloquum" ; -- [XXXEC] :: lying; boastful; vanitas_F_N = mkN "vanitas" "vanitatis " feminine ; -- [XXXDX] :: emptiness, untruthfulness; futility, foolishness, empty pride; vannus_M_N = mkN "vannus" ; -- [XXXDX] :: winnowing basket; @@ -34063,7 +36628,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg vastitas_F_N = mkN "vastitas" "vastitatis " feminine ; -- [XXXDX] :: desolation; devastation; vastities_F_N = mkN "vastities" "vastitiei " feminine ; -- [XXXDS] :: ruin; destruction; vasto_V = mkV "vastare" ; -- [XXXDX] :: lay waste, ravage, devastate; --- SLASHSTUFF vastus_A : A2 vastus, vasta -um, vastior -or -us, vastissimus -a -um -- [XXXBX] :: huge, vast; monstrous; + vastus_A = mkA "vastus" ; -- [XXXBX] :: huge, vast; monstrous; vasum_N_N = mkN "vasum" ; -- [XXXAO] :: vessel/dish; vase; pack/kit; utensil/instrument/tool; equipment/apparatus (pl.); vasus_M_N = mkN "vasus" ; -- [XXXAE] :: vessel/dish; vase; pack/kit; utensil/instrument/tool; equipment/apparatus (pl.); vates_M_N = mkN "vates" "vatis " masculine ; -- [XXXBO] :: prophet/seer, mouthpiece of deity; oracle, soothsayer; poet (divinely inspired); @@ -34077,7 +36642,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg vatis_F_N = mkN "vatis" "vatis " feminine ; -- [XXXBO] :: prophetess/ mouthpiece of deity; oracle/soothsayer; poetess (divinely inspired); vatius_A = mkA "vatius" "vatia" "vatium" ; -- [XXXFS] :: kept-outwards; bow-legged; vattium_N_N = mkN "vattium" ; -- [GSXEK] :: watt; --- IGNORED vav_N : N1 vav, undeclined -- N -- [DEQEW] :: vav; (6th letter of Hebrew alphabet); (transliterate as V); + vav_N = constN "vav" neuter ; -- [DEQEW] :: vav; (6th letter of Hebrew alphabet); (transliterate as V); vavasor_M_N = mkN "vavasor" "vavasoris " masculine ; -- [FLXFM] :: vavasour; under-tenant; (feudal); feudal tenant ranking right below baron (OED); vecordia_F_N = mkN "vecordia" ; -- [XXXDX] :: frenzy; vecors_A = mkA "vecors" "vecordis"; -- [XXXDX] :: mad; frenzied; @@ -34098,13 +36663,14 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg vegetatio_F_N = mkN "vegetatio" "vegetationis " feminine ; -- [FXXEM] :: power of growth; vegetation (Cal); vegetativus_A = mkA "vegetativus" "vegetativa" "vegetativum" ; -- [FBXDM] :: vegetative; capable of growth; vegeto_V2 = mkV2 (mkV "vegetare") ; -- [XXXCO] :: invigorate; impart energy to; --- SLASHSTUFF vegetus_A : A2 vegetus, vegeta -um, vegetior -or -us, vegetissimus -a -um -- [XXXBO] :: vigorous, active, energetic; invigorating; lively, bright, vivid, quick; + vegetus_A = mkA "vegetus" ; -- [XXXBO] :: vigorous, active, energetic; invigorating; lively, bright, vivid, quick; vegrandis_A = mkA "vegrandis" "vegrandis" "vegrande" ; -- [XXXDX] :: far from large, puny; vehemens_A = mkA "vehemens" "vehementis"; -- [XXXAX] :: violent, severe, vehement; emphatic, vigorous, lively; vehementer_Adv =mkAdv "vehementer" "vehementius" "vehementissime" ; -- [XXXDX] :: vehemently, vigorously; exceedingly, very much; vehiculum_N_N = mkN "vehiculum" ; -- [XXXDX] :: carriage, vehicle; + veho_V2 = mkV2 (mkV "vehere" "veho" "vexi" "vectus ") ; -- [XXXBX] :: bear, carry, convey; pass, ride, sail; vel_Adv = mkAdv "vel" ; -- [XXXBX] :: even, actually; or even, in deed; or; --- vel_Conj : Conj vel -- [XXXAX] :: or; [vel ... vel => either ... or]; + vel_Conj = mkConj "vel" missing ; -- [XXXAX] :: or; [vel ... vel => either ... or]; velamen_N_N = mkN "velamen" "velaminis " neuter ; -- [XXXCO] :: veil; for nun/Muslim); covering (esp. clothing for body/parts); velamentum_N_N = mkN "velamentum" ; -- [XXXDX] :: cover, olive-branch wrapped in wool carried by a suppliant; velarium_N_N = mkN "velarium" ; -- [XXXDS] :: awning; covering (over theater); @@ -34125,6 +36691,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg velleianus_A = mkA "velleianus" "velleiana" "velleianum" ; -- [XLXES] :: Vellaean; of Vellaean Law; (on woemn's rights); vellicatim_Adv = mkAdv "vellicatim" ; -- [XXXFS] :: piecemeal; (by pinches); vellico_V = mkV "vellicare" ; -- [XXXDX] :: pinch, nip; criticize carpingly; + vello_V2 = mkV2 (mkV "vellere" "vello" "vulsi" "vulsus ") ; -- [XXXAO] :: pluck/pull/tear out; extract; pull hair/plants; uproot; depilate; demolish; vellus_N_N = mkN "vellus" "velleris " neuter ; -- [XXXBX] :: fleece; velo_V = mkV "velare" ; -- [XXXBX] :: veil, cover, cover up; enfold, wrap, envelop; hide, conceal; clothe in; velocitas_F_N = mkN "velocitas" "velocitatis " feminine ; -- [XXXDX] :: speed, swiftness; velocity; @@ -34153,6 +36720,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg vendito_V = mkV "venditare" ; -- [XXXDX] :: offer for sale; cry up; pay court (to); venditor_M_N = mkN "venditor" "venditoris " masculine ; -- [XXXCO] :: seller/vendor; one who sells for bribes or corrupt payments; venditrix_F_N = mkN "venditrix" "venditricis " feminine ; -- [XLXES] :: female seller; + vendo_V2 = mkV2 (mkV "vendere" "vendo" "vendidi" "venditus ") ; -- [XXXAX] :: sell; venefica_F_N = mkN "venefica" ; -- [XXXCO] :: witch, sorceress, enchantress; hag; jade; poisoner (female); mixer of poisons; veneficium_N_N = mkN "veneficium" ; -- [XXXCI] :: magic/sorcery; poisoning; crime of poisoning; mixing of poison; poisoned drink; veneficus_A = mkA "veneficus" "venefica" "veneficum" ; -- [XXXDX] :: of/connected with sorcery/charms, sorcerous, magic; poisoning, poisonous; @@ -34161,7 +36729,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg venenifer_A = mkA "venenifer" "venenifera" "veneniferum" ; -- [XXXDX] :: venomous; containing poison; veneno_V = mkV "venenare" ; -- [XXXDX] :: imbue or infect with poison; injure by slander; venenum_N_N = mkN "venenum" ; -- [XXXBX] :: poison; drug; --- TODO veneo_V : V1 veneo, venire, venivi(ii), venitus -- [XXXBO] :: go for sale, be sold (as slave), be disposed of for (dishonorable/venal) gain; + veneo_1_V = mkV "venire" "veneo" "venivi" "venitus" ; -- [XXXBO] :: go for sale, be sold (as slave), be disposed of for (dishonorable/venal) gain; + veneo_2_V = mkV "venire" "veneo" "venii" "venitus" ; -- [XXXBO] :: go for sale, be sold (as slave), be disposed of for (dishonorable/venal) gain; venerabilis_A = mkA "venerabilis" "venerabilis" "venerabile" ; -- [XXXBX] :: venerable, august; venerabundus_A = mkA "venerabundus" "venerabunda" "venerabundum" ; -- [XXXDX] :: expressing religious awe (towards); veneranter_Adv = mkAdv "veneranter" ; -- [XXXFS] :: reverently; @@ -34173,6 +36742,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg venetus_A = mkA "venetus" "veneta" "venetum" ; -- [XXXEO] :: blue; sea blue; blue-green (Cal); venetus_M_N = mkN "venetus" ; -- [XXXDO] :: blue; (racing faction/team of Roman circus); venia_F_N = mkN "venia" ; -- [XXXBX] :: favor, kindness; pardon; permission; indulgence; + venio_V2 = mkV2 (mkV "venire" "venio" "veni" "ventus ") ; -- [XXXAX] :: come; vennucula_F_N = mkN "vennucula" ; -- [XAXEC] :: kind of grape; venor_V = mkV "venari" ; -- [XXXBX] :: hunt; venosus_A = mkA "venosus" "venosa" "venosum" ; -- [XBXFS] :: full of veins; dry; @@ -34219,7 +36789,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg vere_Adv =mkAdv "vere" "verius" "verissime" ; -- [XXXBO] :: really, truly, actually, indeed; rightly, correctly, exactly; truthfully; verecundia_F_N = mkN "verecundia" ; -- [XXXDX] :: shame; respect; modesty; verecundor_V = mkV "verecundari" ; -- [XXXDO] :: show modesty/restraint; be shy/diffident (of doing w/inf); feel bashful/ashamed; --- SLASHSTUFF verecundus_A : A2 verecundus, verecunda -um, verecundior -or -us, verecundissimus -a -um -- [XXXDX] :: modest; + verecundus_A = mkA "verecundus" ; -- [XXXDX] :: modest; veredictum_N_N = mkN "veredictum" ; -- [FLXFJ] :: true-speaking; truth; veredus_M_N = mkN "veredus" ; -- [XXXEC] :: swift horse, hunter; verendum_N_N = mkN "verendum" ; -- [XBXEO] :: external sexual organs, private parts (pl.); [partes ~ae => private parts]; @@ -34228,7 +36798,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg veretilla_F_N = mkN "veretilla" ; -- [XAXFO] :: fish (unidentified); (so called from resemblance to male sex organ); veretrum_N_N = mkN "veretrum" ; -- [XBXDO] :: external (usu. male) sex organ; penis; verfico_V2 = mkV2 (mkV "verficare") ; -- [FXXEF] :: verify, confirm the truth/authenticity of; show to be true by evidence; --- TODO vergo_V : V2 vergo, vergere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: incline, lie, slope; + vergo_V = mkV "vergere" "vergo" nonExist nonExist ; -- [XXXDX] :: incline, lie, slope; vergobretus_M_N = mkN "vergobretus" ; -- [XXXDX] :: minister of justice, executive (of the Aedui); vericulum_N_N = mkN "vericulum" ; -- [FXXEK] :: skewer (instrument); veridicus_A = mkA "veridicus" "veridica" "veridicum" ; -- [XXXEC] :: truthful; @@ -34256,9 +36826,10 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg verres_M_N = mkN "verres" "verris " masculine ; -- [XXXDX] :: boar, uncastrated male hog/swine; wild boar; verrinus_A = mkA "verrinus" "verrina" "verrinum" ; -- [XXXEC] :: of a boar; verris_M_N = mkN "verris" "verris " masculine ; -- [XXXDX] :: boar; uncastrated male hog/swine; wild boar; + verro_V2 = mkV2 (mkV "verrere" "verro" "verri" "versus ") ; -- [XXXDX] :: sweep clean; sweep together; sweep (to the ground); skim, sweep; sweep along; verruca_F_N = mkN "verruca" ; -- [XXXDX] :: wart; excrescence on skin/other things; projection on earth's surface/hill; verrucosus_A = mkA "verrucosus" "verrucosa" "verrucosum" ; -- [XXXDS] :: warty; rugged; --- TODO verrunco_V : V2 verrunco, verruncere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: turn out; (w/bene, turn out well, have a fortunate outcome); + verrunco_V = mkV "verruncere" "verrunco" nonExist nonExist ; -- [XXXDX] :: turn out; (w/bene, turn out well, have a fortunate outcome); verrutum_N_N = mkN "verrutum" ; -- [DWXEZ] :: pike; versabundus_A = mkA "versabundus" "versabunda" "versabundum" ; -- [XXXDX] :: revolving; versara_F_N = mkN "versara" ; -- [XXXDX] :: loan; [versaram facere => get a loan]; @@ -34274,9 +36845,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg versipellis_M_N = mkN "versipellis" "versipellis " masculine ; -- [XXXEO] :: shape-changer, who can metamorphose to different shape; double-dealer (Vulgate); verso_V = mkV "versare" ; -- [XXXAX] :: keep turning/going round, spin, whirl; turn over and over; stir; maneuver; versor_V = mkV "versari" ; -- [XXXDX] :: move about; live, dwell; be; - versum_Acc_Prep = mkPrep "versum" Acc ; -- [XXXCO] :: toward, in the direction of; (placed after ACC); -ward (after name of town); + versum_Acc_Prep = mkPrep "versum" acc ; -- [XXXCO] :: toward, in the direction of; (placed after ACC); -ward (after name of town); versum_Adv = mkAdv "versum" ; -- [XXXCO] :: toward, in the direction of; in specified direction; towards quarter named; - versus_Acc_Prep = mkPrep "versus" Acc ; -- [XXXCO] :: toward, in the direction of; (placed after ACC); -ward (after name of town); + versus_Acc_Prep = mkPrep "versus" acc ; -- [XXXCO] :: toward, in the direction of; (placed after ACC); -ward (after name of town); versus_Adv = mkAdv "versus" ; -- [XXXCO] :: toward, in the direction of; in specified direction; towards quarter named; versus_M_N = mkN "versus" "versus " masculine ; -- [XPXBO] :: line, verse; furrow, ground traversed before turn; row/string, bench (rowers); versutia_F_N = mkN "versutia" ; -- [XXXDX] :: cunning, craft; @@ -34289,17 +36860,19 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg verticitas_F_N = mkN "verticitas" "verticitatis " feminine ; -- [FXXFM] :: vertical direction; verticosus_A = mkA "verticosus" "verticosa" "verticosum" ; -- [XXXDX] :: full of whirlpools or eddies; vertigo_F_N = mkN "vertigo" "vertiginis " feminine ; -- [XXXCO] :: gyration/rotation, whirling/spinning movement; giddiness, dizziness; changing; + verto_V2 = mkV2 (mkV "vertere" "verto" "verti" "versus ") ; -- [XXXAX] :: turn, turn around; change, alter; overthrow, destroy; veru_N_N = mkN "veru" "verus " neuter ; -- [XXXCO] :: spit (for roasting meat); point of javelin/weapon; spiked railing (pl.); verum_Adv = mkAdv "verum" ; -- [XXXDX] :: yes; in truth; certainly; truly, to be sure; however; (rare form, usu. vero); verum_N_N = mkN "verum" ; -- [XXXDX] :: truth, reality, fact; --- verumtamen_Conj : Conj verumtamen -- [XXXDX] :: but yet, nevertheless, but even so, still (resuming after digression); --- SLASHSTUFF verus_A : A2 verus, vera -um, verior -or -us, verissimus -a -um -- [XXXAX] :: true, real, genuine, actual; properly named; well founded; right, fair, proper; + verumtamen_Conj = mkConj "verumtamen" missing ; -- [XXXDX] :: but yet, nevertheless, but even so, still (resuming after digression); + verus_A = mkA "verus" ; -- [XXXAX] :: true, real, genuine, actual; properly named; well founded; right, fair, proper; verutum_N_N = mkN "verutum" ; -- [XXXDX] :: dart; verutus_A = mkA "verutus" "veruta" "verutum" ; -- [XXXEC] :: armed with a javelin; vervex_M_N = mkN "vervex" "vervis " masculine ; -- [XXXDX] :: wether (castrated male sheep); stupid/sluggish person; vesania_F_N = mkN "vesania" ; -- [XXXDX] :: madness, frenzy; vesaniens_A = mkA "vesaniens" "vesanientis"; -- [XXXDX] :: raging, frenzied; vesanus_A = mkA "vesanus" "vesana" "vesanum" ; -- [XXXDX] :: mad, frenzied; wild; + vescor_V = mkV "vesci" "vescor" nonExist ; -- [XXXDX] :: feed on, eat, enjoy (with ABL); vescus_A = mkA "vescus" "vesca" "vescum" ; -- [XXXDX] :: thin, attenuated; vesica_F_N = mkN "vesica" ; -- [XXXDX] :: bladder; balloon; vesicuia_F_N = mkN "vesicuia" ; -- [XXXDX] :: small bladder-like formation; @@ -34307,7 +36880,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg vespa_F_N = mkN "vespa" ; -- [XXXDX] :: wasp; vesper_M_N = mkN "vesper" "vesperis " masculine ; -- [XXXBX] :: evening; evening star; west; vespera_F_N = mkN "vespera" ; -- [XXXDX] :: evening, even-tide; --- TODO vesperasco_V : V2 vesperasco, vesperascere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: grow towards evening; grow dark; + vesperasco_V = mkV "vesperascere" "vesperasco" nonExist nonExist ; -- [XXXDX] :: grow towards evening; grow dark; + vesperasct_V0 = mkV0 "vesperasct"; -- [XXXDX] :: to become evening, grow towards evening; it is growing late; vesperi_Adv = mkAdv "vesperi" ; -- [XXXDX] :: in the evening; vespertilio_M_N = mkN "vespertilio" "vespertilionis " masculine ; -- [XAXEO] :: bat; (night flying mammal); vespertinus_A = mkA "vespertinus" "vespertina" "vespertinum" ; -- [XXXDX] :: evening; @@ -34319,15 +36893,18 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg vestigium_N_N = mkN "vestigium" ; -- [XXXBX] :: step, track; trace; footstep; vestigo_V = mkV "vestigare" ; -- [XXXDX] :: track down, search for; search out; try to find out by searching; investigate; vestimentum_N_N = mkN "vestimentum" ; -- [XXXBX] :: garment, robe; clothes; + vestio_V2 = mkV2 (mkV "vestire" "vestio" "vestivi" "vestitus ") ; -- [XXXBX] :: clothe; vestiplica_F_N = mkN "vestiplica" ; -- [XXXFS] :: clothes-folder; she who folds clothes; vestis_F_N = mkN "vestis" "vestis " feminine ; -- [XXXAX] :: garment, clothing, blanket; clothes; robe; vestispica_F_N = mkN "vestispica" ; -- [XXXDS] :: wardrobe mistress/maid/woman, she who has care of clothing; vestitus_M_N = mkN "vestitus" "vestitus " masculine ; -- [XXXDX] :: clothing; veter_A = mkA "veter" "vetera" "veterum" ; -- [BXXDX] :: old; long established; veteran, bygone; chronic; veteranus_A = mkA "veteranus" "veterana" "veteranum" ; -- [XXXDX] :: old, veteran; + veterasco_V = mkV "veterascere" "veterasco" nonExist nonExist; -- [XXXEO] :: become long-established; grow old (Cas); veterator_M_N = mkN "veterator" "veteratoris " masculine ; -- [XXXCO] :: old hand (often derogatory); experienced practitioner; experienced slave; veteratorie_Adv = mkAdv "veteratorie" ; -- [XXXEO] :: adroitly; in a practiced manner; cunningly, craftily (Cas); veteratorius_A = mkA "veteratorius" "veteratoria" "veteratorium" ; -- [XXXEO] :: adroit, wily, cunning, crafty; (acquired); bearing mark of practice/experience; + veteresco_V = mkV "veterescere" "veteresco" nonExist nonExist; -- [XXXFO] :: age; veterinarius_M_N = mkN "veterinarius" ; -- [GXXEK] :: veterinary; veterinus_A = mkA "veterinus" "veterina" "veterinum" ; -- [XAXEC] :: of draft, draft; [w/bestia => beast of burden]; veternosus_A = mkA "veternosus" "veternosa" "veternosum" ; -- [XXXES] :: lethargic; @@ -34417,7 +36994,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg vigentia_F_N = mkN "vigentia" ; -- [FXXEL] :: vigor; authority; vigeo_V = mkV "vigere" ; -- [XXXBX] :: be strong/vigorous; thrive, flourish, bloom/blossom; be active, be effective; vigerius_M_N = mkN "vigerius" ; -- [FEXEM] :: vicarage; verger, provost (Nelson); --- TODO vigesco_V : V2 vigesco, vigescere, vigui, - -- Declension: 3rd -- Comment: [XXXDX] :: acquire strength; + vigesco_V2 = mkV2 (mkV "vigescere" "vigesco" "vigui" nonExist ) ; -- [XXXDX] :: acquire strength; vigies_Adv = mkAdv "vigies" ; -- [FXXFS] :: twenty times; (mis-reading of vicies); vigil_A = mkA "vigil" "vigilis"; -- [XXXCO] :: awake, wakeful; watchful; alert, vigilant, paying attention; vigil_M_N = mkN "vigil" "vigilis " masculine ; -- [XXXBO] :: sentry, guard; fireman, member of Roman fire/police brigade; watchman; @@ -34436,11 +37013,12 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg vigoratus_A = mkA "vigoratus" "vigorata" "vigoratum" ; -- [FXXEN] :: stout, hale, hearty; vigoro_V = mkV "vigorare" ; -- [EXXES] :: animate; invigorate; gain strength; vigorosus_A = mkA "vigorosus" "vigorosa" "vigorosum" ; -- [FXXEM] :: vigorous, strong; + vilesco_V = mkV "vilescere" "vilesco" "vilui" nonExist; -- [DXXCS] :: become worthless/bad/vile; vilica_F_N = mkN "vilica" ; -- [XXXDX] :: wife of a farm overseer; vilicatio_M_N = mkN "vilicatio" "vilicationis " masculine ; -- [XAXEO] :: function of a farm overseer (slave/free) or estate manager; vilico_V = mkV "vilicare" ; -- [XAXCO] :: perform duties of farm overseer; act as overseer of estate/public property; vilicus_M_N = mkN "vilicus" ; -- [XXXDX] :: farm overseer (slave/free), estate manager; grade of imperial/public servant; --- TODO vilipendo_V : V2 vilipendo, vilipendere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: despise, slight; + vilipendo_V = mkV "vilipendere" "vilipendo" nonExist nonExist ; -- [XXXDX] :: despise, slight; vilipensio_F_N = mkN "vilipensio" "vilipensionis " feminine ; -- [FXXEM] :: disparagement; contempt; vilis_A = mkA "vilis" "vilis" "vile" ; -- [XXXAX] :: cheap, common, mean, worthless; vilitas_F_N = mkN "vilitas" "vilitatis " feminine ; -- [XXXDX] :: cheapness; worthlessness; @@ -34462,7 +37040,9 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg vinaceus_A = mkA "vinaceus" "vinacea" "vinaceum" ; -- [XXXEC] :: of/belonging to wine or a grape; vinarium_N_N = mkN "vinarium" ; -- [XXXDX] :: wine flask/jar; vinarius_M_N = mkN "vinarius" ; -- [XXXDX] :: vintner, wine merchant; + vincio_V2 = mkV2 (mkV "vincire" "vincio" "vinxi" "vinctus ") ; -- [XXXBX] :: bind, fetter; restrain; vinclum_N_N = mkN "vinclum" ; -- [XXXAX] :: chain, bond, fetter; imprisonment (pl.); + vinco_V2 = mkV2 (mkV "vincere" "vinco" "vici" "victus ") ; -- [XXXAX] :: conquer, defeat, excel; outlast; succeed; vinculum_N_N = mkN "vinculum" ; -- [XXXAX] :: chain, bond, fetter; imprisonment (pl.); vindemia_F_N = mkN "vindemia" ; -- [XXXDX] :: grape-gathering; produce of a vineyard in any given year; vindemiator_M_N = mkN "vindemiator" "vindemiatoris " masculine ; -- [XAXCO] :: grape-picker; @@ -34510,7 +37090,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg virens_A = mkA "virens" "virentis"; -- [GAXEQ] :: green; (in reference to plants); (Dell); virens_N_N = mkN "virens" "virentiis " neuter ; -- [DAXFS] :: plants (pl.); herbage; vireo_V = mkV "virere" ; -- [XXXBX] :: be green or verdant; be lively or vigorous; be full of youthful vigor; --- TODO viresco_V : V2 viresco, virescere, -, - -- Declension: 3rd -- Comment: [XXXDX] :: turn green; + viresco_V = mkV "virescere" "viresco" nonExist nonExist ; -- [XXXDX] :: turn green; virga_F_N = mkN "virga" ; -- [XXXBX] :: twig, sprout, stalk; switch, rod; staff, wand; stripe/streak; scepter (Plater); virgatus_A = mkA "virgatus" "virgata" "virgatum" ; -- [XXXDX] :: made of twigs striped; virgetum_N_N = mkN "virgetum" ; -- [XXXEC] :: osier-bed, thicket of rods/willows; @@ -34571,6 +37151,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg visitatorius_A = mkA "visitatorius" "visitatoria" "visitatorium" ; -- [GXXEK] :: of visiting; visito_V = mkV "visitare" ; -- [XXXBX] :: visit, call upon; see frequently/habitually; visnetum_N_N = mkN "visnetum" ; -- [FLXFJ] :: locality(?); [in proximo visneto => in vicinity]; + viso_V2 = mkV2 (mkV "visere" "viso" "visi" "visus ") ; -- [XXXBX] :: visit, go to see; look at; visocaseta_F_N = mkN "visocaseta" ; -- [GXXEK] :: video-cassette; vison_M_N = mkN "vison" "visontis " masculine ; -- [XXXDX] :: bison; wild ox; visorius_A = mkA "visorius" "visoria" "visorium" ; -- [GXXEK] :: showing; indicating; @@ -34628,12 +37209,13 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg vivatus_A = mkA "vivatus" "vivata" "vivatum" ; -- [XXXDS] :: animated; vivax_A = mkA "vivax" "vivacis"; -- [XXXCO] :: long-lived, tenacious of life; lively, vigorous, energetic; high-spirited; viverra_F_N = mkN "viverra" ; -- [XAXEO] :: ferret/similar animal; --- TODO vivesco_V : V2 vivesco, vivescere, vixi, - -- Declension: 3rd -- Comment: [XXXDX] :: come to life; begin to live; become lively; + vivesco_V2 = mkV2 (mkV "vivescere" "vivesco" "vixi" nonExist ) ; -- [XXXDX] :: come to life; begin to live; become lively; vividus_A = mkA "vividus" "vivida" "vividum" ; -- [XXXDX] :: lively, vigorous spirited lifelike; vivifico_V = mkV "vivificare" ; -- [EEXDX] :: bring back to life; make live; vivificus_A = mkA "vivificus" "vivifica" "vivificum" ; -- [FXXDM] :: live-giving, life-restoring; viviradix_F_N = mkN "viviradix" "viviradicis " feminine ; -- [XXXEC] :: cutting with a root, a layer; --- TODO vivisco_V : V2 vivisco, viviscere, -, - -- Declension: 3rd -- Comment: [XXXES] :: come to life; begin to live; become lively; (vivescere); + vivisco_V = mkV "viviscere" "vivisco" nonExist nonExist ; -- [XXXES] :: come to life; begin to live; become lively; (vivescere); + vivo_V2 = mkV2 (mkV "vivere" "vivo" "vixi" "victus ") ; -- [XXXAX] :: be alive, live; survive; reside; vivus_A = mkA "vivus" "viva" "vivum" ; -- [XXXAX] :: alive, fresh; living; vix_Adv = mkAdv "vix" ; -- [XXXAO] :: hardly, scarcely, barely, only just; with difficulty, not easily; reluctantly; vixdum_Adv = mkAdv "vixdum" ; -- [XXXCO] :: scarcely yet, only just; @@ -34696,6 +37278,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg volutabundus_A = mkA "volutabundus" "volutabunda" "volutabundum" ; -- [XXXEC] :: rolling, wallowing; voluto_V = mkV "volutare" ; -- [XXXDX] :: roll, wallow, turn over in one's mind, think or talk over; volva_F_N = mkN "volva" ; -- [XBXCO] :: womb/uterus/matrix; (esp. sow's); female sexual organ; (seed) covering (L+S); + volvo_V2 = mkV2 (mkV "volvere" "volvo" "volvi" "volutus ") ; -- [XXXAO] :: ||roll along/forward; (PASS) move sinuously (snake); grovel, roll on ground; vomer_M_N = mkN "vomer" "vomeris " masculine ; -- [XXXDX] :: plowshare; stylus (for writing with (L+S); (metaphor for penis); vomica_F_N = mkN "vomica" ; -- [XXXCO] :: abscess, boil, gathering of pus; gathering of fluid found in minerals; vomitio_F_N = mkN "vomitio" "vomitionis " feminine ; -- [XXXCO] :: vomit; vomited matter; act of vomiting; @@ -34703,15 +37286,16 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg vomitor_M_N = mkN "vomitor" "vomitoris " masculine ; -- [XXXFO] :: one who vomits, vomiter; vomitorius_A = mkA "vomitorius" "vomitoria" "vomitorium" ; -- [XXXEO] :: emetic, that is used to provoke vomiting; vomitus_M_N = mkN "vomitus" "vomitus " masculine ; -- [XXXCO] :: vomit; vomited matter; act of vomiting; + vomo_V2 = mkV2 (mkV "vomere" "vomo" "vomui" "vomitus ") ; -- [XXXDX] :: be sick, vomit; discharge, spew out; belch out; voracitas_F_N = mkN "voracitas" "voracitatis " feminine ; -- [XXXEZ] :: voracity; voraginosus_A = mkA "voraginosus" "voraginosa" "voraginosum" ; -- [XXXFS] :: pit-filled; full of pits; full of chasms; vorago_F_N = mkN "vorago" "voraginis " feminine ; -- [XXXDX] :: deep hole, chasm, watery hollow; vorax_M_N = mkN "vorax" "voracis " masculine ; -- [XXXDX] :: ravenous; insatiable; devouring; voro_V = mkV "vorare" ; -- [XXXDX] :: swallow, devour; vorsipellis_M_N = mkN "vorsipellis" "vorsipellis " masculine ; -- [XXXEO] :: shape-changer, who can metamorphose to different shape; double-dealer (Vulgate); - vorsum_Acc_Prep = mkPrep "vorsum" Acc ; -- [BXXCO] :: toward, in the direction of; (placed after ACC); -ward (after name of town); + vorsum_Acc_Prep = mkPrep "vorsum" acc ; -- [BXXCO] :: toward, in the direction of; (placed after ACC); -ward (after name of town); vorsum_Adv = mkAdv "vorsum" ; -- [BXXCO] :: toward, in the direction of; in specified direction; towards quarter named; - vorsus_Acc_Prep = mkPrep "vorsus" Acc ; -- [BXXCO] :: toward, in the direction of; (placed after ACC); -ward (after name of town); + vorsus_Acc_Prep = mkPrep "vorsus" acc ; -- [BXXCO] :: toward, in the direction of; (placed after ACC); -ward (after name of town); vorsus_Adv = mkAdv "vorsus" ; -- [BXXCO] :: toward, in the direction of; in specified direction; towards quarter named; vortex_M_N = mkN "vortex" "vorticis " masculine ; -- [XXXDX] :: whirlpool, eddy, vortex; crown of the head; peak, top, summit; the pole; voster_A = mkA "voster" "vostra" "vostrum" ; -- [AXXBO] :: your (pl.), of/belonging to/associated with you; @@ -34731,7 +37315,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg vulnero_V2 = mkV2 (mkV "vulnerare") ; -- [XXXBO] :: wound/injure/harm, pain/distress; inflict wound on; damage (things/interest of); vulnificus_A = mkA "vulnificus" "vulnifica" "vulnificum" ; -- [XXXCO] :: causing wounds; vulnus_N_N = mkN "vulnus" "vulneris " neuter ; -- [XXXAO] :: wound; mental/emotional hurt; injury to one's interests; wound of love; --- TODO vulo_V : V1 vulo, -, -, - -- [XXXEX] :: wish, want, prefer; be willing, will; + vulo_V = mkV0 "vulo" ; -- [XXXEX] :: wish, want, prefer; be willing, will; vulpecula_F_N = mkN "vulpecula" ; -- [XXXDX] :: fox (little); vulpes_F_N = mkN "vulpes" "vulpis " feminine ; -- [XAXBX] :: fox; vulticulus_M_N = mkN "vulticulus" ; -- [XXXEC] :: look, aspect; @@ -34773,8 +37357,8 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg zaeta_F_N = mkN "zaeta" ; -- [XBXFS] :: |diet, regimen; course of treatment, way/mode of living prescribed by physician; zagon_M_N = mkN "zagon" "zagonis " masculine ; -- [XSXEO] :: diagonal line, line from one angle to an opposite; (geometry); zagonus_M_N = mkN "zagonus" ; -- [XSXEO] :: diagonal line, line from one angle to an opposite; (geometry); --- IGNORED zai_N : N1 zai, undeclined -- N -- [DEQEW] :: zayin; (7th letter of Hebrew alphabet); (transliterate as Z); --- IGNORED zain_N : N1 zain, undeclined -- N -- [EEQEE] :: zayin; (7th letter of Hebrew alphabet); (transliterate as Z); + zai_N = constN "zai" neuter ; -- [DEQEW] :: zayin; (7th letter of Hebrew alphabet); (transliterate as Z); + zain_N = constN "zain" neuter ; -- [EEQEE] :: zayin; (7th letter of Hebrew alphabet); (transliterate as Z); zamia_F_N = mkN "zamia" ; -- [XBXEO] :: injury; damage;; hurt (L+S); loss; zea_F_N = mkN "zea" ; -- [XAXEO] :: grain; emmer wheat (Triticum diciccum); spelt (T. spelta L+S); rosemary (kind); zebra_C_N = mkN "zebra" ; -- [GXXEK] :: zebra; @@ -34783,7 +37367,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg zelotypia_F_N = mkN "zelotypia" ; -- [XXXDX] :: jealousy; zelotypus_A = mkA "zelotypus" "zelotypa" "zelotypum" ; -- [XXXDX] :: jealous; zelus_M_N = mkN "zelus" ; -- [XXXEO] :: jealousy; spirit of rivalry/emulation, partisanship; zeal (L+S); fervor; --- IGNORED zenith_N : N1 zenith, undeclined -- N -- [GXXEK] :: zenith; + zenith_N = constN "zenith" neuter ; -- [GXXEK] :: zenith; zenodochium_N_N = mkN "zenodochium" ; -- [FXXEM] :: guest-house; inn, caravansary; hospital/home for strangers/travelers; hospice; zeroticus_A = mkA "zeroticus" "zerotica" "zeroticum" ; -- [GXXEK] :: zero (adj.); zerum_N_N = mkN "zerum" ; -- [GXXEK] :: zero; @@ -34792,7 +37376,7 @@ concrete DictLat of DictLatAbs = CatLat,StructuralLat-[here_Adv],LexiconLat-[leg zimmarra_F_N = mkN "zimmarra" ; -- [FEXFE] :: cassock w/small cape; zingiber_N_N = mkN "zingiber" "zingiberis " neuter ; -- [GXXEK] :: ginger; zinzio_V = mkV "zinziare" ; -- [XXXDX] :: zinzie; (expressing the sound made by a blackbird); --- IGNORED zio_N : N1 zio, undeclined -- N -- [EEQEW] :: ziv, Hebrew name of ancient second month; (meaning splendor/flowering); + zio_N = constN "zio" neuter ; -- [EEQEW] :: ziv, Hebrew name of ancient second month; (meaning splendor/flowering); zizania_F_N = mkN "zizania" ; -- [EAXCP] :: cockle, darnel, tares, wild vetch; (noxious weed in the grain); zizanium_N_N = mkN "zizanium" ; -- [DAXDS] :: cockle, darnel, tares, wild vetch; (noxious weed in the grain); ziziphum_N_N = mkN "ziziphum" ; -- [DAXNS] :: jujube plant (Pliny); diff --git a/src/latin/DictLatAbs.gf b/src/latin/DictLatAbs.gf index dfaf0a2fc..10697e583 100644 --- a/src/latin/DictLatAbs.gf +++ b/src/latin/DictLatAbs.gf @@ -1,5 +1,5 @@ ---# -path=.:.. -abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { +--# -path=.:..:latin +abstract DictLatAbs = Cat ** { -- extracted from http://archives.nd.edu/whitaker/dictpage.htm fun A_N : N ; @@ -67,8 +67,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Aminneus_A : A ; Aminnius_A : A ; Ammanites_M_N : N ; + Ammanitis_1_N : N ; -- [EXQEW] :: Ammonite woman, inhabitant of Ammon (land north-east of the Dead Sea); + Ammanitis_2_N : N ; Ammanitis_A : A ; - Ammanitis_N : N ; Ammineus_A : A ; Andreas_M_N : N ; Androgeosos_M_N : N ; @@ -162,7 +163,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Azotus_F_N : N ; Azrael_N : N ; Baal_N : N ; - Babylon_N : N ; + Babylon_1_N : N ; -- [XXQFO] :: Babylon (city on Euphrates, capital of Babylonia); people of Babylon; + Babylon_2_N : N ; Babylonia_F_N : N ; Babylonius_A : A ; Babylonius_M_N : N ; @@ -250,7 +252,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Cereale_N_N : N ; Cerealis_A : A ; Ceres_F_N : N ; - Chalcis_N : N ; + Chalcis_1_N : N ; -- [XXXEO] :: Chalcis; (several towns in Greece/elsewhere, esp. chief city of Euboea); + Chalcis_2_N : N ; Chaldaeus_A : A ; Chaldaeus_M_N : N ; Chaldaicus_A : A ; @@ -280,7 +283,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Christicola_M_N : N ; Christifer_A : A ; Christifidelis_A : A ; - Christifidelis_F_N : N ; + Christifidelis_F_N : N ; -- [FEXEE] :: one of Christian faithful; follower of Christ; Christifidelis_M_N : N ; Christigenus_A : A ; Christipotens_A : A ; @@ -319,7 +322,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Constantius_M_N : N ; Consualium_N_N : N ; Consus_M_N : N ; - Conventualis_F_N : N ; + Conventualis_F_N : N ; -- [FEXFE] :: Conventual Franciscan; Conventualis_M_N : N ; Copta_M_N : N ; Corduba_F_N : N ; @@ -340,7 +343,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Cupido_M_N : N ; Curena_F_N : N ; Curene_F_N : N ; - Cyclops_N : N ; + Cyclops_1_N : N ; -- [XYXCO] :: Cyclops; one of the Cyclopes (one-eyed giants of Sicily); (esp. Polyphemus); + Cyclops_2_N : N ; Cydonea_F_N : N ; Cydonia_F_N : N ; Cynosura_F_N : N ; @@ -437,7 +441,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Esther_N : N ; Euhios_M_N : N ; Euhius_M_N : N ; - Euminis_N : N ; + Euminis_1_N : N ; -- [XEXEO] :: Fury/Eumenide; (usu. pl.); (euphemistically) the gracious/benevolent ones; + Euminis_2_N : N ; Euphrates_M_N : N ; Europa_F_N : N ; Eusebius_M_N : N ; @@ -488,7 +493,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Germanus_M_N : N ; Gigans_M_N : N ; Giganteus_A : A ; - Gigas_N : N ; + Gigas_1_N : N ; -- [XYXCO] :: giant; Giant; the Giants (pl.); (race defeated by the Olympians); + Gigas_2_N : N ; Gnaeus_M_N : N ; Gordianus_M_N : N ; Gothicus_A : A ; @@ -655,8 +661,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Lemannus_M_N : N ; Leo_M_N : N ; Leodium_N_N : N ; - Lesbias_N : N ; - Lesbis_N : N ; + Lesbias_1_N : N ; -- [XXHEO] :: Lesbian woman, woman from the island of Lesbos; precious stone from Lesbos; + Lesbias_2_N : N ; + Lesbis_1_N : N ; -- [XXHEO] :: Lesbian woman, woman from the island of Lesbos; + Lesbis_2_N : N ; Lesbium_N_N : N ; Lesbius_A : A ; Lesbos_F_N : N ; @@ -698,10 +706,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Macedonicus_A : A ; Macedonienis_A : A ; Macedonius_A : A ; + Madianitis_1_F_N : N ; -- [EXQFW] :: Madianite/Midianite, person from Madian/Midian; + Madianitis_1_M_N : N ; -- [EXQFW] :: Madianite/Midianite, person from Madian/Midian; + Madianitis_2_F_N : N ; -- [EXQFW] :: Madianite/Midianite, person from Madian/Midian; + Madianitis_2_M_N : N ; Madianitis_A : A ; - Madianitis_N : N ; + Maenas_1_N : N ; -- [XXXDX] :: Bacchante, female votary of Bacchus; inspired/frenzied woman; + Maenas_2_N : N ; Maenas_F_N : N ; - Maenas_N : N ; Magdalena_F_N : N ; Mahometanus_M_N : N ; Mai_A : A ; @@ -742,8 +754,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Mithridates_M_N : N ; Mitridates_M_N : N ; Moabites_M_N : N ; + Moabitis_1_N : N ; -- [EXQES] :: Moabite woman, inhabitant of Moab (land north of the Dead Sea); + Moabitis_2_N : N ; Moabitis_A : A ; - Moabitis_N : N ; Montepessulanus_M_N : N ; Morbonia_F_N : N ; Mosa_F_N : N ; @@ -753,8 +766,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Muslimus_M_N : N ; Musulmanus_A : A ; N_N : N ; - Naias_N : N ; - Nais_N : N ; + Naias_1_N : N ; -- [XXXDX] :: Naiad; water nymph; nymph; + Naias_2_N : N ; + Nais_1_N : N ; -- [XXXDX] :: Naiad; water nymph; nymph; + Nais_2_N : N ; Nazara_F_N : N ; Nazaraeus_M_N : N ; Nazarenus_A : A ; @@ -798,7 +813,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Orcus_M_N : N ; Orestes_M_N : N ; Orgetorix_M_N : N ; - Orientalis_F_N : N ; + Orientalis_F_N : N ; -- [DXXES] :: Easterner, one from the East; Oriental; (F) wild beasts hunting/exhibition; Orientalis_M_N : N ; Osanna_Interj : Interj ; Oscus_A : A ; @@ -810,7 +825,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Palatium_N_N : N ; Palile_N_N : N ; Palmyra_F_N : N ; - Pan_N : N ; + Pan_1_N : N ; -- [XEXDS] :: Pan; Greek god of shepherds; + Pan_2_N : N ; Pantheon_N_N : N ; Pantheum_N_N : N ; Panthus_M_N : N ; @@ -850,8 +866,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Pilatus_M_N : N ; Piso_M_N : N ; Plancus_M_N : N ; + Plato_1_N : N ; -- [XSHCO] :: Plato; (Greek philosopher 429-347 BC, disciple of Socrates); + Plato_2_N : N ; Plato_M_N : N ; - Plato_N : N ; Platonicus_A : A ; Plinius_A : A ; Plinius_M_N : N ; @@ -956,7 +973,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Sequana_M_N : N ; Sequanus_A : A ; Sequanus_M_N : N ; - Ser_F_N : N ; + Ser_F_N : N ; -- [XXXDO] :: Chinese (people); inhabitants of region beyond Scythia and India; Ser_M_N : N ; Ser_N : N ; Seraph_N : N ; @@ -981,7 +998,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Siculus_C_N : N ; Sinope_F_N : N ; Sinopis_F_N : N ; - Siren_N : N ; + Siren_1_N : N ; -- [XYXCO] :: Siren; (lured sailors with song); type of drone/solitary bee/wasp); + Siren_2_N : N ; Sireneus_A : A ; Sirenius_A : A ; Sirius_A : A ; @@ -1001,7 +1019,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Stichus_M_N : N ; Stoicus_A : A ; Stygius_A : A ; - Styx_N : N ; + Styx_1_N : N ; -- [XXXDS] :: Styx river; river of the underworld; + Styx_2_N : N ; Subura_F_N : N ; Suebus_M_N : N ; Sulla_M_N : N ; @@ -1050,12 +1069,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { Tib_N : N ; Tiberinus_A : A ; Tiberinus_M_N : N ; - Tiberis_F_N : N ; + Tiberis_F_N : N ; -- [DXICO] :: Tiber; (the river at Rome); Tiberis_M_N : N ; Tiberius_M_N : N ; Tigurinus_M_N : N ; Tim_N : N ; - Titan_N : N ; + Titan_1_N : N ; -- [XYHCO] :: Titan; (one of race of gods/giants preceding Olympians); + Titan_2_N : N ; Titanus_M_N : N ; Titius_A : A ; Titius_M_N : N ; @@ -1145,7 +1165,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { abbatialis_A : A ; abbatissa_F_N : N ; abbatizo_V : V ; - abbibo_V : V ; + abbibo_V2 : V2 ; abbito_V : V ; abbreviatio_F_N : N ; abbreviator_M_N : N ; @@ -1181,11 +1201,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { aberro_V : V ; abfero_V2 : V2 ; abfluo_V : V ; - abfugio_V : V ; + abfugio_V2 : V2 ; abhibeo_V2 : V2 ; abhinc_Adv : Adv ; abhorreo_V : V ; - abhorresco_V : V ; + abhorresco_V2 : V2 ; abhorride_Adv : Adv ; abhorridus_A : A ; abicio_V2 : V2 ; @@ -1254,7 +1274,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { abnueo_V : V ; abnuitio_F_N : N ; abnumero_V2 : V2 ; - abnuo_V : V ; + abnuo_V2 : V2 ; abnutivum_N_N : N ; abnutivus_A : A ; abnuto_V : V ; @@ -1319,7 +1339,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { abscondite_Adv : Adv ; absconditum_N_N : N ; absconditus_A : A ; - abscondo_V : V ; + abscondo_V2 : V2 ; absconse_Adv : Adv ; absconsio_F_N : N ; absconsus_A : A ; @@ -1405,12 +1425,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { abusque_Adv : Adv ; abusus_M_N : N ; abutor_V : V ; - abverto_V : V ; + abverto_V2 : V2 ; abyssus_F_N : N ; ac_Conj : Conj ; acacia_F_N : N ; academicus_A : A ; - acalanthis_N : N ; + acalanthis_1_N : N ; -- [XAXCS] :: small song-bird (of dark-green color); thistle-finch, goldfinch; + acalanthis_2_N : N ; acalephe_F_N : N ; acanos_M_N : N ; acanthicos_A : A ; @@ -1445,7 +1466,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { accapito_V : V ; accedenter_Adv : Adv ; accedentia_F_N : N ; - accedo_V : V ; + accedo_V2 : V2 ; acceleratio_F_N : N ; acceleratrum_N_N : N ; accelero_V : V ; @@ -1491,7 +1512,6 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { accidens_N_N : N ; accidentalis_A : A ; accidentia_F_N : N ; - accido_V : V ; accido_V2 : V2 ; accidt_V0 : V ; accieo_V2 : V2 ; @@ -1500,7 +1520,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { accino_V : V ; accio_V2 : V2 ; accipio_V2 : V2 ; - accipiter_F_N : N ; + accipiter_F_N : N ; -- [XAXCO] :: hawk (any of several species); flying gurnard (fish); accipiter_M_N : N ; accipitrina_F_N : N ; accipitro_V2 : V2 ; @@ -1550,7 +1570,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { accubo_Adv : Adv ; accubo_V : V ; accudo_V2 : V2 ; - accumbo_V : V ; + accumbo_V2 : V2 ; accumulate_Adv : Adv ; accumulatio_F_N : N ; accumulator_M_N : N ; @@ -1560,7 +1580,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { accuratio_F_N : N ; accuratus_A : A ; accuro_V2 : V2 ; - accurro_V : V ; + accurro_V2 : V2 ; accursus_M_N : N ; accusabilis_A : A ; accusatio_F_N : N ; @@ -1621,7 +1641,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { achariter_Adv : Adv ; acharna_F_N : N ; acharne_F_N : N ; - achates_F_N : N ; + achates_F_N : N ; -- [XXXEO] :: agate; achates_M_N : N ; acheta_M_N : N ; achetas_M_N : N ; @@ -1704,8 +1724,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { acroaticus_A : A ; acrobates_M_N : N ; acrobaticus_A : A ; + acrochordon_1_N : N ; -- [XBXFO] :: type of wart; + acrochordon_2_N : N ; acrochordon_F_N : N ; - acrochordon_N : N ; acrocolefium_N_N : N ; acrocorium_N_N : N ; acrolithos_A : A ; @@ -1807,7 +1828,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adalligo_V2 : V2 ; adamanteus_A : A ; adamantinus_A : A ; - adamantis_N : N ; + adamantis_1_N : N ; -- [XAXNO] :: plant (unidentified); + adamantis_2_N : N ; adamas_M_N : N ; adamator_M_N : N ; adambulo_V : V ; @@ -1836,7 +1858,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adaugesco_V : V ; adaugmen_N_N : N ; adbello_V2 : V2 ; - adbibo_V : V ; + adbibo_V2 : V2 ; adbito_V : V ; adblatero_V2 : V2 ; adbreviatio_F_N : N ; @@ -1845,7 +1867,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adbrevio_V2 : V2 ; adcedenter_Adv : Adv ; adcedentia_F_N : N ; - adcedo_V : V ; + adcedo_V2 : V2 ; adceleratio_F_N : N ; adcelero_V : V ; adcessibilis_A : A ; @@ -1883,7 +1905,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adcubitus_M_N : N ; adcubo_Adv : Adv ; adcudo_V2 : V2 ; - adcumbo_V : V ; + adcumbo_V2 : V2 ; adcumulate_Adv : Adv ; adcumulatio_F_N : N ; adcumulator_M_N : N ; @@ -1892,7 +1914,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adcuratio_F_N : N ; adcuratus_A : A ; adcuro_V2 : V2 ; - adcurro_V : V ; + adcurro_V2 : V2 ; adcursus_M_N : N ; addax_M_N : N ; addecet_V0 : V ; @@ -1926,8 +1948,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ademptio_F_N : N ; ademptor_M_N : N ; adeo_Adv : Adv ; - adeo_V : V ; - adeps_F_N : N ; + adeo_1_V2 : V2 ; + adeo_2_V2 : V2 ; + adeps_F_N : N ; -- [XXXCO] :: fat, lard, grease; fatty tissue; bombast; corpulence, obesity (pl.); sapwood; adeps_M_N : N ; adeptio_F_N : N ; adeptus_M_N : N ; @@ -1971,7 +1994,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adfiguro_V2 : V2 ; adfingo_V2 : V2 ; adfinis_A : A ; - adfinis_F_N : N ; + adfinis_F_N : N ; -- [XXXCO] :: relation (by marriage); neighbor; accomplice; adfinis_M_N : N ; adfinitas_F_N : N ; adfirmanter_Adv : Adv ; @@ -2044,7 +2067,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adgnitus_M_N : N ; adgnomen_N_N : N ; adgnomentum_N_N : N ; - adgnosco_V : V ; + adgnosco_V2 : V2 ; adgratulor_V : V ; adgravesco_V : V ; adgravo_V2 : V2 ; @@ -2069,7 +2092,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adheresco_V : V ; adhibeo_V2 : V2 ; adhibitio_F_N : N ; - adhinnio_V : V ; + adhinnio_V2 : V2 ; adhoc_Adv : Adv ; adhorreo_V : V ; adhortamen_N_N : N ; @@ -2107,7 +2130,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adipatus_A : A ; adipeus_A : A ; adipiscor_V : V ; - adips_F_N : N ; + adips_F_N : N ; -- [XXXCO] :: fat, lard, grease; fatty tissue; bombast; corpulence, obesity (pl.); adips_M_N : N ; adipsatheon_N_N : N ; adipsatheos_M_N : N ; @@ -2198,7 +2221,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adluceo_V : V ; adluctor_V : V ; adludio_V : V ; - adludo_V : V ; + adludo_V2 : V2 ; adluo_V2 : V2 ; adluvies_F_N : N ; adluvio_F_N : N ; @@ -2309,7 +2332,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adnuntiatrix_F_N : N ; adnuntio_V2 : V2 ; adnuntius_A : A ; - adnuo_V : V ; + adnuo_V2 : V2 ; adnuto_V : V ; adnutrio_V2 : V2 ; adobruo_V2 : V2 ; @@ -2317,7 +2340,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adoleo_V : V ; adoleo_V2 : V2 ; adolescens_A : A ; - adolescens_F_N : N ; + adolescens_F_N : N ; -- [XXXCO] :: young man, youth; youthful person; young woman/girl; adolescens_M_N : N ; adolescentia_F_N : N ; adolescentior_V : V ; @@ -2391,7 +2414,6 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adpellator_M_N : N ; adpellatorius_A : A ; adpellito_V : V ; - adpello_V : V ; adpello_V2 : V2 ; adpendeo_V : V ; adpendicula_F_N : N ; @@ -2412,14 +2434,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adpeto_V2 : V2 ; adpiciscor_V : V ; adpingo_V2 : V2 ; - adplaudo_V : V ; + adplaudo_V2 : V2 ; adplausor_M_N : N ; adplausus_M_N : N ; adplex_A : A ; adplicatio_F_N : N ; adplicatus_A : A ; adplico_V2 : V2 ; - adplodo_V : V ; + adplodo_V2 : V2 ; adploro_V : V ; adpluda_F_N : N ; adplumbator_M_N : N ; @@ -2505,7 +2527,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adruo_V2 : V2 ; adscendens_A : A ; adscendibilis_A : A ; - adscendo_V : V ; + adscendo_V2 : V2 ; adscensio_F_N : N ; adscensor_M_N : N ; adscensus_M_N : N ; @@ -2577,7 +2599,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adsignator_M_N : N ; adsignifico_V2 : V2 ; adsigno_V2 : V2 ; - adsilio_V : V ; + adsilio_V2 : V2 ; adsimilanter_Adv : Adv ; adsimilatio_F_N : N ; adsimilatus_A : A ; @@ -2590,7 +2612,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adsimulatus_A : A ; adsimuliter_Adv : Adv ; adsimulo_V2 : V2 ; - adsisto_V : V ; + adsisto_V2 : V2 ; adsistrix_F_N : N ; adsitus_A : A ; adsociatio_F_N : N ; @@ -2627,7 +2649,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adstituo_V2 : V2 ; adsto_V : V ; adstrangulo_V2 : V2 ; - adstrepo_V : V ; + adstrepo_V2 : V2 ; adstricte_Adv : Adv ; adstrictio_F_N : N ; adstrictorius_A : A ; @@ -2643,7 +2665,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adsudesco_V : V ; adsuefacio_V2 : V2 ; adsuefio_V : V ; - adsuesco_V : V ; + adsuesco_V2 : V2 ; adsuetudo_F_N : N ; adsuetus_A : A ; adsugo_V2 : V2 ; @@ -2664,7 +2686,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adtagena_F_N : N ; adtempero_V2 : V2 ; adtempto_V2 : V2 ; - adtendo_V : V ; + adtendo_V2 : V2 ; adtentatio_F_N : N ; adtente_Adv : Adv ; adtentio_F_N : N ; @@ -2730,7 +2752,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adulatorius_A : A ; adulatrix_F_N : N ; adulescens_A : A ; - adulescens_F_N : N ; + adulescens_F_N : N ; -- [XXXCO] :: young man, youth; youthful person; young woman/girl; adulescens_M_N : N ; adulescentia_F_N : N ; adulescentior_V : V ; @@ -2822,7 +2844,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { adversus_Adv : Adv ; adversus_M_N : N ; advertentia_F_N : N ; - adverto_V : V ; + adverto_V2 : V2 ; advesperasct_V0 : V ; advigilo_V : V ; advincula_F_N : N ; @@ -2856,7 +2878,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { advorsus_Acc_Prep : Prep ; advorsus_Adv : Adv ; advorsus_M_N : N ; - advorto_V : V ; + advorto_V2 : V2 ; adynamos_A : A ; adytum_N_N : N ; adzelor_V : V ; @@ -2901,7 +2923,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { aedon_F_N : N ; aedonius_A : A ; aedus_M_N : N ; - aeer_F_N : N ; + aeer_F_N : N ; -- [XXXEZ] :: air(one of 4 elements); atmosphere, sky; cloud, mist, weather; breeze; odor; aeer_M_N : N ; aeger_A : A ; aeger_M_N : N ; @@ -2912,7 +2934,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { aegisonus_A : A ; aegithus_M_N : N ; aegocephalus_M_N : N ; - aegoceras_N : N ; + aegoceras_1_N : N ; -- [XAXNS] :: fenugreek, Greek hay; (flour from seeds, herb medicine, pickled as a dainty); + aegoceras_2_N : N ; aegoceros_M_N : N ; aegolethron_N_N : N ; aegolios_M_N : N ; @@ -2970,7 +2993,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { aequabiliter_Adv : Adv ; aequaevus_A : A ; aequalis_A : A ; - aequalis_F_N : N ; + aequalis_F_N : N ; -- [XXXCO] :: comrade; person of one's age/rank/ability, contemporary; equivalent; aequalis_M_N : N ; aequalitarismus_M_N : N ; aequalitas_F_N : N ; @@ -3035,7 +3058,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { aequoreus_A : A ; aequum_N_N : N ; aequus_A : A ; - aer_F_N : N ; + aer_F_N : N ; -- [XXXCO] :: air (one of 4 elements); atmosphere, sky; cloud, mist, weather; breeze; odor; aer_M_N : N ; aera_F_N : N ; aeracius_A : A ; @@ -3069,7 +3092,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { aeromantia_F_N : N ; aeronauticus_A : A ; aeronauticus_M_N : N ; - aeronavigans_F_N : N ; + aeronavigans_F_N : N ; -- [HXXFE] :: airline personnel; aeronavigans_M_N : N ; aerophobus_M_N : N ; aeroplaniga_M_N : N ; @@ -3193,7 +3216,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { affiguro_V2 : V2 ; affingo_V2 : V2 ; affinis_A : A ; - affinis_F_N : N ; + affinis_F_N : N ; -- [XXXCO] :: relation (by marriage); neighbor; accomplice; affinis_M_N : N ; affinitas_F_N : N ; affirmanter_Adv : Adv ; @@ -3343,15 +3366,16 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { agnomino_V2 : V2 ; agnos_F_N : N ; agnoscibilis_A : A ; - agnosco_V : V ; + agnosco_V2 : V2 ; agnosticismus_M_N : N ; agnua_F_N : N ; agnus_M_N : N ; - ago_V : V ; + ago_V2 : V2 ; agoga_F_N : N ; agoge_F_N : N ; agolum_N_N : N ; - agon_N : N ; + agon_1_N : N ; -- [XXXCO] :: struggle, contest; public exhibition of games; + agon_2_N : N ; agonal_N_N : N ; agonalium_N_N : N ; agonia_F_N : N ; @@ -3405,7 +3429,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { aio_V : V ; aisne_Interj : Interj ; ait_V0 : V ; - aithales_N : N ; + aithales_1_N : N ; -- [DAXFS] :: plant (aizoon), houseleek; + aithales_2_N : N ; aizon_N_N : N ; aizoon_N_N : N ; ajuga_F_N : N ; @@ -3511,7 +3536,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { aleph_N : N ; alerius_A : A ; ales_A : A ; - ales_F_N : N ; + ales_F_N : N ; -- [XXXCO] :: bird; (esp. large); winged god/monster; omen/augury; [regia ales => eagle]; ales_M_N : N ; alesco_V : V ; aletudo_F_N : N ; @@ -3683,7 +3708,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { allucinator_M_N : N ; alluctor_V : V ; alludio_V : V ; - alludo_V : V ; + alludo_V2 : V2 ; alluo_V2 : V2 ; allus_M_N : N ; allusio_F_N : N ; @@ -3838,10 +3863,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { amandatio_F_N : N ; amando_V2 : V2 ; amans_A : A ; - amans_F_N : N ; + amans_F_N : N ; -- [XXXCO] :: lover, sweetheart; mistress; one who is fond/affectionate; amans_M_N : N ; amanter_Adv : Adv ; - amanuensis_F_N : N ; + amanuensis_F_N : N ; -- [XXXEO] :: secretary, clerk; amanuensis_M_N : N ; amaracinum_N_N : N ; amaracinus_A : A ; @@ -3900,7 +3925,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ambiguitas_F_N : N ; ambiguum_N_N : N ; ambiguus_A : A ; - ambio_V : V ; + ambio_V2 : V2 ; ambitio_F_N : N ; ambitiose_Adv : Adv ; ambitiosus_A : A ; @@ -4226,8 +4251,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { anaclinterium_N_N : N ; anactorium_N_N : N ; anadema_N_N : N ; + anadiplosis_1_N : N ; -- [DGXFS] :: repetition of the same word; + anadiplosis_2_N : N ; anadiplosis_F_N : N ; - anadiplosis_N : N ; anaesthesia_F_N : N ; anagallis_F_N : N ; anaglyphum_N_N : N ; @@ -4236,13 +4262,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { anaglypticus_A : A ; anaglyptum_N_N : N ; anaglyptus_A : A ; - anagnosis_N : N ; + anagnosis_1_N : N ; -- [FEXFE] :: lectionary; (book of lessons for divine service; list of appointed passages); + anagnosis_2_N : N ; anagnostes_M_N : N ; anagolaium_N_N : N ; anagyros_F_N : N ; analecta_M_N : N ; analectris_F_N : N ; - analemma_N : N ; + analemma_1_N : N ; -- [XSXFO] :: diagram showing length of sundial pin with time of year; (fig. 8 on globe); + analemma_2_N : N ; analemptris_F_N : N ; analeptris_F_N : N ; analogia_F_N : N ; @@ -4267,7 +4295,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { anapauomenos_M_N : N ; anaphora_F_N : N ; anaphoricus_A : A ; - anaphysema_N : N ; + anaphysema_1_N : N ; -- [XXXFO] :: upward blast; + anaphysema_2_N : N ; anapleroticus_A : A ; anarchia_F_N : N ; anarchista_M_N : N ; @@ -4324,7 +4353,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ancoralis_A : A ; ancorarius_A : A ; ancra_F_N : N ; - ancter_N : N ; + ancter_1_N : N ; -- [XBXFO] :: surgical clip; + ancter_2_N : N ; ancula_F_N : N ; anculo_V2 : V2 ; anculus_M_N : N ; @@ -4336,7 +4366,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { andrachle_F_N : N ; andrachne_F_N : N ; andremas_F_N : N ; - androdamas_N : N ; + androdamas_1_N : N ; -- [XXXNS] :: variety of hematite (native sesquioxide of iron Fe2O3); silver marcasite; + androdamas_2_N : N ; androgynus_M_N : N ; andron_M_N : N ; andronitis_M_N : N ; @@ -4383,14 +4414,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { anguigena_M_N : N ; anguilla_F_N : N ; anguimanus_A : A ; - anguimanus_F_N : N ; + anguimanus_F_N : N ; -- [XAXFO] :: one with snaky hands/serpent-handed/tentacled; elephant (L+S); anguimanus_M_N : N ; anguineus_A : A ; anguinum_N_N : N ; anguinus_A : A ; anguipes_A : A ; anguipes_M_N : N ; - anguis_F_N : N ; + anguis_F_N : N ; -- [XAXAO] :: snake, serpent; dragon; (constellations) Draco, Serpens, Hydra; anguis_M_N : N ; anguitenens_A : A ; anguitenens_M_N : N ; @@ -4436,7 +4467,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { animabilis_A : A ; animadversio_F_N : N ; animadversor_M_N : N ; - animadverto_V : V ; + animadverto_V2 : V2 ; animaequitas_F_N : N ; animaequus_A : A ; animal_N_N : N ; @@ -4446,7 +4477,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { animalitas_F_N : N ; animaliter_Adv : Adv ; animans_A : A ; - animans_F_N : N ; + animans_F_N : N ; -- [XXXCO] :: animate/living being/organism (not man), creature; animal/plant; (also N, OLD); animans_M_N : N ; animatio_F_N : N ; animatrix_F_N : N ; @@ -4490,7 +4521,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { anno_V : V ; anno_V2 : V2 ; annodo_V2 : V2 ; - annon_Conj : Conj ; + annon_PConj : PConj ; annona_F_N : N ; annonarius_A : A ; annonor_V : V ; @@ -4522,7 +4553,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { annuntiatrix_F_N : N ; annuntio_V2 : V2 ; annuntius_A : A ; - annuo_V : V ; + annuo_V2 : V2 ; annus_M_N : N ; annuto_V : V ; annutrio_V2 : V2 ; @@ -4540,12 +4571,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { anonymos_F_N : N ; anonymus_A : A ; anquina_F_N : N ; - anquiro_V : V ; + anquiro_V2 : V2 ; anquisitio_F_N : N ; ansa_F_N : N ; ansarium_N_N : N ; ansatus_A : A ; - anser_F_N : N ; + anser_F_N : N ; -- [XAXCO] :: goose; [anser masculus => gander]; anser_M_N : N ; anserculus_M_N : N ; anserinus_A : A ; @@ -4571,7 +4602,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { antecapio_V2 : V2 ; antecedens_A : A ; antecedente_N_N : N ; - antecedo_V : V ; + antecedo_V2 : V2 ; antecello_V : V ; antecenium_N_N : N ; antecessio_F_N : N ; @@ -4579,7 +4610,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { antecessus_M_N : N ; antecurro_V2 : V2 ; antecursor_M_N : N ; - anteeo_V : V ; + anteeo_1_V2 : V2 ; + anteeo_2_V2 : V2 ; antefero_V2 : V2 ; antefixum_N_N : N ; antefixus_A : A ; @@ -4598,7 +4630,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { anteludium_N_N : N ; antemeridialis_A : A ; antemeridianus_A : A ; - antemeridies_F_N : N ; + antemeridies_F_N : N ; -- [XXXFO] :: morning, forenoon; (OLD gives N); antemeridies_M_N : N ; antemitto_V2 : V2 ; antemna_F_N : N ; @@ -4608,7 +4640,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { antenatus_M_N : N ; antenna_F_N : N ; antenuptialis_A : A ; - anteo_V : V ; + anteo_1_V2 : V2 ; + anteo_2_V2 : V2 ; anteoccupatio_F_N : N ; anteoccupo_F_N : N ; antepaenultimus_A : A ; @@ -4634,17 +4667,17 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { antescholarius_M_N : N ; antescolanus_M_N : N ; antesignanus_M_N : N ; - antestes_F_N : N ; + antestes_F_N : N ; -- [XEXBO] :: (high) priest/priestess; mouthpiece of god; master/authority (w/GEN); protector; antestes_M_N : N ; antesto_V : V ; antestor_V : V ; antetestatus_M_N : N ; anteurbanum_N_N : N ; anteurbanus_A : A ; - antevenio_V : V ; + antevenio_V2 : V2 ; anteventulus_A : A ; anteversio_F_N : N ; - anteverto_V : V ; + anteverto_V2 : V2 ; antevio_V : V ; antevolo_V2 : V2 ; anthalium_N_N : N ; @@ -4715,7 +4748,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { anticuus_A : A ; antidactylus_A : A ; antidea_Adv : Adv ; - antideo_V : V ; + antideo_1_V2 : V2 ; + antideo_2_V2 : V2 ; antidepressivum_N_N : N ; antidhac_Adv : Adv ; antidoron_N_N : N ; @@ -4781,7 +4815,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { antispodon_N_N : N ; antista_F_N : N ; antistatus_M_N : N ; - antistes_F_N : N ; + antistes_F_N : N ; -- [XEXBO] :: (high) priest/priestess; mouthpiece of god; master/authority (w/GEN); protector; antistes_M_N : N ; antistigma_N_N : N ; antistita_F_N : N ; @@ -4830,7 +4864,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { apathia_F_N : N ; apathicus_A : A ; apeliotes_F_N : N ; - apello_V : V ; + apello_V2 : V2 ; aper_C_N : N ; aperantologia_F_N : N ; aperculum_N_N : N ; @@ -4896,8 +4930,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { aplustrum_N_N : N ; aplysia_F_N : N ; apo_V2 : V2 ; + apocalypsis_1_N : N ; -- [EEXEW] :: revelation, disclosing; (Book of Revelations, Apocalypse of St John); + apocalypsis_2_N : N ; apocalypsis_F_N : N ; - apocalypsis_N : N ; apocalypticus_A : A ; apocarteresis_F_N : N ; apocatastasis_F_N : N ; @@ -4913,7 +4948,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { apoculo_V2 : V2 ; apocynon_N_N : N ; apodicticus_A : A ; - apodixis_N : N ; + apodixis_1_N : N ; -- [XLXEO] :: proof, demonstration; conclusive proof (L+S); + apodixis_2_N : N ; apodosis_F_N : N ; apodyterium_N_N : N ; apogeus_A : A ; @@ -4934,7 +4970,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { apophegmatismos_M_N : N ; apophoretum_N_N : N ; apophoretus_A : A ; - apophysis_N : N ; + apophysis_1_N : N ; -- [XTXFO] :: curving outward (archit.), curve of column at top/bottom, apophyge; + apophysis_2_N : N ; apoplecticus_A : A ; apoplexia_F_N : N ; apoplexis_F_N : N ; @@ -4973,8 +5010,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { apothecarius_M_N : N ; apotheco_V2 : V2 ; apotheosis_F_N : N ; - apothesis_N : N ; - apothysis_N : N ; + apothesis_1_N : N ; -- [XTXFS] :: curving outward (archit.), curve of column at top/bottom, apophyge; + apothesis_2_N : N ; + apothysis_1_N : N ; -- [XTXFS] :: curving outward (archit.), curve of column at top/bottom, apophyge; + apothysis_2_N : N ; apoxyomenos_M_N : N ; apozema_N_N : N ; apozima_F_N : N ; @@ -5009,7 +5048,6 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { appellatorius_A : A ; appellatus_M_N : N ; appellito_V : V ; - appello_V : V ; appello_V2 : V2 ; appellum_N_N : N ; appendeo_V : V ; @@ -5035,7 +5073,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { appiciscor_V : V ; appingo_V2 : V2 ; applar_N_N : N ; - applaudo_V : V ; + applaudo_V2 : V2 ; applausor_M_N : N ; applausus_M_N : N ; applex_A : A ; @@ -5044,7 +5082,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { applicatus_A : A ; applico_V : V ; applico_V2 : V2 ; - applodo_V : V ; + applodo_V2 : V2 ; apploro_V : V ; appluda_F_N : N ; applumbator_M_N : N ; @@ -5128,7 +5166,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { apscondite_Adv : Adv ; apsconditum_N_N : N ; apsconditus_A : A ; - apscondo_V : V ; + apscondo_V2 : V2 ; apsconse_Adv : Adv ; apsconsio_F_N : N ; apsconsus_A : A ; @@ -5434,7 +5472,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { arcisellium_N_N : N ; arcitectus_M_N : N ; arcitenens_A : A ; - arco_V : V ; + arco_V2 : V2 ; arcosolium_N_N : N ; arcs_F_N : N ; arcte_Adv : Adv ; @@ -5714,7 +5752,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { arruo_V2 : V2 ; ars_F_N : N ; arsella_F_N : N ; - arsen_N : N ; + arsen_1_N : N ; -- [XAXNO] :: male (plant); + arsen_2_N : N ; arsenicon_N_N : N ; arsenicum_N_N : N ; arsenogonon_N_N : N ; @@ -5748,7 +5787,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { articulosus_A : A ; articulus_M_N : N ; artifex_A : A ; - artifex_F_N : N ; + artifex_F_N : N ; -- [XXXAO] :: artist, actor; craftsman; master of an art; author, maker; mastermind, schemer; artifex_M_N : N ; artificiale_N_N : N ; artificialis_A : A ; @@ -5763,8 +5802,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { artius_A : A ; arto_V2 : V2 ; artocopus_M_N : N ; - artocreas_N : N ; - artocrias_N : N ; + artocreas_1_N : N ; -- [XXXES] :: bread and meat distributed free; meat pie (L+S); + artocreas_2_N : N ; + artocrias_1_N : N ; -- [XXXIO] :: bread and meat distributed free; + artocrias_2_N : N ; artolaganus_M_N : N ; artophorion_N_N : N ; artopta_F_N : N ; @@ -5773,7 +5814,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { artro_V : V ; artuatim_Adv : Adv ; artuatus_A : A ; - artufex_F_N : N ; + artufex_F_N : N ; -- [XXXAO] :: artist, actor; craftsman; master of an art; author, maker; mastermind, schemer; artufex_M_N : N ; artum_N_N : N ; artus_A : A ; @@ -5814,12 +5855,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ascella_F_N : N ; ascendens_A : A ; ascendibilis_A : A ; - ascendo_V : V ; + ascendo_V2 : V2 ; ascensio_F_N : N ; ascensor_M_N : N ; ascensus_M_N : N ; + ascesis_1_N : N ; -- [EXXFE] :: discipline; training; + ascesis_2_N : N ; ascesis_F_N : N ; - ascesis_N : N ; asceta_M_N : N ; asceterium_N_N : N ; asceticus_A : A ; @@ -5907,8 +5949,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { aspiratrum_N_N : N ; aspirinum_N_N : N ; aspiro_V : V ; + aspis_1_N : N ; -- [XXACO] :: asp, venomous snake of North Africa; + aspis_2_N : N ; aspis_F_N : N ; - aspis_N : N ; aspisatis_F_N : N ; asplenon_N_N : N ; asplenos_F_N : N ; @@ -5991,7 +6034,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { assignator_M_N : N ; assignifico_V2 : V2 ; assigno_V2 : V2 ; - assilio_V : V ; + assilio_V2 : V2 ; assimilanter_Adv : Adv ; assimilatio_F_N : N ; assimilatus_A : A ; @@ -6010,7 +6053,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { assis_M_N : N ; assisa_F_N : N ; assistentia_F_N : N ; - assisto_V : V ; + assisto_V2 : V2 ; assistrix_F_N : N ; assitus_A : A ; asso_V2 : V2 ; @@ -6026,7 +6069,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { assudesco_V : V ; assuefacio_V2 : V2 ; assuefio_V : V ; - assuesco_V : V ; + assuesco_V2 : V2 ; assuetudo_F_N : N ; assuetus_A : A ; assugo_V2 : V2 ; @@ -6083,7 +6126,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { astrapias_M_N : N ; astrapoplectus_A : A ; astreans_A : A ; - astrepo_V : V ; + astrepo_V2 : V2 ; astricte_Adv : Adv ; astrictio_F_N : N ; astrictorius_A : A ; @@ -6204,7 +6247,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { atrusca_F_N : N ; atta_M_N : N ; attachiamentum_N_N : N ; - attachio_V : V ; + attachio_V2 : V2 ; attactus_M_N : N ; attacus_M_N : N ; attagen_M_N : N ; @@ -6223,7 +6266,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { attemperatio_F_N : N ; attempero_V2 : V2 ; attempto_V2 : V2 ; - attendo_V : V ; + attendo_V2 : V2 ; attentatio_F_N : N ; attentatum_N_N : N ; attente_Adv : Adv ; @@ -6308,7 +6351,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { auctionor_V : V ; auctito_V2 : V2 ; aucto_V2 : V2 ; - auctor_F_N : N ; + auctor_F_N : N ; -- [XXXAO] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; auctor_M_N : N ; auctorabilis_A : A ; auctoralis_A : A ; @@ -6353,7 +6396,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { audeo_V : V ; audiens_M_N : N ; audientia_F_N : N ; - audio_V : V ; + audio_V2 : V2 ; auditio_F_N : N ; auditiuncula_F_N : N ; audito_V2 : V2 ; @@ -6365,9 +6408,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { audivisificus_A : A ; audo_V : V ; aufero_V2 : V2 ; - aufugio_V : V ; + aufugio_V2 : V2 ; augeo_V2 : V2 ; - auger_F_N : N ; + auger_F_N : N ; -- [BEXCS] :: augur, one who interprets behavior of birds; diviner, seer, prophet, soothsayer; auger_M_N : N ; augesco_V : V ; augifico_V2 : V2 ; @@ -6377,7 +6420,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { augmentatio_F_N : N ; augmento_V2 : V2 ; augmentum_N_N : N ; - augur_F_N : N ; + augur_F_N : N ; -- [XEXCO] :: augur, one who interprets behavior of birds; diviner, seer, prophet, soothsayer; augur_M_N : N ; auguraculum_N_N : N ; augurale_N_N : N ; @@ -6503,7 +6546,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { auscultatus_M_N : N ; ausculto_V : V ; ausculum_N_N : N ; - auspex_F_N : N ; + auspex_F_N : N ; -- [XEXCO] :: diviner by birds, augur; soothsayer; patron, supporter; wedding functionary; auspex_M_N : N ; auspicabilis_A : A ; auspicalis_A : A ; @@ -6547,7 +6590,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { authenticus_A : A ; authentus_M_N : N ; authepsa_F_N : N ; - author_F_N : N ; + author_F_N : N ; -- [DXXCS] :: seller, vendor; originator; historian; authority; proposer, supporter; founder; author_M_N : N ; authoramentum_N_N : N ; authoratus_M_N : N ; @@ -6651,7 +6694,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { aversus_A : A ; averta_F_N : N ; avertarius_M_N : N ; - averto_V : V ; + averto_V2 : V2 ; avia_F_N : N ; aviarium_N_N : N ; aviarius_A : A ; @@ -6682,7 +6725,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { avorro_V2 : V2 ; avorsor_V : V ; avorsus_A : A ; - avorto_V : V ; + avorto_V2 : V2 ; avos_M_N : N ; avulsio_F_N : N ; avulsor_M_N : N ; @@ -6699,7 +6742,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { axis_M_N : N ; axitia_F_N : N ; axitiosus_A : A ; - axon_N : N ; + axon_1_N : N ; -- [XWXEO] :: axis of a sundial; axis/roller of a ballista; line on a sundial (L+S); + axon_2_N : N ; axulus_M_N : N ; axungia_F_N : N ; azanius_A : A ; @@ -6898,7 +6942,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { barbaricus_A : A ; barbaries_F_N : N ; barbarismus_M_N : N ; - barbarolexis_N : N ; + barbarolexis_1_N : N ; -- [DGXFS] :: perversion of form of a word, change/inflection of Greek to Latin usage; + barbarolexis_2_N : N ; barbarum_N_N : N ; barbarus_A : A ; barbarus_M_N : N ; @@ -6912,7 +6957,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { barbitium_N_N : N ; barbiton_N_N : N ; barbitonsor_M_N : N ; - barbitos_F_N : N ; + barbitos_F_N : N ; -- [XXXEO] :: lyre (properly of a lower pitch); lute (Ecc); barbitos_M_N : N ; barbo_V2 : V2 ; barbula_F_N : N ; @@ -6942,7 +6987,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { barython_M_N : N ; barythonos_A : A ; barytonista_M_N : N ; - bas_N : N ; + bas_1_N : N ; -- [XXXBO] :: pedestal; base, point of attachment; foundation, support; chord (of an arc); + bas_2_N : N ; basaltes_M_N : N ; basanites_M_N : N ; bascauda_F_N : N ; @@ -6967,7 +7013,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { basio_V2 : V2 ; basioballum_N_N : N ; basiolum_N_N : N ; - basis_N : N ; + basis_1_N : N ; -- [XXXBO] :: pedestal; base, point of attachment; foundation, support; chord (of an arc); + basis_2_N : N ; basium_N_N : N ; bassilica_F_N : N ; bassista_M_N : N ; @@ -7097,7 +7144,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { bema_N_N : N ; bene_Adv : Adv ; benedice_Adv : Adv ; - benedico_V : V ; + benedico_V2 : V2 ; benedictio_F_N : N ; benedictionale_N_N : N ; benedictorium_N_N : N ; @@ -7129,7 +7176,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { benesuadus_A : A ; benevole_Adv : Adv ; benevolens_A : A ; - benevolens_F_N : N ; + benevolens_F_N : N ; -- [XXXCO] :: friend, well-wisher, kind-heart; benevolens_M_N : N ; benevolentia_F_N : N ; benevolus_A : A ; @@ -7142,7 +7189,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { benignus_A : A ; benivole_Adv : Adv ; benivolens_A : A ; - benivolens_F_N : N ; + benivolens_F_N : N ; -- [XXXCO] :: friend, well-wisher, kind-heart; benivolens_M_N : N ; benivolentia_F_N : N ; benivolus_A : A ; @@ -7206,7 +7253,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { bibliothecula_F_N : N ; biblus_F_N : N ; bibo_M_N : N ; - bibo_V : V ; + bibo_V2 : V2 ; bibonius_M_N : N ; bibosus_A : A ; bibrevis_A : A ; @@ -7513,10 +7560,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { boletus_M_N : N ; bolis_F_N : N ; bolites_M_N : N ; - boloe_F_N : N ; + boloe_F_N : N ; -- [XXXNS] :: precious stone; boloe_M_N : N ; bolona_M_N : N ; - bolos_F_N : N ; + bolos_F_N : N ; -- [XXXNO] :: precious stone; bolos_M_N : N ; bolus_C_N : N ; bolus_M_N : N ; @@ -7540,7 +7587,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { bombycius_A : A ; bombylis_F_N : N ; bombylius_M_N : N ; - bombyx_F_N : N ; + bombyx_F_N : N ; -- [XAXDO] :: silkworm, silk-moth; silk; silk garment; any silk-like fine fiber (cotton); bombyx_M_N : N ; bona_F_N : N ; bonasus_M_N : N ; @@ -7563,9 +7610,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { borith_N : N ; borius_A : A ; borrio_V : V ; - bos_F_N : N ; + bos_F_N : N ; -- [XXXBO] :: ox; bull; cow; ox-ray; cattle (pl.); (ox-like animals); [luca ~ => elephant]; bos_M_N : N ; - boscas_N : N ; + boscas_1_N : N ; -- [XAXFS] :: kind of water fowl (teal?); + boscas_2_N : N ; boscis_F_N : N ; boscus_M_N : N ; bossellus_M_N : N ; @@ -7585,7 +7633,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { botruosus_A : A ; botrus_F_N : N ; botrus_M_N : N ; - botryitis_N : N ; + botryitis_1_N : N ; -- [XXXEO] :: kind of precious stone/calamine; [cadmia ~ => grape/cluster-shaped zinc oxide]; + botryitis_2_N : N ; botryo_M_N : N ; botryodes_A : A ; botryon_M_N : N ; @@ -7846,7 +7895,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { bunion_N_N : N ; bunitus_A : A ; bupaeda_M_N : N ; - bupaes_N : N ; + bupaes_1_N : N ; -- [XXXFO] :: big/huge boy/youth; + bupaes_2_N : N ; buphthalmos_M_N : N ; buphthalmus_F_N : N ; bupleuron_N_N : N ; @@ -7861,7 +7911,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { burgarius_A : A ; burgarius_M_N : N ; burgator_M_N : N ; - burgensis_F_N : N ; + burgensis_F_N : N ; -- [EXXCV] :: citizen/burgess/burger; inhabitants/residents (pl.) of a (walled) town/borough; burgensis_M_N : N ; burgeria_F_N : N ; burgimagister_M_N : N ; @@ -7881,7 +7931,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { bursa_F_N : N ; bursarius_M_N : N ; bursula_F_N : N ; - bus_F_N : N ; + bus_F_N : N ; -- [BAXDO] :: ox, bull; cow; cattle (pl.); (odd form mostly in Varro); bus_M_N : N ; buselinum_N_N : N ; busequa_M_N : N ; @@ -8026,7 +8076,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { caeles_M_N : N ; caeleste_N_N : N ; caelestis_A : A ; - caelestis_F_N : N ; + caelestis_F_N : N ; -- [XEXCO] :: divinity, god/goddess; god-like person; the_Gods (pl.); caelestis_M_N : N ; caelia_F_N : N ; caelibalis_A : A ; @@ -8318,7 +8368,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { callisphyros_A : A ; callistruthia_F_N : N ; callistruthis_F_N : N ; - callithrix_N : N ; + callithrix_1_N : N ; -- [XAXNO] :: waterwort (Asplenium trichomanes) (for hair coloring); an Ethiopian monkey; + callithrix_2_N : N ; callitrichon_N_N : N ; callitrichos_F_N : N ; callositas_F_N : N ; @@ -8363,7 +8414,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { calvor_V : V ; calvus_A : A ; calvus_M_N : N ; - calx_F_N : N ; + calx_F_N : N ; -- [XXXBO] :: limestone, lime; chalk, goal, goal-line (chalk mark), end of life; game piece; calx_M_N : N ; calybita_F_N : N ; calyculus_M_N : N ; @@ -8442,10 +8493,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { campso_V2 : V2 ; campsor_M_N : N ; camptaules_M_N : N ; + campter_1_N : N ; -- [XXXEO] :: turning point at end of a race course; + campter_2_N : N ; campter_M_N : N ; - campter_N : N ; campus_M_N : N ; - camter_N : N ; + camter_1_N : N ; -- [XXXEO] :: turning point at end of a race course; + camter_2_N : N ; camum_N_N : N ; camur_A : A ; camurus_A : A ; @@ -8463,7 +8516,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { canaliculatus_A : A ; canaliculus_M_N : N ; canaliensis_A : A ; - canalis_F_N : N ; + canalis_F_N : N ; -- [XXXBO] :: channel/canal/conduit; ditch, gutter; trough, groove; funnel; pipe, spout; canalis_M_N : N ; canarius_A : A ; canaster_A : A ; @@ -8497,7 +8550,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { candens_A : A ; candentia_F_N : N ; candeo_V : V ; - candesco_V : V ; + candesco_V2 : V2 ; candetum_N_N : N ; candicens_A : A ; candico_V : V ; @@ -8524,7 +8577,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { canens_A : A ; canentas_F_N : N ; caneo_V : V ; - canes_F_N : N ; + canes_F_N : N ; -- [BAXDO] :: dog; hound; subordinate; "jackal"; dog-star/fish; lowest dice throw; clamp; canes_M_N : N ; canesco_V : V ; cania_F_N : N ; @@ -8536,7 +8589,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { canina_F_N : N ; caninus_A : A ; canipa_F_N : N ; - canis_F_N : N ; + canis_F_N : N ; -- [XAXAO] :: dog; hound; subordinate; "jackal"; dog-star/fish; lowest dice throw; clamp; canis_M_N : N ; canistellum_N_N : N ; canistraria_F_N : N ; @@ -8558,9 +8611,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cannophorus_M_N : N ; cannula_F_N : N ; cannulono_M_N : N ; - cano_V : V ; + cano_V2 : V2 ; + canon_1_N : N ; -- [XXXEO] :: sounding-board/channel of water organ; model/standard; measuring line, rule; + canon_2_N : N ; canon_M_N : N ; - canon_N : N ; canonia_F_N : N ; canonicalis_A : A ; canonicarius_M_N : N ; @@ -8620,7 +8674,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cantreda_F_N : N ; cantrix_F_N : N ; cantulus_M_N : N ; - canturio_V : V ; + canturio_V2 : V2 ; cantus_M_N : N ; canua_F_N : N ; canum_N_N : N ; @@ -8667,8 +8721,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { capillus_M_N : N ; capio_F_N : N ; capio_V2 : V2 ; + capis_1_N : N ; -- [XEXEO] :: cup/bowl with handle used mainly for ritual purposes; + capis_2_N : N ; capis_F_N : N ; - capis_N : N ; capisso_V2 : V2 ; capisterium_N_N : N ; capistrarius_M_N : N ; @@ -8713,9 +8768,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cappa_F_N : N ; cappara_F_N : N ; cappari_N : N ; + capparis_1_N : N ; -- [XAXCO] :: caper plant (Capparis spinosa); fruit of caper plant, caper; + capparis_2_N : N ; capparis_F_N : N ; - capparis_N : N ; - cappas_N : N ; + cappas_1_N : N ; -- [DAXFS] :: sea horse; + cappas_2_N : N ; cappella_F_N : N ; cappellania_F_N : N ; cappellanus_M_N : N ; @@ -8921,7 +8978,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { carnelevarium_N_N : N ; carnero_M_N : N ; carneus_A : A ; - carnicis_F_N : N ; + carnicis_F_N : N ; -- [XAXFO] :: fodder plant, tree-medick (Medicago arborea); its wood; scrubby snail-clover; carnicis_M_N : N ; carnicula_F_N : N ; carnifex_A : A ; @@ -9074,8 +9131,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { castimonium_N_N : N ; castitas_F_N : N ; castitudo_F_N : N ; + castor_1_N : N ; -- [XAXEO] :: beaver (Castor fiber); + castor_2_N : N ; castor_M_N : N ; - castor_N : N ; castoreum_N_N : N ; castorinatus_A : A ; castorinus_A : A ; @@ -9141,11 +9199,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { catallum_N_N : N ; catalogus_M_N : N ; catamenia_F_N : N ; - catampo_F_N : N ; + catampo_F_N : N ; -- [XXXFO] :: kind of play/sport/game; catampo_M_N : N ; catanance_F_N : N ; cataphagas_M_N : N ; - cataphasis_N : N ; + cataphasis_1_N : N ; -- [DXXES] :: affirmation; + cataphasis_2_N : N ; cataphracta_M_N : N ; cataphractarius_A : A ; cataphractarius_M_N : N ; @@ -9397,13 +9456,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cavus_M_N : N ; cedens_A : A ; cedenter_Adv : Adv ; - cedo_V : V ; + cedo_V2 : V2 ; cedrelate_F_N : N ; cedreus_A : A ; cedria_F_N : N ; cedrinus_A : A ; + cedris_1_N : N ; -- [XAXNO] :: cone of cedar tree; kind of juniper?; fruit/berry of cedar/juniper (L+S); + cedris_2_N : N ; cedris_F_N : N ; - cedris_N : N ; cedrium_N_N : N ; cedrostis_F_N : N ; cedrus_F_N : N ; @@ -9439,9 +9499,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { celes_M_N : N ; celeste_N_N : N ; celestis_A : A ; - celestis_F_N : N ; + celestis_F_N : N ; -- [FEXCO] :: divinity, god/goddess; god-like person; the Gods; celestis_M_N : N ; - celetizon_N : N ; + celetizon_1_N : N ; -- [XXXNS] :: riders on horse-back; (statue by that name); + celetizon_2_N : N ; celeuma_F_N : N ; celeuma_N_N : N ; celeusma_F_N : N ; @@ -9876,9 +9937,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { chamaedracon_M_N : N ; chamaedrops_F_N : N ; chamaedrys_F_N : N ; - chamaeleon_F_N : N ; + chamaeleon_1_F_N : N ; -- [XAXNS] :: thistles; carline (Cardopatium corymbosum)/pine-thistle (Atractylis gummifera); + chamaeleon_1_M_N : N ; -- [XAXNS] :: thistles; carline (Cardopatium corymbosum)/pine-thistle (Atractylis gummifera); + chamaeleon_1_N : N ; -- [XAXES] :: chameleon; (M/F OLD); lizard (Ecc); + chamaeleon_2_F_N : N ; -- [XAXNS] :: thistles; carline (Cardopatium corymbosum)/pine-thistle (Atractylis gummifera); + chamaeleon_2_M_N : N ; + chamaeleon_2_N : N ; + chamaeleon_F_N : N ; -- [XAXNS] :: thistles; carline (Cardopatium corymbosum)/pine-thistle (Atractylis gummifera); chamaeleon_M_N : N ; - chamaeleon_N : N ; chamaeleuce_F_N : N ; chamaemelinus_A : A ; chamaemelon_N_N : N ; @@ -10009,10 +10075,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { chirographus_M_N : N ; chiromantis_M_N : N ; chironomia_F_N : N ; + chironomon_1_N : N ; -- [XDXFO] :: pantomime; one who gestures according to the rules of art; + chironomon_2_N : N ; chironomon_A : A ; - chironomon_N : N ; chironomos_A : A ; - chironomos_F_N : N ; + chironomos_F_N : N ; -- [XDXFS] :: pantomime; one who gestures according to the rules of art; chironomos_M_N : N ; chirotheca_F_N : N ; chirurgia_F_N : N ; @@ -10024,8 +10091,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { chlamis_F_N : N ; chlamyda_F_N : N ; chlamydatus_A : A ; + chlamys_1_N : N ; -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; + chlamys_2_N : N ; chlamys_F_N : N ; - chlamys_N : N ; chlora_F_N : N ; chloreus_M_N : N ; chlorion_M_N : N ; @@ -10102,11 +10170,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { chrismarium_N_N : N ; chrismatio_F_N : N ; chrismatorium_N_N : N ; - chroma_N : N ; + chroma_1_N : N ; -- [XDXFO] :: chromatic scale (divided tetrachord into 2 intervals of 1 semitone and 1 of 3); + chroma_2_N : N ; chromatice_F_N : N ; chromaticos_A : A ; chromaticus_A : A ; - chromis_F_N : N ; + chromis_F_N : N ; -- [XAXEO] :: sea fish; (Umbrina cirrosa?); chromis_M_N : N ; chromium_N_N : N ; chromosoma_N_N : N ; @@ -10151,7 +10220,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { chrysographatus_A : A ; chrysolachanum_N_N : N ; chrysolampis_F_N : N ; - chrysolithos_F_N : N ; + chrysolithos_F_N : N ; -- [XXXEO] :: topaz; chrysolite (L+S); chrysolithos_M_N : N ; chrysolithus_M_N : N ; chrysolitus_C_N : N ; @@ -10171,7 +10240,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { chrysos_M_N : N ; chrysothales_F_N : N ; chrysus_M_N : N ; - chus_N : N ; + chus_1_N : N ; -- [DSXFS] :: liquid measure; (equal to congius/3 quarts); + chus_2_N : N ; chydaeus_A : A ; chylisma_N_N : N ; chylus_M_N : N ; @@ -10278,7 +10348,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cinematographicus_M_N : N ; cinematographo_V : V ; cinematographus_M_N : N ; - ciner_F_N : N ; + ciner_F_N : N ; -- [XXXFS] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; ciner_M_N : N ; cineraceus_A : A ; cineracius_A : A ; @@ -10298,7 +10368,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cinifes_F_N : N ; ciniflo_M_N : N ; ciniphs_F_N : N ; - cinis_F_N : N ; + cinis_F_N : N ; -- [XXXAO] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; cinis_M_N : N ; cinisculus_M_N : N ; cinnabar_N_N : N ; @@ -10312,7 +10382,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cinnamum_N_N : N ; cinnamus_M_N : N ; cinnus_M_N : N ; - cinus_F_N : N ; + cinus_F_N : N ; -- [XXXES] :: ashes; embers, spent love/hate; ruin, destruction; the grave/dead, cremation; cinus_M_N : N ; cinyphes_F_N : N ; cinyra_F_N : N ; @@ -10349,8 +10419,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { circlus_M_N : N ; circo_V2 : V2 ; circos_M_N : N ; - circuago_V : V ; - circueo_V : V ; + circuago_V2 : V2 ; + circueo_1_V2 : V2 ; + circueo_2_V2 : V2 ; circuitio_F_N : N ; circuitor_M_N : N ; circuitus_M_N : N ; @@ -10370,7 +10441,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { circumactus_M_N : N ; circumaedifico_V2 : V2 ; circumaggero_V2 : V2 ; - circumago_V : V ; + circumago_V2 : V2 ; circumambulo_V2 : V2 ; circumamictus_A : A ; circumaro_V2 : V2 ; @@ -10415,7 +10486,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { circumductum_N_N : N ; circumductus_A : A ; circumductus_M_N : N ; - circumeo_V : V ; + circumeo_1_V2 : V2 ; + circumeo_2_V2 : V2 ; circumequito_V2 : V2 ; circumerro_V : V ; circumfarcio_V2 : V2 ; @@ -10433,7 +10505,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { circumflexus_M_N : N ; circumflo_V : V ; circumfluentia_F_N : N ; - circumfluo_V : V ; + circumfluo_V2 : V2 ; circumfluus_A : A ; circumfodio_V2 : V2 ; circumforaneus_A : A ; @@ -10443,7 +10515,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { circumfossor_M_N : N ; circumfossura_F_N : N ; circumfractus_A : A ; - circumfremo_V : V ; + circumfremo_V2 : V2 ; circumfrico_V2 : V2 ; circumfulcio_V2 : V2 ; circumfulgeo_V2 : V2 ; @@ -10473,7 +10545,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { circumitor_M_N : N ; circumitus_M_N : N ; circumjacens_A : A ; - circumjacens_F_N : N ; + circumjacens_F_N : N ; -- [XXXDO] :: neighboring/nearby things/words (pl.), words situated around/near (in sentence); circumjacens_M_N : N ; circumjacentium_N_N : N ; circumjaceo_V : V ; @@ -10527,7 +10599,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { circumpavio_V2 : V2 ; circumpavitus_A : A ; circumpendeo_V : V ; - circumpes_F_N : N ; + circumpes_F_N : N ; -- [DXXES] :: footgear; sandal; that is around foot; parasite (of foot); covering for foot; circumpes_M_N : N ; circumplaudo_V2 : V2 ; circumplecto_V2 : V2 ; @@ -10591,7 +10663,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { circumspectus_M_N : N ; circumspergo_V2 : V2 ; circumspicientia_F_N : N ; - circumspicio_V : V ; + circumspicio_V2 : V2 ; circumstagno_V : V ; circumstans_M_N : N ; circumstantia_F_N : N ; @@ -10749,7 +10821,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { civiliter_Adv : Adv ; civilizatio_F_N : N ; civilizo_V : V ; - civis_F_N : N ; + civis_F_N : N ; -- [XXXAO] :: fellow citizen; countryman/woman; citizen, free person; a Roman citizen; civis_M_N : N ; civitas_F_N : N ; civitatula_F_N : N ; @@ -10776,8 +10848,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { clamos_M_N : N ; clamose_Adv : Adv ; clamosus_A : A ; + clamys_1_N : N ; -- [XWXCO] :: Greek cloak/cape frequently for military use; state mantle; cloak, mantle; + clamys_2_N : N ; clamys_F_N : N ; - clamys_N : N ; clancularius_A : A ; clanculo_Adv : Adv ; clanculum_Acc_Prep : Prep ; @@ -10869,8 +10942,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { clavus_M_N : N ; claxendix_F_N : N ; clema_N_N : N ; + clematis_1_N : N ; -- [XAXNO] :: plant; (various kinds of clematis/convolvulus/etc); + clematis_2_N : N ; clematis_F_N : N ; - clematis_N : N ; clematitis_F_N : N ; clemens_A : A ; clementer_Adv : Adv ; @@ -10894,13 +10968,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { clidion_N_N : N ; clidium_N_N : N ; cliduchus_M_N : N ; - cliens_F_N : N ; + cliens_F_N : N ; -- [XXXBO] :: client, dependent (of a patron), vassal; client state/its citizens, allies; cliens_M_N : N ; clienta_F_N : N ; clientela_F_N : N ; clientulus_M_N : N ; clima_N_N : N ; - climacis_N : N ; + climacis_1_N : N ; -- [XWXEO] :: inclined channel/barrel of a ballista; small staircase/ladder (L+S); + climacis_2_N : N ; climacter_M_N : N ; climactericus_A : A ; climacus_M_N : N ; @@ -10919,7 +10994,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { clinodium_N_N : N ; clinopale_F_N : N ; clinopodium_N_N : N ; - clinopus_N : N ; + clinopus_1_N : N ; -- [XXXFO] :: foot of a bed; + clinopus_2_N : N ; clinsa_F_N : N ; clipeatus_A : A ; clipeatus_M_N : N ; @@ -10968,7 +11044,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cludo_V : V ; cludo_V2 : V2 ; cludus_A : A ; - cluens_F_N : N ; + cluens_F_N : N ; -- [XXXBO] :: client, dependent (of a patron), vassal; client state/its citizens, allies; cluens_M_N : N ; clueo_V : V ; clueo_V2 : V2 ; @@ -10980,7 +11056,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { clunalis_A : A ; clunicula_F_N : N ; cluniculus_M_N : N ; - clunis_F_N : N ; + clunis_F_N : N ; -- [XBXCO] :: buttock, haunch, hindquarters (vertebrate animals); (also insects/arachnids); clunis_M_N : N ; cluo_V : V ; cluo_V2 : V2 ; @@ -11030,8 +11106,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cnidinus_A : A ; cnisa_F_N : N ; cnissa_F_N : N ; + cnodax_1_N : N ; -- [XTXFO] :: pin, pivot; gudgeon, pivot on end of beam/axle for wheel/bell/etc; + cnodax_2_N : N ; cnodax_M_N : N ; - cnodax_N : N ; coa_F_N : N ; coaccedo_V : V ; coacervatim_Adv : Adv ; @@ -11207,8 +11284,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { codicillus_M_N : N ; codicula_F_N : N ; codificatus_A : A ; - coec_N : N ; - coecas_N : N ; + coec_1_N : N ; -- [XAXNO] :: kind of date; (doum palm, Hyphaene thebaica Liddle and Scott); + coec_2_N : N ; + coecas_1_N : N ; -- [XAXNO] :: kind of date; (doum palm, Hyphaene thebaica Liddle and Scott); + coecas_2_N : N ; coel_N : N ; coelectus_A : A ; coelementatus_A : A ; @@ -11216,7 +11295,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { coeles_M_N : N ; coeleste_N_N : N ; coelestis_A : A ; - coelestis_F_N : N ; + coelestis_F_N : N ; -- [XEXCS] :: divinity, god/goddess; god-like person; the_Gods (pl.); heavenly bodies; coelestis_M_N : N ; coeliaca_F_N : N ; coeliacus_A : A ; @@ -11265,8 +11344,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { coenula_F_N : N ; coenulentus_A : A ; coenum_N_N : N ; - coeo_V : V ; + coeo_1_V2 : V2 ; + coeo_2_V2 : V2 ; coepio_V : V ; + coepio_V2 : V2 ; coepiscopatus_M_N : N ; coepiscopus_M_N : N ; coepto_V : V ; @@ -11341,7 +11422,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cohaerenter_Adv : Adv ; cohaerentia_F_N : N ; cohaereo_V : V ; - cohaeres_F_N : N ; + cohaeres_F_N : N ; -- [XLXCS] :: co-heir; joint heir; cohaeres_M_N : N ; cohaeresco_V : V ; cohaesio_F_N : N ; @@ -11349,7 +11430,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { coherceo_V2 : V2 ; cohercitio_F_N : N ; cohereo_V : V ; - coheres_F_N : N ; + coheres_F_N : N ; -- [XLXCO] :: co-heir; joint heir; coheres_M_N : N ; coheresco_V : V ; cohibeo_V2 : V2 ; @@ -11389,7 +11470,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { coix_F_N : N ; cojecto_V : V ; cojectura_F_N : N ; - cojux_F_N : N ; + cojux_F_N : N ; -- [XXXEO] :: spouse/mate/consort; husband (M); wife (F)/bride/fiancee/concubine; yokemate; cojux_M_N : N ; cola_F_N : N ; colafus_M_N : N ; @@ -11578,7 +11659,6 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { collyriolum_N_N : N ; collyris_F_N : N ; collyrium_N_N : N ; - colo_V : V ; colo_V2 : V2 ; colobathrarius_M_N : N ; colobicus_A : A ; @@ -11588,9 +11668,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { colocasia_F_N : N ; colocasium_N_N : N ; colocyntha_F_N : N ; + colocynthis_1_N : N ; -- [XAXNO] :: gourd plant/fruit, bitter apple, colocynth (Citrullus colocynthis); (purgative); + colocynthis_2_N : N ; colocynthis_F_N : N ; - colocynthis_N : N ; - colocyntis_N : N ; + colocyntis_1_N : N ; -- [EAXFW] :: gourd plant/fruit, bitter apple, colocynth (Citrullus colocynthis); (purgative); + colocyntis_2_N : N ; coloephium_N_N : N ; colon_N_N : N ; colona_F_N : N ; @@ -11605,8 +11687,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { coloniarius_M_N : N ; colonicus_A : A ; colonus_M_N : N ; + colophon_1_N : N ; -- [XXXES] :: summit; finishing/crowning touch/stroke; + colophon_2_N : N ; colophon_M_N : N ; - colophon_N : N ; color_M_N : N ; colorabilis_A : A ; colorate_Adv : Adv ; @@ -11669,16 +11752,18 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { colurnus_A : A ; colurus_A : A ; colus_C_N : N ; - colus_F_N : N ; + colus_F_N : N ; -- [XXXBO] :: distaff; woman's concern; spinning; Fate's distaff w/threads of life; destiny; colus_M_N : N ; colustra_F_N : N ; colustrum_N_N : N ; coluteum_N_N : N ; coluthium_N_N : N ; - colymbas_N : N ; + colymbas_1_N : N ; -- [XXXEO] :: pickled olive; (swimming in brine L+S); + colymbas_2_N : N ; colymbus_M_N : N ; colyphium_N_N : N ; - colyx_N : N ; + colyx_1_N : N ; -- [XXXNS] :: cavern where natron (native sesquicarbonate of soda/alkali) is distilling/drips; + colyx_2_N : N ; com_Abl_Prep : Prep ; com_Adv : Adv ; coma_F_N : N ; @@ -11694,7 +11779,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { combardus_A : A ; combenno_M_N : N ; combibo_M_N : N ; - combibo_V : V ; + combibo_V2 : V2 ; combinatio_F_N : N ; combino_V2 : V2 ; combretum_N_N : N ; @@ -11710,7 +11795,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { comedo_M_N : N ; comedo_V2 : V2 ; comedus_M_N : N ; - comes_F_N : N ; + comes_F_N : N ; -- [XXXAO] :: comrade, companion, associate, partner; soldier/devotee/follower of another; comes_M_N : N ; comesaliter_Adv : Adv ; comesatio_F_N : N ; @@ -11877,7 +11962,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { comminator_M_N : N ; comminatus_A : A ; commingo_V2 : V2 ; - comminisco_V : V ; + comminisco_V2 : V2 ; comminiscor_V : V ; comminister_M_N : N ; commino_V2 : V2 ; @@ -11915,7 +12000,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { commistio_F_N : N ; commistura_F_N : N ; commitigo_V2 : V2 ; - committo_V : V ; + committo_V2 : V2 ; commixtim_Adv : Adv ; commixtio_F_N : N ; commixtura_F_N : N ; @@ -12033,7 +12118,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { compagus_M_N : N ; compalpo_V2 : V2 ; compar_A : A ; - compar_F_N : N ; + compar_F_N : N ; -- [XXXCO] :: fellow, partner, equal; comrade; husband/wife; pair (of animals also), mate; compar_M_N : N ; compar_N_N : N ; comparabilis_A : A ; @@ -12047,7 +12132,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { compareo_V : V ; comparilis_A : A ; comparo_V2 : V2 ; - compars_F_N : N ; + compars_F_N : N ; -- [FXXEE] :: partner; compars_M_N : N ; comparticeps_A : A ; compartimentum_N_N : N ; @@ -12122,7 +12207,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { competitivitas_F_N : N ; competitor_M_N : N ; competitrix_F_N : N ; - competo_V : V ; + competo_V2 : V2 ; competum_N_N : N ; compilatio_F_N : N ; compilator_M_N : N ; @@ -12157,7 +12242,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { completorium_N_N : N ; completus_A : A ; complex_A : A ; - complex_F_N : N ; + complex_F_N : N ; -- [DXXEE] :: accomplice; confederate, participant; complex_M_N : N ; complexio_F_N : N ; complexionatus_A : A ; @@ -12243,7 +12328,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { compromissarius_A : A ; compromissio_F_N : N ; compromissum_N_N : N ; - compromitto_V : V ; + compromitto_V2 : V2 ; comprovincialis_A : A ; compte_Adv : Adv ; comptionalis_A : A ; @@ -12289,7 +12374,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { conaudito_V2 : V2 ; conbenno_M_N : N ; conbibo_M_N : N ; - conbibo_V : V ; + conbibo_V2 : V2 ; conbullio_V2 : V2 ; conburo_V2 : V2 ; conbustio_F_N : N ; @@ -12331,7 +12416,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { concavo_V2 : V2 ; concavum_N_N : N ; concavus_A : A ; - concedo_V : V ; + concedo_V2 : V2 ; concelebratio_F_N : N ; concelebro_V2 : V2 ; concellita_M_N : N ; @@ -12415,7 +12500,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { concinnitudo_F_N : N ; concinno_V2 : V2 ; concinnus_A : A ; - concino_V : V ; + concino_V2 : V2 ; concio_F_N : N ; concio_V2 : V2 ; concionabundus_A : A ; @@ -12550,7 +12635,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { concupiscentivus_A : A ; concupiscibilis_A : A ; concupiscitivus_A : A ; - concupisco_V : V ; + concupisco_V2 : V2 ; concupitor_M_N : N ; concurator_M_N : N ; concurialis_A : A ; @@ -12804,7 +12889,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { conflator_M_N : N ; conflatorium_N_N : N ; conflatura_F_N : N ; - conflax_F_N : N ; + conflax_F_N : N ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); conflax_M_N : N ; conflexus_A : A ; conflictatio_F_N : N ; @@ -12816,11 +12901,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { conflictus_M_N : N ; confligatus_A : A ; confligium_N_N : N ; - confligo_V : V ; + confligo_V2 : V2 ; conflo_V2 : V2 ; conflorens_A : A ; confloreo_V : V ; - conflox_F_N : N ; + conflox_F_N : N ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); conflox_M_N : N ; confluctuo_V : V ; confluens_M_N : N ; @@ -12828,7 +12913,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { confluo_V : V ; confluus_A : A ; confluvium_N_N : N ; - conflux_F_N : N ; + conflux_F_N : N ; -- [XXXFO] :: places (pl.) with rivers on all sides; junction/meeting of several rivers; conflux_M_N : N ; confodio_V2 : V2 ; confoederatio_F_N : N ; @@ -12865,7 +12950,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { confrater_M_N : N ; confraternitas_F_N : N ; confratria_F_N : N ; - confrax_F_N : N ; + confrax_F_N : N ; -- [XXXFW] :: places (pl.) exposed on all sides to the winds; (L+S); confrax_M_N : N ; confremo_V : V ; confrequento_V2 : V2 ; @@ -12907,7 +12992,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { congeminatio_F_N : N ; congemino_V2 : V2 ; congemisco_V : V ; - congemo_V : V ; + congemo_V2 : V2 ; congenatus_A : A ; congener_A : A ; congener_M_N : N ; @@ -13047,13 +13132,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { conjunctus_M_N : N ; conjungo_V2 : V2 ; conjunx_A : A ; - conjunx_F_N : N ; + conjunx_F_N : N ; -- [XXXBO] :: spouse/mate/consort; husband/wife/bride/fiancee/intended; concubine; yokemate; conjunx_M_N : N ; conjuratio_F_N : N ; conjuratus_A : A ; conjuratus_M_N : N ; conjuro_V : V ; - conjux_F_N : N ; + conjux_F_N : N ; -- [XXXBO] :: spouse/mate/consort; husband/wife/bride/fiancee/intended; concubine; yokemate; conjux_M_N : N ; conlabasco_V : V ; conlabefacto_V : V ; @@ -13189,7 +13274,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { conmers_F_N : N ; conmetior_V : V ; conmitigo_V2 : V2 ; - conmitto_V : V ; + conmitto_V2 : V2 ; conmolior_V : V ; conmonefacio_V2 : V2 ; conmonefio_V : V ; @@ -13242,7 +13327,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { conpages_F_N : N ; conpago_F_N : N ; conpar_A : A ; - conpar_F_N : N ; + conpar_F_N : N ; -- [XXXCO] :: fellow, partner, equal; comrade; husband/wife; pair (of animals also), mate; conpar_M_N : N ; conpar_N_N : N ; conparabilis_A : A ; @@ -13303,7 +13388,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { conpetitio_F_N : N ; conpetitor_M_N : N ; conpetitrix_F_N : N ; - conpeto_V : V ; + conpeto_V2 : V2 ; conpetum_N_N : N ; conphretor_M_N : N ; conpilatio_F_N : N ; @@ -13382,14 +13467,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { conpressus_A : A ; conpressus_M_N : N ; conprimens_A : A ; - conprimo_V : V ; conprimo_V2 : V2 ; conprobatio_F_N : N ; conprobator_M_N : N ; conprobo_V2 : V2 ; conpromissarius_A : A ; conpromissum_N_N : N ; - conpromitto_V : V ; + conpromitto_V2 : V2 ; conpulsio_F_N : N ; conpulso_V2 : V2 ; conpungo_V2 : V2 ; @@ -13460,7 +13544,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { conrugus_M_N : N ; conrumpo_V2 : V2 ; conrumptela_F_N : N ; - conruo_V : V ; + conruo_V2 : V2 ; conrupte_Adv : Adv ; conruptela_F_N : N ; conruptibilis_A : A ; @@ -13477,7 +13561,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { conruspor_V : V ; conrutundo_V2 : V2 ; cons_N : N ; - consacerdos_F_N : N ; + consacerdos_F_N : N ; -- [DEXFO] :: fellow-priest/priestess; consacerdos_M_N : N ; consacraneus_A : A ; consacraneus_M_N : N ; @@ -13499,7 +13583,6 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { consanguinitas_F_N : N ; consano_V2 : V2 ; consarcino_V2 : V2 ; - consario_V : V ; consario_V2 : V2 ; consarrio_V2 : V2 ; consatio_F_N : N ; @@ -13509,13 +13592,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { consceleratus_A : A ; consceleratus_M_N : N ; conscelero_V2 : V2 ; - conscendo_V : V ; + conscendo_V2 : V2 ; conscensio_F_N : N ; conscensus_M_N : N ; conscia_C_N : N ; conscientia_F_N : N ; conscindo_V2 : V2 ; - conscio_V : V ; + conscio_V2 : V2 ; conscisco_V2 : V2 ; conscissio_F_N : N ; conscius_A : A ; @@ -13563,7 +13646,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { consentaneum_N_N : N ; consentaneus_A : A ; consentiens_A : A ; - consentio_V : V ; + consentio_V2 : V2 ; consentium_N_N : N ; consepelio_V2 : V2 ; consepio_V2 : V2 ; @@ -13635,7 +13718,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { consiptum_N_N : N ; consistentia_F_N : N ; consistio_F_N : N ; - consisto_V : V ; + consisto_V2 : V2 ; consistorialis_A : A ; consistorianus_A : A ; consistorianus_M_N : N ; @@ -13683,7 +13766,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { consonus_A : A ; consopio_V2 : V2 ; consors_A : A ; - consors_F_N : N ; + consors_F_N : N ; -- [XXXCO] :: sharer; partner/associate/collogue/fellow; consort/wife; brother/sister; co-heir consors_M_N : N ; consortalis_A : A ; consortio_F_N : N ; @@ -13749,7 +13832,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { constipatio_F_N : N ; constipo_V2 : V2 ; constitio_F_N : N ; - constituo_V : V ; + constituo_V2 : V2 ; constitutio_F_N : N ; constitutionarius_M_N : N ; constitutivus_A : A ; @@ -13790,7 +13873,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { consuefacio_V2 : V2 ; consuefio_V : V ; consueo_V2 : V2 ; - consuesco_V : V ; + consuesco_V2 : V2 ; consuete_Adv : Adv ; consuetio_F_N : N ; consuetudinarie_Adv : Adv ; @@ -13804,7 +13887,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { consulariter_Adv : Adv ; consularius_A : A ; consulatus_M_N : N ; - consulo_V : V ; + consulo_V2 : V2 ; consultatio_F_N : N ; consultator_M_N : N ; consultatorius_A : A ; @@ -13905,7 +13988,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { contemtrix_F_N : N ; contemtus_A : A ; contemtus_M_N : N ; - contendo_V : V ; + contendo_V2 : V2 ; contenebrasco_V2 : V2 ; contenebro_V2 : V2 ; contente_Adv : Adv ; @@ -14001,7 +14084,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { contollo_V2 : V2 ; contonat_V0 : V ; contor_V : V ; - contoral_F_N : N ; + contoral_F_N : N ; -- [FXXFM] :: spouse; contoral_M_N : N ; contorqueo_V2 : V2 ; contorreo_V2 : V2 ; @@ -14028,7 +14111,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { contractus_A : A ; contractus_M_N : N ; contradicibilis_A : A ; - contradico_V : V ; + contradico_V2 : V2 ; contradictio_F_N : N ; contradictor_M_N : N ; contradictorium_N_N : N ; @@ -14065,8 +14148,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { contrectator_M_N : N ; contrecto_V2 : V2 ; contrectus_A : A ; - contremesco_V : V ; - contremisco_V : V ; + contremesco_V2 : V2 ; + contremisco_V2 : V2 ; contremo_V : V ; contremulus_A : A ; contreo_V2 : V2 ; @@ -14091,7 +14174,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { controversum_N_N : N ; controversus_A : A ; controversus_Adv : Adv ; - controverto_V : V ; + controverto_V2 : V2 ; contrpuncticus_A : A ; contrpunctum_N_N : N ; contrucido_V2 : V2 ; @@ -14156,7 +14239,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { conveniens_A : A ; convenienter_Adv : Adv ; convenientia_F_N : N ; - convenio_V : V ; + convenio_V2 : V2 ; convenit_V0 : V ; conventicium_N_N : N ; conventicius_A : A ; @@ -14189,10 +14272,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { conversus_M_N : N ; convertibilis_A : A ; convertibiliter_Adv : Adv ; - converto_V : V ; + converto_V2 : V2 ; convertor_V : V ; convescor_V : V ; - convestio_V : V ; + convestio_V2 : V2 ; conveteranus_M_N : N ; convexio_F_N : N ; convexitas_F_N : N ; @@ -14359,7 +14442,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { corax_M_N : N ; corban_N : N ; corbicula_F_N : N ; - corbis_F_N : N ; + corbis_F_N : N ; -- [XXXCO] :: basket; (esp. one used for gathering grain/fruit; basketful (quantity); corbis_M_N : N ; corbita_F_N : N ; corbitus_A : A ; @@ -14405,8 +14488,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { coriolum_N_N : N ; corion_N_N : N ; corior_V : V ; + coris_1_N : N ; -- [XAXNS] :: plant; (species of hypericon); its seed; + coris_2_N : N ; coris_F_N : N ; - coris_N : N ; corissum_N_N : N ; corium_N_N : N ; corius_M_N : N ; @@ -14537,7 +14621,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { corrumpo_V2 : V2 ; corrumptela_F_N : N ; corrumptella_F_N : N ; - corruo_V : V ; + corruo_V2 : V2 ; corrupte_Adv : Adv ; corruptela_F_N : N ; corruptibilis_A : A ; @@ -14558,7 +14642,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { corsoides_M_N : N ; corsum_Adv : Adv ; corsus_Adv : Adv ; - cortex_F_N : N ; + cortex_F_N : N ; -- [XAXBO] :: bark; cork; skin, rind, husk, hull; outer covering, shell, carapace, chrysalis; cortex_M_N : N ; corticatus_A : A ; corticeus_A : A ; @@ -14602,7 +14686,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cos_F_N : N ; cos_N : N ; coscinomantia_F_N : N ; - cosentio_V : V ; + cosentio_V2 : V2 ; cosidero_V2 : V2 ; cosigno_V2 : V2 ; cosmeta_M_N : N ; @@ -14613,7 +14697,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cosmicos_M_N : N ; cosmicum_N_N : N ; cosmicus_A : A ; - cosmitto_V : V ; + cosmitto_V2 : V2 ; cosmogonia_F_N : N ; cosmographia_F_N : N ; cosmographicus_A : A ; @@ -14713,7 +14797,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { crastino_Adv : Adv ; crastinum_N_N : N ; crastinus_A : A ; - crataegis_N : N ; + crataegis_1_N : N ; -- [XAXNO] :: plant (unidentified); (another name for the plant satyrion L+S); + crataegis_2_N : N ; crataegon_M_N : N ; crataegonon_N_N : N ; crataegonos_F_N : N ; @@ -14743,12 +14828,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { creatus_A : A ; creatus_M_N : N ; creber_A : A ; - crebesco_V : V ; + crebesco_V2 : V2 ; crebo_Adv : Adv ; crebra_Adv : Adv ; crebratus_A : A ; crebre_Adv : Adv ; - crebresco_V : V ; + crebresco_V2 : V2 ; crebrinodosus_A : A ; crebrinodus_A : A ; crebrisurus_A : A ; @@ -14757,7 +14842,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { crebritudo_F_N : N ; crebro_Adv : Adv ; credencia_F_N : N ; - credens_F_N : N ; + credens_F_N : N ; -- [EEXCE] :: believer; the_faithful (pl.); credens_M_N : N ; credentarius_M_N : N ; credentia_F_N : N ; @@ -14768,13 +14853,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { creditrix_F_N : N ; creditum_N_N : N ; creditus_A : A ; - credo_V : V ; + credo_V2 : V2 ; credra_F_N : N ; credulitas_F_N : N ; credulus_A : A ; creduo_V : V ; cremabilis_A : A ; - cremaster_N : N ; + cremaster_1_N : N ; -- [XBXFO] :: cremaster muscle; (muscle of the spermatic cord by which testicle is suspended); + cremaster_2_N : N ; crematio_F_N : N ; cremator_M_N : N ; crementum_N_N : N ; @@ -14866,7 +14952,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { criobolium_N_N : N ; cripa_F_N : N ; crisimus_A : A ; - crisis_N : N ; + crisis_1_N : N ; -- [XXXEO] :: judgment (literary); crisis, critical stage in one's life; decision (L+S); + crisis_2_N : N ; criso_V : V ; crispans_A : A ; crispatorium_N_N : N ; @@ -15256,14 +15343,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cupedia_F_N : N ; cupedinarius_A : A ; cupedium_N_N : N ; - cupedo_F_N : N ; + cupedo_F_N : N ; -- [XXXEO] :: delicacy; desire; [forem ~ => delicacy market in Rome]; cupedo_M_N : N ; cupella_F_N : N ; cupes_A : A ; cupide_Adv : Adv ; cupiditas_F_N : N ; cupidium_N_N : N ; - cupido_F_N : N ; + cupido_F_N : N ; -- [XXXBO] :: desire/love/wish/longing (passionate); lust; greed, appetite; desire for gain; cupido_M_N : N ; cupidus_A : A ; cupiens_A : A ; @@ -15284,7 +15371,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cuppedinarius_A : A ; cuppedinarius_M_N : N ; cuppedium_N_N : N ; - cuppedo_F_N : N ; + cuppedo_F_N : N ; -- [XXXEO] :: |delicacy; desire; [forem ~ => delicacy market in Rome]; cuppedo_M_N : N ; cuppes_A : A ; cuppula_F_N : N ; @@ -15401,7 +15488,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { custodiola_F_N : N ; custodite_Adv : Adv ; custoditio_F_N : N ; - custos_F_N : N ; + custos_F_N : N ; -- [XXXAO] :: |jailer, warden; poll watcher; spy; garrison; container; replacement vine shoot; custos_M_N : N ; cusuc_N : N ; cuticula_F_N : N ; @@ -15485,7 +15572,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cynanche_F_N : N ; cynapanxis_F_N : N ; cynarium_N_N : N ; - cynas_N : N ; + cynas_1_N : N ; -- [XAQNO] :: Arabian tree; + cynas_2_N : N ; cynegiolum_N_N : N ; cynice_Adv : Adv ; cynicus_A : A ; @@ -15528,14 +15616,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cyparittias_M_N : N ; cyperis_F_N : N ; cyperon_N_N : N ; - cyperos_F_N : N ; + cyperos_F_N : N ; -- [XAXDO] :: plant, galingale; preparation of its aromatic root; cyperos_M_N : N ; cyperum_N_N : N ; cyperus_C_N : N ; cyphi_N_N : N ; cyphus_M_N : N ; cypira_F_N : N ; - cypiros_F_N : N ; + cypiros_F_N : N ; -- [XAXNO] :: one/several sorts of gladiolus; (confused with cyperos); cypiros_M_N : N ; cypirus_C_N : N ; cypressinus_A : A ; @@ -15557,7 +15645,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { cytoplasma_N_N : N ; cytropus_M_N : N ; d_A : A ; - d_N : N ; + d_F_N : N ; -- [XXXCS] :: diem, abb. d; in calendar expression a. d. = ante diem = before the day; + d_M_N : N ; dablas_F_N : N ; dacrima_F_N : N ; dactylicus_A : A ; @@ -15625,7 +15714,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { daphnias_F_N : N ; daphnitis_F_N : N ; daphnoides_A : A ; - daphnon_N : N ; + daphnon_1_N : N ; -- [XAXEO] :: grove of laurels; + daphnon_2_N : N ; dapifer_M_N : N ; dapifex_M_N : N ; dapino_V2 : V2 ; @@ -15784,7 +15874,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { deceris_A : A ; deceris_F_N : N ; decerminum_N_N : N ; - decerno_V : V ; + decerno_V2 : V2 ; decerpo_V2 : V2 ; decerptor_M_N : N ; decertatio_F_N : N ; @@ -15847,7 +15937,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { declivitas_F_N : N ; decliviter_Adv : Adv ; decludo_V2 : V2 ; - decoco_V : V ; + decoco_V2 : V2 ; decocta_F_N : N ; decoctio_F_N : N ; decoctor_M_N : N ; @@ -15868,7 +15958,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { decondo_V2 : V2 ; decontor_V : V ; decontra_Adv : Adv ; - decoquo_V : V ; + decoquo_V2 : V2 ; decor_A : A ; decor_M_N : N ; decoramen_N_N : N ; @@ -15888,7 +15978,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { decremo_V2 : V2 ; decrepitus_A : A ; decrescentia_F_N : N ; - decresco_V : V ; + decresco_V2 : V2 ; decretale_N_N : N ; decretalis_A : A ; decretalista_M_N : N ; @@ -15928,7 +16018,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { decurionatus_A : A ; decurionus_M_N : N ; decuris_M_N : N ; - decurro_V : V ; + decurro_V2 : V2 ; decursio_F_N : N ; decursus_M_N : N ; decurtatio_F_N : N ; @@ -15963,7 +16053,6 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { dedicator_M_N : N ; dedicatorius_A : A ; dedicatus_A : A ; - dedico_V : V ; dedico_V2 : V2 ; dedignatio_F_N : N ; dedigno_V2 : V2 ; @@ -16327,7 +16416,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { delino_V2 : V2 ; delinquentia_F_N : N ; delinquio_F_N : N ; - delinquo_V : V ; + delinquo_V2 : V2 ; deliquatitudo_F_N : N ; deliquesco_V : V ; deliquia_F_N : N ; @@ -16351,7 +16440,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { delotus_A : A ; delphin_M_N : N ; delphinus_M_N : N ; - delphis_N : N ; + delphis_1_N : N ; -- [XAXFS] :: dolphin; ornament shaped like a dolphin; (part of water organ); constellation; + delphis_2_N : N ; delta_N : N ; delubrum_N_N : N ; deluctio_F_N : N ; @@ -16359,7 +16449,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { deluctor_V : V ; deludifico_V2 : V2 ; deludificor_V : V ; - deludo_V : V ; + deludo_V2 : V2 ; delumbis_A : A ; delumbo_V2 : V2 ; deluo_V2 : V2 ; @@ -16367,7 +16457,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { delusor_M_N : N ; delustro_V2 : V2 ; deluto_V2 : V2 ; - dem_N : N ; + dem_1_N : N ; -- [XXHEO] :: community, a people; administrative district (in Attica); tract of land (L+S); + dem_2_N : N ; demadesco_V : V ; demagis_Adv : Adv ; demagogicus_A : A ; @@ -16581,7 +16672,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { depeculator_M_N : N ; depeculo_V2 : V2 ; depeculor_V : V ; - depello_V : V ; + depello_V2 : V2 ; dependentia_F_N : N ; dependeo_V : V ; dependo_V2 : V2 ; @@ -16592,7 +16683,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { deperditum_N_N : N ; deperditus_A : A ; deperdo_V2 : V2 ; - depereo_V : V ; + depereo_1_V2 : V2 ; + depereo_2_V2 : V2 ; depetigo_F_N : N ; depictio_F_N : N ; depilatio_F_N : N ; @@ -16752,13 +16844,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { derelictus_M_N : N ; derelinquo_V2 : V2 ; derepente_Adv : Adv ; - derepo_V : V ; + derepo_V2 : V2 ; derideo_V2 : V2 ; deridiculum_N_N : N ; deridiculus_A : A ; derigeo_V2 : V2 ; derigesco_V : V ; - derigo_V : V ; derigo_V2 : V2 ; deripio_V2 : V2 ; derisio_F_N : N ; @@ -16778,14 +16869,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { derogo_V : V ; derosus_A : A ; deruncino_V2 : V2 ; - deruo_V : V ; + deruo_V2 : V2 ; derupio_V2 : V2 ; deruptum_N_N : N ; deruptus_A : A ; desacrifico_V2 : V2 ; desaevio_V : V ; desalto_V2 : V2 ; - descendens_F_N : N ; + descendens_F_N : N ; -- [XXXFS] :: descendant; (pl.) posterity, descendants; descendens_M_N : N ; descendo_V : V ; descensio_F_N : N ; @@ -16837,7 +16928,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { desidies_F_N : N ; desidiose_Adv : Adv ; desidiosus_A : A ; - desido_V : V ; + desido_V2 : V2 ; desiduo_Adv : Adv ; designate_Adv : Adv ; designatio_F_N : N ; @@ -16847,11 +16938,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { desilio_V2 : V2 ; desinentia_F_N : N ; desino_V : V ; + desino_V2 : V2 ; desioculus_M_N : N ; desipiens_A : A ; desipientia_F_N : N ; desipio_V : V ; - desisto_V : V ; + desisto_V2 : V2 ; desitus_A : A ; desitus_M_N : N ; desolatio_F_N : N ; @@ -16886,7 +16978,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { despicatus_A : A ; despicatus_M_N : N ; despicientia_F_N : N ; - despicio_V : V ; + despicio_V2 : V2 ; despicor_V : V ; despicus_A : A ; desplendesco_V : V ; @@ -16901,7 +16993,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { desponsio_F_N : N ; desponso_V2 : V2 ; desponsor_M_N : N ; - desposco_V : V ; + desposco_V2 : V2 ; despotice_Adv : Adv ; despumatio_F_N : N ; despumo_V : V ; @@ -16954,9 +17046,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { desudasco_V : V ; desudatio_F_N : N ; desudo_V : V ; - desuefacio_V : V ; + desuefacio_V2 : V2 ; desuefio_V : V ; - desuesco_V : V ; + desuesco_V2 : V2 ; desuetudo_F_N : N ; desuetus_A : A ; desugo_V2 : V2 ; @@ -16974,6 +17066,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { desuper_Adv : Adv ; desuperne_Adv : Adv ; desurgo_V : V ; + desurgo_V2 : V2 ; desurrectio_F_N : N ; desursum_Adv : Adv ; detectio_F_N : N ; @@ -17078,7 +17171,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { deversorius_A : A ; deversus_Adv : Adv ; deverticulum_N_N : N ; - deverto_V : V ; + deverto_V2 : V2 ; devescor_V : V ; devestio_V2 : V2 ; devestivus_A : A ; @@ -17120,7 +17213,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { devorsorium_N_N : N ; devorticulum_N_N : N ; devortium_N_N : N ; - devorto_V : V ; + devorto_V2 : V2 ; devotamentum_N_N : N ; devotatio_F_N : N ; devote_Adv : Adv ; @@ -17332,7 +17425,6 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { dicimonium_N_N : N ; dicio_F_N : N ; dicis_F_N : N ; - dico_V : V ; dico_V2 : V2 ; dicrota_F_N : N ; dicrotum_N_N : N ; @@ -17378,14 +17470,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { diductio_F_N : N ; diecula_F_N : N ; dierectus_A : A ; - dies_F_N : N ; + dies_F_N : N ; -- [XXXAO] :: |specific day; day in question; date of letter; festival; lifetime, age; time; dies_M_N : N ; diesis_F_N : N ; dieteris_F_N : N ; dietim_Adv : Adv ; diezeugmenon_N_N : N ; diezeugmenos_A : A ; - diezeuxis_N : N ; + diezeuxis_1_N : N ; -- [FDXFZ] :: diezeuxis note; note equal to nete-diezeugmenon; + diezeuxis_2_N : N ; diffamatio_F_N : N ; diffamatus_A : A ; diffamia_F_N : N ; @@ -17508,7 +17601,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { dijunctio_F_N : N ; dijunctivus_A : A ; dijunctus_A : A ; - dijungo_V : V ; + dijungo_V2 : V2 ; dikerion_N_N : N ; dikerium_N_N : N ; dilabidus_A : A ; @@ -17625,16 +17718,19 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { dinuptila_F_N : N ; dinus_A : A ; diobolaris_A : A ; - dioces_N : N ; + dioces_1_N : N ; -- [EEXDM] :: diocese, province; Roman provincial district; (later) bishop's jurisdiction; + dioces_2_N : N ; diocesanus_A : A ; diocesis_F_N : N ; - dioeces_N : N ; + dioeces_1_N : N ; -- [DLXDS] :: diocese, province; Roman provincial district; (later) bishop's jurisdiction; + dioeces_2_N : N ; dioecesanus_A : A ; dioecesis_F_N : N ; dioecetes_M_N : N ; diogmita_M_N : N ; dionymus_A : A ; - dionysonymphas_N : N ; + dionysonymphas_1_N : N ; -- [XAHNO] :: plant (unknown); (first y long); (also called casignete); + dionysonymphas_2_N : N ; diopetes_A : A ; diopetes_M_N : N ; dioptra_F_N : N ; @@ -17723,19 +17819,19 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { discantus_M_N : N ; discapedino_V2 : V2 ; discaveo_V : V ; - discedo_V : V ; + discedo_V2 : V2 ; disceptatio_F_N : N ; disceptator_M_N : N ; disceptio_F_N : N ; discepto_V : V ; - discerno_V : V ; - discerpo_V : V ; + discerno_V2 : V2 ; + discerpo_V2 : V2 ; discessio_F_N : N ; discessus_M_N : N ; discidium_N_N : N ; discido_V2 : V2 ; discinctus_A : A ; - discindo_V : V ; + discindo_V2 : V2 ; disciplina_F_N : N ; disciplinabilis_A : A ; disciplinaris_A : A ; @@ -17744,7 +17840,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { discipulatus_M_N : N ; discipulus_M_N : N ; discissus_A : A ; - discludo_V : V ; + discludo_V2 : V2 ; disco_V2 : V2 ; discographia_F_N : N ; discolor_A : A ; @@ -17768,7 +17864,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { discretio_F_N : N ; discretor_M_N : N ; discretus_A : A ; - discribo_V : V ; + discribo_V2 : V2 ; discrimen_N_N : N ; discriminale_N_N : N ; discriminalis_A : A ; @@ -17779,11 +17875,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { discubitus_M_N : N ; disculcio_V2 : V2 ; discumbens_M_N : N ; - discumbo_V : V ; + discumbo_V2 : V2 ; discurro_V : V ; discursus_M_N : N ; discus_M_N : N ; - discutio_V : V ; + discutio_V2 : V2 ; discuto_V : V ; disdiapason_N_N : N ; disdo_V2 : V2 ; @@ -17806,7 +17902,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { disjunctio_F_N : N ; disjunctivus_A : A ; disjunctus_A : A ; - disjungo_V : V ; + disjungo_V2 : V2 ; dismembratio_F_N : N ; dismembratus_A : A ; dismembro_V2 : V2 ; @@ -17819,7 +17915,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { dispartio_V2 : V2 ; dispartior_V : V ; dispector_M_N : N ; - dispello_V : V ; + dispello_V2 : V2 ; dispendiose_Adv : Adv ; dispendium_N_N : N ; dispendo_V : V ; @@ -17829,18 +17925,18 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { dispenso_V : V ; disperdo_V2 : V2 ; dispereo_V : V ; - dispergo_V : V ; + dispergo_V2 : V2 ; disperse_Adv : Adv ; dispersim_Adv : Adv ; dispersio_F_N : N ; dispertio_V2 : V2 ; dispertior_V : V ; dispertitivus_A : A ; - dispesco_V : V ; - dispicio_V : V ; + dispesco_V2 : V2 ; + dispicio_V2 : V2 ; displiceo_V : V ; displodeo_V : V ; - displodo_V : V ; + displodo_V2 : V2 ; displosio_F_N : N ; dispolio_V2 : V2 ; dispono_V2 : V2 ; @@ -17851,7 +17947,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { dispositor_M_N : N ; disproportio_F_N : N ; dispunctio_F_N : N ; - dispungo_V : V ; + dispungo_V2 : V2 ; disputatio_F_N : N ; disputo_V : V ; disquiro_V : V ; @@ -17860,21 +17956,20 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { disratio_F_N : N ; disrationo_V : V ; disrumpo_V2 : V2 ; - dissaepio_V : V ; + dissaepio_V2 : V2 ; disseco_V : V ; disseco_V2 : V2 ; dissectio_F_N : N ; disseisina_F_N : N ; - disseisio_V : V ; + disseisio_V2 : V2 ; disseisitor_M_N : N ; dissemino_V : V ; dissensio_F_N : N ; dissensus_A : A ; dissensus_M_N : N ; dissentaneus_A : A ; - dissentio_V : V ; + dissentio_V2 : V2 ; disserenat_V0 : V ; - dissero_V : V ; dissero_V2 : V2 ; disserto_V : V ; dissicio_V2 : V2 ; @@ -17884,7 +17979,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { dissignatio_F_N : N ; dissignator_M_N : N ; dissigno_V2 : V2 ; - dissilio_V : V ; + dissilio_V2 : V2 ; dissilo_V : V ; dissimilis_A : A ; dissimilitudo_F_N : N ; @@ -17900,7 +17995,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { dissocio_V : V ; dissolutio_F_N : N ; dissolutus_A : A ; - dissolvo_V : V ; + dissolvo_V2 : V2 ; dissonanter_Adv : Adv ; dissonantia_F_N : N ; dissonantium_N_N : N ; @@ -17910,14 +18005,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { dissuasio_F_N : N ; dissuasor_M_N : N ; dissuasorius_A : A ; - dissuesco_V : V ; + dissuesco_V2 : V2 ; dissulto_V : V ; dissuo_V2 : V2 ; dissupo_V : V ; distabesco_V : V ; distans_A : A ; distantia_F_N : N ; - distendo_V : V ; + distendo_V2 : V2 ; distenno_V : V ; distentio_F_N : N ; distentus_A : A ; @@ -17931,14 +18026,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { distinctio_F_N : N ; distinctus_A : A ; distineo_V : V ; - distinguo_V : V ; + distinguo_V2 : V2 ; disto_V : V ; distorqueo_V : V ; distortus_A : A ; distractio_F_N : N ; distractus_A : A ; - distraho_V : V ; - distribuo_V : V ; + distraho_V2 : V2 ; + distribuo_V2 : V2 ; distributio_F_N : N ; distributivus_A : A ; distributor_M_N : N ; @@ -18000,12 +18095,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { diversorium_N_N : N ; diversorius_A : A ; diversus_A : A ; - diverto_V : V ; + diverto_V2 : V2 ; dives_A : A ; dives_M_N : N ; divexo_V2 : V2 ; dividendus_A : A ; - divido_V : V ; + divido_V2 : V2 ; dividuus_A : A ; divinatio_F_N : N ; divinitas_F_N : N ; @@ -18021,7 +18116,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { divisus_M_N : N ; divitia_F_N : N ; divortium_N_N : N ; - divorto_V : V ; + divorto_V2 : V2 ; divulgamen_N_N : N ; divulgatio_F_N : N ; divulgo_V : V ; @@ -18109,7 +18204,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { donec_Conj : Conj ; dono_V : V ; donum_N_N : N ; - dorcas_N : N ; + dorcas_1_N : N ; -- [XAXEC] :: gazelle, antelope; + dorcas_2_N : N ; dorcus_C_N : N ; dormeo_V : V ; dormio_V : V ; @@ -18146,7 +18242,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { drapeta_M_N : N ; drappus_M_N : N ; dromadarius_M_N : N ; - dromas_N : N ; + dromas_1_N : N ; -- [XAXEO] :: dromedary; + dromas_2_N : N ; dromedaria_F_N : N ; dromedarius_M_N : N ; dromo_F_N : N ; @@ -18163,7 +18260,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ducianus_M_N : N ; duciloquus_A : A ; ducissa_F_N : N ; - duco_V : V ; + duco_V2 : V2 ; ductilis_A : A ; ductilitas_F_N : N ; ductim_Adv : Adv ; @@ -18260,7 +18357,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { eatenus_Adv : Adv ; ebenum_N_N : N ; ebenus_C_N : N ; - ebibo_V : V ; + ebibo_V2 : V2 ; ebiscum_N_N : N ; eblandior_V : V ; eborarius_A : A ; @@ -18272,7 +18369,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ebriolus_A : A ; ebriosus_A : A ; ebrius_A : A ; - ebullio_V : V ; + ebullio_V2 : V2 ; ebullo_V : V ; ebulum_N_N : N ; ebulus_F_N : N ; @@ -18312,7 +18409,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ecfloro_V : V ; ecfo_V2 : V2 ; ecfor_V : V ; - ecfugio_V : V ; + ecfugio_V2 : V2 ; ecfundo_V2 : V2 ; echeneis_F_N : N ; echidna_F_N : N ; @@ -18341,11 +18438,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { edentulus_A : A ; edepol_Interj : Interj ; edibilis_A : A ; - edico_V : V ; + edico_V2 : V2 ; edictalis_A : A ; edictum_N_N : N ; - edisco_V : V ; - edissero_V : V ; + edisco_V2 : V2 ; + edissero_V2 : V2 ; edisserto_V : V ; editicius_A : A ; editio_F_N : N ; @@ -18356,13 +18453,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { edoceo_V : V ; edolo_V2 : V2 ; edomo_V2 : V2 ; - edormio_V : V ; + edormio_V2 : V2 ; edormisco_V : V ; educatio_F_N : N ; educativus_A : A ; educator_M_N : N ; educatrix_F_N : N ; educo_V : V ; + educo_V2 : V2 ; edulcoro_V : V ; edulis_A : A ; edulium_N_N : N ; @@ -18389,7 +18487,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { effertus_A : A ; efferus_A : A ; effervescentia_F_N : N ; - effervesco_V : V ; + effervesco_V2 : V2 ; effervo_V : V ; effetha_V2 : V2 ; effetus_A : A ; @@ -18400,11 +18498,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { efficiens_A : A ; efficienter_Adv : Adv ; efficientia_F_N : N ; - efficio_V : V ; + efficio_V2 : V2 ; effigia_F_N : N ; effigies_F_N : N ; effigio_V : V ; - effingo_V : V ; + effingo_V2 : V2 ; effio_V : V ; efflagitatio_F_N : N ; efflagito_V : V ; @@ -18413,11 +18511,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { efflo_V : V ; effloresco_V : V ; effloro_V : V ; - effluo_V : V ; + effluo_V2 : V2 ; effluvium_N_N : N ; effluxus_A : A ; effo_V2 : V2 ; - effodio_V : V ; + effodio_V2 : V2 ; effor_V : V ; efformatio_F_N : N ; efformo_V2 : V2 ; @@ -18425,10 +18523,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { effrenatus_A : A ; effreno_V : V ; effrenus_A : A ; - effringo_V : V ; + effringo_V2 : V2 ; effrons_A : A ; effugatio_F_N : N ; - effugio_V : V ; + effugio_V2 : V2 ; effugium_N_N : N ; effugo_V2 : V2 ; effulgeo_V : V ; @@ -18439,12 +18537,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { effusus_A : A ; effutio_V2 : V2 ; effuttio_V2 : V2 ; - effutuo_V : V ; + effutuo_V2 : V2 ; egelidus_A : A ; egens_A : A ; egenus_A : A ; egeo_V : V ; - egero_V : V ; + egero_V2 : V2 ; egestas_F_N : N ; egloga_F_N : N ; egoismus_M_N : N ; @@ -18461,7 +18559,6 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ehoi_Interj : Interj ; ei_Interj : Interj ; eia_Interj : Interj ; - eicio_V : V ; eicio_V2 : V2 ; eiero_V : V ; eileton_N_N : N ; @@ -18484,7 +18581,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { elaboro_V : V ; elamentabilis_A : A ; elanguens_A : A ; - elanguesco_V : V ; + elanguesco_V2 : V2 ; elapsus_M_N : N ; elargio_V2 : V2 ; elasticitas_F_N : N ; @@ -18553,10 +18650,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { elevatio_F_N : N ; elevo_V : V ; eleyson_V : V ; - elicio_V : V ; - elido_V : V ; + elicio_V2 : V2 ; + elido_V2 : V2 ; eligibilis_A : A ; - eligo_V : V ; + eligo_V2 : V2 ; elimate_Adv : Adv ; eliminator_M_N : N ; elimino_V : V ; @@ -18590,10 +18687,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { eluctor_V : V ; elucubro_V : V ; elucubror_V : V ; - eludo_V : V ; + eludo_V2 : V2 ; elul_N : N ; elumbis_A : A ; - eluo_V : V ; + eluo_V2 : V2 ; elutorius_A : A ; eluvies_F_N : N ; eluvio_F_N : N ; @@ -18629,7 +18726,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { emercor_V : V ; emereo_V : V ; emereor_V : V ; - emergo_V : V ; + emergo_V2 : V2 ; emerita_F_N : N ; emeritum_N_N : N ; emeritus_A : A ; @@ -18652,26 +18749,29 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { emissorium_N_N : N ; emissorius_A : A ; emistrum_N_N : N ; - emitto_V : V ; - emo_V : V ; + emitto_V2 : V2 ; + emo_V2 : V2 ; emoderor_V : V ; emodulor_V : V ; emolior_V : V ; - emollio_V : V ; + emollio_V2 : V2 ; emolumentum_N_N : N ; emoneo_V2 : V2 ; emorior_V : V ; emortualis_A : A ; emoveo_V : V ; empathia_F_N : N ; - emphasis_N : N ; + emphasis_1_N : N ; -- [XGXES] :: emphasis; stress; + emphasis_2_N : N ; emphatice_Adv : Adv ; emphaticus_A : A ; - emphyteusis_N : N ; + emphyteusis_1_N : N ; -- [DLXES] :: emphyteusis (permanent land tenure for farming/rent); E:lease on church goods; + emphyteusis_2_N : N ; emphyteuta_F_N : N ; emphyteuta_M_N : N ; emphyteuticus_A : A ; - emphyteutis_N : N ; + emphyteutis_1_N : N ; -- [ELXES] :: permanent land tenure; + emphyteutis_2_N : N ; empiricus_A : A ; empiricus_M_N : N ; empirismus_M_N : N ; @@ -18691,8 +18791,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { emunctorium_N_N : N ; emundatio_F_N : N ; emundo_V2 : V2 ; - emungo_V : V ; - emunio_V : V ; + emungo_V2 : V2 ; + emunio_V2 : V2 ; en_Interj : Interj ; enarmonicon_N_N : N ; enarmonicus_A : A ; @@ -18736,7 +18836,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { enim_Conj : Conj ; enimvero_Conj : Conj ; eniteo_V : V ; - enitesco_V : V ; + enitesco_V2 : V2 ; enitor_V : V ; enixe_Adv : Adv ; eno_V : V ; @@ -18760,7 +18860,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { entomologia_F_N : N ; entomologus_M_N : N ; enubilo_V2 : V2 ; - enubo_V : V ; + enubo_V2 : V2 ; enucleatio_F_N : N ; enucleatus_A : A ; enucleo_V2 : V2 ; @@ -18773,7 +18873,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { enutrio_V2 : V2 ; enzymum_N_N : N ; eo_Adv : Adv ; - eo_V : V ; + eo_1_V : V ; + eo_2_V : V ; eodem_Adv : Adv ; eparchia_F_N : N ; epastus_A : A ; @@ -18803,7 +18904,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { epidicticus_A : A ; epidipnis_F_N : N ; epigonation_N_N : N ; - epigramma_N : N ; + epigramma_1_N : N ; -- [XPXDO] :: inscription/epitaph; short poem/epigram; mark tattooed on criminal; + epigramma_2_N : N ; epigramma_N_N : N ; epigrammatum_N_N : N ; epigraphia_F_N : N ; @@ -18898,11 +19000,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ergo_Adv : Adv ; erica_F_N : N ; ericius_M_N : N ; - erigo_V : V ; + erigo_V2 : V2 ; erilis_A : A ; erinaceus_M_N : N ; erinacius_M_N : N ; - eripio_V : V ; + eripio_V2 : V2 ; eris_M_N : N ; erithacus_M_N : N ; ermellineus_A : A ; @@ -18920,20 +19022,20 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { erronee_Adv : Adv ; erroneus_A : A ; error_M_N : N ; - erubesco_V : V ; + erubesco_V2 : V2 ; eruca_F_N : N ; eructo_V : V ; eructuo_V : V ; erudero_V : V ; - erudio_V : V ; + erudio_V2 : V2 ; eruditio_F_N : N ; eruditus_A : A ; erugo_V2 : V2 ; erumpnus_A : A ; - erumpo_V : V ; + erumpo_V2 : V2 ; erungion_N_N : N ; erungium_N_N : N ; - eruo_V : V ; + eruo_V2 : V2 ; eruptio_F_N : N ; erus_M_N : N ; erutor_M_N : N ; @@ -18948,7 +19050,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { erythinus_M_N : N ; esca_F_N : N ; escarius_A : A ; - escendo_V : V ; + escendo_V2 : V2 ; eschaeta_F_N : N ; eschatologia_F_N : N ; eschatologicus_A : A ; @@ -18974,7 +19076,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { essonio_V2 : V2 ; essonium_N_N : N ; essuriens_A : A ; - essuriens_F_N : N ; + essuriens_F_N : N ; -- [XXXEE] :: hungry person; essuriens_M_N : N ; essurienter_Adv : Adv ; estimatio_F_N : N ; @@ -18983,12 +19085,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { estuans_A : A ; estuanter_Adv : Adv ; esuriens_A : A ; - esuriens_F_N : N ; + esuriens_F_N : N ; -- [XXXEE] :: hungry person; esuriens_M_N : N ; esurienter_Adv : Adv ; esuries_F_N : N ; esurio_M_N : N ; - esurio_V : V ; + esurio_V2 : V2 ; esuritio_F_N : N ; esuritor_M_N : N ; esus_M_N : N ; @@ -19059,10 +19161,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { eutyches_A : A ; euus_M_N : N ; evacuo_V2 : V2 ; - evado_V : V ; + evado_V2 : V2 ; evagino_V2 : V2 ; evagor_V : V ; - evalesco_V : V ; + evalesco_V2 : V2 ; evanesco_V : V ; evangeliarum_N_N : N ; evangelicus_A : A ; @@ -19080,9 +19182,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { evasio_F_N : N ; evasto_V : V ; evectio_F_N : N ; - eveho_V : V ; - evello_V : V ; - evenio_V : V ; + eveho_V2 : V2 ; + evello_V2 : V2 ; + evenio_V2 : V2 ; evenit_V0 : V ; eventilatus_A : A ; eventilo_V2 : V2 ; @@ -19093,7 +19195,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { everro_V2 : V2 ; eversio_F_N : N ; eversor_M_N : N ; - everto_V : V ; + everto_V2 : V2 ; evestigatus_A : A ; evictio_F_N : N ; evidens_A : A ; @@ -19102,8 +19204,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { evigilatio_F_N : N ; evigilo_V : V ; evilesco_V : V ; - evincio_V : V ; - evinco_V : V ; + evincio_V2 : V2 ; + evinco_V2 : V2 ; eviratus_A : A ; eviro_V : V ; eviscero_V : V ; @@ -19117,8 +19219,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { evolo_V : V ; evolutio_F_N : N ; evolutivus_A : A ; - evolvo_V : V ; - evomo_V : V ; + evolvo_V2 : V2 ; + evomo_V2 : V2 ; evovae_N : N ; evulgatio_F_N : N ; evulgo_V : V ; @@ -19131,7 +19233,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exactitudo_F_N : N ; exactor_M_N : N ; exactus_A : A ; - exacuo_V : V ; + exacuo_V2 : V2 ; exacutio_F_N : N ; exacutus_A : A ; exadversum_Adv : Adv ; @@ -19152,14 +19254,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exanimis_A : A ; exanimo_V : V ; exanimus_A : A ; - exanthema_N : N ; + exanthema_1_N : N ; -- [XXXFO] :: pustule; pimple, zit; eruption on the skin; + exanthema_2_N : N ; exantlo_V : V ; exaperio_V2 : V2 ; exarchia_F_N : N ; exarchus_M_N : N ; exardesco_V : V ; exardo_V : V ; - exaresco_V : V ; + exaresco_V2 : V2 ; exarmo_V2 : V2 ; exaro_V : V ; exasperatio_F_N : N ; @@ -19170,7 +19273,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exauctoro_V : V ; exaudibilis_A : A ; exaudiens_A : A ; - exaudio_V : V ; + exaudio_V2 : V2 ; exauditio_F_N : N ; exauditor_M_N : N ; exauguratio_F_N : N ; @@ -19188,7 +19291,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { excarnifico_V2 : V2 ; excarpus_M_N : N ; excavo_V2 : V2 ; - excedo_V : V ; + excedo_V2 : V2 ; excellens_A : A ; excellenter_Adv : Adv ; excellentia_F_N : N ; @@ -19206,18 +19309,18 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exceptorium_N_N : N ; exceptus_A : A ; excerebro_V2 : V2 ; - excerpo_V : V ; + excerpo_V2 : V2 ; excerptio_F_N : N ; excerptum_N_N : N ; excessivus_A : A ; excessus_M_N : N ; excetra_F_N : N ; excidium_N_N : N ; - excido_V : V ; + excido_V2 : V2 ; excieo_V : V ; excindo_V2 : V2 ; - excio_V : V ; - excipio_V : V ; + excio_V2 : V2 ; + excipio_V2 : V2 ; excipulum_N_N : N ; excisus_M_N : N ; excito_V : V ; @@ -19226,30 +19329,30 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exclamo_V : V ; exclaustratio_F_N : N ; exclaustratus_A : A ; - excludo_V : V ; + excludo_V2 : V2 ; exclusa_F_N : N ; exclusio_F_N : N ; exclusive_Adv : Adv ; exclusivus_A : A ; excogitatio_F_N : N ; excogito_V : V ; - excolo_V : V ; + excolo_V2 : V2 ; excommunicatio_F_N : N ; excommunico_V2 : V2 ; - excoquo_V : V ; + excoquo_V2 : V2 ; excorio_V2 : V2 ; excors_A : A ; excrementum_N_N : N ; - excresco_V : V ; + excresco_V2 : V2 ; excrucio_V : V ; excubia_F_N : N ; excubitor_M_N : N ; excubo_V : V ; - excudo_V : V ; + excudo_V2 : V2 ; exculco_V : V ; - exculpo_V : V ; + exculpo_V2 : V2 ; excuratus_A : A ; - excurro_V : V ; + excurro_V2 : V2 ; excursatio_F_N : N ; excursio_F_N : N ; excursus_M_N : N ; @@ -19260,7 +19363,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { excussio_F_N : N ; excusso_V2 : V2 ; excussus_A : A ; - excutio_V : V ; + excutio_V2 : V2 ; execo_V2 : V2 ; execrabilis_A : A ; execramentum_N_N : N ; @@ -19272,7 +19375,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { executor_M_N : N ; executorius_A : A ; executrix_F_N : N ; - exedo_V : V ; + exedo_1_V2 : V2 ; + exedo_2_V2 : V2 ; exedra_F_N : N ; exeges_F_N : N ; exegeta_C_N : N ; @@ -19297,7 +19401,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exequialis_A : A ; exequior_V : V ; exequor_V : V ; - exercens_F_N : N ; + exercens_F_N : N ; -- [XXXEE] :: operator; worker; doer, performer; exercens_M_N : N ; exerceo_V : V ; exercitatio_F_N : N ; @@ -19309,13 +19413,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exercitrix_A : A ; exercitualis_A : A ; exercitus_M_N : N ; - exero_V : V ; + exero_V2 : V2 ; exerro_V : V ; exerto_V : V ; exfornicatus_A : A ; - exfugio_V : V ; + exfugio_V2 : V2 ; exhalo_V : V ; - exhaurio_V : V ; + exhaurio_V2 : V2 ; exhaustus_A : A ; exhedra_F_N : N ; exheredatio_F_N : N ; @@ -19329,7 +19433,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exhonoratio_F_N : N ; exhonoro_V2 : V2 ; exhorreo_V : V ; - exhorresco_V : V ; + exhorresco_V2 : V2 ; exhortatio_F_N : N ; exhortativus_A : A ; exhorto_V : V ; @@ -19338,7 +19442,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exico_V2 : V2 ; exide_Adv : Adv ; exigentia_F_N : N ; - exigo_V : V ; + exigo_V2 : V2 ; exiguitas_F_N : N ; exiguus_A : A ; exilio_V : V ; @@ -19360,7 +19464,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { existimatio_F_N : N ; existimator_M_N : N ; existimo_V2 : V2 ; - existo_V : V ; + existo_V2 : V2 ; existumatio_F_N : N ; existumator_M_N : N ; existumo_V2 : V2 ; @@ -19403,24 +19507,24 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exosus_A : A ; exotericus_A : A ; exoticus_A : A ; - expallesco_V : V ; + expallesco_V2 : V2 ; expallidus_A : A ; expalpo_V2 : V2 ; - expando_V : V ; + expando_V2 : V2 ; expansio_F_N : N ; expatior_V : V ; - expavesco_V : V ; + expavesco_V2 : V2 ; expectatio_F_N : N ; expecto_V : V ; expectoro_V : V ; - expedio_V : V ; + expedio_V2 : V2 ; expeditio_F_N : N ; expeditus_A : A ; expeditus_M_N : N ; expedius_A : A ; - expello_V : V ; + expello_V2 : V2 ; expendiendus_A : A ; - expendo_V : V ; + expendo_V2 : V2 ; expensa_F_N : N ; expensio_F_N : N ; expensum_N_N : N ; @@ -19439,7 +19543,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { expertus_M_N : N ; expes_A : A ; expetesso_V2 : V2 ; - expeto_V : V ; + expeto_V2 : V2 ; expiatio_F_N : N ; expiatorius_A : A ; expilo_V : V ; @@ -19469,15 +19573,16 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { explosio_F_N : N ; explosivus_A : A ; expolio_V : V ; + expolio_V2 : V2 ; expolitor_M_N : N ; exponens_M_N : N ; exponentialis_A : A ; - expono_V : V ; + expono_V2 : V2 ; exporrigo_V2 : V2 ; exportaticius_A : A ; exportator_M_N : N ; exporto_V : V ; - exposco_V : V ; + exposco_V2 : V2 ; expositio_F_N : N ; expostulatio_F_N : N ; expostulo_V : V ; @@ -19485,7 +19590,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { expressim_Adv : Adv ; expressio_F_N : N ; expressus_A : A ; - exprimo_V : V ; + exprimo_V2 : V2 ; exprobrabilis_A : A ; exprobratio_F_N : N ; exprobro_V2 : V2 ; @@ -19498,14 +19603,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { expugno_V : V ; expulsio_F_N : N ; expultrix_F_N : N ; - expuo_V : V ; + expuo_V2 : V2 ; expurgatio_F_N : N ; expurgatus_A : A ; expurgo_V : V ; expurigatio_F_N : N ; exquaesitio_F_N : N ; exquaesitor_M_N : N ; - exquiro_V : V ; + exquiro_V2 : V2 ; exquisitio_F_N : N ; exquisitor_M_N : N ; exsanguis_A : A ; @@ -19516,8 +19621,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exscidium_N_N : N ; exscindo_V2 : V2 ; exscreo_V2 : V2 ; - exscribo_V : V ; - exsculpo_V : V ; + exscribo_V2 : V2 ; + exsculpo_V2 : V2 ; exseco_V2 : V2 ; exsecrabilis_A : A ; exsecramentum_N_N : N ; @@ -19536,7 +19641,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exsequialis_A : A ; exsequior_V : V ; exsequor_V : V ; - exsero_V : V ; + exsero_V2 : V2 ; exserto_V : V ; exsicco_V : V ; exsico_V2 : V2 ; @@ -19544,7 +19649,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exsilium_N_N : N ; exsistentia_F_N : N ; exsistimatio_F_N : N ; - exsisto_V : V ; + exsisto_V2 : V2 ; exsolvo_V2 : V2 ; exsomnis_A : A ; exsors_A : A ; @@ -19554,30 +19659,31 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exspergo_V2 : V2 ; exspes_A : A ; exspiro_V : V ; - exsplendesco_V : V ; + exsplendesco_V2 : V2 ; exspolio_V : V ; - exspuo_V : V ; + exspuo_V2 : V2 ; exstasia_F_N : N ; + exstasis_1_N : N ; -- [DXXES] :: terror; amazement; ecstasy; + exstasis_2_N : N ; exstasis_F_N : N ; - exstasis_N : N ; exstaticus_A : A ; exsterno_V : V ; exstimulo_V : V ; exstinctio_F_N : N ; exstinctivus_A : A ; exstinctor_M_N : N ; - exstinguo_V : V ; + exstinguo_V2 : V2 ; exstirpo_V2 : V2 ; exsto_V : V ; exstructio_F_N : N ; - exstruo_V : V ; + exstruo_V2 : V2 ; exsudo_V : V ; exsuffatio_F_N : N ; exsufflator_M_N : N ; exsufflo_V2 : V2 ; exsuflatora_M_N : N ; exsuflo_V2 : V2 ; - exsul_F_N : N ; + exsul_F_N : N ; -- [XXXBX] :: exile (M/F), banished person; wanderer; exsul_M_N : N ; exsulo_V : V ; exsultabilis_A : A ; @@ -19591,8 +19697,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exsurrectio_F_N : N ; exsuscito_V : V ; extasia_F_N : N ; + extasis_1_N : N ; -- [DXXES] :: terror; amazement; ecstasy; + extasis_2_N : N ; extasis_F_N : N ; - extasis_N : N ; extaticus_A : A ; extemplo_Adv : Adv ; extemporalis_A : A ; @@ -19619,13 +19726,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exterreo_V : V ; exterus_A : A ; exterus_M_N : N ; - extimesco_V : V ; + extimesco_V2 : V2 ; extimulo_V : V ; extimum_N_N : N ; extimus_A : A ; extinctio_F_N : N ; extinctorium_N_N : N ; - extinguo_V : V ; + extinguo_V2 : V2 ; extispex_M_N : N ; extispicio_V2 : V2 ; extispicum_N_N : N ; @@ -19641,7 +19748,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { extractum_N_N : N ; extraculum_N_N : N ; extradiocesanus_A : A ; - extraho_V : V ; + extraho_V2 : V2 ; extrajudicialis_A : A ; extrajudicialiter_Adv : Adv ; extramuranus_A : A ; @@ -19662,16 +19769,16 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { extrinsecus_Adv : Adv ; extritio_F_N : N ; extructio_F_N : N ; - extrudo_V : V ; - extruo_V : V ; + extrudo_V2 : V2 ; + extruo_V2 : V2 ; extum_N_N : N ; extumum_N_N : N ; extumus_A : A ; - extundo_V : V ; + extundo_V2 : V2 ; exturbo_V : V ; exubero_V : V ; exudo_V : V ; - exul_F_N : N ; + exul_F_N : N ; -- [XXXDX] :: exile (M/F), banished person; wanderer; exul_M_N : N ; exulceratio_F_N : N ; exulo_V : V ; @@ -19679,14 +19786,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { exulto_V : V ; exululo_V : V ; exundo_V : V ; - exuo_V : V ; + exuo_V2 : V2 ; exuperabilis_A : A ; exupero_V : V ; exurgeo_V2 : V2 ; exurgo_V : V ; exuro_V2 : V2 ; exuvia_F_N : N ; - f_N : N ; + f_F_N : N ; -- [XXXDX] :: son/daughter; filius/filia, abb. f.; + f_M_N : N ; faba_F_N : N ; fabella_F_N : N ; faber_A : A ; @@ -19710,7 +19818,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { fabulor_V : V ; fabulositas_F_N : N ; fabulosus_A : A ; - facesso_V : V ; + facesso_V2 : V2 ; facetia_F_N : N ; facetus_A : A ; fachirus_M_N : N ; @@ -19727,7 +19835,6 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { facinorose_Adv : Adv ; facinorosus_A : A ; facinus_N_N : N ; - facio_V : V ; facio_V2 : V2 ; facticius_A : A ; factio_F_N : N ; @@ -19794,7 +19901,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { fallacitas_F_N : N ; fallaciter_Adv : Adv ; fallax_A : A ; - fallo_V : V ; + fallo_V2 : V2 ; falsarius_M_N : N ; falsidicus_A : A ; falsificatio_F_N : N ; @@ -19815,7 +19922,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { familia_F_N : N ; familialis_A : A ; familiaris_A : A ; - familiaris_F_N : N ; + familiaris_F_N : N ; -- [XXXCO] :: member of household (family/servant/esp. slave); familiar acquaintance/friend; familiaris_M_N : N ; familiaritas_F_N : N ; familiariter_Adv : Adv ; @@ -19842,7 +19949,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { far_N_N : N ; farciatura_F_N : N ; farcimen_N_N : N ; - farcio_V : V ; + farcio_V2 : V2 ; farina_F_N : N ; farinatus_A : A ; farinula_F_N : N ; @@ -19865,7 +19972,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { fascisticus_A : A ; faseolus_M_N : N ; fasianus_A : A ; - fastidio_V : V ; + fastidio_V2 : V2 ; fastidiosus_A : A ; fastidium_N_N : N ; fastigatus_A : A ; @@ -20104,7 +20211,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { fideicommissarius_M_N : N ; fideicommissum_N_N : N ; fideicommissus_A : A ; - fideicommitto_V : V ; + fideicommitto_V2 : V2 ; fideiubeo_V2 : V2 ; fideiussor_M_N : N ; fidejussorius_A : A ; @@ -20119,7 +20226,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { fidicinus_A : A ; fidicula_F_N : N ; fidis_F_N : N ; - fido_V : V ; + fido_1_V2 : V2 ; + fido_2_V2 : V2 ; fiducia_F_N : N ; fiducialiter_Adv : Adv ; fiduciarius_A : A ; @@ -20127,7 +20235,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { figilina_F_N : N ; figlina_F_N : N ; figmentum_N_N : N ; - figo_V : V ; + figo_V2 : V2 ; figulina_F_N : N ; figulus_M_N : N ; figura_F_N : N ; @@ -20154,12 +20262,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { finaliter_Adv : Adv ; finalus_A : A ; finctus_A : A ; - findo_V : V ; + findo_V2 : V2 ; fine_Abl_Prep : Prep ; fingo_V2 : V2 ; fini_Abl_Prep : Prep ; - finio_V : V ; - finis_F_N : N ; + finio_V2 : V2 ; + finis_F_N : N ; -- [XXXAX] :: boundary, end, limit, goal; (pl.) country, territory, land; finis_M_N : N ; finitimus_A : A ; finitimus_M_N : N ; @@ -20236,7 +20344,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { flavus_A : A ; flebile_Adv : Adv ; flebilis_A : A ; - flecto_V : V ; + flecto_V2 : V2 ; fleo_V : V ; fletus_M_N : N ; flexanimus_A : A ; @@ -20277,7 +20385,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { fluidus_A : A ; fluito_V : V ; flumen_N_N : N ; - fluo_V : V ; + fluo_V2 : V2 ; fluorescens_A : A ; fluorescentia_F_N : N ; flustrum_N_N : N ; @@ -20299,7 +20407,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { focus_M_N : N ; fodico_V : V ; fodina_F_N : N ; - fodio_V : V ; + fodio_V2 : V2 ; fodorus_M_N : N ; fodrum_N_N : N ; fodrus_M_N : N ; @@ -20458,7 +20566,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { framea_F_N : N ; francomurarius_M_N : N ; francus_M_N : N ; - frango_V : V ; + frango_V2 : V2 ; frater_M_N : N ; fraterculus_M_N : N ; fraternitas_F_N : N ; @@ -20476,10 +20584,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { fremebundus_A : A ; fremitus_A : A ; fremitus_M_N : N ; - fremo_V : V ; + fremo_V2 : V2 ; fremor_M_N : N ; frendeo_V : V ; - frendo_V : V ; + frendo_V2 : V2 ; freno_V : V ; frenum_N_N : N ; frenus_M_N : N ; @@ -20496,7 +20604,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { frictio_F_N : N ; frigdor_M_N : N ; frigeo_V : V ; - frigesco_V : V ; + frigesco_V2 : V2 ; frigidarium_N_N : N ; frigidarius_A : A ; frigidulus_A : A ; @@ -20524,7 +20632,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { frondeus_A : A ; frondifer_A : A ; frondosus_A : A ; - frons_F_N : N ; + frons_F_N : N ; -- [XXXAX] :: forehead, brow; face; look; front; fore part of anything; frons_M_N : N ; frontal_N_N : N ; fronto_M_N : N ; @@ -20574,13 +20682,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { fucus_M_N : N ; fuga_F_N : N ; fugax_A : A ; - fugio_V : V ; + fugio_V2 : V2 ; fugitivus_A : A ; fugitivus_M_N : N ; fugo_V : V ; fulcimen_N_N : N ; fulcimentum_N_N : N ; - fulcio_V : V ; + fulcio_V2 : V2 ; fulcrum_N_N : N ; fulgens_A : A ; fulgenter_Adv : Adv ; @@ -20644,6 +20752,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { funditus_Adv : Adv ; fundius_Adv : Adv ; fundo_V : V ; + fundo_V2 : V2 ; fundus_M_N : N ; funebre_N_N : N ; funebris_A : A ; @@ -20659,7 +20768,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { funis_M_N : N ; funivia_F_N : N ; funus_N_N : N ; - fur_F_N : N ; + fur_F_N : N ; -- [XXXBO] :: thief, robber; robber bee; the Devil (personified) (Souter); fur_M_N : N ; furax_A : A ; furca_F_N : N ; @@ -20667,7 +20776,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { furcilla_F_N : N ; furcillo_V2 : V2 ; furcula_F_N : N ; - furfur_F_N : N ; + furfur_F_N : N ; -- [XAXCO] :: husks of grain, bran; scaly infection of the skin; furfur_M_N : N ; furia_F_N : N ; furialis_A : A ; @@ -20679,7 +20788,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { furo_V : V ; furor_M_N : N ; furor_V : V ; - furs_F_N : N ; + furs_F_N : N ; -- [DXXFP] :: thief, robber; robber bee; the Devil (personified); furs_M_N : N ; furtificus_A : A ; furtim_Adv : Adv ; @@ -20701,7 +20810,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { futatim_Adv : Adv ; futilis_A : A ; futtilis_A : A ; - futuo_V : V ; + futuo_V2 : V2 ; futurismus_M_N : N ; futurologus_M_N : N ; futurus_A : A ; @@ -20756,7 +20865,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { gargarisso_V : V ; gargarizatio_F_N : N ; gargarizo_V : V ; - garrio_V : V ; + garrio_V2 : V2 ; garritus_M_N : N ; garrulitas_F_N : N ; garrulus_A : A ; @@ -20822,7 +20931,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { gemmeus_A : A ; gemmifer_A : A ; gemmo_V : V ; - gemo_V : V ; + gemo_V2 : V2 ; gena_F_N : N ; genealogia_F_N : N ; genealogicus_A : A ; @@ -20874,7 +20983,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { genu_N_N : N ; genual_N_N : N ; genuale_N_N : N ; - genuflecto_V : V ; + genuflecto_V2 : V2 ; genuine_Adv : Adv ; genuinus_A : A ; genuinus_M_N : N ; @@ -20904,7 +21013,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { germinalis_A : A ; germinatio_F_N : N ; germino_V : V ; - gero_V : V ; + gero_V2 : V2 ; gerontocomium_N_N : N ; gerontotrophium_N_N : N ; gerra_F_N : N ; @@ -20917,7 +21026,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { gestamen_N_N : N ; gestatio_F_N : N ; gesticulor_V : V ; - gestio_V : V ; + gestio_V2 : V2 ; gestito_V : V ; gesto_V : V ; gestum_N_N : N ; @@ -20927,7 +21036,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { gibberosus_A : A ; gibbus_A : A ; gibbus_M_N : N ; - gigno_V : V ; + gigno_V2 : V2 ; gilbus_A : A ; gilda_F_N : N ; gildo_M_N : N ; @@ -21081,8 +21190,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { graphia_F_N : N ; graphice_F_N : N ; graphicus_A : A ; + graphis_1_N : N ; -- [XXXEO] :: instrument for drawing/painting; + graphis_2_N : N ; graphis_F_N : N ; - graphis_N : N ; graphium_N_N : N ; grassator_M_N : N ; grassor_V : V ; @@ -21136,7 +21246,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { gremialis_A : A ; gremium_N_N : N ; gressus_M_N : N ; - grex_F_N : N ; + grex_F_N : N ; -- [XXXBO] :: flock, herd; crowd; company, crew; people/animals assembled; set/faction/class; grex_M_N : N ; griffo_M_N : N ; grillus_M_N : N ; @@ -21148,7 +21258,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { grossitudo_F_N : N ; grossus_A : A ; grossus_C_N : N ; - gruis_F_N : N ; + gruis_F_N : N ; -- [XXXDX] :: crane; large bird; siege engine; gruis_M_N : N ; gruma_F_N : N ; grumus_M_N : N ; @@ -21161,7 +21271,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { gryllographus_M_N : N ; gryllus_M_N : N ; grypho_M_N : N ; - gryps_N : N ; + gryps_1_N : N ; -- [XYXDO] :: griffin; + gryps_2_N : N ; grypus_M_N : N ; guarra_F_N : N ; gubernaculum_N_N : N ; @@ -21212,7 +21323,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { gynaecius_M_N : N ; gynaecologia_F_N : N ; gynaecologus_M_N : N ; - gynaeconitis_N : N ; + gynaeconitis_1_N : N ; -- [XXHEO] :: women's apartment/quarters in Greek house; + gynaeconitis_2_N : N ; gypsatus_A : A ; gypso_V2 : V2 ; gypsum_N_N : N ; @@ -21228,7 +21340,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { habilito_V : V ; habitabilis_A : A ; habitaculum_N_N : N ; - habitans_F_N : N ; + habitans_F_N : N ; -- [XXXEE] :: inhabitant; dweller; habitans_M_N : N ; habitatio_F_N : N ; habitator_M_N : N ; @@ -21258,8 +21370,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { haereditas_F_N : N ; haereo_V : V ; haeresiarcha_M_N : N ; + haeresis_1_N : N ; -- [XEXDO] :: philosophical/religious school of thought/sect; heresy/heretical doctrine (L+S); + haeresis_2_N : N ; haeresis_F_N : N ; - haeresis_N : N ; haereticus_A : A ; haereticus_M_N : N ; haesitatio_F_N : N ; @@ -21288,7 +21401,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { halucinatio_F_N : N ; halucinor_V : V ; hama_F_N : N ; - hamadryas_N : N ; + hamadryas_1_N : N ; -- [XXXDX] :: wood-nymph, hamadryad, dryad; + hamadryas_2_N : N ; hamatus_A : A ; hamiota_M_N : N ; hammonitrum_N_N : N ; @@ -21350,7 +21464,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { hauddum_Adv : Adv ; haudquaquam_Adv : Adv ; hauquaquam_Adv : Adv ; - haurio_V : V ; + haurio_V2 : V2 ; haustrum_N_N : N ; haustus_M_N : N ; haut_Adv : Adv ; @@ -21361,8 +21475,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { hebdomada_F_N : N ; hebdomadarius_A : A ; hebdomadarius_M_N : N ; + hebdomas_1_N : N ; -- [EXXDE] :: |week, seven days; Jewish week, one Sabbath to next; weekly gathering/duty rota; + hebdomas_2_N : N ; hebdomas_F_N : N ; - hebdomas_N : N ; hebenius_A : A ; hebenum_N_N : N ; hebenus_C_N : N ; @@ -21420,7 +21535,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { hendecasyllabus_M_N : N ; heortologia_F_N : N ; hepatitis_F_N : N ; - heptas_N : N ; + heptas_1_N : N ; -- [XSHEE] :: seven (Greek); + heptas_2_N : N ; hepteris_F_N : N ; hera_F_N : N ; herba_F_N : N ; @@ -21447,7 +21563,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { heremus_A : A ; heremus_M_N : N ; hereo_V : V ; - heres_F_N : N ; + heres_F_N : N ; -- [XXXBX] :: heir/heiress; heres_M_N : N ; hereticus_A : A ; hereticus_M_N : N ; @@ -21467,7 +21583,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { heroicus_A : A ; heroina_F_N : N ; heroine_F_N : N ; - herois_N : N ; + herois_1_N : N ; -- [XYXCO] :: heroine (mythical); + herois_2_N : N ; heros_M_N : N ; herous_A : A ; herus_M_N : N ; @@ -21493,7 +21610,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { hexametrus_M_N : N ; hexapeda_F_N : N ; hexaphorum_N_N : N ; - hexas_N : N ; + hexas_1_N : N ; -- [XSHFE] :: six (Greek); + hexas_2_N : N ; hexeris_F_N : N ; hiacinthina_F_N : N ; hiacinthinus_A : A ; @@ -21532,7 +21650,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { hilum_N_N : N ; hin_N : N ; hinc_Adv : Adv ; - hinnio_V : V ; + hinnio_V2 : V2 ; hinnitus_M_N : N ; hinnuleus_M_N : N ; hinnulus_M_N : N ; @@ -21586,7 +21704,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { holisatrum_N_N : N ; holitorius_A : A ; holocaustoma_N_N : N ; - holocaustosis_N : N ; + holocaustosis_1_N : N ; -- [EEQFW] :: whole burnt offering, sacrifice wholly consumed by fire; holocaust; (Hebrew); + holocaustosis_2_N : N ; holocaustum_N_N : N ; holocautom_N_N : N ; holosericum_N_N : N ; @@ -21611,7 +21730,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { homologus_M_N : N ; homoousius_A : A ; homosexualis_A : A ; - homosexualis_F_N : N ; + homosexualis_F_N : N ; -- [HXXEE] :: homosexual (person); homosexualis_M_N : N ; homosexualitas_F_N : N ; homullus_M_N : N ; @@ -21651,7 +21770,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { hordiacius_A : A ; hordiarius_A : A ; horia_F_N : N ; - horizon_N : N ; + horizon_1_N : N ; -- [XSXEO] :: horizon; line on celestial sphere corresponding to horizon; + horizon_2_N : N ; horizontalis_A : A ; horizontaliter_Adv : Adv ; horminum_N_N : N ; @@ -21664,7 +21784,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { horoma_N_N : N ; horrendus_A : A ; horreo_V : V ; - horresco_V : V ; + horresco_V2 : V2 ; horreum_N_N : N ; horribilis_A : A ; horridulus_A : A ; @@ -21709,7 +21829,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { hostiliter_Adv : Adv ; hostimentum_N_N : N ; hostio_V : V ; - hostis_F_N : N ; + hostis_F_N : N ; -- [XXXDX] :: enemy (of the state); stranger, foreigner; the enemy (pl.); hostis_M_N : N ; hu_N : N ; huc_Adv : Adv ; @@ -21775,8 +21895,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { hydropicus_A : A ; hydropisis_F_N : N ; hydroplanum_N_N : N ; + hydrops_1_N : N ; -- [XBXEO] :: dropsy; + hydrops_2_N : N ; hydrops_M_N : N ; - hydrops_N : N ; hydrosphaera_F_N : N ; hydrostatica_F_N : N ; hydrostaticus_A : A ; @@ -21862,17 +21983,19 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ibex_F_N : N ; ibi_Adv : Adv ; ibidem_Adv : Adv ; + ibis_1_N : N ; -- [EXXEW] :: ibis; (sacred Egyptian bird); + ibis_2_N : N ; ibis_F_N : N ; - ibis_N : N ; ibiscum_N_N : N ; ibix_M_N : N ; ichneumon_M_N : N ; ichnographia_F_N : N ; ichnographice_Adv : Adv ; - icio_V : V ; - ico_V : V ; + icio_V2 : V2 ; + ico_V2 : V2 ; icon_F_N : N ; - iconastasis_N : N ; + iconastasis_1_N : N ; -- [XXXEE] :: iconostasis, partition separating sanctuary from body of Greek church; + iconastasis_2_N : N ; iconismus_M_N : N ; icosaedron_N_N : N ; ictericus_A : A ; @@ -21895,7 +22018,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { idiota_M_N : N ; idipsum_Adv : Adv ; idolatra_C_N : N ; - idolatres_F_N : N ; + idolatres_F_N : N ; -- [EEXEE] :: idolater, idol worshipper; idolatres_M_N : N ; idolatria_C_N : N ; idolatria_F_N : N ; @@ -21927,7 +22050,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { igniculus_M_N : N ; ignifer_A : A ; ignigena_M_N : N ; - ignio_V : V ; + ignio_V2 : V2 ; ignipes_A : A ; ignipotens_A : A ; ignis_M_N : N ; @@ -21944,7 +22067,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ignorantio_F_N : N ; ignoratio_F_N : N ; ignoro_V : V ; - ignosco_V : V ; + ignosco_V2 : V2 ; ignotus_A : A ; ile_N_N : N ; ilex_F_N : N ; @@ -21977,14 +22100,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { illegitimus_M_N : N ; illepidus_A : A ; illex_A : A ; - illex_F_N : N ; + illex_F_N : N ; -- [XXXCO] :: one who entices/allures; decoy; illex_M_N : N ; illibatus_A : A ; illiberalis_A : A ; illiberalitas_F_N : N ; illiberaliter_Adv : Adv ; illic_Adv : Adv ; - illicio_V : V ; + illicio_V2 : V2 ; illicitus_A : A ; illico_Adv : Adv ; illido_V2 : V2 ; @@ -21992,7 +22115,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { illim_Adv : Adv ; illinc_Adv : Adv ; illinio_V2 : V2 ; - illino_V : V ; + illino_V2 : V2 ; illiteratus_A : A ; illitteratissimus_A : A ; illo_Adv : Adv ; @@ -22000,8 +22123,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { illotus_A : A ; illuc_Adv : Adv ; illuceo_V : V ; - illucesco_V : V ; - illudo_V : V ; + illucesco_V2 : V2 ; + illudo_V2 : V2 ; illuminatio_F_N : N ; illuminator_M_N : N ; illumino_V : V ; @@ -22034,7 +22157,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { imbito_V2 : V2 ; imbrex_F_N : N ; imbrifer_A : A ; - imbuo_V : V ; + imbuo_V2 : V2 ; imitabilis_A : A ; imitamen_N_N : N ; imitamentum_N_N : N ; @@ -22045,7 +22168,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { imitor_V : V ; immaculabilis_A : A ; immaculatus_A : A ; - immadesco_V : V ; + immadesco_V2 : V2 ; immanis_A : A ; immanitas_F_N : N ; immansuetus_A : A ; @@ -22063,7 +22186,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { immensurabilis_A : A ; immensus_A : A ; immerens_A : A ; - immergo_V : V ; + immergo_V2 : V2 ; immerito_Adv : Adv ; immeritus_A : A ; immersabilis_A : A ; @@ -22071,7 +22194,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { immigratio_F_N : N ; immigro_V : V ; immineo_V : V ; - imminuo_V : V ; + imminuo_V2 : V2 ; immisceo_V : V ; immiserabilis_A : A ; immisericorditer_Adv : Adv ; @@ -22081,7 +22204,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { immistrum_N_N : N ; immistus_A : A ; immitis_A : A ; - immitto_V : V ; + immitto_V2 : V2 ; immixtus_A : A ; immo_Adv : Adv ; immobilis_A : A ; @@ -22105,7 +22228,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { immortalis_M_N : N ; immortalitas_F_N : N ; immotus_A : A ; - immugio_V : V ; + immugio_V2 : V2 ; immulatio_F_N : N ; immunditia_F_N : N ; immundus_A : A ; @@ -22139,12 +22262,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { impatientia_F_N : N ; impavidus_A : A ; impedimentum_N_N : N ; - impedio_V : V ; + impedio_V2 : V2 ; impeditus_A : A ; impello_V2 : V2 ; impendeo_V : V ; impendium_N_N : N ; - impendo_V : V ; + impendo_V2 : V2 ; impenetrabilis_A : A ; impensa_F_N : N ; impense_Adv : Adv ; @@ -22175,7 +22298,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { imperscrutabilis_A : A ; impersonalis_A : A ; imperterritus_A : A ; - impertio_V : V ; + impertio_V2 : V2 ; imperturbabilis_A : A ; imperturbatus_A : A ; impervius_A : A ; @@ -22193,7 +22316,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { impiger_A : A ; impigre_Adv : Adv ; impilium_N_N : N ; - impingo_V : V ; + impingo_V2 : V2 ; impinguo_V : V ; impio_V2 : V2 ; impirius_A : A ; @@ -22215,13 +22338,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { implico_V2 : V2 ; imploro_V : V ; implumis_A : A ; - impluo_V : V ; + impluo_V2 : V2 ; impluvium_N_N : N ; impoene_Adv : Adv ; impolite_Adv : Adv ; impolitus_A : A ; impollutus_A : A ; - impono_V : V ; + impono_V2 : V2 ; importo_V : V ; importunitas_F_N : N ; importunus_A : A ; @@ -22245,7 +22368,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { impressorius_A : A ; imprimeo_V : V ; imprimis_Adv : Adv ; - imprimo_V : V ; + imprimo_V2 : V2 ; imprisonamentum_N_N : N ; imprisono_V : V ; improbitas_F_N : N ; @@ -22348,13 +22471,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inanimentum_N_N : N ; inanimis_A : A ; inanimus_A : A ; - inanio_V : V ; + inanio_V2 : V2 ; inanis_A : A ; inanloquium_N_N : N ; inaquosum_N_N : N ; inaquosus_A : A ; inaratus_A : A ; - inardesco_V : V ; + inardesco_V2 : V2 ; inargento_V2 : V2 ; inaro_V2 : V2 ; inartificiale_Adv : Adv ; @@ -22362,7 +22485,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inaspectus_A : A ; inassuetus_A : A ; inattenuatus_A : A ; - inaudio_V : V ; + inaudio_V2 : V2 ; inauditus_A : A ; inauguralis_A : A ; inauguro_V : V ; @@ -22377,10 +22500,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inbibo_V2 : V2 ; inbito_V2 : V2 ; incaeduus_A : A ; - incalesco_V : V ; + incalesco_V2 : V2 ; incallidus_A : A ; - incandesco_V : V ; - incanesco_V : V ; + incandesco_V2 : V2 ; + incanesco_V2 : V2 ; incantamen_N_N : N ; incantamentum_N_N : N ; incantatio_F_N : N ; @@ -22408,7 +22531,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { incassum_Adv : Adv ; incastigatus_A : A ; incautus_A : A ; - incedo_V : V ; + incedo_V2 : V2 ; inceleber_A : A ; incelebratus_A : A ; incenatus_A : A ; @@ -22439,7 +22562,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { incertus_A : A ; incessabilis_A : A ; incessanter_Adv : Adv ; - incesso_V : V ; + incesso_V2 : V2 ; incessus_M_N : N ; incesto_V : V ; incestuose_Adv : Adv ; @@ -22453,15 +22576,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { incidenter_Adv : Adv ; incidentia_F_N : N ; incidentium_N_N : N ; - incido_V : V ; + incido_V2 : V2 ; inciens_A : A ; incilis_A : A ; incilo_V : V ; incineratio_F_N : N ; incinero_V : V ; - incingo_V : V ; + incingo_V2 : V2 ; incino_V : V ; - incipio_V : V ; + incipio_V2 : V2 ; incipisso_V : V ; incircum_Adv : Adv ; incircumcisio_F_N : N ; @@ -22489,7 +22612,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inclino_V : V ; inclinus_A : A ; inclitus_A : A ; - includo_V : V ; + includo_V2 : V2 ; inclutus_A : A ; inclytus_A : A ; incogitabilis_A : A ; @@ -22503,6 +22626,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { incolatus_A : A ; incolatus_M_N : N ; incolo_V : V ; + incolo_V2 : V2 ; incolomis_A : A ; incolumis_A : A ; incolumitas_F_N : N ; @@ -22574,7 +22698,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inconveniens_A : A ; inconvenienter_Adv : Adv ; inconvenientia_F_N : N ; - incoquo_V : V ; + incoquo_V2 : V2 ; incorporalis_A : A ; incorporatio_F_N : N ; incorporeus_A : A ; @@ -22592,7 +22716,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { incorruptus_A : A ; incrassatus_A : A ; incrasso_V2 : V2 ; - increbresco_V : V ; + increbresco_V2 : V2 ; incredibilis_A : A ; incredulitas_F_N : N ; incredulus_A : A ; @@ -22602,14 +22726,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { increpito_V : V ; increpo_V : V ; increpo_V2 : V2 ; - incresco_V : V ; + incresco_V2 : V2 ; incruentatus_A : A ; incruentus_A : A ; incrusto_V2 : V2 ; incubatio_F_N : N ; incubito_V : V ; incubo_V : V ; - incudo_V : V ; + incudo_V2 : V2 ; inculco_V : V ; inculpatus_A : A ; inculte_Adv : Adv ; @@ -22617,7 +22741,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { incultus_M_N : N ; incumberamentum_N_N : N ; incumbero_V : V ; - incumbo_V : V ; + incumbo_V2 : V2 ; incumbramentum_N_N : N ; incumbro_V : V ; incunabulum_N_N : N ; @@ -22629,7 +22753,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { incuria_F_N : N ; incuriose_Adv : Adv ; incuriosus_A : A ; - incurro_V : V ; + incurro_V2 : V2 ; incursio_F_N : N ; incursito_V2 : V2 ; incurso_V : V ; @@ -22641,7 +22765,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { incus_F_N : N ; incuso_V : V ; incustoditus_A : A ; - incutio_V : V ; + incutio_V2 : V2 ; indagatio_F_N : N ; indagator_M_N : N ; indagatrix_F_N : N ; @@ -22649,7 +22773,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { indago_F_N : N ; indago_V2 : V2 ; indamnatus_A : A ; - indaudio_V : V ; + indaudio_V2 : V2 ; inde_Adv : Adv ; indebitus_A : A ; indecens_A : A ; @@ -22685,12 +22809,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { indetonsus_A : A ; indevitatus_A : A ; indevotio_F_N : N ; - index_F_N : N ; + index_F_N : N ; -- [XXXDX] :: sign, token, proof; informer, tale bearer; index_M_N : N ; indicativus_A : A ; indicatorius_A : A ; indicium_N_N : N ; indico_V : V ; + indico_V2 : V2 ; indictio_F_N : N ; indictus_A : A ; indidem_Adv : Adv ; @@ -22750,15 +22875,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { indivisibiliter_Adv : Adv ; indivisio_F_N : N ; indivisus_A : A ; - indo_V : V ; + indo_V2 : V2 ; indocilis_A : A ; indoctus_A : A ; indolentia_F_N : N ; indoles_F_N : N ; - indolesco_V : V ; + indolesco_V2 : V2 ; indomabilis_A : A ; indomitus_A : A ; - indormio_V : V ; + indormio_V2 : V2 ; indotatus_A : A ; indotia_F_N : N ; indubitabilis_A : A ; @@ -22767,7 +22892,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { indubitatus_A : A ; indubito_V : V ; indubius_A : A ; - induco_V : V ; + induco_V2 : V2 ; inductio_F_N : N ; indulgens_A : A ; indulgenter_Adv : Adv ; @@ -22779,7 +22904,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { indultum_N_N : N ; indultus_M_N : N ; indumentum_N_N : N ; - induo_V : V ; + induo_V2 : V2 ; induoia_F_N : N ; indupeditus_A : A ; induresco_V : V ; @@ -22810,7 +22935,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inemorior_V : V ; inemptus_A : A ; inenarrabilis_A : A ; - ineo_V : V ; + ineo_1_V2 : V2 ; + ineo_2_V2 : V2 ; ineptio_V : V ; ineptus_A : A ; inequito_V : V ; @@ -22865,7 +22991,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { infamo_V : V ; infandus_A : A ; infans_A : A ; - infans_F_N : N ; + infans_F_N : N ; -- [XXXBX] :: infant; child (Bee); infans_M_N : N ; infantaria_F_N : N ; infantarius_M_N : N ; @@ -22908,17 +23034,17 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { infesto_V2 : V2 ; infestus_A : A ; inficetia_F_N : N ; - inficio_V : V ; + inficio_V2 : V2 ; inficior_V : V ; infidelis_A : A ; infidelitas_F_N : N ; infidibulum_N_N : N ; infidigraphus_A : A ; infidus_A : A ; - infigo_V : V ; + infigo_V2 : V2 ; infimo_V2 : V2 ; infimus_A : A ; - infindo_V : V ; + infindo_V2 : V2 ; infinitarius_A : A ; infinitas_F_N : N ; infinitesimalis_A : A ; @@ -22943,16 +23069,16 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inflammo_V : V ; inflatio_F_N : N ; inflatus_A : A ; - inflecto_V : V ; + inflecto_V2 : V2 ; inflectus_A : A ; infletus_A : A ; inflexibilis_A : A ; inflexio_F_N : N ; - infligo_V : V ; + infligo_V2 : V2 ; inflo_V : V ; influentia_F_N : N ; - influo_V : V ; - infodio_V : V ; + influo_V2 : V2 ; + infodio_V2 : V2 ; informaticus_A : A ; informatio_F_N : N ; informis_A : A ; @@ -22964,7 +23090,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { infra_Adv : Adv ; infractus_A : A ; infrascriptus_A : A ; - infremo_V : V ; + infremo_V2 : V2 ; infrenatus_A : A ; infrendo_V : V ; infrenis_A : A ; @@ -22975,7 +23101,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { infricatus_A : A ; infrico_V : V ; infrigido_V : V ; - infringo_V : V ; + infringo_V2 : V2 ; infrio_V2 : V2 ; infrons_A : A ; infructuosus_A : A ; @@ -22989,13 +23115,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { infumus_A : A ; infundabiliter_Adv : Adv ; infundibulum_N_N : N ; - infundo_V : V ; + infundo_V2 : V2 ; infusco_V : V ; infusio_F_N : N ; - ingemesco_V : V ; + ingemesco_V2 : V2 ; ingemino_V : V ; - ingemisco_V : V ; - ingemo_V : V ; + ingemisco_V2 : V2 ; + ingemo_V2 : V2 ; ingenero_V : V ; ingeniarius_M_N : N ; ingeniatus_A : A ; @@ -23008,7 +23134,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ingenuitas_F_N : N ; ingenuus_A : A ; ingerentia_F_N : N ; - ingero_V : V ; + ingero_V2 : V2 ; ingigno_V2 : V2 ; inglorius_A : A ; ingluvies_F_N : N ; @@ -23021,7 +23147,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ingredientium_N_N : N ; ingredior_V : V ; ingressus_M_N : N ; - ingruo_V : V ; + ingruo_V2 : V2 ; inguen_N_N : N ; ingurgito_V : V ; ingustatus_A : A ; @@ -23054,7 +23180,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inhonoro_V2 : V2 ; inhonorus_A : A ; inhorreo_V : V ; - inhorresco_V : V ; + inhorresco_V2 : V2 ; inhospitalis_A : A ; inhospitalitas_F_N : N ; inhospitus_A : A ; @@ -23085,7 +23211,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { injicio_V2 : V2 ; injucundus_A : A ; injudicatus_A : A ; - injungo_V : V ; + injungo_V2 : V2 ; injuratus_A : A ; injuria_F_N : N ; injurio_V2 : V2 ; @@ -23121,7 +23247,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inlepide_Adv : Adv ; inlepidus_A : A ; inlex_A : A ; - inlex_F_N : N ; + inlex_F_N : N ; -- [XXXCO] :: one who entices/allures; decoy; inlex_M_N : N ; inlibatus_A : A ; inliberalis_A : A ; @@ -23131,7 +23257,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inlicitus_A : A ; inlido_V2 : V2 ; inlimis_A : A ; - inlino_V : V ; + inlino_V2 : V2 ; inliquefactus_A : A ; inlitteratus_A : A ; inlocabilis_A : A ; @@ -23159,7 +23285,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inmensus_A : A ; inmeritus_A : A ; inmissio_F_N : N ; - inmitto_V : V ; + inmitto_V2 : V2 ; inmobilis_A : A ; inmodicus_A : A ; inmolaticius_A : A ; @@ -23179,14 +23305,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { innatus_A : A ; innavigabilis_A : A ; innecessitas_F_N : N ; - innecto_V : V ; + innecto_V2 : V2 ; innitor_V : V ; inno_V : V ; innocens_A : A ; innocentia_F_N : N ; innoco_V2 : V2 ; innocuus_A : A ; - innotesco_V : V ; + innotesco_V2 : V2 ; innovatio_F_N : N ; innovatus_A : A ; innovo_V2 : V2 ; @@ -23198,7 +23324,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { innumerabilis_A : A ; innumeralis_A : A ; innumerus_A : A ; - innuo_V : V ; + innuo_V2 : V2 ; innuptus_A : A ; innutrio_V2 : V2 ; innutritus_A : A ; @@ -23230,7 +23356,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inoffensus_A : A ; inofficiosus_A : A ; inolens_A : A ; - inolesco_V : V ; + inolesco_V2 : V2 ; inominatus_A : A ; inopia_F_N : N ; inopinabilis_A : A ; @@ -23259,7 +23385,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inpatiencia_F_N : N ; inpatientia_F_N : N ; inpedimentum_N_N : N ; - inpedio_V : V ; + inpedio_V2 : V2 ; inpeditus_A : A ; inpello_V2 : V2 ; inpendium_N_N : N ; @@ -23276,14 +23402,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inpius_A : A ; inplano_V2 : V2 ; inplico_V2 : V2 ; - inpono_V : V ; + inpono_V2 : V2 ; inpos_A : A ; inpotens_A : A ; inpotentia_F_N : N ; inprecatio_F_N : N ; inpressio_F_N : N ; inprimis_Adv : Adv ; - inprimo_V : V ; + inprimo_V2 : V2 ; inprobitas_F_N : N ; inprobo_V2 : V2 ; inprobulus_A : A ; @@ -23321,7 +23447,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inquinamentum_N_N : N ; inquinatio_F_N : N ; inquino_V : V ; - inquiro_V : V ; + inquiro_V2 : V2 ; inquisicio_F_N : N ; inquisitio_F_N : N ; inquisitor_M_N : N ; @@ -23385,8 +23511,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inrogo_V2 : V2 ; inrumator_M_N : N ; inrumo_V2 : V2 ; - inrumpo_V : V ; - inruo_V : V ; + inrumpo_V2 : V2 ; inruo_V2 : V2 ; inruptus_A : A ; insalubris_A : A ; @@ -23394,7 +23519,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { insanabilis_A : A ; insane_Adv : Adv ; insania_F_N : N ; - insanio_V : V ; + insanio_V2 : V2 ; insaniter_Adv : Adv ; insanum_Adv : Adv ; insanus_A : A ; @@ -23406,10 +23531,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inscitia_F_N : N ; inscitus_A : A ; inscius_A : A ; - inscribo_V : V ; + inscribo_V2 : V2 ; inscriptio_F_N : N ; inscrutabilis_A : A ; - insculpo_V : V ; + insculpo_V2 : V2 ; inseco_V : V ; inseco_V2 : V2 ; insectatio_F_N : N ; @@ -23418,7 +23543,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { insector_V : V ; insedabiliter_Adv : Adv ; insemel_Adv : Adv ; - insenesco_V : V ; + insenesco_V2 : V2 ; insensatus_A : A ; insensibilis_A : A ; inseparabilis_A : A ; @@ -23427,7 +23552,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { insepultus_A : A ; insequo_V : V ; insequor_V : V ; - insero_V : V ; + insero_V2 : V2 ; inserto_V : V ; inservio_V2 : V2 ; inservo_V2 : V2 ; @@ -23440,14 +23565,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { insidior_V : V ; insidiose_Adv : Adv ; insidiosus_A : A ; - insido_V : V ; + insido_V2 : V2 ; insigne_N_N : N ; - insignio_V : V ; insignio_V2 : V2 ; insignis_A : A ; insile_N_N : N ; - insilio_V : V ; - insillo_V : V ; + insilio_V2 : V2 ; + insillo_V2 : V2 ; insimul_Adv : Adv ; insimulo_V : V ; insincerus_A : A ; @@ -23460,7 +23584,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { insipio_V : V ; insipio_V2 : V2 ; insipo_V2 : V2 ; - insisto_V : V ; + insisto_V2 : V2 ; insiticius_A : A ; insitio_F_N : N ; insitivus_A : A ; @@ -23488,8 +23612,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inspecto_V : V ; insperans_A : A ; insperatus_A : A ; - inspergo_V : V ; - inspicio_V : V ; + inspergo_V2 : V2 ; + inspicio_V2 : V2 ; inspico_V2 : V2 ; inspiratio_F_N : N ; inspiro_V : V ; @@ -23504,7 +23628,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { instauratio_F_N : N ; instaurativus_A : A ; instauro_V : V ; - insterno_V : V ; + insterno_V2 : V2 ; instigo_V : V ; instillo_V : V ; instimulo_V : V ; @@ -23517,27 +23641,27 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { institoria_F_N : N ; institorium_N_N : N ; institorius_A : A ; - instituo_V : V ; + instituo_V2 : V2 ; institutio_F_N : N ; institutionalis_A : A ; institutor_M_N : N ; institutum_N_N : N ; insto_V : V ; instrenuus_A : A ; - instrepo_V : V ; + instrepo_V2 : V2 ; instructivus_A : A ; instructor_M_N : N ; instructus_A : A ; instructus_M_N : N ; instrumentalis_A : A ; instrumentum_N_N : N ; - instruo_V : V ; + instruo_V2 : V2 ; insuadibilis_A : A ; insuavis_A : A ; insubidus_A : A ; insudo_V : V ; insuefactus_A : A ; - insuesco_V : V ; + insuesco_V2 : V2 ; insuetus_A : A ; insufficiens_A : A ; insufficientia_F_N : N ; @@ -23546,7 +23670,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { insula_F_N : N ; insulanus_M_N : N ; insulinum_N_N : N ; - insulio_V : V ; + insulio_V2 : V2 ; insulsitas_F_N : N ; insulsus_A : A ; insulta_F_N : N ; @@ -23556,14 +23680,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { insultus_M_N : N ; insum_V : V ; insumo_V2 : V2 ; - insuo_V : V ; + insuo_V2 : V2 ; insuper_Acc_Prep : Prep ; insuper_Adv : Adv ; insuperabilis_A : A ; insupo_V2 : V2 ; - insurgo_V : V ; + insurgo_V2 : V2 ; insusurro_V : V ; - intabesco_V : V ; + intabesco_V2 : V2 ; intactus_A : A ; intaminabilis_A : A ; intaminatus_A : A ; @@ -23572,7 +23696,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { integellus_A : A ; integer_A : A ; integer_M_N : N ; - intego_V : V ; + intego_V2 : V2 ; integrale_N_N : N ; integralis_A : A ; integrasco_V : V ; @@ -23590,7 +23714,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { intellegens_A : A ; intellegentia_F_N : N ; intellegibilis_A : A ; - intellego_V : V ; + intellego_V2 : V2 ; intelligentia_F_N : N ; intelligo_V : V ; intemeratus_A : A ; @@ -23604,7 +23728,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { intempestivus_A : A ; intempestus_A : A ; intemptatus_A : A ; - intendo_V : V ; + intendo_V2 : V2 ; intensio_F_N : N ; intensitas_F_N : N ; intensivus_A : A ; @@ -23616,7 +23740,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { intento_V : V ; intentus_A : A ; intepeo_V : V ; - intepesco_V : V ; + intepesco_V2 : V2 ; inter_Acc_Prep : Prep ; interactio_F_N : N ; interamentum_N_N : N ; @@ -23625,19 +23749,19 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { intercalarius_A : A ; intercalo_V : V ; intercapedo_F_N : N ; - intercedo_V : V ; + intercedo_V2 : V2 ; interceptor_M_N : N ; intercessio_F_N : N ; intercessor_M_N : N ; - intercido_V : V ; + intercido_V2 : V2 ; intercino_V : V ; - intercipio_V : V ; - intercludo_V : V ; + intercipio_V2 : V2 ; + intercludo_V2 : V2 ; intercolumnium_N_N : N ; intercurso_V : V ; intercursus_M_N : N ; intercus_A : A ; - interdico_V : V ; + interdico_V2 : V2 ; interdictum_N_N : N ; interdie_Adv : Adv ; interdiu_Adv : Adv ; @@ -23646,15 +23770,16 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { interdum_Adv : Adv ; interea_Adv : Adv ; interemo_V2 : V2 ; - intereo_V : V ; + intereo_1_V2 : V2 ; + intereo_2_V2 : V2 ; interequito_V : V ; interest_V0 : V ; interfectio_F_N : N ; interfector_M_N : N ; interfectrix_F_N : N ; - interficio_V : V ; + interficio_V2 : V2 ; interfio_V : V ; - interfluo_V : V ; + interfluo_V2 : V2 ; interfor_V : V ; interfulgens_A : A ; interfusus_A : A ; @@ -23668,7 +23793,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { interior_M_N : N ; interitus_M_N : N ; interjaceo_V : V ; - interjacio_V : V ; + interjacio_V2 : V2 ; interjectio_F_N : N ; interjectus_A : A ; interjicio_V2 : V2 ; @@ -23680,19 +23805,19 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { interludium_N_N : N ; interludo_V2 : V2 ; interlunium_N_N : N ; - interluo_V : V ; + interluo_V2 : V2 ; intermedius_A : A ; intermenstruum_N_N : N ; intermenstruus_A : A ; intermeo_V2 : V2 ; - intermico_V : V ; + intermico_V2 : V2 ; interminabilis_A : A ; interminabiliter_Adv : Adv ; interminatus_A : A ; interminor_V : V ; intermisceo_V : V ; intermissio_F_N : N ; - intermitto_V : V ; + intermitto_V2 : V2 ; intermorior_V : V ; intermuralis_A : A ; internascor_V : V ; @@ -23706,7 +23831,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { internista_M_N : N ; interniteo_V : V ; internodium_N_N : N ; - internosco_V : V ; + internosco_V2 : V2 ; internuntius_A : A ; internuntius_M_N : N ; internus_A : A ; @@ -23714,9 +23839,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { interpellatio_F_N : N ; interpello_V : V ; interpolo_V2 : V2 ; - interpono_V : V ; + interpono_V2 : V2 ; interpositio_F_N : N ; - interpres_F_N : N ; + interpres_F_N : N ; -- [XXXDX] :: interpreter, translator; interpres_M_N : N ; interpretamentum_N_N : N ; interpretatio_F_N : N ; @@ -23737,10 +23862,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { interrogatio_F_N : N ; interrogatiuncula_F_N : N ; interrogo_V : V ; - interrumpo_V : V ; + interrumpo_V2 : V2 ; interruptio_F_N : N ; - intersaepio_V : V ; - interscindo_V : V ; + intersaepio_V2 : V2 ; + interscindo_V2 : V2 ; interseco_V2 : V2 ; intersero_V2 : V2 ; intersitus_A : A ; @@ -23762,17 +23887,17 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { intervallatus_A : A ; intervallo_V2 : V2 ; intervallum_N_N : N ; - intervenio_V : V ; + intervenio_V2 : V2 ; intervenium_N_N : N ; interventus_M_N : N ; - interverto_V : V ; - interviso_V : V ; + interverto_V2 : V2 ; + interviso_V2 : V2 ; intervolo_V2 : V2 ; intestabilis_A : A ; intestatus_A : A ; intestina_F_N : N ; intestinus_A : A ; - intexo_V : V ; + intexo_V2 : V2 ; inthronizatio_F_N : N ; inthronizo_V : V ; intibum_N_N : N ; @@ -23812,16 +23937,17 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { intro_Adv : Adv ; intro_V : V ; introcedo_V2 : V2 ; - introduco_V : V ; + introduco_V2 : V2 ; introductio_F_N : N ; - introeo_V : V ; + introeo_1_V2 : V2 ; + introeo_2_V2 : V2 ; introgredior_V : V ; introitus_M_N : N ; intromitto_V2 : V2 ; introrsum_Adv : Adv ; introrsus_Adv : Adv ; - introrumpo_V : V ; - introspicio_V : V ; + introrumpo_V2 : V2 ; + introspicio_V2 : V2 ; introsum_Adv : Adv ; introsus_Adv : Adv ; introversio_F_N : N ; @@ -23832,7 +23958,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { intueor_V : V ; intuitive_Adv : Adv ; intuitivus_A : A ; - intumesco_V : V ; + intumesco_V2 : V2 ; intumulatus_A : A ; intumus_A : A ; intuor_V : V ; @@ -23854,14 +23980,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inustus_A : A ; inutilis_A : A ; inutiliter_Adv : Adv ; - invado_V : V ; + invado_V2 : V2 ; invalesco_V : V ; invaletudo_F_N : N ; invalidus_A : A ; invasio_F_N : N ; - inveho_V : V ; + inveho_V2 : V2 ; invenditus_A : A ; - invenio_V : V ; + invenio_V2 : V2 ; inventarium_N_N : N ; inventio_F_N : N ; inventor_M_N : N ; @@ -23872,13 +23998,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inverecundus_A : A ; invergo_V : V ; invertibilitas_F_N : N ; - inverto_V : V ; + inverto_V2 : V2 ; invest_A : A ; investigabilis_A : A ; investigatio_F_N : N ; investigo_V : V ; investio_V2 : V2 ; - inveterasco_V : V ; + inveterasco_V2 : V2 ; inveteratio_F_N : N ; inveteratus_A : A ; invetero_V : V ; @@ -23902,7 +24028,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { inviolaus_A : A ; invisibil_A : A ; invisitatus_A : A ; - inviso_V : V ; + inviso_V2 : V2 ; invisus_A : A ; invitabulum_N_N : N ; invitamentum_N_N : N ; @@ -23919,8 +24045,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { involuntarie_Adv : Adv ; involuntarius_A : A ; involuntas_F_N : N ; - involvo_V : V ; - invorto_V : V ; + involvo_V2 : V2 ; + invorto_V2 : V2 ; invulgo_V2 : V2 ; invulnerabilis_A : A ; invulneratus_A : A ; @@ -23984,13 +24110,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { irremuneratus_A : A ; irreparabilis_A : A ; irrepertus_A : A ; - irrepo_V : V ; + irrepo_V2 : V2 ; irreprehensibilis_A : A ; irreprehensus_A : A ; irrepticius_A : A ; irreptio_F_N : N ; irrequietus_A : A ; - irretio_V : V ; + irretio_V2 : V2 ; irreverens_A : A ; irreverentia_F_N : N ; irrevocabilis_A : A ; @@ -24019,7 +24145,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { irrugio_V : V ; irrumator_M_N : N ; irrumo_V2 : V2 ; - irrumpo_V : V ; + irrumpo_V2 : V2 ; irruo_V : V ; irruo_V2 : V2 ; irruptio_F_N : N ; @@ -24061,7 +24187,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ixon_N_N : N ; jacca_F_N : N ; jaceo_V : V ; - jacio_V : V ; + jacio_V2 : V2 ; jactans_A : A ; jactanter_Adv : Adv ; jactantia_F_N : N ; @@ -24147,7 +24273,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { juglans_F_N : N ; jugo_V : V ; jugosus_A : A ; - jugulans_N : N ; + jugulans_1_N : N ; -- [XAXEO] :: walnut tree; walnut (nut); + jugulans_2_N : N ; jugulo_V : V ; jugulum_N_N : N ; jugulus_M_N : N ; @@ -24160,7 +24287,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { junctura_F_N : N ; junctus_A : A ; juncus_M_N : N ; - jungo_V : V ; + jungo_V2 : V2 ; junior_A : A ; junior_M_N : N ; juniperus_F_N : N ; @@ -24207,10 +24334,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { juvenaliter_Adv : Adv ; juvenca_F_N : N ; juvencus_M_N : N ; - juvenesco_V : V ; + juvenesco_V2 : V2 ; juvenilis_A : A ; juvenis_A : A ; - juvenis_F_N : N ; + juvenis_F_N : N ; -- [XXXDX] :: youth, young man/woman; juvenis_M_N : N ; juvenor_V : V ; juventa_F_N : N ; @@ -24275,7 +24402,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { lacerta_F_N : N ; lacertosus_A : A ; lacertus_M_N : N ; - lacesso_V : V ; + lacesso_V2 : V2 ; lachrima_F_N : N ; lachrimula_F_N : N ; lachruma_F_N : N ; @@ -24300,7 +24427,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { lactatio_F_N : N ; lacte_N_N : N ; lactens_A : A ; - lactens_F_N : N ; + lactens_F_N : N ; -- [XXXDX] :: suckling, unweaned animal suitable for sacrifice; lactens_M_N : N ; lactesco_V : V ; lacteus_A : A ; @@ -24315,7 +24442,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { lacunosus_A : A ; lacus_M_N : N ; ladanum_N_N : N ; - laedo_V : V ; + laedo_V2 : V2 ; laena_F_N : N ; laesio_F_N : N ; laetabilis_A : A ; @@ -24370,8 +24497,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { lampada_F_N : N ; lampadarium_N_N : N ; lampadarius_M_N : N ; + lampas_1_N : N ; -- [XXXDO] :: lamp/lantern; light/torch/flame/flambeau/link; firebrand; meteor (like torch); + lampas_2_N : N ; lampas_F_N : N ; - lampas_N : N ; lana_F_N : N ; lanarius_M_N : N ; lanatus_A : A ; @@ -24383,7 +24511,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { laneus_A : A ; languefacio_V2 : V2 ; langueo_V : V ; - languesco_V : V ; + languesco_V2 : V2 ; languide_Adv : Adv ; languidulus_A : A ; languidus_A : A ; @@ -24434,7 +24562,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { largificus_A : A ; largifluus_A : A ; largiloquus_A : A ; - largio_V : V ; + largio_V2 : V2 ; largior_V : V ; largitas_F_N : N ; largiter_Adv : Adv ; @@ -24445,7 +24573,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { largo_V : V ; largus_A : A ; laridum_N_N : N ; - larix_F_N : N ; + larix_F_N : N ; -- [XAXNO] :: larch, larch tree; larix_M_N : N ; laros_M_N : N ; larua_C_N : N ; @@ -24458,7 +24586,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { lasanum_N_N : N ; lasarpicifer_A : A ; lascivia_F_N : N ; - lascivio_V : V ; + lascivio_V2 : V2 ; lascivus_A : A ; laser_N_N : N ; laserpicium_N_N : N ; @@ -24601,6 +24729,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { legitimus_A : A ; legiuncula_F_N : N ; lego_V : V ; + lego_V2 : V2 ; leguleius_M_N : N ; legumen_N_N : N ; legumlator_M_N : N ; @@ -24641,7 +24770,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { leoninus_A : A ; leopardalis_M_N : N ; leopardus_M_N : N ; - lepas_N : N ; + lepas_1_N : N ; -- [XAXFO] :: limpet; + lepas_2_N : N ; lepide_Adv : Adv ; lepidus_A : A ; lepor_M_N : N ; @@ -24685,8 +24815,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { leviter_Adv : Adv ; levo_V2 : V2 ; levor_M_N : N ; + lex_1_N : N ; -- [XGXES] :: word; (Greek); + lex_2_N : N ; lex_F_N : N ; - lex_N : N ; lexicalis_A : A ; lexicographia_F_N : N ; lexicographicus_A : A ; @@ -24779,9 +24910,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ligo_M_N : N ; ligo_V : V ; ligula_F_N : N ; - ligurio_V : V ; + ligurio_V2 : V2 ; ligurius_M_N : N ; - ligurrio_V : V ; + ligurrio_V2 : V2 ; ligustrum_N_N : N ; ligyrius_M_N : N ; lilacinus_A : A ; @@ -24790,7 +24921,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { limatulus_A : A ; limatura_F_N : N ; limatus_A : A ; - limax_F_N : N ; + limax_F_N : N ; -- [XXXFS] :: slug; snail; limax_M_N : N ; limbus_M_N : N ; limen_N_N : N ; @@ -24830,12 +24961,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { linio_V2 : V2 ; lino_V2 : V2 ; linostimus_A : A ; - linquo_V : V ; + linquo_V2 : V2 ; linteamen_N_N : N ; linteatus_A : A ; linteo_M_N : N ; linteolum_N_N : N ; - linter_F_N : N ; + linter_F_N : N ; -- [XXXDX] :: boat, skiff, small light boat; trough, vat; linter_M_N : N ; linteum_N_N : N ; linteus_A : A ; @@ -24982,7 +25113,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { lorus_M_N : N ; lotium_N_N : N ; lotor_M_N : N ; - lotos_F_N : N ; + lotos_F_N : N ; -- [XAXCO] :: lotus, flower of forgetfulness; water lily; trefoil; nettle-tree, pipe from it; lotos_M_N : N ; lotus_A : A ; lotus_C_N : N ; @@ -25031,7 +25162,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { lucubro_V : V ; luculentus_A : A ; luculenus_A : A ; - lucumo_F_N : N ; + lucumo_F_N : N ; -- [XXXFS] :: one possessed; an Etrurian; lucumo_M_N : N ; lucus_M_N : N ; lucusta_F_N : N ; @@ -25049,7 +25180,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ludimagister_M_N : N ; ludio_M_N : N ; ludius_M_N : N ; - ludo_V : V ; + ludo_V2 : V2 ; ludus_M_N : N ; luella_F_N : N ; lues_F_N : N ; @@ -25067,7 +25198,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { lunaris_A : A ; lunatus_A : A ; luno_V : V ; - lunter_F_N : N ; + lunter_F_N : N ; -- [BXXFS] :: boat, skiff; (archaic form of linter); lunter_M_N : N ; luo_V2 : V2 ; lupa_F_N : N ; @@ -25139,7 +25270,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { lyncurion_N_N : N ; lyncurium_N_N : N ; lyncurius_M_N : N ; - lynx_F_N : N ; + lynx_F_N : N ; -- [XAXCO] :: lynx; lynx skin/pelt; fictitious tree (invented to explain lyncurium/ligure); lynx_M_N : N ; lyra_F_N : N ; lyricus_A : A ; @@ -25188,7 +25319,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { madefactus_A : A ; madefio_V : V ; madeo_V : V ; - madesco_V : V ; + madesco_V2 : V2 ; madide_Adv : Adv ; madidus_A : A ; maeander_M_N : N ; @@ -25278,7 +25409,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { maledicax_A : A ; maledice_Adv : Adv ; maledicens_A : A ; - maledico_V : V ; + maledico_V2 : V2 ; maledictio_F_N : N ; maledictum_N_N : N ; maledicus_A : A ; @@ -25340,13 +25471,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { mamilla_F_N : N ; mamma_F_N : N ; mammale_N_N : N ; - mammon_N : N ; + mammon_1_N : N ; -- [EEXFE] :: riches, wealth; (gain of wickedness, quasi-personification of covetousness OED); + mammon_2_N : N ; mammona_M_N : N ; mammonas_M_N : N ; mamona_M_N : N ; mamonas_M_N : N ; mamzer_A : A ; - mamzer_F_N : N ; + mamzer_F_N : N ; -- [EEXFS] :: bastard, one of illegitimate birth; whoreson (Souter); (Hebrew); mamzer_M_N : N ; man_N : N ; manceps_M_N : N ; @@ -25361,6 +25493,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { mandibula_F_N : N ; mandibulum_N_N : N ; mando_V : V ; + mando_V2 : V2 ; mandorla_F_N : N ; mandra_F_N : N ; mandragoras_M_N : N ; @@ -25414,7 +25547,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { mansuefacio_V2 : V2 ; mansuefio_V : V ; mansues_A : A ; - mansuesco_V : V ; + mansuesco_V2 : V2 ; mansueto_V2 : V2 ; mansuetudo_F_N : N ; mansuetus_A : A ; @@ -25430,7 +25563,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { manualis_A : A ; manubia_F_N : N ; manubrium_N_N : N ; - manucapio_V : V ; + manucapio_V2 : V2 ; manufactus_A : A ; manufestarius_A : A ; manufesto_Adv : Adv ; @@ -25441,7 +25574,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { manuleatus_A : A ; manuleus_M_N : N ; manumissio_F_N : N ; - manumitto_V : V ; + manumitto_V2 : V2 ; manuplus_M_N : N ; manupretium_N_N : N ; manus_F_N : N ; @@ -25449,7 +25582,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { manuscriptus_A : A ; manutergium_N_N : N ; manzer_A : A ; - manzer_F_N : N ; + manzer_F_N : N ; -- [EEXFS] :: bastard, one of illegitimate birth; mongrel (Latham); (Hebrew); manzer_M_N : N ; manzerinus_C_N : N ; mapale_N_N : N ; @@ -25494,7 +25627,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { marsupium_N_N : N ; marsuppium_N_N : N ; martipanis_M_N : N ; - martyr_F_N : N ; + martyr_F_N : N ; -- [DEXCS] :: martyr; witness; one who by his death bears witness to the truth of Christ; martyr_M_N : N ; martyrium_N_N : N ; martyrologium_N_N : N ; @@ -25565,7 +25698,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { matula_F_N : N ; maturatio_F_N : N ; mature_Adv : Adv ; - maturesco_V : V ; + maturesco_V2 : V2 ; maturitas_F_N : N ; maturo_V : V ; maturrimus_A : A ; @@ -25581,7 +25714,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { maximus_A : A ; maxume_Adv : Adv ; maxumus_A : A ; - mazer_F_N : N ; + mazer_F_N : N ; -- [EEXFM] :: bastard, one of illegitimate birth; mongrel (Latham); (Hebrew); mazer_M_N : N ; mazonomon_N_N : N ; mazonomus_M_N : N ; @@ -25651,7 +25784,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { mehercule_Interj : Interj ; mehercules_Interj : Interj ; meile_N_N : N ; - meio_V : V ; + meio_V2 : V2 ; mel_N_N : N ; melancholicus_A : A ; melanurus_M_N : N ; @@ -25675,7 +25808,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { mellitus_A : A ; mello_V : V ; melo_M_N : N ; - melodes_F_N : N ; + melodes_F_N : N ; -- [DDXES] :: pleasant/charming singer; melodes_M_N : N ; melodia_F_N : N ; melodrama_N_N : N ; @@ -25771,7 +25904,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { meretrix_F_N : N ; merga_F_N : N ; merges_F_N : N ; - mergo_V : V ; + mergo_V2 : V2 ; mergulus_M_N : N ; mergus_M_N : N ; meridianus_A : A ; @@ -25797,7 +25930,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { meson_N : N ; mespila_F_N : N ; mespilum_N_N : N ; - messis_F_N : N ; + messis_F_N : N ; -- [XXXBX] :: harvest, crop; harvest time; messis_M_N : N ; messor_M_N : N ; mestitius_A : A ; @@ -25809,7 +25942,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { metamorphosis_F_N : N ; metaphora_F_N : N ; metaphoricus_A : A ; - metaphrastes_F_N : N ; + metaphrastes_F_N : N ; -- [GGXEE] :: translator of a book; metaphrastes_M_N : N ; metaphysica_F_N : N ; metaphysicus_A : A ; @@ -25833,7 +25966,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { methodus_F_N : N ; methylicus_A : A ; metior_V : V ; - meto_V : V ; + meto_V2 : V2 ; metonymia_F_N : N ; metor_V : V ; metreta_F_N : N ; @@ -25845,7 +25978,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { metrum_N_N : N ; metuculosus_A : A ; metuens_A : A ; - metuo_V : V ; + metuo_V2 : V2 ; metus_M_N : N ; meus_A : A ; mica_F_N : N ; @@ -25919,7 +26052,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { minerale_N_N : N ; mineralis_A : A ; mineralogia_F_N : N ; - mingo_V : V ; + mingo_V2 : V2 ; miniator_M_N : N ; miniatulus_A : A ; miniatura_F_N : N ; @@ -25941,7 +26074,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { minor_V : V ; minoritas_F_N : N ; minoro_V2 : V2 ; - minuo_V : V ; + minuo_V2 : V2 ; minurrio_V : V ; minurritio_F_N : N ; minus_Adv : Adv ; @@ -26016,14 +26149,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { misticius_A : A ; mistitius_A : A ; mistus_A : A ; - misy_N : N ; + misy_1_N : N ; -- [XXXNO] :: misy; copper ore/pyrite; sweet truffle or mushroom; + misy_2_N : N ; mitesco_V : V ; mitificatio_F_N : N ; mitigo_V : V ; mitis_A : A ; mitra_F_N : N ; mitratus_A : A ; - mitto_V : V ; + mitto_V2 : V2 ; mitulus_M_N : N ; mixticius_A : A ; mixtim_Adv : Adv ; @@ -26104,7 +26238,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { mollesco_V : V ; molliculus_A : A ; mollificatio_F_N : N ; - mollio_V : V ; + mollio_V2 : V2 ; mollipes_A : A ; mollis_A : A ; molliter_Adv : Adv ; @@ -26112,12 +26246,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { mollities_F_N : N ; mollitudo_F_N : N ; molluscum_N_N : N ; - molo_V : V ; + molo_V2 : V2 ; molossus_M_N : N ; molta_F_N : N ; moltaticus_A : A ; molto_V2 : V2 ; - moly_N : N ; + moly_1_N : N ; -- [XAXNS] :: plant (white flower and black root) (mythical used by Odysseus against Circe); + moly_2_N : N ; momen_N_N : N ; momentaliter_Adv : Adv ; momentana_F_N : N ; @@ -26161,8 +26296,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { monodicus_A : A ; monogama_F_N : N ; monogamia_F_N : N ; + monogenesis_1_N : N ; -- [EEXEE] :: monogenesis; origin from one pair; + monogenesis_2_N : N ; monogenesis_F_N : N ; - monogenesis_N : N ; monogerminalis_A : A ; monogrammos_A : A ; monogrammus_A : A ; @@ -26264,7 +26400,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { mugil_M_N : N ; mugilis_M_N : N ; muginor_V : V ; - mugio_V : V ; + mugio_V2 : V2 ; mugitus_M_N : N ; mula_F_N : N ; mulceo_V : V ; @@ -26350,7 +26486,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { mundus_M_N : N ; munero_V2 : V2 ; muneror_V : V ; - municeps_F_N : N ; + municeps_F_N : N ; -- [XXXCO] :: citizen/native (of a municipium/municipality); municeps_M_N : N ; municipalis_A : A ; municipatim_Adv : Adv ; @@ -26358,7 +26494,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { municipatus_M_N : N ; municipiolum_N_N : N ; municipium_N_N : N ; - munifes_F_N : N ; + munifes_F_N : N ; -- [XXXEO] :: one who performs duties; soldier who does not have exemption from fatigues; munifes_M_N : N ; munificator_M_N : N ; munifice_Adv : Adv ; @@ -26367,7 +26503,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { munificus_A : A ; munimen_N_N : N ; munimentum_N_N : N ; - munio_V : V ; + munio_V2 : V2 ; munitio_F_N : N ; munitiuncula_F_N : N ; munitor_M_N : N ; @@ -26396,7 +26532,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { murra_F_N : N ; murreus_A : A ; murus_M_N : N ; - mus_F_N : N ; + mus_F_N : N ; -- [XXXBX] :: mouse; mus_M_N : N ; musa_F_N : N ; musaeus_A : A ; @@ -26457,7 +26593,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { myosotis_F_N : N ; myrepsicus_A : A ; myriadalis_A : A ; - myrias_N : N ; + myrias_1_N : N ; -- [FSXEM] :: myriad, ten-thousand (the number); + myrias_2_N : N ; myrica_F_N : N ; myrice_F_N : N ; myriophllon_N_N : N ; @@ -26650,7 +26787,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { necrosis_F_N : N ; nectar_N_N : N ; nectareus_A : A ; - necto_V : V ; + necto_V2 : V2 ; necubi_Adv : Adv ; necunde_Adv : Adv ; nedum_Conj : Conj ; @@ -26684,7 +26821,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { negotior_V : V ; negotiosus_A : A ; negotium_N_N : N ; - nemo_F_N : N ; + nemo_F_N : N ; -- [XXXAX] :: no one, nobody; nemo_M_N : N ; nemoralis_A : A ; nemorensis_A : A ; @@ -26704,7 +26841,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { neoplasia_F_N : N ; nepa_F_N : N ; nepiagogium_N_N : N ; - nepos_F_N : N ; + nepos_F_N : N ; -- [XXXAX] :: grandson/daughter; descendant; spendthrift, prodigal, playboy; secondary shoot; nepos_M_N : N ; neptis_F_N : N ; nequam_A : A ; @@ -26713,7 +26850,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { neque_Adv : Adv ; neque_Conj : Conj ; nequedum_Conj : Conj ; - nequeo_V : V ; + nequeo_1_VV : VV ; + nequeo_2_VV : VV ; nequicquam_Adv : Adv ; nequior_A : A ; nequiquam_Adv : Adv ; @@ -26725,7 +26863,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { nervosus_A : A ; nervulus_M_N : N ; nervus_M_N : N ; - nescio_V : V ; + nescio_V2 : V2 ; nescius_A : A ; nete_F_N : N ; neu_Conj : Conj ; @@ -26743,7 +26881,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { neve_Conj : Conj ; nex_F_N : N ; nexilis_A : A ; - nexo_V : V ; + nexo_V2 : V2 ; nexum_N_N : N ; nexus_M_N : N ; ni_Adv : Adv ; @@ -26765,7 +26903,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { nigrans_A : A ; nigredo_F_N : N ; nigreo_V : V ; - nigresco_V : V ; + nigresco_V2 : V2 ; nigrita_M_N : N ; nigritia_F_N : N ; nigrities_F_N : N ; @@ -26797,7 +26935,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { nitedula_F_N : N ; nitella_F_N : N ; niteo_V : V ; - nitesco_V : V ; + nitesco_V2 : V2 ; nitidus_A : A ; nitor_M_N : N ; nitor_V : V ; @@ -26832,7 +26970,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { nodus_M_N : N ; nola_F_N : N ; nolo_V : V ; - nomas_N : N ; + nomas_1_N : N ; -- [XXXEO] :: nomad, esp. a Numidian; nomads (pl.), certain wandering pastoral tribes; + nomas_2_N : N ; nomen_N_N : N ; nomenclator_M_N : N ; nomenclatura_F_N : N ; @@ -26850,7 +26989,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { nonanus_A : A ; nondum_Adv : Adv ; nonne_Adv : Adv ; - nonnemo_F_N : N ; + nonnemo_F_N : N ; -- [XXXDX] :: some persons, a few; nonnemo_M_N : N ; nonnihil_Adv : Adv ; nonnihil_N : N ; @@ -26875,7 +27014,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { notarius_M_N : N ; notatio_F_N : N ; noteo_V : V ; - notesco_V : V ; + notesco_V2 : V2 ; nothus_A : A ; notificatio_F_N : N ; notio_F_N : N ; @@ -26929,7 +27068,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { nubilum_N_N : N ; nubilus_A : A ; nubis_M_N : N ; - nubo_V : V ; + nubo_V2 : V2 ; nubs_M_N : N ; nucatum_N_N : N ; nucifrangibulum_N_N : N ; @@ -27006,7 +27145,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { nuntium_N_N : N ; nuntius_A : A ; nuntius_M_N : N ; - nuo_V : V ; + nuo_V2 : V2 ; nuper_Adv : Adv ; nupta_F_N : N ; nuptia_F_N : N ; @@ -27047,29 +27186,30 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { obaro_V : V ; obaudio_V : V ; obba_F_N : N ; - obdo_V : V ; - obdormio_V : V ; + obdo_V2 : V2 ; + obdormio_V2 : V2 ; obdormisco_V : V ; - obduco_V : V ; + obduco_V2 : V2 ; obductico_F_N : N ; obductio_F_N : N ; obducto_V2 : V2 ; - obduresco_V : V ; + obduresco_V2 : V2 ; obduro_V : V ; obedens_A : A ; obedienter_Adv : Adv ; obedientia_F_N : N ; obedientiarius_M_N : N ; obedientio_F_N : N ; - obedio_V : V ; + obedio_V2 : V2 ; obeliscus_M_N : N ; obelus_M_N : N ; - obeo_V : V ; + obeo_1_V2 : V2 ; + obeo_2_V2 : V2 ; obequito_V : V ; obesus_A : A ; - obex_F_N : N ; + obex_F_N : N ; -- [XXXDX] :: bolt, bar; barrier; obstacle; obex_M_N : N ; - obfendo_V : V ; + obfendo_V2 : V2 ; obfirmo_V : V ; obfringo_V2 : V2 ; obfusco_V : V ; @@ -27125,7 +27265,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { obluctor_V : V ; obmolior_V : V ; obmurmuro_V : V ; - obmutesco_V : V ; + obmutesco_V2 : V2 ; obnatus_A : A ; obnitor_V : V ; obnixe_Adv : Adv ; @@ -27136,7 +27276,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { obnoxius_A : A ; obnubilatio_F_N : N ; obnubilo_V2 : V2 ; - obnubo_V : V ; + obnubo_V2 : V2 ; obnuntiatio_F_N : N ; obnuntio_V : V ; oboedens_A : A ; @@ -27144,21 +27284,21 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { oboedienter_Adv : Adv ; oboedientia_F_N : N ; oboedientio_F_N : N ; - oboedio_V : V ; + oboedio_V2 : V2 ; oboleo_V : V ; obolus_M_N : N ; oborior_V : V ; obortus_A : A ; obprobrium_N_N : N ; - obrepo_V : V ; + obrepo_V2 : V2 ; obreptio_F_N : N ; obrepto_V : V ; obretio_V2 : V2 ; - obrigesco_V : V ; + obrigesco_V2 : V2 ; obrizum_N_N : N ; obrizus_A : A ; obrogo_V : V ; - obruo_V : V ; + obruo_V2 : V2 ; obrussa_F_N : N ; obrussus_A : A ; obruza_F_N : N ; @@ -27168,7 +27308,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { obryza_F_N : N ; obryzatus_A : A ; obryzum_N_N : N ; - obsaepio_V : V ; + obsaepio_V2 : V2 ; obsaturo_V2 : V2 ; obscaene_Adv : Adv ; obscaenitas_F_N : N ; @@ -27195,13 +27335,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { obsequiosus_A : A ; obsequium_N_N : N ; obsequor_V : V ; - obsero_V : V ; obsero_V2 : V2 ; observatio_F_N : N ; observatorium_N_N : N ; observito_V : V ; observo_V : V ; - obses_F_N : N ; + obses_F_N : N ; -- [XWXDX] :: hostage; pledge, security; obses_M_N : N ; obsessio_F_N : N ; obsessor_M_N : N ; @@ -27217,11 +27356,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { obsido_V : V ; obsignator_M_N : N ; obsigno_V : V ; - obsisto_V : V ; + obsisto_V2 : V2 ; obsitus_A : A ; obsolefacio_V2 : V2 ; obsolefio_V : V ; - obsolesco_V : V ; + obsolesco_V2 : V2 ; obsoletus_A : A ; obsonator_M_N : N ; obsonatus_M_N : N ; @@ -27240,45 +27379,45 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { obstinatio_F_N : N ; obstinatus_A : A ; obstino_V : V ; - obstipesco_V : V ; + obstipesco_V2 : V2 ; obstipus_A : A ; obstitrix_F_N : N ; obsto_V : V ; - obstrepo_V : V ; - obstringo_V : V ; + obstrepo_V2 : V2 ; + obstringo_V2 : V2 ; obstructio_F_N : N ; - obstruo_V : V ; + obstruo_V2 : V2 ; obstupefacio_V2 : V2 ; obstupefio_V : V ; - obstupesco_V : V ; + obstupesco_V2 : V2 ; obstupidus_A : A ; obsum_V : V ; - obsuo_V : V ; + obsuo_V2 : V2 ; obsurdesco_V : V ; - obtego_V : V ; + obtego_V2 : V2 ; obtemperatio_F_N : N ; obtempero_V : V ; - obtendo_V : V ; + obtendo_V2 : V2 ; obtenebresco_V : V ; obtenebricatus_A : A ; obtenebro_V2 : V2 ; obtentus_M_N : N ; - obtero_V : V ; + obtero_V2 : V2 ; obtestatio_F_N : N ; obtestor_V : V ; obtexo_V : V ; obticeo_V : V ; - obticesco_V : V ; + obticesco_V2 : V2 ; obtineo_V : V ; obtingo_V : V ; - obtorpesco_V : V ; + obtorpesco_V2 : V2 ; obtorqueo_V : V ; obtrectatio_F_N : N ; obtrectator_M_N : N ; obtrecto_V : V ; obtrunco_V : V ; obtueeor_V : V ; - obtundo_V : V ; + obtundo_V2 : V2 ; obturgesco_V : V ; obturo_V2 : V2 ; obtusus_A : A ; @@ -27287,17 +27426,17 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { obuncus_A : A ; obustus_A : A ; obvallatus_A : A ; - obvenio_V : V ; + obvenio_V2 : V2 ; obversor_V : V ; obversus_A : A ; obversus_M_N : N ; - obverto_V : V ; + obverto_V2 : V2 ; obviam_Adv : Adv ; obvio_V2 : V2 ; obvius_A : A ; obvolvo_V2 : V2 ; occaeco_V : V ; - occallesco_V : V ; + occallesco_V2 : V2 ; occano_V2 : V2 ; occasio_F_N : N ; occasiuncula_F_N : N ; @@ -27311,10 +27450,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { occidens_M_N : N ; occidentalis_A : A ; occidio_F_N : N ; - occido_V : V ; + occido_V2 : V2 ; occiduus_A : A ; - occino_V : V ; - occipio_V : V ; + occino_V2 : V2 ; + occipio_V2 : V2 ; occipitium_N_N : N ; occiput_N_N : N ; occisio_F_N : N ; @@ -27324,19 +27463,19 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { occo_V : V ; occubo_V : V ; occulco_V : V ; - occulo_V : V ; + occulo_V2 : V2 ; occultatio_F_N : N ; occulte_Adv : Adv ; occultismus_M_N : N ; occulto_V : V ; occultum_N_N : N ; occultus_A : A ; - occumbo_V : V ; + occumbo_V2 : V2 ; occupatio_F_N : N ; occupatus_A : A ; occupo_V : V ; occuro_V : V ; - occurro_V : V ; + occurro_V2 : V2 ; occurso_V : V ; occursus_M_N : N ; ocellum_N_N : N ; @@ -27351,7 +27490,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ocrea_F_N : N ; ocreatus_A : A ; octachordos_A : A ; - octaedros_F_N : N ; + octaedros_F_N : N ; -- [FSXFS] :: octahedron; octaedros_M_N : N ; octipes_A : A ; octogenarius_A : A ; @@ -27401,7 +27540,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ofella_F_N : N ; offa_F_N : N ; offendiculum_N_N : N ; - offendo_V : V ; + offendo_V2 : V2 ; offensa_F_N : N ; offensio_F_N : N ; offensiuncula_F_N : N ; @@ -27431,7 +27570,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { offucia_F_N : N ; offuco_V2 : V2 ; offulgeo_V2 : V2 ; - offundo_V : V ; + offundo_V2 : V2 ; offuscatio_F_N : N ; ogdoas_F_N : N ; ogganio_V : V ; @@ -27485,7 +27624,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ominor_V : V ; ominosus_A : A ; omissus_A : A ; - omitto_V : V ; + omitto_V2 : V2 ; omne_N_N : N ; omnia_Adv : Adv ; omnifariam_Adv : Adv ; @@ -27500,7 +27639,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { omnipotentia_F_N : N ; omnipraesens_A : A ; omnis_A : A ; - omnis_F_N : N ; + omnis_F_N : N ; -- [XXXBC] :: all men (pl.), all persons; omnis_M_N : N ; omniscientia_F_N : N ; omnituens_A : A ; @@ -27519,7 +27658,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { onycha_F_N : N ; onyche_F_N : N ; onychinus_A : A ; - onyx_F_N : N ; + onyx_F_N : N ; -- [XXXNO] :: |multicolored gem; variety of quartz; kind of razor-shell clam; female scallop; onyx_M_N : N ; opaco_V : V ; opacus_A : A ; @@ -27576,7 +27715,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { oppassum_N_N : N ; oppedo_V2 : V2 ; opperior_V : V ; - oppeto_V : V ; + oppeto_V2 : V2 ; oppidaneus_A : A ; oppidanus_A : A ; oppidanus_M_N : N ; @@ -27585,7 +27724,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { oppidum_N_N : N ; oppilo_V : V ; oppleo_V : V ; - oppono_V : V ; + oppono_V2 : V2 ; opportune_Adv : Adv ; opportunismus_M_N : N ; opportunitas_F_N : N ; @@ -27594,13 +27733,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { oppositus_M_N : N ; oppressio_F_N : N ; oppressus_M_N : N ; - opprimo_V : V ; + opprimo_V2 : V2 ; opprobrium_N_N : N ; opprobro_V2 : V2 ; oppugnatio_F_N : N ; oppugnator_M_N : N ; oppugno_V : V ; - oprepo_V : V ; + oprepo_V2 : V2 ; opreptio_F_N : N ; oprepto_V : V ; ops_F_N : N ; @@ -27678,7 +27817,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { orbo_V : V ; orbus_A : A ; orca_F_N : N ; - orchas_N : N ; + orchas_1_N : N ; -- [XAXFO] :: species of olive; + orchas_2_N : N ; orchestra_F_N : N ; orchit_F_N : N ; orcivus_A : A ; @@ -27742,7 +27882,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ornatrix_F_N : N ; ornatus_A : A ; ornithoboscion_N_N : N ; - ornithon_N : N ; + ornithon_1_N : N ; -- [XAXDO] :: enclosure for poultry or similar; + ornithon_2_N : N ; ornithotrophion_N_N : N ; orno_V : V ; ornus_F_N : N ; @@ -27772,7 +27913,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { oryx_M_N : N ; oryza_F_N : N ; os_N_N : N ; - oscen_F_N : N ; + oscen_F_N : N ; -- [XEXDO] :: bird which gives omens by its cry; song-bird; oscen_M_N : N ; oscillatorius_A : A ; oscillatrum_N_N : N ; @@ -27793,7 +27934,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ossuculum_N_N : N ; ossum_N_N : N ; ostendeo_V2 : V2 ; - ostendo_V : V ; + ostendo_V2 : V2 ; ostensio_F_N : N ; ostentatio_F_N : N ; ostentator_M_N : N ; @@ -27866,8 +28007,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { pactor_M_N : N ; pactum_N_N : N ; pactus_A : A ; + paean_1_N : N ; -- [XXXCO] :: hymn (usually of victory, to Apollo/other gods); Paean (Greek Apollo as healer); + paean_2_N : N ; paean_M_N : N ; - paean_N : N ; paedagogia_F_N : N ; paedagogicus_A : A ; paedagogus_M_N : N ; @@ -27934,7 +28076,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { pallas_F_N : N ; pallens_A : A ; palleo_V : V ; - pallesco_V : V ; + pallesco_V2 : V2 ; palliatus_A : A ; pallidulus_A : A ; pallidus_A : A ; @@ -27967,7 +28109,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { paludismus_M_N : N ; paludosus_A : A ; palum_N_N : N ; - palumbes_F_N : N ; + palumbes_F_N : N ; -- [XAXCO] :: wood-pigeon, ringdove; dupe, pigeon, mark, gull, one deceived/fooled/cheated; palumbes_M_N : N ; palumbus_M_N : N ; palus_F_N : N ; @@ -27984,7 +28126,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { panaces_M_N : N ; panaces_N_N : N ; panarium_N_N : N ; - panax_F_N : N ; + panax_F_N : N ; -- [XAXCO] :: plant, supposed to cure all diseases; panacea, heal-all; (species of Opoponax); panax_M_N : N ; panchrestus_A : A ; panchristus_A : A ; @@ -27995,7 +28137,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { pancreatitis_F_N : N ; pandectes_M_N : N ; pandiculor_V : V ; - pando_V : V ; + pando_V2 : V2 ; pandus_A : A ; pane_N_N : N ; panegyris_A : A ; @@ -28043,7 +28185,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { papyrum_N_N : N ; papyrus_C_N : N ; par_A : A ; - par_F_N : N ; + par_F_N : N ; -- [XXXCO] :: |equal, counterpart; companion/partner at dinner; adversary, opponent; par_M_N : N ; par_N_N : N ; parabilis_A : A ; @@ -28067,8 +28209,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { parallelismus_M_N : N ; parallelus_A : A ; parallelus_M_N : N ; + paralysis_1_N : N ; -- [XBHCO] :: paralysis; any of several forms of paralysis; apoplexy; palsy (L+S); + paralysis_2_N : N ; paralysis_F_N : N ; - paralysis_N : N ; paralyticus_A : A ; paralyticus_M_N : N ; paramentum_N_N : N ; @@ -28076,12 +28219,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { parametrum_N_N : N ; paranete_F_N : N ; paraphrasis_F_N : N ; + parapsis_1_N : N ; -- [XXXEO] :: dish for serving vegetables/fruit; desert dish (Cas); + parapsis_2_N : N ; parapsis_F_N : N ; - parapsis_N : N ; parasceve_F_N : N ; parasceves_F_N : N ; + parasis_1_N : N ; -- [XXXFO] :: dish for serving vegetables/fruit; desert dish (Cas); + parasis_2_N : N ; parasis_F_N : N ; - parasis_N : N ; parasita_F_N : N ; parasitaster_M_N : N ; parasiticus_A : A ; @@ -28093,12 +28238,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { paratus_A : A ; paraveredus_M_N : N ; parce_Adv : Adv ; - parco_V : V ; + parco_V2 : V2 ; parcometrum_N_N : N ; parcus_A : A ; pardus_M_N : N ; parens_A : A ; - parens_F_N : N ; + parens_F_N : N ; -- [XXXAX] :: parent, father, mother; parens_M_N : N ; parentale_N_N : N ; parentalis_A : A ; @@ -28113,6 +28258,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { parilis_A : A ; parilitas_F_N : N ; pario_V : V ; + pario_V2 : V2 ; parissumus_A : A ; parisumus_A : A ; paritarius_A : A ; @@ -28135,10 +28281,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { paroecia_F_N : N ; paroecialis_A : A ; paroecianus_M_N : N ; + paropsis_1_N : N ; -- [XXXEO] :: dish for serving vegetables/fruit; desert dish (Cas); + paropsis_2_N : N ; paropsis_F_N : N ; - paropsis_N : N ; + parosis_1_N : N ; -- [XXXFO] :: dish for serving vegetables/fruit; desert dish (Cas); + parosis_2_N : N ; parosis_F_N : N ; - parosis_N : N ; parotis_F_N : N ; paroxysmus_M_N : N ; parricida_C_N : N ; @@ -28150,7 +28298,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { parthenium_N_N : N ; partibilis_A : A ; particeps_A : A ; - particeps_F_N : N ; + particeps_F_N : N ; -- [XXXDX] :: sharer, partaker; particeps_M_N : N ; participatio_F_N : N ; participialis_A : A ; @@ -28172,7 +28320,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { partitio_F_N : N ; partitura_F_N : N ; partum_N_N : N ; - parturio_V : V ; + parturio_V2 : V2 ; partus_M_N : N ; parum_Adv : Adv ; parumper_Adv : Adv ; @@ -28185,7 +28333,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { parvus_A : A ; pasca_F_N : N ; paschalis_A : A ; - pasco_V : V ; + pasco_V2 : V2 ; pascua_F_N : N ; pascuum_N_N : N ; pascuus_A : A ; @@ -28222,7 +28370,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { patera_F_N : N ; paternitas_F_N : N ; paternus_A : A ; - patesco_V : V ; + patesco_V2 : V2 ; pathicus_A : A ; pathicus_M_N : N ; pathologia_F_N : N ; @@ -28319,7 +28467,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { pavidus_A : A ; pavimentatus_A : A ; pavimentum_N_N : N ; - pavio_V : V ; + pavio_V2 : V2 ; pavito_V : V ; pavo_M_N : N ; pavor_M_N : N ; @@ -28343,7 +28491,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { pecco_V : V ; pecorosus_A : A ; pecten_M_N : N ; - pecto_V : V ; + pecto_V2 : V2 ; pectunculus_M_N : N ; pectus_N_N : N ; pectusculum_N_N : N ; @@ -28425,7 +28573,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { pellicula_F_N : N ; pellis_F_N : N ; pellitus_A : A ; - pello_V : V ; + pello_V2 : V2 ; pelluceeo_V : V ; peloris_F_N : N ; pelta_F_N : N ; @@ -28438,10 +28586,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { penarius_A : A ; penatiger_A : A ; pendeo_V : V ; - pendo_V : V ; + pendo_V2 : V2 ; pendulus_A : A ; pendulus_M_N : N ; - penecostas_N : N ; + penecostas_1_N : N ; -- [EEXEP] :: fifty; the number fifty; (7 Sundays after Easter); (Jewish 50th day of omer); + penecostas_2_N : N ; penecoste_F_N : N ; penes_Acc_Prep : Prep ; penetentiarius_M_N : N ; @@ -28488,7 +28637,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { penum_N_N : N ; penuria_F_N : N ; penuriosus_A : A ; - penus_F_N : N ; + penus_F_N : N ; -- [XXXDX] :: provisions, food; stock of household; storeroom in temple of Vesta; penus_M_N : N ; penus_N_N : N ; peplum_N_N : N ; @@ -28510,7 +28659,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { peraeque_Adv : Adv ; peraequo_V2 : V2 ; peragito_V : V ; - perago_V : V ; + perago_V2 : V2 ; peragratio_F_N : N ; peragro_V : V ; peramans_A : A ; @@ -28531,25 +28680,25 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { perbeatus_A : A ; perbene_Adv : Adv ; perbenevolus_A : A ; - perbibo_V : V ; + perbibo_V2 : V2 ; perbito_V : V ; perblandus_A : A ; perbonus_A : A ; perca_F_N : N ; percalefactus_A : A ; percalesco_V : V ; - percallesco_V : V ; + percallesco_V2 : V2 ; percarus_A : A ; percautus_A : A ; percelebro_V : V ; perceler_A : A ; - percello_V : V ; + percello_V2 : V2 ; percenseo_V2 : V2 ; perceptibilis_A : A ; - percido_V : V ; + percido_V2 : V2 ; percieo_V : V ; - percio_V : V ; - percipio_V : V ; + percio_V2 : V2 ; + percipio_V2 : V2 ; percitus_A : A ; percomis_A : A ; percommodus_A : A ; @@ -28557,15 +28706,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { percontator_M_N : N ; percontor_V : V ; percontumax_A : A ; - percoquo_V : V ; - percrebesco_V : V ; - percrebresco_V : V ; + percoquo_V2 : V2 ; + percrebesco_V2 : V2 ; + percrebresco_V2 : V2 ; percrepo_V : V ; percupidus_A : A ; percupio_V : V ; percuriosus_A : A ; percuro_V2 : V2 ; - percurro_V : V ; + percurro_V2 : V2 ; percursatio_F_N : N ; percursio_F_N : N ; percurso_V : V ; @@ -28573,14 +28722,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { percussio_F_N : N ; percussor_M_N : N ; percussus_M_N : N ; - percutio_V : V ; + percutio_V2 : V2 ; percuto_V : V ; perdecorus_A : A ; perdelirus_A : A ; perdepso_V2 : V2 ; perdignus_A : A ; perdiligens_A : A ; - perdisco_V : V ; + perdisco_V2 : V2 ; perdite_Adv : Adv ; perditim_Adv : Adv ; perditio_F_N : N ; @@ -28591,24 +28740,25 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { perdiu_Adv : Adv ; perdiuturnus_A : A ; perdives_A : A ; - perdix_F_N : N ; + perdix_F_N : N ; -- [XXXDX] :: partridge; perdix_M_N : N ; - perdo_V : V ; + perdo_V2 : V2 ; perdoceo_V2 : V2 ; - perdoco_V : V ; + perdoco_V2 : V2 ; perdoleo_V : V ; perdolesco_V : V ; perdolo_V2 : V2 ; perdomo_V2 : V2 ; perdormisco_V : V ; - perduco_V : V ; + perduco_V2 : V2 ; perducto_V2 : V2 ; perductor_M_N : N ; perdudum_Adv : Adv ; perduellio_F_N : N ; perduellis_M_N : N ; perduro_V : V ; - peredo_V : V ; + peredo_1_V2 : V2 ; + peredo_2_V2 : V2 ; peregre_Adv : Adv ; peregri_Adv : Adv ; peregrinabundus_A : A ; @@ -28627,7 +28777,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { perendinus_A : A ; perennis_A : A ; perenno_V : V ; - pereo_V : V ; + pereo_1_V : V ; + pereo_2_V : V ; perequito_V : V ; pererro_V : V ; pereruditus_A : A ; @@ -28644,17 +28795,17 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { perfectissimus_M_N : N ; perfectus_A : A ; perfero_V : V ; - perficio_V : V ; + perficio_V2 : V2 ; perfidia_F_N : N ; perfidiosus_A : A ; perfidus_A : A ; perfigo_V2 : V2 ; - perfinio_V : V ; + perfinio_V2 : V2 ; perflabilis_A : A ; perflagitiosus_A : A ; perflo_V : V ; perfluctuo_V2 : V2 ; - perfluo_V : V ; + perfluo_V2 : V2 ; perfodio_V2 : V2 ; perforaculum_N_N : N ; perforo_V2 : V2 ; @@ -28665,21 +28816,21 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { perfrictio_F_N : N ; perfrictiuncula_F_N : N ; perfrigefacio_V2 : V2 ; - perfrigesco_V : V ; + perfrigesco_V2 : V2 ; perfrigidus_A : A ; - perfringo_V : V ; + perfringo_V2 : V2 ; perfruor_V : V ; perfuga_M_N : N ; - perfugio_V : V ; + perfugio_V2 : V2 ; perfugium_N_N : N ; perfunctorie_Adv : Adv ; - perfundo_V : V ; + perfundo_V2 : V2 ; perfungor_V : V ; perfuro_V : V ; pergamenicus_A : A ; pergamenum_N_N : N ; pergaudeo_V : V ; - pergo_V : V ; + pergo_V2 : V2 ; pergraecor_V : V ; pergrandis_A : A ; pergraphicus_A : A ; @@ -28691,7 +28842,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { perhonorifice_Adv : Adv ; perhonorificus_A : A ; perhorreo_V2 : V2 ; - perhorresco_V : V ; + perhorresco_V2 : V2 ; perhorridus_A : A ; perhumaniter_Adv : Adv ; perhumanus_A : A ; @@ -28707,7 +28858,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { periegeticus_A : A ; perimbecillus_A : A ; perimetros_F_N : N ; - perimo_V : V ; + perimo_V2 : V2 ; perincommode_Adv : Adv ; perincommodus_A : A ; perinde_Adv : Adv ; @@ -28728,10 +28879,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { peripsima_N_N : N ; peripteros_A : A ; periratus_A : A ; - periscelis_N : N ; + periscelis_1_N : N ; -- [XXXEO] :: garter, anklet, leg-band; + periscelis_2_N : N ; peristasis_F_N : N ; peristereos_M_N : N ; - peristeron_N : N ; + peristeron_1_N : N ; -- [XAXFO] :: enclosure for pigeons, pigeon coop; + peristeron_2_N : N ; peristerotrophion_N_N : N ; peristroma_N_N : N ; peristylium_N_N : N ; @@ -28763,7 +28916,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { perlucidulus_A : A ; perlucidus_A : A ; perluctuosus_A : A ; - perluo_V : V ; + perluo_V2 : V2 ; perlustro_V : V ; permadesco_V : V ; permagnus_A : A ; @@ -28784,7 +28937,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { permistus_A : A ; permitialis_A : A ; permities_F_N : N ; - permitto_V : V ; + permitto_V2 : V2 ; permixtio_F_N : N ; permixtus_A : A ; permodestus_A : A ; @@ -28793,7 +28946,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { permoveo_V : V ; permulceo_V : V ; permultus_A : A ; - permunio_V : V ; + permunio_V2 : V2 ; permutatio_F_N : N ; permuto_V : V ; perna_F_N : N ; @@ -28839,10 +28992,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { perpaulum_N_N : N ; perpauper_A : A ; perpauxillum_N_N : N ; - perpello_V : V ; + perpello_V2 : V2 ; perpendiculariter_Adv : Adv ; perpendiculum_N_N : N ; - perpendo_V : V ; + perpendo_V2 : V2 ; perpensius_Adv : Adv ; perperam_Adv : Adv ; perpes_A : A ; @@ -28859,7 +29012,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { perplexus_A : A ; perplicatus_A : A ; perpluo_V : V ; - perpolio_V : V ; + perpolio_V2 : V2 ; perpopulor_V : V ; perpotatio_F_N : N ; perpotior_V : V ; @@ -28871,16 +29024,16 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { perpurgo_V2 : V2 ; perpusillus_A : A ; perquam_Adv : Adv ; - perquiro_V : V ; + perquiro_V2 : V2 ; perrarus_A : A ; perreconditus_A : A ; - perrepo_V : V ; + perrepo_V2 : V2 ; perrepto_V : V ; perridicule_Adv : Adv ; perridiculus_A : A ; perrogatio_F_N : N ; perrogo_V2 : V2 ; - perrumpo_V : V ; + perrumpo_V2 : V2 ; persaepe_Adv : Adv ; persalse_Adv : Adv ; persalsus_A : A ; @@ -28891,7 +29044,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { perscienter_Adv : Adv ; perscindo_V2 : V2 ; perscitus_A : A ; - perscribo_V : V ; + perscribo_V2 : V2 ; perscriptio_F_N : N ; perscriptor_M_N : N ; perscrutor_V : V ; @@ -28916,7 +29069,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { persimplex_A : A ; persolata_F_N : N ; persolus_A : A ; - persolvo_V : V ; + persolvo_V2 : V2 ; persona_F_N : N ; personalis_A : A ; personatus_A : A ; @@ -28933,13 +29086,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { perspicibilis_A : A ; perspicientia_F_N : N ; perspicillum_N_N : N ; - perspicio_V : V ; + perspicio_V2 : V2 ; perspicue_Adv : Adv ; perspicuus_A : A ; persterno_V2 : V2 ; perstimulo_V2 : V2 ; persto_V : V ; - perstringo_V : V ; + perstringo_V2 : V2 ; perstudiose_Adv : Adv ; perstudiosus_A : A ; persuadeo_V : V ; @@ -28950,7 +29103,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { pertaedet_V0 : V ; pertego_V2 : V2 ; pertempto_V : V ; - pertendo_V : V ; + pertendo_V2 : V2 ; pertento_V : V ; pertenuis_A : A ; perterebro_V2 : V2 ; @@ -28964,7 +29117,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { pertexo_V2 : V2 ; pertica_F_N : N ; pertimefactus_A : A ; - pertimesco_V : V ; + pertimesco_V2 : V2 ; pertinacia_F_N : N ; pertinaciter_Adv : Adv ; pertinax_A : A ; @@ -28975,12 +29128,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { pertolero_V2 : V2 ; pertorqueo_V2 : V2 ; pertractatio_F_N : N ; - pertraho_V : V ; + pertraho_V2 : V2 ; pertranseo_V : V ; pertricosus_A : A ; pertristis_A : A ; pertundiculum_N_N : N ; - pertundo_V : V ; + pertundo_V2 : V2 ; perturbatio_F_N : N ; perturbatrix_F_N : N ; perturbatus_A : A ; @@ -28991,15 +29144,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { perurbanus_A : A ; perurgueo_V : V ; peruro_V2 : V2 ; - pervado_V : V ; + pervado_V2 : V2 ; pervagor_V : V ; pervagus_A : A ; pervasto_V : V ; - perveho_V : V ; - pervenio_V : V ; + perveho_V2 : V2 ; + pervenio_V2 : V2 ; pervenor_V : V ; perversus_A : A ; - perverto_V : V ; + perverto_V2 : V2 ; pervesperi_Adv : Adv ; pervestigatio_F_N : N ; pervestigo_V : V ; @@ -29012,7 +29165,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { pervigilatio_F_N : N ; pervigilo_V : V ; pervilis_A : A ; - pervinco_V : V ; + pervinco_V2 : V2 ; pervius_A : A ; pervolgo_V2 : V2 ; pervolito_V : V ; @@ -29051,7 +29204,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { petitio_F_N : N ; petitor_M_N : N ; petiturio_V : V ; - peto_V : V ; + peto_V2 : V2 ; petoritum_N_N : N ; petorritum_N_N : N ; petra_F_N : N ; @@ -29313,7 +29466,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { pius_A : A ; pius_M_N : N ; pix_F_N : N ; - pixis_N : N ; + pixis_1_N : N ; -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); + pixis_2_N : N ; pl_A : A ; placabilis_A : A ; placabilitas_F_N : N ; @@ -29344,7 +29498,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { plane_Adv : Adv ; planes_M_N : N ; planeta_M_N : N ; - plango_V : V ; + plango_V2 : V2 ; plangor_M_N : N ; planipes_M_N : N ; planitas_F_N : N ; @@ -29372,7 +29526,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { platea_F_N : N ; platinum_N_N : N ; plaudeo_V : V ; - plaudo_V : V ; + plaudo_V2 : V2 ; plausibilis_A : A ; plausor_M_N : N ; plaustrum_N_N : N ; @@ -29385,6 +29539,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { plebiscitum_N_N : N ; plebs_F_N : N ; plecto_V : V ; + plecto_V2 : V2 ; plectrologium_N_N : N ; plectrum_N_N : N ; plegio_V : V ; @@ -29412,7 +29567,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { plio_F_N : N ; plipio_V : V ; plo_V : V ; - plodo_V : V ; + plodo_V2 : V2 ; plorabundus_A : A ; ploratus_M_N : N ; ploro_V : V ; @@ -29432,7 +29587,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { plumeus_A : A ; plumipes_A : A ; plumosus_A : A ; - pluo_V : V ; + pluo_V2 : V2 ; pluralis_A : A ; pluralismus_M_N : N ; pluralisticus_A : A ; @@ -29488,13 +29643,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { polemonia_F_N : N ; polenta_F_N : N ; polimen_N_N : N ; - polio_V : V ; + polio_V2 : V2 ; polion_N_N : N ; politicus_A : A ; politus_A : A ; polium_N_N : N ; pollen_N_N : N ; - pollenis_F_N : N ; + pollenis_F_N : N ; -- [BXXEO] :: finely ground flour; powder (of anything produced by grinding); pollenis_M_N : N ; pollens_A : A ; pollentia_F_N : N ; @@ -29586,7 +29741,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { populabilis_A : A ; populabundus_A : A ; popularis_A : A ; - popularis_F_N : N ; + popularis_F_N : N ; -- [XLXBO] :: |member of "Popular" party, promoter of "Popular" policies, "Men of the People"; popularis_M_N : N ; popularitas_F_N : N ; populariter_Adv : Adv ; @@ -29625,7 +29780,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { porrectio_F_N : N ; porrectus_A : A ; porricio_V2 : V2 ; - porrigo_V : V ; + porrigo_V2 : V2 ; porro_Adv : Adv ; porrum_N_N : N ; porrus_M_N : N ; @@ -29633,13 +29788,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { portale_N_N : N ; portarius_M_N : N ; portatio_F_N : N ; - portendo_V : V ; + portendo_V2 : V2 ; portentificus_A : A ; portentum_N_N : N ; portentuosus_A : A ; - porthmeus_N : N ; + porthmeus_1_N : N ; -- [XXXEO] :: ferryman; (Charon); + porthmeus_2_N : N ; porticula_F_N : N ; - porticus_F_N : N ; + porticus_F_N : N ; -- [XXXBO] :: colonnade, covered walk; portico; covered gallery atop amphitheater/siege works; porticus_M_N : N ; portio_F_N : N ; portisculus_M_N : N ; @@ -29651,7 +29807,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { portulaca_F_N : N ; portuosus_A : A ; portus_M_N : N ; - posco_V : V ; + posco_V2 : V2 ; posculentus_A : A ; posea_F_N : N ; positio_F_N : N ; @@ -29704,7 +29860,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { postnatus_A : A ; postnatus_M_N : N ; postpartor_M_N : N ; - postpono_V : V ; + postpono_V2 : V2 ; postputo_V2 : V2 ; postquam_Conj : Conj ; postremitas_F_N : N ; @@ -29713,7 +29869,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { postremus_A : A ; postridie_Adv : Adv ; postscaenium_N_N : N ; - postscribo_V : V ; + postscribo_V2 : V2 ; postulatio_F_N : N ; postulatum_N_N : N ; postulo_V : V ; @@ -29772,7 +29928,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praecanus_A : A ; praecaveo_V : V ; praecedentia_F_N : N ; - praecedo_V : V ; + praecedo_V2 : V2 ; praecelero_V : V ; praecellens_A : A ; praecellentia_F_N : N ; @@ -29786,18 +29942,18 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praeceptio_F_N : N ; praeceptor_M_N : N ; praeceptum_N_N : N ; - praecerpo_V : V ; + praecerpo_V2 : V2 ; praecidentius_Adv : Adv ; - praecido_V : V ; - praecingo_V : V ; - praecino_V : V ; - praecipio_V : V ; + praecido_V2 : V2 ; + praecingo_V2 : V2 ; + praecino_V2 : V2 ; + praecipio_V2 : V2 ; praecipito_V : V ; praecipue_Adv : Adv ; praecipuus_A : A ; praecisus_A : A ; praeclarus_A : A ; - praecludo_V : V ; + praecludo_V2 : V2 ; praecluis_A : A ; praeco_M_N : N ; praecognosco_V2 : V2 ; @@ -29805,7 +29961,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praeconium_N_N : N ; praeconius_A : A ; praeconor_V : V ; - praeconsumo_V : V ; + praeconsumo_V2 : V2 ; praecontrecto_V2 : V2 ; praecoquis_A : A ; praecordia_F_N : N ; @@ -29814,7 +29970,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praecox_A : A ; praecumbrans_A : A ; praecurrentium_N_N : N ; - praecurro_V : V ; + praecurro_V2 : V2 ; praecursor_M_N : N ; praecutio_V2 : V2 ; praeda_F_N : N ; @@ -29847,11 +30003,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praedo_V2 : V2 ; praedominium_N_N : N ; praedor_V : V ; - praeduco_V : V ; + praeduco_V2 : V2 ; praedulcis_A : A ; praeduro_V2 : V2 ; praedurus_A : A ; - praeeo_V : V ; + praeeo_1_V : V ; + praeeo_2_V : V ; praefabricatus_A : A ; praefatio_F_N : N ; praefectianus_A : A ; @@ -29864,20 +30021,20 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praeferratus_A : A ; praefervidus_A : A ; praefestino_V : V ; - praeficio_V : V ; - praefigo_V : V ; + praeficio_V2 : V2 ; + praefigo_V2 : V2 ; praefiguratio_F_N : N ; - praefinio_V : V ; + praefinio_V2 : V2 ; praefiscine_Adv : Adv ; praefiscini_Adv : Adv ; praefloro_V : V ; - praefluo_V : V ; + praefluo_V2 : V2 ; praefoco_V : V ; - praefodio_V : V ; + praefodio_V2 : V2 ; praefor_V : V ; praefractus_A : A ; praefrigidus_A : A ; - praefringo_V : V ; + praefringo_V2 : V2 ; praefulcio_V2 : V2 ; praefulgeo_V : V ; praefulgidus_A : A ; @@ -29910,6 +30067,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praelambo_V2 : V2 ; praelargus_A : A ; praelego_V : V ; + praelego_V2 : V2 ; praeligo_V2 : V2 ; praelior_V : V ; praelium_N_N : N ; @@ -29931,7 +30089,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praeminister_M_N : N ; praeministra_F_N : N ; praeministro_V : V ; - praemitto_V : V ; + praemitto_V2 : V2 ; praemium_N_N : N ; praemolestia_F_N : N ; praemolior_V : V ; @@ -29941,7 +30099,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praemordeo_V2 : V2 ; praemorior_V : V ; praemoveo_V2 : V2 ; - praemunio_V : V ; + praemunio_V2 : V2 ; praemunitio_F_N : N ; praenarro_V2 : V2 ; praenatalis_A : A ; @@ -29960,7 +30118,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praeoccupo_V : V ; praeolit_V0 : V ; praeopto_V : V ; - praepando_V : V ; + praepando_V2 : V2 ; praeparatio_F_N : N ; praeparo_V : V ; praepedio_V2 : V2 ; @@ -29971,7 +30129,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praepinguis_A : A ; praepolleo_V : V ; praepondero_V2 : V2 ; - praepono_V : V ; + praepono_V2 : V2 ; praeporto_V2 : V2 ; praepositio_F_N : N ; praepositus_M_N : N ; @@ -29988,22 +30146,22 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praeradio_V2 : V2 ; praerapidus_A : A ; praerigesco_V : V ; - praeripio_V : V ; + praeripio_V2 : V2 ; praerodo_V2 : V2 ; praerogatio_F_N : N ; praerogativa_F_N : N ; praerogativus_A : A ; praerogatus_A : A ; praerogo_V2 : V2 ; - praerumpo_V : V ; + praerumpo_V2 : V2 ; praeruptus_A : A ; praes_M_N : N ; praesaepe_N_N : N ; praesaepes_F_N : N ; - praesaepio_V : V ; + praesaepio_V2 : V2 ; praesaepium_N_N : N ; praesaeptus_A : A ; - praesagio_V : V ; + praesagio_V2 : V2 ; praesagitio_F_N : N ; praesagium_N_N : N ; praesagus_A : A ; @@ -30014,7 +30172,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praescitio_F_N : N ; praescitum_N_N : N ; praescius_A : A ; - praescribo_V : V ; + praescribo_V2 : V2 ; praescriptio_F_N : N ; praescriptum_N_N : N ; praeseco_V : V ; @@ -30029,16 +30187,16 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praesentia_F_N : N ; praesentialis_A : A ; praesentialiter_Adv : Adv ; - praesentio_V : V ; + praesentio_V2 : V2 ; praesento_V2 : V2 ; praesepe_N_N : N ; praesepes_F_N : N ; - praesepio_V : V ; + praesepio_V2 : V2 ; praesepium_N_N : N ; praesertim_Adv : Adv ; praeservativum_N_N : N ; praeservio_V : V ; - praeses_F_N : N ; + praeses_F_N : N ; -- [XXXDX] :: protector; guard; guardian; defender; chief; president, governor, procurator; praeses_M_N : N ; praesidalis_A : A ; praesidentia_F_N : N ; @@ -30061,15 +30219,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praestigiosus_A : A ; praestigium_N_N : N ; praestino_V : V ; - praestituo_V : V ; + praestituo_V2 : V2 ; praesto_Adv : Adv ; praesto_V : V ; praestolatio_F_N : N ; praestolor_V : V ; praestrigia_F_N : N ; - praestringo_V : V ; - praestruo_V : V ; - praesul_F_N : N ; + praestringo_V2 : V2 ; + praestruo_V2 : V2 ; + praesul_F_N : N ; -- [EEXEE] :: patron/protector; prelate/bishop/Church dignitary; dancer leading procession; praesul_M_N : N ; praesulatus_M_N : N ; praesulsus_A : A ; @@ -30085,7 +30243,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praesuppositio_F_N : N ; praesutus_A : A ; praetempto_V2 : V2 ; - praetendo_V : V ; + praetendo_V2 : V2 ; praetento_V2 : V2 ; praetenuis_A : A ; praetepeo_V : V ; @@ -30094,7 +30252,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praeterbito_V : V ; praeterduco_V2 : V2 ; praeterea_Adv : Adv ; - praetereo_V : V ; + praetereo_1_V2 : V2 ; + praetereo_2_V2 : V2 ; praeterequitans_A : A ; praeterfluo_V : V ; praetergredior_V : V ; @@ -30103,14 +30262,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praeterlabor_V : V ; praeterlatus_A : A ; praetermissio_F_N : N ; - praetermitto_V : V ; + praetermitto_V2 : V2 ; praeternavigo_V : V ; praeterquam_Acc_Prep : Prep ; praeterquam_Adv : Adv ; praetervectio_F_N : N ; praetervehor_V : V ; praetervolo_V : V ; - praetexo_V : V ; praetexo_V2 : V2 ; praetexta_F_N : N ; praetextatus_A : A ; @@ -30130,7 +30288,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praetrunco_V2 : V2 ; praetumidus_A : A ; praetura_F_N : N ; - praeuro_V : V ; + praeuro_V2 : V2 ; praeustus_A : A ; praevaleo_V : V ; praevalidus_A : A ; @@ -30140,15 +30298,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { praevarico_V : V ; praevaricor_V : V ; praevehor_V : V ; - praevenio_V : V ; + praevenio_V2 : V2 ; praeverbium_N_N : N ; praeverro_V2 : V2 ; - praeverto_V : V ; + praeverto_V2 : V2 ; praevideo_V : V ; praevitio_V2 : V2 ; praevius_A : A ; praevolo_V : V ; - praevorto_V : V ; + praevorto_V2 : V2 ; pragmaticus_A : A ; pragmatismus_M_N : N ; prandeo_V : V ; @@ -30188,7 +30346,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { preludium_N_N : N ; prelum_N_N : N ; premagnus_A : A ; - premo_V : V ; + premo_V2 : V2 ; premotio_F_N : N ; prenda_F_N : N ; prendo_V2 : V2 ; @@ -30202,7 +30360,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { presbyterium_N_N : N ; presbyterus_M_N : N ; presbytia_F_N : N ; - presignio_V : V ; + presignio_V2 : V2 ; pressio_F_N : N ; presso_V : V ; pressule_Adv : Adv ; @@ -30308,7 +30466,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { probus_A : A ; procacitas_F_N : N ; procax_A : A ; - procedo_V : V ; + procedo_V2 : V2 ; proceleumaticus_M_N : N ; procella_F_N : N ; procellosus_A : A ; @@ -30317,8 +30475,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { proceritas_F_N : N ; procerus_A : A ; processus_M_N : N ; - procido_V : V ; - prociedo_V : V ; + procido_V2 : V2 ; + prociedo_V2 : V2 ; procinctualis_A : A ; procinctus_M_N : N ; procingo_V2 : V2 ; @@ -30339,15 +30497,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { procreo_V : V ; procresco_V : V ; procubo_V : V ; - procudo_V : V ; + procudo_V2 : V2 ; procul_Adv : Adv ; proculco_V : V ; - procumbo_V : V ; + procumbo_V2 : V2 ; procuratio_F_N : N ; procurator_M_N : N ; procuratorius_A : A ; procuro_V : V ; - procurro_V : V ; + procurro_V2 : V2 ; procursatio_F_N : N ; procursator_M_N : N ; procurso_V : V ; @@ -30357,7 +30515,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { prodeambulo_V : V ; prodecessor_M_N : N ; prodeo_V : V ; - prodico_V : V ; + prodico_V2 : V2 ; prodictator_M_N : N ; prodigentia_F_N : N ; prodigialiter_Adv : Adv ; @@ -30375,7 +30533,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { prodo_V2 : V2 ; prodoceo_V : V ; prodromus_M_N : N ; - produco_V : V ; + produco_V2 : V2 ; productio_F_N : N ; producto_V : V ; productum_N_N : N ; @@ -30395,7 +30553,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { professionalis_A : A ; professorius_A : A ; profestus_A : A ; - proficio_V : V ; + proficio_V2 : V2 ; proficiscor_V : V ; proficuus_A : A ; profisceo_V : V ; @@ -30404,15 +30562,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { profligo_V : V ; proflo_V : V ; profluentia_F_N : N ; - profluo_V : V ; + profluo_V2 : V2 ; profluus_A : A ; profluvium_N_N : N ; profor_V : V ; - profugio_V : V ; + profugio_V2 : V2 ; profugus_A : A ; profugus_C_N : N ; profunditas_F_N : N ; - profundo_V : V ; + profundo_V2 : V2 ; profundum_N_N : N ; profundus_A : A ; profusio_F_N : N ; @@ -30423,7 +30581,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { progenies_F_N : N ; progenitor_M_N : N ; progero_V2 : V2 ; - progigno_V : V ; + progigno_V2 : V2 ; prognariter_Adv : Adv ; prognatus_A : A ; programma_N_N : N ; @@ -30468,9 +30626,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { prolongo_V2 : V2 ; proloquium_N_N : N ; proloquor_V : V ; - proludo_V : V ; - proluo_V : V ; - proluvier_F_N : N ; + proludo_V2 : V2 ; + proluo_V2 : V2 ; + proluvier_F_N : N ; -- [FXXEN] :: inundation; scouring; discharge; proluvier_M_N : N ; proluvies_F_N : N ; promachus_M_N : N ; @@ -30490,8 +30648,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { promissor_M_N : N ; promissum_N_N : N ; promissus_A : A ; - promitto_V : V ; - promo_V : V ; + promitto_V2 : V2 ; + promo_V2 : V2 ; promono_V : V ; promontorium_N_N : N ; promonturium_N_N : N ; @@ -30539,7 +30697,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { prope_Acc_Prep : Prep ; prope_Adv : Adv ; propediem_Adv : Adv ; - propello_V : V ; + propello_V2 : V2 ; propemodo_Adv : Adv ; propemodum_Adv : Adv ; propendeo_V : V ; @@ -30576,7 +30734,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { propitius_A : A ; propola_M_N : N ; propoma_N_N : N ; - propono_V : V ; + propono_V2 : V2 ; proporro_Adv : Adv ; proportio_F_N : N ; proportionalis_A : A ; @@ -30602,25 +30760,25 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { proquaestor_M_N : N ; proquam_Adv : Adv ; prora_F_N : N ; - prorepo_V : V ; + prorepo_V2 : V2 ; proreta_M_N : N ; proreus_M_N : N ; prorex_M_N : N ; - proripio_V : V ; + proripio_V2 : V2 ; prorito_V : V ; prorogatio_F_N : N ; prorogo_V : V ; prorsum_Adv : Adv ; prorsus_A : A ; prorsus_Adv : Adv ; - prorumpo_V : V ; - proruo_V : V ; + prorumpo_V2 : V2 ; + proruo_V2 : V2 ; prosa_F_N : N ; prosaicus_A : A ; prosapia_F_N : N ; proscaenium_N_N : N ; - proscindo_V : V ; - proscribo_V : V ; + proscindo_V2 : V2 ; + proscribo_V2 : V2 ; proscriptio_F_N : N ; proscripturio_V : V ; proscriptus_M_N : N ; @@ -30632,7 +30790,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { proselytus_M_N : N ; prosentio_V2 : V2 ; prosequor_V : V ; - prosero_V : V ; + prosero_V2 : V2 ; proserpo_V : V ; proseucha_F_N : N ; prosilio_V : V ; @@ -30648,7 +30806,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { prospero_V : V ; prosperus_A : A ; prospicientia_F_N : N ; - prospicio_V : V ; + prospicio_V2 : V2 ; prosterno_V2 : V2 ; prosthaphaeresis_F_N : N ; prosthapheresis_F_N : N ; @@ -30665,12 +30823,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { prosus_Adv : Adv ; protectio_F_N : N ; protector_M_N : N ; - protego_V : V ; + protego_V2 : V2 ; proteinum_N_N : N ; protelo_V2 : V2 ; protelum_N_N : N ; protendo_V2 : V2 ; - protero_V : V ; + protero_V2 : V2 ; proterreo_V : V ; proteruitas_F_N : N ; protervus_A : A ; @@ -30689,10 +30847,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { protollo_V2 : V2 ; protomartyr_M_N : N ; protos_N_N : N ; - protraho_V : V ; + protraho_V2 : V2 ; protritus_A : A ; protropum_N_N : N ; - protrudo_V : V ; + protrudo_V2 : V2 ; protubero_V : V ; proturbero_V : V ; proturbo_V2 : V2 ; @@ -30700,8 +30858,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { prout_Conj : Conj ; provectio_F_N : N ; provectus_A : A ; - proveho_V : V ; - provenio_V : V ; + proveho_V2 : V2 ; + provenio_V2 : V2 ; proventus_M_N : N ; proverbialis_A : A ; proverbialiter_Adv : Adv ; @@ -30712,13 +30870,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { provincia_F_N : N ; provincialis_A : A ; provincialis_M_N : N ; - provinco_V : V ; + provinco_V2 : V2 ; provisor_M_N : N ; provivo_V : V ; provocatio_F_N : N ; provoco_V : V ; provolo_V : V ; - provolvo_V : V ; + provolvo_V2 : V2 ; provolvor_V : V ; provomo_V2 : V2 ; provulgo_V2 : V2 ; @@ -30745,8 +30903,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { prurio_V : V ; pruritus_M_N : N ; prytaneum_N_N : N ; - prytanis_N : N ; - psallo_V : V ; + prytanis_1_N : N ; -- [XLHEC] :: chief magistrate in a Greek state; + prytanis_2_N : N ; + psallo_V2 : V2 ; psalmista_M_N : N ; psalmodia_F_N : N ; psalmus_M_N : N ; @@ -30802,7 +30961,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { pubertas_F_N : N ; pubes_A : A ; pubes_F_N : N ; - pubesco_V : V ; + pubesco_V2 : V2 ; publicanus_A : A ; publicanus_M_N : N ; publicatio_F_N : N ; @@ -30905,7 +31064,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { pumiceus_A : A ; pumico_V2 : V2 ; pumicosus_A : A ; - pumilio_F_N : N ; + pumilio_F_N : N ; -- [XXXEC] :: dwarf; pumilio_M_N : N ; pumilus_M_N : N ; punctatus_A : A ; @@ -30984,7 +31143,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { putris_A : A ; putro_V : V ; putus_A : A ; - puxis_N : N ; + puxis_1_N : N ; -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); + puxis_2_N : N ; pycnostylos_A : A ; pycta_M_N : N ; pyctes_M_N : N ; @@ -30994,14 +31154,16 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { pygargus_M_N : N ; pylorus_M_N : N ; pyra_F_N : N ; - pyramis_N : N ; + pyramis_1_N : N ; -- [XXXDX] :: pyramid; + pyramis_2_N : N ; pyrauloplanum_N_N : N ; pyrethrum_N_N : N ; pyrites_F_N : N ; pyrius_A : A ; pyrobolum_N_N : N ; pyrobolus_M_N : N ; - pyromis_N : N ; + pyromis_1_N : N ; -- [EXXFW] :: pyramid; + pyromis_2_N : N ; pyropus_M_N : N ; pyrrhica_F_N : N ; pyrrhice_F_N : N ; @@ -31017,8 +31179,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { pythonissa_F_N : N ; pytisma_N_N : N ; pytisso_V : V ; + pyxis_1_N : N ; -- [XXXCO] :: small box/casket (originally boxwood) for medicine; iron heel on pestle (L+S); + pyxis_2_N : N ; pyxis_F_N : N ; - pyxis_N : N ; qua_Adv : Adv ; quaad_Adv : Adv ; quacumque_Adv : Adv ; @@ -31059,7 +31222,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { quadringenarius_A : A ; quadripertitus_A : A ; quadriplex_A : A ; - quadriporticus_F_N : N ; + quadriporticus_F_N : N ; -- [FEXEK] :: cloister; quadriporticus_M_N : N ; quadriremis_A : A ; quadriremis_F_N : N ; @@ -31069,7 +31232,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { quadrupedans_A : A ; quadrupertitus_A : A ; quadrupes_A : A ; - quadrupes_F_N : N ; + quadrupes_F_N : N ; -- [XXXDX] :: quadruped; quadrupes_M_N : N ; quadruplator_M_N : N ; quadruplex_A : A ; @@ -31080,7 +31243,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { quadrus_A : A ; quadruvium_N_N : N ; quaerito_V : V ; - quaero_V : V ; + quaero_V2 : V2 ; quaesitio_F_N : N ; quaesitum_N_N : N ; quaesitus_A : A ; @@ -31173,7 +31336,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { quattuorviratus_M_N : N ; que_Conj : Conj ; quemadmodum_Adv : Adv ; - queo_V : V ; + queo_1_VV : VV ; + queo_2_VV : VV ; quercetum_N_N : N ; querceus_A : A ; quercus_F_N : N ; @@ -31198,7 +31362,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { quidnam_Adv : Adv ; quidni_Adv : Adv ; quies_F_N : N ; - quiesco_V : V ; + quiesco_V2 : V2 ; quiete_Adv : Adv ; quietus_A : A ; quin_Adv : Adv ; @@ -31353,7 +31517,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { radiotherapia_F_N : N ; radius_M_N : N ; radix_F_N : N ; - rado_V : V ; + rado_V2 : V2 ; raeda_F_N : N ; raedarius_M_N : N ; raffinatio_F_N : N ; @@ -31376,13 +31540,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { rapacitas_F_N : N ; rapax_A : A ; raphaninus_A : A ; - raphanitis_N : N ; + raphanitis_1_N : N ; -- [XAHNO] :: variety of the plant Iris Illyrica; + raphanitis_2_N : N ; raphanus_F_N : N ; raphanus_M_N : N ; rapiditas_F_N : N ; rapidus_A : A ; rapina_F_N : N ; - rapio_V : V ; + rapio_V2 : V2 ; raptim_Adv : Adv ; rapto_V : V ; raptor_M_N : N ; @@ -31463,12 +31628,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { recalesceo_V : V ; recalfacio_V2 : V2 ; recalvaster_A : A ; - recandesco_V : V ; + recandesco_V2 : V2 ; recanto_V : V ; recapitulatio_F_N : N ; recapitulo_V : V ; reccido_V : V ; - recedo_V : V ; + recedo_V2 : V2 ; recello_V : V ; recens_A : A ; recenseo_V2 : V2 ; @@ -31484,7 +31649,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { recidivus_A : A ; recido_V : V ; recido_V2 : V2 ; - recingo_V : V ; + recingo_V2 : V2 ; recino_V : V ; recipeo_V : V ; reciperatio_F_N : N ; @@ -31492,7 +31657,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { reciperator_M_N : N ; reciperatorius_A : A ; recipero_V : V ; - recipio_V : V ; + recipio_V2 : V2 ; reciprocatio_F_N : N ; reciproco_V : V ; reciprocus_A : A ; @@ -31504,13 +31669,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { reclinatorium_N_N : N ; reclinis_A : A ; reclino_V : V ; - recludo_V : V ; + recludo_V2 : V2 ; recogito_V : V ; recognitio_F_N : N ; recognitor_M_N : N ; - recognosco_V : V ; - recolligo_V : V ; - recolo_V : V ; + recognosco_V2 : V2 ; + recolligo_V2 : V2 ; + recolo_V2 : V2 ; recomminiscor_V : V ; recompenso_V2 : V2 ; reconciliatio_F_N : N ; @@ -31518,16 +31683,16 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { reconcilio_V : V ; reconcinno_V2 : V2 ; reconditus_A : A ; - recondo_V : V ; + recondo_V2 : V2 ; reconflo_V2 : V2 ; - recoquo_V : V ; + recoquo_V2 : V2 ; recordatio_F_N : N ; recordor_V : V ; recreatio_F_N : N ; recreo_V : V ; recrepo_V : V ; - recresco_V : V ; - recrudesco_V : V ; + recresco_V2 : V2 ; + recrudesco_V2 : V2 ; recta_Adv : Adv ; recte_Adv : Adv ; rectificatio_F_N : N ; @@ -31541,14 +31706,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { recubitus_M_N : N ; recubo_V : V ; recudeo_V : V ; - recumbo_V : V ; + recumbo_V2 : V2 ; recuperatio_F_N : N ; recuperativus_A : A ; recuperator_M_N : N ; recuperatorius_A : A ; recupero_V : V ; recuro_V : V ; - recurro_V : V ; + recurro_V2 : V2 ; recurso_V : V ; recursus_M_N : N ; recurvo_V : V ; @@ -31556,21 +31721,22 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { recusatio_F_N : N ; recuso_V : V ; recussus_A : A ; - recutio_V : V ; + recutio_V2 : V2 ; redactor_M_N : N ; redambulo_V : V ; redamo_V : V ; redardesco_V : V ; - redarguo_V : V ; + redarguo_V2 : V2 ; redauspico_V : V ; - reddo_V : V ; + reddo_V2 : V2 ; redemptio_F_N : N ; redemptor_M_N : N ; - redeo_V : V ; + redeo_1_V2 : V2 ; + redeo_2_V2 : V2 ; redhalo_V2 : V2 ; redhibeo_V2 : V2 ; redicor_V : V ; - redigo_V : V ; + redigo_V2 : V2 ; redimiculum_N_N : N ; redimio_V2 : V2 ; redimo_V2 : V2 ; @@ -31586,7 +31752,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { redono_V : V ; redormio_V : V ; redormisco_V : V ; - reduco_V : V ; + reduco_V2 : V2 ; reductivus_A : A ; reductor_M_N : N ; reductus_A : A ; @@ -31601,20 +31767,20 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { refector_M_N : N ; refectorium_N_N : N ; refectorius_A : A ; - refello_V : V ; - refercio_V : V ; + refello_V2 : V2 ; + refercio_V2 : V2 ; referendarius_M_N : N ; referio_V2 : V2 ; refero_V : V ; refert_V0 : V ; refertus_A : A ; referveo_V : V ; - reficio_V : V ; - refigo_V : V ; + reficio_V2 : V2 ; + refigo_V2 : V2 ; refingo_V2 : V2 ; reflagito_V2 : V2 ; reflatus_M_N : N ; - reflecto_V : V ; + reflecto_V2 : V2 ; reflo_V : V ; refluo_V : V ; refluus_A : A ; @@ -31636,20 +31802,20 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { refrigeratio_F_N : N ; refrigerium_N_N : N ; refrigero_V : V ; - refrigesco_V : V ; - refringo_V : V ; - refugio_V : V ; + refrigesco_V2 : V2 ; + refringo_V2 : V2 ; + refugio_V2 : V2 ; refugium_N_N : N ; refugus_A : A ; refulgeo_V : V ; - refulgo_V : V ; - refundo_V : V ; + refulgo_V2 : V2 ; + refundo_V2 : V2 ; refutatio_F_N : N ; refutatus_M_N : N ; refuto_V : V ; regalis_A : A ; regeneratio_F_N : N ; - regero_V : V ; + regero_V2 : V2 ; regia_F_N : N ; regificus_A : A ; regigno_V2 : V2 ; @@ -31663,7 +31829,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { regnatrix_A : A ; regno_V : V ; regnum_N_N : N ; - rego_V : V ; + rego_V2 : V2 ; regredior_V : V ; regressivus_A : A ; regressus_M_N : N ; @@ -31673,7 +31839,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { regulatim_Adv : Adv ; regulus_M_N : N ; regusto_V2 : V2 ; - rehendo_V : V ; + rehendo_V2 : V2 ; reicio_V2 : V2 ; reiculus_A : A ; reimpressio_F_N : N ; @@ -31684,7 +31850,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { rejecto_V2 : V2 ; rejicio_V2 : V2 ; relabor_V : V ; - relanguesco_V : V ; + relanguesco_V2 : V2 ; relapsus_M_N : N ; relatio_F_N : N ; relationalis_A : A ; @@ -31698,6 +31864,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { relaxo_V : V ; relegatio_F_N : N ; relego_V : V ; + relego_V2 : V2 ; relentesco_V : V ; relevium_N_N : N ; relevo_V2 : V2 ; @@ -31717,13 +31884,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { religiosus_M_N : N ; religo_V : V ; relino_V2 : V2 ; - relinquo_V : V ; + relinquo_V2 : V2 ; reliquator_M_N : N ; reliquia_F_N : N ; reliquum_N_N : N ; reliquus_A : A ; reluceo_V : V ; - relucesco_V : V ; + relucesco_V2 : V2 ; reluctor_V : V ; remaneo_V : V ; remano_V : V ; @@ -31742,7 +31909,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { remisse_Adv : Adv ; remissio_F_N : N ; remissus_A : A ; - remitto_V : V ; + remitto_V2 : V2 ; remolior_V : V ; remollesco_V : V ; remollio_V2 : V2 ; @@ -31772,7 +31939,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { renideo_V : V ; renidesco_V : V ; renitor_V : V ; - rennuo_V : V ; + rennuo_V2 : V2 ; reno_M_N : N ; renodo_V2 : V2 ; renovamen_N_N : N ; @@ -31783,7 +31950,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { renunculus_M_N : N ; renuntiatio_F_N : N ; renuntio_V : V ; - renuo_V : V ; + renuo_V2 : V2 ; renuto_V : V ; reor_V : V ; repagulum_N_N : N ; @@ -31797,21 +31964,21 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { repecto_V2 : V2 ; repedo_V : V ; repello_V2 : V2 ; - rependo_V : V ; + rependo_V2 : V2 ; repens_A : A ; repente_Adv : Adv ; repentinus_A : A ; reperco_V2 : V2 ; repercussio_F_N : N ; repercussus_M_N : N ; - repercutio_V : V ; + repercutio_V2 : V2 ; reperio_V2 : V2 ; repertor_M_N : N ; repertum_N_N : N ; repetitio_F_N : N ; repetitor_M_N : N ; repetitus_A : A ; - repeto_V : V ; + repeto_V2 : V2 ; repetunda_F_N : N ; replebilis_A : A ; replegio_V : V ; @@ -31819,8 +31986,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { repletus_A : A ; replico_V2 : V2 ; replum_N_N : N ; - repo_V : V ; - repono_V : V ; + repo_V2 : V2 ; + repono_V2 : V2 ; reporto_V : V ; reposco_V : V ; repositorium_N_N : N ; @@ -31832,20 +31999,20 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { reppertum_N_N : N ; repraesentativus_A : A ; repraesento_V : V ; - reprehendo_V : V ; + reprehendo_V2 : V2 ; reprehensibilis_A : A ; reprehensio_F_N : N ; reprehenso_V2 : V2 ; reprensio_F_N : N ; repressor_M_N : N ; - reprimo_V : V ; + reprimo_V2 : V2 ; reprobatio_F_N : N ; reprobo_V2 : V2 ; reprobus_A : A ; reproductio_F_N : N ; repromissio_F_N : N ; repromissum_N_N : N ; - repromitto_V : V ; + repromitto_V2 : V2 ; reptatus_A : A ; reptatus_M_N : N ; reptile_N_N : N ; @@ -31868,21 +32035,21 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { reputatio_F_N : N ; reputo_V : V ; requies_F_N : N ; - requiesco_V : V ; + requiesco_V2 : V2 ; requietio_F_N : N ; requietus_A : A ; requirito_V2 : V2 ; - requiro_V : V ; + requiro_V2 : V2 ; res_F_N : N ; res_N : N ; resacro_V : V ; resaevio_V : V ; resaluto_V2 : V2 ; - resanesco_V : V ; + resanesco_V2 : V2 ; resarcio_V2 : V2 ; - rescindo_V : V ; - rescisco_V : V ; - rescribo_V : V ; + rescindo_V2 : V2 ; + rescisco_V2 : V2 ; + rescribo_V2 : V2 ; reseantia_F_N : N ; reseantisa_F_N : N ; reseco_V : V ; @@ -31895,11 +32062,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { residentia_F_N : N ; residentialis_A : A ; resideo_V : V ; - resido_V : V ; + resido_V2 : V2 ; residuus_A : A ; resignatio_F_N : N ; resigno_V : V ; - resilio_V : V ; + resilio_V2 : V2 ; resimus_A : A ; resina_F_N : N ; resinaceus_A : A ; @@ -31907,19 +32074,19 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { resinosus_A : A ; resipicentia_F_N : N ; resipio_V : V ; - resipisco_V : V ; - resisto_V : V ; + resipisco_V2 : V2 ; + resisto_V2 : V2 ; resolutio_F_N : N ; - resolvo_V : V ; + resolvo_V2 : V2 ; resonabilis_A : A ; resono_V : V ; resonus_A : A ; resorbeo_V : V ; respecto_V : V ; respectus_M_N : N ; - respergo_V : V ; + respergo_V2 : V2 ; respersio_F_N : N ; - respicio_V : V ; + respicio_V2 : V2 ; respiramen_N_N : N ; respiratio_F_N : N ; respiratus_M_N : N ; @@ -31942,31 +32109,31 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { restauro_V2 : V2 ; resticula_F_N : N ; restinctio_F_N : N ; - restinguo_V : V ; + restinguo_V2 : V2 ; restio_M_N : N ; restipulatio_F_N : N ; restipulor_V : V ; restis_F_N : N ; restito_V : V ; - restituo_V : V ; + restituo_V2 : V2 ; restitutio_F_N : N ; restitutor_M_N : N ; restitutorius_A : A ; resto_V : V ; restrictivus_A : A ; restrictus_A : A ; - restringo_V : V ; + restringo_V2 : V2 ; resulto_V : V ; resummonitio_F_N : N ; - resumo_V : V ; + resumo_V2 : V2 ; resupinus_A : A ; - resurgo_V : V ; + resurgo_V2 : V2 ; resurrectio_F_N : N ; resuscito_V : V ; retardatio_F_N : N ; retardo_V : V ; rete_N_N : N ; - retego_V : V ; + retego_V2 : V2 ; retempto_V2 : V2 ; retendo_V2 : V2 ; retentio_F_N : N ; @@ -31989,7 +32156,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { retorta_F_N : N ; retracto_V : V ; retractus_A : A ; - retraho_V : V ; + retraho_V2 : V2 ; retrecto_V : V ; retribuo_V2 : V2 ; retributio_F_N : N ; @@ -32001,20 +32168,20 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { retroscopicus_A : A ; retrospective_Adv : Adv ; retrospectivus_A : A ; - retrotraho_V : V ; + retrotraho_V2 : V2 ; retroversus_Adv : Adv ; - retundo_V : V ; + retundo_V2 : V2 ; retunsus_A : A ; retusus_A : A ; reubarbarum_N_N : N ; reus_A : A ; reus_M_N : N ; - revalesco_V : V ; - reveho_V : V ; + revalesco_V2 : V2 ; + reveho_V2 : V2 ; revelatio_F_N : N ; revello_V2 : V2 ; revelo_V : V ; - revenio_V : V ; + revenio_V2 : V2 ; revera_Adv : Adv ; reverberatio_F_N : N ; reverberatus_A : A ; @@ -32025,13 +32192,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { reverentia_F_N : N ; revereor_V : V ; reversio_F_N : N ; - reverto_V : V ; + reverto_V2 : V2 ; revertor_V : V ; - revincio_V : V ; - revinco_V : V ; - reviresco_V : V ; + revincio_V2 : V2 ; + revinco_V2 : V2 ; + reviresco_V2 : V2 ; reviso_V : V ; - revivisco_V : V ; + revivisco_V2 : V2 ; revivo_V : V ; revocabilis_A : A ; revocamen_N_N : N ; @@ -32039,8 +32206,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { revolo_V : V ; revolubilis_A : A ; revolutio_F_N : N ; - revolvo_V : V ; - revomo_V : V ; + revolvo_V2 : V2 ; + revomo_V2 : V2 ; rex_M_N : N ; rhagadis_F_N : N ; rhagadium_N_N : N ; @@ -32050,7 +32217,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { rhetorice_F_N : N ; rhetoricus_A : A ; rheumatismus_M_N : N ; - rhinoceros_N : N ; + rhinoceros_1_N : N ; -- [XAXCO] :: rhinoceros (African or Indian); rhinoceros horn oil-flask; + rhinoceros_2_N : N ; rho_N : N ; rhododendron_N_N : N ; rhombus_M_N : N ; @@ -32084,7 +32252,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { rigatio_F_N : N ; rigens_A : A ; rigeo_V : V ; - rigesco_V : V ; + rigesco_V2 : V2 ; rigidus_A : A ; rigo_V : V ; rigor_M_N : N ; @@ -32094,7 +32262,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { rimosus_A : A ; ringa_F_N : N ; ringor_V : V ; - rinoceros_N : N ; + rinoceros_1_N : N ; -- [XAXCO] :: rhinoceros (African or Indian); rhinoceros horn oil-flask; + rinoceros_2_N : N ; ripa_F_N : N ; ripensis_A : A ; ripula_F_N : N ; @@ -32129,7 +32298,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { robus_A : A ; robus_N_N : N ; robustus_A : A ; - rodo_V : V ; + rodo_V2 : V2 ; rodus_N_N : N ; rogalis_A : A ; rogamen_N_N : N ; @@ -32179,7 +32348,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { rubens_A : A ; rubeo_V : V ; ruber_A : A ; - rubesco_V : V ; + rubesco_V2 : V2 ; rubeta_F_N : N ; rubetum_N_N : N ; rubeus_A : A ; @@ -32205,7 +32374,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { rudimentum_N_N : N ; rudis_A : A ; rudis_F_N : N ; - rudo_V : V ; + rudo_V2 : V2 ; rudus_N_N : N ; rufulus_A : A ; rufus_A : A ; @@ -32222,13 +32391,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ruminor_V : V ; rumor_M_N : N ; rumpia_F_N : N ; - rumpo_V : V ; + rumpo_V2 : V2 ; rumusculus_M_N : N ; runa_F_N : N ; runcina_F_N : N ; runcino_V2 : V2 ; runco_V2 : V2 ; - ruo_V : V ; + ruo_V2 : V2 ; rupes_F_N : N ; ruptor_M_N : N ; ruricola_C_N : N ; @@ -32284,7 +32453,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { saccus_M_N : N ; sacellum_N_N : N ; sacer_A : A ; - sacerdos_F_N : N ; + sacerdos_F_N : N ; -- [XEXAX] :: priest, priestess; sacerdos_M_N : N ; sacerdotalis_A : A ; sacerdotalis_M_N : N ; @@ -32373,7 +32542,6 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { salillum_N_N : N ; salina_F_N : N ; salinum_N_N : N ; - salio_V : V ; salio_V2 : V2 ; saliunca_F_N : N ; saliva_F_N : N ; @@ -32478,7 +32646,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sapientia_F_N : N ; sapineus_A : A ; sapinus_F_N : N ; - sapio_V : V ; + sapio_V2 : V2 ; sapo_M_N : N ; saponatum_N_N : N ; sapor_M_N : N ; @@ -32498,7 +32666,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sarcinarius_A : A ; sarcinator_M_N : N ; sarcinula_F_N : N ; - sarcio_V : V ; + sarcio_V2 : V2 ; sarcophagus_M_N : N ; sarculum_N_N : N ; sardina_F_N : N ; @@ -32507,14 +32675,17 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sardius_M_N : N ; sardonichus_A : A ; sardonicus_C_N : N ; - sardonyx_N : N ; + sardonyx_1_F_N : N ; -- [XXXCO] :: sardonyx, precious stone; + sardonyx_1_M_N : N ; -- [XXXCO] :: sardonyx, precious stone; + sardonyx_2_F_N : N ; -- [XXXCO] :: sardonyx, precious stone; + sardonyx_2_M_N : N ; sargus_M_N : N ; - sario_V : V ; + sario_V2 : V2 ; sarisa_F_N : N ; sarisophorus_M_N : N ; sarmentum_N_N : N ; sarracum_N_N : N ; - sarrio_V : V ; + sarrio_V2 : V2 ; sarritor_M_N : N ; sartago_F_N : N ; sartio_F_N : N ; @@ -32524,7 +32695,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { satago_V2 : V2 ; satanicus_A : A ; satanismus_M_N : N ; - satelles_F_N : N ; + satelles_F_N : N ; -- [XXXDX] :: attendant; courtier; follower; life guard; companion; accomplice, abettor; satelles_M_N : N ; satellitium_N_N : N ; satias_F_N : N ; @@ -32575,7 +32746,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { scabillum_N_N : N ; scabinus_M_N : N ; scabiosus_A : A ; - scabo_V : V ; + scabo_V2 : V2 ; scabritia_F_N : N ; scabrities_F_N : N ; scabrosus_A : A ; @@ -32606,7 +32777,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { scandalosus_A : A ; scandalum_N_N : N ; scandix_F_N : N ; - scando_V : V ; + scando_V2 : V2 ; scandula_F_N : N ; scapha_F_N : N ; scaphium_N_N : N ; @@ -32672,8 +32843,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { scilicet_Adv : Adv ; scilla_F_N : N ; scindo_V2 : V2 ; - scinifes_N : N ; - sciniphes_N : N ; + scinifes_1_F_N : N ; -- [XAHES] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); + scinifes_1_M_N : N ; -- [XAHES] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); + scinifes_2_F_N : N ; -- [XAHES] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); + scinifes_2_M_N : N ; + sciniphes_1_F_N : N ; -- [XAHEO] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); + sciniphes_1_M_N : N ; -- [XAHEO] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); + sciniphes_2_F_N : N ; -- [XAHEO] :: kind of stinging insects; very small flies, gnats; other small creatures (OLD); + sciniphes_2_M_N : N ; scintilla_F_N : N ; scintillo_V : V ; scintillula_F_N : N ; @@ -32738,7 +32915,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { screo_V : V ; scriba_M_N : N ; scriblita_F_N : N ; - scribo_V : V ; + scribo_V2 : V2 ; scribtus_A : A ; scrinium_N_N : N ; scriptito_V : V ; @@ -32752,7 +32929,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { scripula_F_N : N ; scripulatim_Adv : Adv ; scripulum_N_N : N ; - scrobis_F_N : N ; + scrobis_F_N : N ; -- [XXXDX] :: ditch, trench; dike; scrobis_M_N : N ; scrofa_F_N : N ; scrofinus_A : A ; @@ -32813,13 +32990,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sebboleth_N : N ; sebum_N_N : N ; secamentum_N_N : N ; - secedo_V : V ; - secerno_V : V ; + secedo_V2 : V2 ; + secerno_V2 : V2 ; secespita_F_N : N ; secessio_F_N : N ; secessus_M_N : N ; secius_Adv : Adv ; - secludo_V : V ; + secludo_V2 : V2 ; seclusus_A : A ; seco_V2 : V2 ; secor_V : V ; @@ -32876,7 +33053,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { seditio_F_N : N ; seditiosus_A : A ; sedo_V : V ; - seduco_V : V ; + seduco_V2 : V2 ; seductio_F_N : N ; seductor_M_N : N ; seductus_A : A ; @@ -32902,7 +33079,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { seiugis_M_N : N ; seiunctim_Adv : Adv ; seiunctio_F_N : N ; - sejungo_V : V ; + sejungo_V2 : V2 ; selectio_F_N : N ; selectivus_A : A ; selego_V2 : V2 ; @@ -33033,7 +33210,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { senectus_A : A ; senectus_F_N : N ; seneo_V : V ; - senesco_V : V ; + senesco_V2 : V2 ; senex_A : A ; senex_M_N : N ; senilis_A : A ; @@ -33064,7 +33241,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sentimentalis_A : A ; sentimentum_N_N : N ; sentina_F_N : N ; - sentio_V : V ; + sentio_V2 : V2 ; sentis_M_N : N ; sentisco_V : V ; sentus_A : A ; @@ -33085,7 +33262,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sepiaceus_A : A ; sepio_V2 : V2 ; seplasium_N_N : N ; - sepono_V : V ; + sepono_V2 : V2 ; sepositus_A : A ; septemfluus_A : A ; septemgeminus_A : A ; @@ -33144,7 +33321,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { seraphicus_A : A ; seraphicus_M_N : N ; seraphinus_A : A ; - seren_N : N ; + seren_1_N : N ; -- [XAXNO] :: type of drone/solitary bee/wasp); + seren_2_N : N ; serenitas_F_N : N ; sereno_V : V ; serenum_N_N : N ; @@ -33172,14 +33350,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sermonizo_V : V ; sermunculus_M_N : N ; sero_Adv : Adv ; - sero_V : V ; + sero_V2 : V2 ; serotinus_A : A ; - serpens_F_N : N ; + serpens_F_N : N ; -- [XXXAX] :: serpent, snake; serpens_M_N : N ; serpentigena_M_N : N ; serpentipes_A : A ; serperastrum_N_N : N ; - serpo_V : V ; + serpo_V2 : V2 ; serpyllum_N_N : N ; serra_F_N : N ; serracum_N_N : N ; @@ -33200,7 +33378,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { servatrix_F_N : N ; servianus_A : A ; servilis_A : A ; - servio_V : V ; + servio_V2 : V2 ; servitium_N_N : N ; servitudo_F_N : N ; servitus_F_N : N ; @@ -33313,7 +33491,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sicut_Conj : Conj ; sicuti_Adv : Adv ; sidereus_A : A ; - sido_V : V ; + sido_V2 : V2 ; sidus_N_N : N ; sifo_M_N : N ; sifonarius_M_N : N ; @@ -33349,8 +33527,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { silentium_N_N : N ; sileo_V : V ; siler_N_N : N ; - silesco_V : V ; - silex_F_N : N ; + silesco_V2 : V2 ; + silex_F_N : N ; -- [XXXBX] :: pebble/stone, flint; boulder, stone; silex_M_N : N ; silicernium_N_N : N ; siliceus_A : A ; @@ -33443,7 +33621,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sinistrorsum_Adv : Adv ; sinistrorsus_Adv : Adv ; sinistrosum_Adv : Adv ; - sino_V : V ; + sino_V2 : V2 ; sinum_N_N : N ; sinuo_V : V ; sinuosus_A : A ; @@ -33476,7 +33654,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sirus_M_N : N ; sisamum_N_N : N ; sisinbrium_N_N : N ; - sisto_V : V ; + sisto_V2 : V2 ; sistrum_N_N : N ; sisymbrium_N_N : N ; sitarchia_F_N : N ; @@ -33484,7 +33662,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sitella_F_N : N ; siticulosus_A : A ; sitiens_A : A ; - sitio_V : V ; + sitio_V2 : V2 ; sitis_F_N : N ; sitthim_N : N ; sittybus_M_N : N ; @@ -33538,7 +33716,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { socrus_M_N : N ; sodalicium_N_N : N ; sodalicius_A : A ; - sodalis_F_N : N ; + sodalis_F_N : N ; -- [XXXBX] :: companion, associate, mate, intimate, comrade, crony; accomplice, conspirator; sodalis_M_N : N ; sodalitas_F_N : N ; sodalitius_A : A ; @@ -33618,7 +33796,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { solutilis_A : A ; solutio_F_N : N ; solutus_A : A ; - solvo_V : V ; + solvo_V2 : V2 ; somniculose_Adv : Adv ; somniculosus_A : A ; somnifer_A : A ; @@ -33632,11 +33810,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sonitus_M_N : N ; sonivius_A : A ; sono_V : V ; + sono_V2 : V2 ; sonor_M_N : N ; sonoritas_F_N : N ; sonorus_A : A ; sons_A : A ; - sons_F_N : N ; + sons_F_N : N ; -- [XXXDX] :: criminal; sons_M_N : N ; sonticus_A : A ; sonus_M_N : N ; @@ -33652,7 +33831,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sophus_A : A ; sophus_M_N : N ; sopio_M_N : N ; - sopio_V : V ; + sopio_V2 : V2 ; sopor_M_N : N ; soporifer_A : A ; soporo_V : V ; @@ -33698,7 +33877,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { spadix_A : A ; spado_M_N : N ; spaera_F_N : N ; - spargo_V : V ; + spargo_V2 : V2 ; sparteus_A : A ; spartum_N_N : N ; sparulus_M_N : N ; @@ -33722,7 +33901,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { species_F_N : N ; specillum_N_N : N ; specimen_N_N : N ; - specio_V : V ; + specio_V2 : V2 ; speciose_Adv : Adv ; speciosus_A : A ; spectabilis_A : A ; @@ -33754,7 +33933,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sperabilis_A : A ; sperma_F_N : N ; spermatozoidum_N_N : N ; - sperno_V : V ; + sperno_V2 : V2 ; spero_V : V ; spes_F_N : N ; sphacos_M_N : N ; @@ -33774,7 +33953,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { spica_F_N : N ; spiceus_A : A ; spicifer_A : A ; - spicio_V : V ; + spicio_V2 : V2 ; spico_V : V ; spiculo_V2 : V2 ; spiculum_N_N : N ; @@ -33855,7 +34034,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { spumiger_A : A ; spumo_V : V ; spumosus_A : A ; - spuo_V : V ; + spuo_V2 : V2 ; spurcalium_N_N : N ; spurcamen_N_N : N ; spurcidicus_A : A ; @@ -33883,7 +34062,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { squilla_F_N : N ; st_Interj : Interj ; stabilimentum_N_N : N ; - stabilio_V : V ; + stabilio_V2 : V2 ; stabilis_A : A ; stabilitas_F_N : N ; stabulo_V : V ; @@ -33929,7 +34108,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { statulibera_F_N : N ; statulibertas_F_N : N ; statumen_N_N : N ; - statuo_V : V ; + statuo_V2 : V2 ; statura_F_N : N ; status_A : A ; status_M_N : N ; @@ -33967,7 +34146,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sterilizatio_F_N : N ; sterilizo_V : V ; sternax_A : A ; - sterno_V : V ; + sterno_V2 : V2 ; sternumentum_N_N : N ; sternuo_V : V ; sternutamentum_N_N : N ; @@ -33976,7 +34155,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sterquilinium_N_N : N ; sterquilinum_N_N : N ; sterteia_F_N : N ; - sterto_V : V ; + sterto_V2 : V2 ; stibadium_N_N : N ; stibi_N_N : N ; stibinus_A : A ; @@ -34015,7 +34194,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { stlatarius_A : A ; stlattarius_A : A ; sto_V : V ; - stoechas_N : N ; + stoechas_1_N : N ; -- [DAXNS] :: French lavender (Pliny); + stoechas_2_N : N ; stola_F_N : N ; stolatus_A : A ; stolide_Adv : Adv ; @@ -34052,7 +34232,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { strepes_F_N : N ; strepito_V : V ; strepitus_M_N : N ; - strepo_V : V ; + strepo_V2 : V2 ; stria_F_N : N ; strictim_Adv : Adv ; strictura_F_N : N ; @@ -34066,7 +34246,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { strigio_M_N : N ; strigo_V : V ; strigosus_A : A ; - stringo_V : V ; + stringo_V2 : V2 ; stringor_M_N : N ; strinuus_A : A ; strio_V : V ; @@ -34084,7 +34264,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { struix_F_N : N ; struma_F_N : N ; strumosus_A : A ; - struo_V : V ; + struo_V2 : V2 ; strutheus_A : A ; struthiocamelinus_A : A ; struthiocamelus_C_N : N ; @@ -34191,24 +34371,24 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { subditicius_A : A ; subditivus_A : A ; subditus_A : A ; - subdo_V : V ; + subdo_V2 : V2 ; subdolus_A : A ; - subduco_V : V ; + subduco_V2 : V2 ; subductio_F_N : N ; - subedo_V : V ; + subedo_V2 : V2 ; subeo_V : V ; suber_N_N : N ; subex_F_N : N ; subfervefacio_V2 : V2 ; subfocatio_F_N : N ; - subfodio_V : V ; + subfodio_V2 : V2 ; subfuro_V2 : V2 ; subgestio_F_N : N ; subhorridus_A : A ; subicio_V2 : V2 ; subigitatio_F_N : N ; subigito_V2 : V2 ; - subigo_V : V ; + subigo_V2 : V2 ; subimpudens_A : A ; subinanis_A : A ; subinde_Adv : Adv ; @@ -34243,11 +34423,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { subjugo_V2 : V2 ; subjugum_N_N : N ; subjunctivus_A : A ; - subjungo_V : V ; + subjungo_V2 : V2 ; sublabor_V : V ; sublatus_A : A ; sublecto_V2 : V2 ; - sublego_V : V ; + sublego_V2 : V2 ; sublestus_A : A ; sublevatio_F_N : N ; sublevo_V : V ; @@ -34269,15 +34449,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { subllabor_V : V ; subluceo_V : V ; sublucidus_A : A ; - subluo_V : V ; + subluo_V2 : V2 ; sublustris_A : A ; subluvies_F_N : N ; submedius_A : A ; - submergo_V : V ; + submergo_V2 : V2 ; subministratio_F_N : N ; subministro_V : V ; submissus_A : A ; - submitto_V : V ; + submitto_V2 : V2 ; submoleste_Adv : Adv ; submolestus_A : A ; submoneo_V : V ; @@ -34287,7 +34467,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { submurmuro_V : V ; submuto_V2 : V2 ; subnascor_V : V ; - subnecto_V : V ; + subnecto_V2 : V2 ; subnego_V2 : V2 ; subnervio_V2 : V2 ; subnervo_V2 : V2 ; @@ -34321,24 +34501,24 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { subraucus_A : A ; subregulus_M_N : N ; subremigo_V : V ; - subrepo_V : V ; + subrepo_V2 : V2 ; subreptio_F_N : N ; subreptum_Adv : Adv ; subrideo_V : V ; - subrigo_V : V ; + subrigo_V2 : V2 ; subringor_V : V ; - subripio_V : V ; + subripio_V2 : V2 ; subrogo_V2 : V2 ; subrostranus_M_N : N ; subrubeo_V : V ; subrufus_A : A ; - subruo_V : V ; + subruo_V2 : V2 ; subrusticus_A : A ; subsannatio_F_N : N ; subsannator_M_N : N ; subsanno_V2 : V2 ; subscribendarius_M_N : N ; - subscribo_V : V ; + subscribo_V2 : V2 ; subscus_F_N : N ; subsecivus_A : A ; subseco_V : V ; @@ -34354,27 +34534,27 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { subsidiarius_A : A ; subsidiarius_M_N : N ; subsidium_N_N : N ; - subsido_V : V ; + subsido_V2 : V2 ; subsignanus_A : A ; subsignanus_M_N : N ; subsilio_V : V ; - subsisto_V : V ; + subsisto_V2 : V2 ; subsortior_V : V ; subsortitio_F_N : N ; substantia_F_N : N ; substantialis_A : A ; substantialiter_Adv : Adv ; substantivus_A : A ; - substerno_V : V ; + substerno_V2 : V2 ; substituo_V2 : V2 ; substitutio_F_N : N ; substitutus_M_N : N ; substo_V : V ; substramen_N_N : N ; substrictus_A : A ; - substringo_V : V ; + substringo_V2 : V2 ; substructio_F_N : N ; - substruo_V : V ; + substruo_V2 : V2 ; subsultim_Adv : Adv ; subsulto_V : V ; subsum_V : V ; @@ -34385,22 +34565,22 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { subtalaris_M_N : N ; subtegmen_N_N : N ; subtemen_N_N : N ; - subtendo_V : V ; + subtendo_V2 : V2 ; subter_Abl_Prep : Prep ; subter_Acc_Prep : Prep ; subter_Adv : Adv ; subterduco_V2 : V2 ; - subterfugio_V : V ; + subterfugio_V2 : V2 ; subterlabor_V : V ; subtero_V2 : V2 ; subterraneus_A : A ; - subtexo_V : V ; + subtexo_V2 : V2 ; subtilis_A : A ; subtilitas_F_N : N ; subtiliter_Adv : Adv ; subtimeo_V : V ; subtractio_F_N : N ; - subtraho_V : V ; + subtraho_V2 : V2 ; subtristis_A : A ; subtularis_M_N : N ; subtum_Adv : Adv ; @@ -34419,19 +34599,19 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { subvectio_F_N : N ; subvecto_V : V ; subvectus_M_N : N ; - subveho_V : V ; - subvenio_V : V ; + subveho_V2 : V2 ; + subvenio_V2 : V2 ; subvento_V2 : V2 ; subvereor_V : V ; subversio_F_N : N ; - subverto_V : V ; + subverto_V2 : V2 ; subvexus_A : A ; subviridis_A : A ; subvolo_V : V ; subvolvo_V : V ; succavus_A : A ; - succedo_V : V ; - succendo_V : V ; + succedo_V2 : V2 ; + succendo_V2 : V2 ; succenturio_M_N : N ; succenturio_V2 : V2 ; succeptor_M_N : N ; @@ -34443,7 +34623,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { succido_V2 : V2 ; succiduus_A : A ; succinericius_A : A ; - succingo_V : V ; + succingo_V2 : V2 ; succingulum_N_N : N ; succino_V : V ; succinum_N_N : N ; @@ -34451,15 +34631,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { succlamo_V : V ; succollo_V : V ; succontumeliose_Adv : Adv ; - succresco_V : V ; + succresco_V2 : V2 ; succrispus_A : A ; succumbo_V : V ; succurator_M_N : N ; - succurro_V : V ; + succurro_V2 : V2 ; succus_M_N : N ; succussus_M_N : N ; succustos_M_N : N ; - succutio_V : V ; + succutio_V2 : V2 ; sucidus_A : A ; sucinum_N_N : N ; sucinus_A : A ; @@ -34474,7 +34654,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sudum_N_N : N ; sudus_A : A ; sueo_V : V ; - suesco_V : V ; + suesco_V2 : V2 ; suetus_A : A ; sufes_M_N : N ; suffamen_N_N : N ; @@ -34484,18 +34664,18 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { suffes_M_N : N ; sufficiens_A : A ; sufficienter_Adv : Adv ; - sufficio_V : V ; + sufficio_V2 : V2 ; suffigo_V2 : V2 ; suffimen_N_N : N ; suffimentum_N_N : N ; - suffio_V : V ; + suffio_V2 : V2 ; sufflamen_N_N : N ; sufflatum_N_N : N ; sufflavus_A : A ; sufflo_V : V ; suffocatio_F_N : N ; suffoco_V2 : V2 ; - suffodio_V : V ; + suffodio_V2 : V2 ; suffraganeus_M_N : N ; suffragatio_F_N : N ; suffragator_M_N : N ; @@ -34506,15 +34686,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { suffragor_V : V ; suffrico_V : V ; suffringo_V : V ; - suffugio_V : V ; + suffugio_V2 : V2 ; suffugium_N_N : N ; - suffulcio_V : V ; + suffulcio_V2 : V2 ; suffumigo_V2 : V2 ; - suffundo_V : V ; + suffundo_V2 : V2 ; suffuro_V2 : V2 ; suffuscus_A : A ; suffusus_A : A ; - suggero_V : V ; + suggero_V2 : V2 ; suggestio_F_N : N ; suggestus_M_N : N ; suggillo_V : V ; @@ -34523,7 +34703,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { sugillatio_F_N : N ; sugillo_V : V ; sugitorium_N_N : N ; - sugo_V : V ; + sugo_V2 : V2 ; sugrunda_F_N : N ; sugrundarium_N_N : N ; suicida_M_N : N ; @@ -34550,17 +34730,17 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { summatim_Adv : Adv ; summatus_M_N : N ; summe_Adv : Adv ; - summergo_V : V ; + summergo_V2 : V2 ; sumministratio_F_N : N ; sumministro_V : V ; summissio_F_N : N ; summissus_A : A ; summitas_F_N : N ; - summitto_V : V ; + summitto_V2 : V2 ; summoleste_Adv : Adv ; summolestus_A : A ; summoneo_V : V ; - summonio_V : V ; + summonio_V2 : V2 ; summonitio_F_N : N ; summonitor_M_N : N ; summopere_Adv : Adv ; @@ -34571,11 +34751,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { summurmuro_V : V ; summus_A : A ; summuto_V2 : V2 ; - sumo_V : V ; + sumo_V2 : V2 ; sumptuarius_A : A ; sumptuosus_A : A ; sumptus_M_N : N ; - suo_V : V ; + suo_V2 : V2 ; suouitaurilis_N_N : N ; suovetaurile_N_N : N ; supellex_F_N : N ; @@ -34586,7 +34766,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { superabundanter_Adv : Adv ; superabundantia_F_N : N ; superabundo_V : V ; - superaddo_V : V ; + superaddo_V2 : V2 ; superadicio_V2 : V2 ; superaedificium_N_N : N ; superaedifico_V2 : V2 ; @@ -34617,23 +34797,23 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { superficietenus_Adv : Adv ; superfio_V : V ; superfixus_A : A ; - superfluo_V : V ; + superfluo_V2 : V2 ; superfluum_N_N : N ; superfluus_A : A ; - superfundo_V : V ; + superfundo_V2 : V2 ; supergredior_V : V ; superimmineo_V : V ; superimpendens_A : A ; superimpendo_V2 : V2 ; - superimpono_V : V ; + superimpono_V2 : V2 ; superincidens_A : A ; superincubans_A : A ; - superincumbo_V : V ; + superincumbo_V2 : V2 ; superingo_V2 : V2 ; superinicio_V2 : V2 ; superinjicio_V2 : V2 ; superinpendo_V2 : V2 ; - superinsterno_V : V ; + superinsterno_V2 : V2 ; superinungo_V2 : V2 ; superinvaleo_V : V ; superinvalesco_V : V ; @@ -34659,14 +34839,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { superparticularis_A : A ; superpartiens_A : A ; superpendens_A : A ; - superpono_V : V ; + superpono_V2 : V2 ; superrealismus_M_N : N ; superruo_V : V ; superscando_V : V ; supersedeo_V : V ; supersido_V2 : V2 ; supersilium_N_N : N ; - supersterno_V : V ; + supersterno_V2 : V2 ; superstes_A : A ; superstitio_F_N : N ; superstitiosus_A : A ; @@ -34687,9 +34867,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { supervacuus_A : A ; supervado_V : V ; supervehor_V : V ; - supervenio_V : V ; + supervenio_V2 : V2 ; superventus_M_N : N ; - supervivo_V : V ; + supervivo_V2 : V2 ; supervolito_V : V ; supervolo_V : V ; supino_V : V ; @@ -34707,7 +34887,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { suppernatus_A : A ; suppetia_F_N : N ; suppetior_V : V ; - suppeto_V : V ; + suppeto_V2 : V2 ; suppilo_V2 : V2 ; suppingo_V2 : V2 ; supplanto_V : V ; @@ -34719,15 +34899,15 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { suppliciter_Adv : Adv ; supplicium_N_N : N ; supplico_V : V ; - supplodo_V : V ; + supplodo_V2 : V2 ; supplosio_F_N : N ; - suppono_V : V ; + suppono_V2 : V2 ; supporto_V : V ; suppositicius_A : A ; suppositio_F_N : N ; supposititius_A : A ; suppressio_F_N : N ; - supprimo_V : V ; + supprimo_V2 : V2 ; suppromus_M_N : N ; suppudet_V0 : V ; suppullulo_V : V ; @@ -34740,7 +34920,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { supputo_V2 : V2 ; supra_Acc_Prep : Prep ; supra_Adv : Adv ; - supradico_V : V ; + supradico_V2 : V2 ; supranistria_F_N : N ; suprascando_V : V ; suprascribo_V2 : V2 ; @@ -34760,17 +34940,17 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { surditas_F_N : N ; surdus_A : A ; surena_F_N : N ; - surgo_V : V ; + surgo_V2 : V2 ; surpiculus_A : A ; surpiculus_M_N : N ; surpo_V2 : V2 ; surregulus_M_N : N ; - surrepo_V : V ; + surrepo_V2 : V2 ; surrepticius_A : A ; surreptio_F_N : N ; surreptitius_A : A ; surreptum_Adv : Adv ; - surrido_V : V ; + surrido_V2 : V2 ; surripio_V2 : V2 ; surrogo_V : V ; surrubicundus_A : A ; @@ -34778,13 +34958,13 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { surrutilus_A : A ; sursisa_F_N : N ; sursum_Adv : Adv ; - sus_F_N : N ; + sus_F_N : N ; -- [XXXDX] :: swine; hog, pig, sow; sus_M_N : N ; suscenseo_V : V ; susceptibilis_A : A ; susceptio_F_N : N ; susceptor_M_N : N ; - suscipio_V : V ; + suscipio_V2 : V2 ; suscitabulum_N_N : N ; suscito_V : V ; suscriptor_M_N : N ; @@ -34794,11 +34974,11 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { suspectus_A : A ; suspectus_M_N : N ; suspendium_N_N : N ; - suspendo_V : V ; + suspendo_V2 : V2 ; suspensus_A : A ; suspicax_A : A ; suspicio_F_N : N ; - suspicio_V : V ; + suspicio_V2 : V2 ; suspiciosus_A : A ; suspicor_V : V ; suspiratus_M_N : N ; @@ -34888,9 +35068,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { syngrapha_F_N : N ; syngraphus_M_N : N ; synodita_M_N : N ; + synodus_1_N : N ; -- [XAXNO] :: fish of sea-bream family; + synodus_2_N : N ; synodus_F_N : N ; synodus_M_N : N ; - synodus_N : N ; synonymum_N_N : N ; synthesis_F_N : N ; syntheticus_A : A ; @@ -34920,7 +35101,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { tabernaculum_N_N : N ; tabernarius_M_N : N ; tabes_F_N : N ; - tabesco_V : V ; + tabesco_V2 : V2 ; tabidulus_A : A ; tabidus_A : A ; tabificus_A : A ; @@ -34978,7 +35159,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { tandem_Adv : Adv ; tangens_F_N : N ; tangibilis_A : A ; - tango_V : V ; + tango_V2 : V2 ; tanquam_Conj : Conj ; tantillus_A : A ; tantisper_Adv : Adv ; @@ -35039,7 +35220,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { tegimentum_N_N : N ; tegmen_N_N : N ; tegmentum_N_N : N ; - tego_V : V ; + tego_V2 : V2 ; tegula_F_N : N ; tegumen_N_N : N ; tegumentum_N_N : N ; @@ -35119,7 +35300,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { tenaculum_N_N : N ; tenax_A : A ; tendicula_F_N : N ; - tendo_V : V ; + tendo_V2 : V2 ; tenebra_F_N : N ; tenebrasco_V : V ; tenebresco_V : V ; @@ -35180,7 +35361,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { tergeo_V : V ; terginum_N_N : N ; tergiversor_V : V ; - tergo_V : V ; + tergo_V2 : V2 ; tergum_N_N : N ; tergus_N_N : N ; terma_F_N : N ; @@ -35194,7 +35375,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ternarius_A : A ; ternarius_M_N : N ; ternus_A : A ; - tero_V : V ; + tero_V2 : V2 ; terra_F_N : N ; terracuberum_N_N : N ; terraemotus_M_N : N ; @@ -35251,7 +35432,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { testiculus_M_N : N ; testificor_V : V ; testimonium_N_N : N ; - testis_F_N : N ; + testis_F_N : N ; -- [XXXBX] :: witness; testis_M_N : N ; testor_V : V ; testu_N_N : N ; @@ -35284,7 +35465,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { tetrastylon_N_N : N ; tetrastylos_A : A ; tetricus_A : A ; - texo_V : V ; + texo_V2 : V2 ; textilis_A : A ; textor_M_N : N ; textrinus_A : A ; @@ -35339,8 +35520,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { thiasus_M_N : N ; tholicus_A : A ; tholus_M_N : N ; + thorax_1_N : N ; -- [XBXCO] :: breastplate, upper body armor/protection, cuirass; vest/waistcoat; chest/trunk; + thorax_2_N : N ; thorax_M_N : N ; - thorax_N : N ; thrombosis_F_N : N ; thronus_M_N : N ; thunnus_M_N : N ; @@ -35371,9 +35553,10 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { tigillum_N_N : N ; tignarius_A : A ; tignum_N_N : N ; - tigris_F_N : N ; + tigris_1_N : N ; -- [XXXDX] :: tiger; + tigris_2_N : N ; + tigris_F_N : N ; -- [XXXDX] :: tiger; tigris_M_N : N ; - tigris_N : N ; tilia_F_N : N ; timefactus_A : A ; timeo_V : V ; @@ -35386,8 +35569,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { tinctus_M_N : N ; tinea_F_N : N ; tineo_V : V ; - tingo_V : V ; - tinguo_V : V ; + tingo_V2 : V2 ; + tinguo_V2 : V2 ; tinnimentum_N_N : N ; tinnio_V : V ; tinnitus_M_N : N ; @@ -35498,7 +35681,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { torosus_A : A ; torpedo_F_N : N ; torpeo_V : V ; - torpesco_V : V ; + torpesco_V2 : V2 ; torpidus_A : A ; torpor_M_N : N ; torquatus_A : A ; @@ -35559,7 +35742,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { traditionalis_A : A ; traditionalismus_M_N : N ; traditionalista_M_N : N ; - trado_V : V ; + trado_V2 : V2 ; traduco_V2 : V2 ; traductio_F_N : N ; traductor_M_N : N ; @@ -35576,14 +35759,14 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { tragum_N_N : N ; traha_F_N : N ; trahea_F_N : N ; - traho_V : V ; - traicio_V : V ; + traho_V2 : V2 ; + traicio_V2 : V2 ; traiectoria_F_N : N ; trajecticius_A : A ; trajectio_F_N : N ; trajectitius_A : A ; trajectus_A : A ; - trajicio_V : V ; + trajicio_V2 : V2 ; tralaticius_A : A ; tralatio_F_N : N ; trama_F_N : N ; @@ -35595,27 +35778,29 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { tranquillum_N_N : N ; tranquillus_A : A ; trans_Acc_Prep : Prep ; - transabeo_V : V ; + transabeo_1_V2 : V2 ; + transabeo_2_V2 : V2 ; transactio_F_N : N ; transactor_M_N : N ; - transadigo_V : V ; + transadigo_V2 : V2 ; transcendens_A : A ; transcendentalis_A : A ; - transcendo_V : V ; + transcendo_V2 : V2 ; transcido_V2 : V2 ; - transcribo_V : V ; - transcurro_V : V ; + transcribo_V2 : V2 ; + transcurro_V2 : V2 ; transcursus_M_N : N ; transdo_V2 : V2 ; transduco_V2 : V2 ; transenna_F_N : N ; - transeo_V : V ; + transeo_1_V2 : V2 ; + transeo_2_V2 : V2 ; transeunter_Adv : Adv ; transfero_V2 : V2 ; - transfigo_V : V ; + transfigo_V2 : V2 ; transfiguro_V2 : V2 ; transfluo_V : V ; - transfodio_V : V ; + transfodio_V2 : V2 ; transformatio_F_N : N ; transformis_A : A ; transformo_V : V ; @@ -35623,24 +35808,24 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { transfretanus_A : A ; transfreto_V : V ; transfuga_F_N : N ; - transfugio_V : V ; + transfugio_V2 : V2 ; transfugium_N_N : N ; - transfundo_V : V ; + transfundo_V2 : V2 ; transfusio_F_N : N ; transgradior_V : V ; transgredior_V : V ; transgressio_F_N : N ; transgressor_M_N : N ; transgressus_M_N : N ; - transicio_V : V ; - transigo_V : V ; - transilio_V : V ; + transicio_V2 : V2 ; + transigo_V2 : V2 ; + transilio_V2 : V2 ; transitio_F_N : N ; transitorie_Adv : Adv ; transitorium_N_N : N ; transitorius_A : A ; transitus_M_N : N ; - transjicio_V : V ; + transjicio_V2 : V2 ; translaticius_A : A ; translatio_F_N : N ; translativus_A : A ; @@ -35656,7 +35841,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { transmigro_V : V ; transmissio_F_N : N ; transmissus_A : A ; - transmitto_V : V ; + transmitto_V2 : V2 ; transmodulatrum_N_N : N ; transmontanus_M_N : N ; transmoveo_V : V ; @@ -35678,17 +35863,17 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { transplantus_M_N : N ; transporto_V : V ; transrhenanus_A : A ; - transscendo_V : V ; - transscribo_V : V ; + transscendo_V2 : V2 ; + transscribo_V2 : V2 ; transspicio_V2 : V2 ; transtiberinus_A : A ; transtineo_V : V ; transtrum_N_N : N ; transubstantiatio_F_N : N ; transulto_V : V ; - transuo_V : V ; + transuo_V2 : V2 ; transvectio_F_N : N ; - transveho_V : V ; + transveho_V2 : V2 ; transvenio_V : V ; transverbero_V : V ; transversalis_A : A ; @@ -35697,12 +35882,12 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { transverse_Adv : Adv ; transverso_V : V ; transversus_A : A ; - transverto_V : V ; + transverto_V2 : V2 ; transvolito_V : V ; transvolo_V : V ; transvoro_V2 : V2 ; transvorsus_A : A ; - tranveho_V : V ; + tranveho_V2 : V2 ; trapetum_N_N : N ; trapetus_M_N : N ; traumaticus_A : A ; @@ -35718,7 +35903,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { tremesco_V : V ; tremis_M_N : N ; tremisco_V : V ; - tremo_V : V ; + tremo_V2 : V2 ; tremor_M_N : N ; tremulus_A : A ; trepidans_A : A ; @@ -35754,7 +35939,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { tribunitius_A : A ; tribunitius_M_N : N ; tribunus_M_N : N ; - tribuo_V : V ; + tribuo_V2 : V2 ; tribus_F_N : N ; tributarius_A : A ; tributim_Adv : Adv ; @@ -35849,8 +36034,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { tripodo_V : V ; tripudio_V : V ; tripudium_N_N : N ; + tripus_1_N : N ; -- [XEXCO] :: three-legged stand, tripod; the oracle at Delphi; oracles in general; + tripus_2_N : N ; tripus_M_N : N ; - tripus_N : N ; triquetrus_A : A ; triremis_A : A ; triremis_F_N : N ; @@ -35911,7 +36097,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { truculenter_Adv : Adv ; truculentus_A : A ; trudis_F_N : N ; - trudo_V : V ; + trudo_V2 : V2 ; trulla_F_N : N ; trulleum_N_N : N ; trunco_V : V ; @@ -35924,7 +36110,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { trychnos_M_N : N ; trygonus_M_N : N ; tuba_F_N : N ; - tuber_F_N : N ; + tuber_F_N : N ; -- [XAXES] :: kind of apple-tree; tuber_M_N : N ; tuber_N_N : N ; tuberculum_N_N : N ; @@ -35949,7 +36135,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { tumbus_M_N : N ; tumefacio_V2 : V2 ; tumeo_V : V ; - tumesco_V : V ; + tumesco_V2 : V2 ; tumidus_A : A ; tumor_M_N : N ; tumulo_V : V ; @@ -35962,7 +36148,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { tumultus_M_N : N ; tumulus_M_N : N ; tunc_Adv : Adv ; - tundo_V : V ; + tundo_V2 : V2 ; tunella_F_N : N ; tunellus_M_N : N ; tunica_F_N : N ; @@ -36236,7 +36422,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { urceus_M_N : N ; urco_V : V ; uredo_F_N : N ; - ureter_N : N ; + ureter_1_N : N ; -- [XBXFO] :: ureter; urinary duct; + ureter_2_N : N ; urgeo_V : V ; urgueo_V : V ; urina_F_N : N ; @@ -36245,7 +36432,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { urino_V : V ; urinor_V : V ; urna_F_N : N ; - uro_V : V ; + uro_V2 : V2 ; ursa_F_N : N ; ursinus_A : A ; ursus_M_N : N ; @@ -36268,7 +36455,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { ustulo_V : V ; usualis_A : A ; usuarius_A : A ; - usucapio_V : V ; + usucapio_V2 : V2 ; usura_F_N : N ; usurarius_A : A ; usurpatio_F_N : N ; @@ -36349,6 +36536,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { vadimonium_N_N : N ; vadio_V : V ; vado_V : V ; + vado_V2 : V2 ; vador_V : V ; vadosus_A : A ; vadum_N_N : N ; @@ -36360,7 +36548,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { vagabundus_A : A ; vage_Adv : Adv ; vagina_F_N : N ; - vagio_V : V ; + vagio_V2 : V2 ; vagitus_M_N : N ; vagor_V : V ; vagus_A : A ; @@ -36425,7 +36613,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { varietas_F_N : N ; vario_V : V ; varius_A : A ; - varix_F_N : N ; + varix_F_N : N ; -- [XBXEC] :: varicose vein; varix_M_N : N ; varus_A : A ; vas_M_N : N ; @@ -36480,7 +36668,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { vehemens_A : A ; vehementer_Adv : Adv ; vehiculum_N_N : N ; - veho_V : V ; + veho_V2 : V2 ; vel_Adv : Adv ; vel_Conj : Conj ; velamen_N_N : N ; @@ -36532,7 +36720,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { vendito_V : V ; venditor_M_N : N ; venditrix_F_N : N ; - vendo_V : V ; + vendo_V2 : V2 ; venefica_F_N : N ; veneficium_N_N : N ; veneficus_A : A ; @@ -36541,7 +36729,8 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { venenifer_A : A ; veneno_V : V ; venenum_N_N : N ; - veneo_V : V ; + veneo_1_V : V ; + veneo_2_V : V ; venerabilis_A : A ; venerabundus_A : A ; veneranter_Adv : Adv ; @@ -36553,7 +36742,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { venetus_A : A ; venetus_M_N : N ; venia_F_N : N ; - venio_V : V ; + venio_V2 : V2 ; vennucula_F_N : N ; venor_V : V ; venosus_A : A ; @@ -36637,7 +36826,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { verres_M_N : N ; verrinus_A : A ; verris_M_N : N ; - verro_V : V ; + verro_V2 : V2 ; verruca_F_N : N ; verrucosus_A : A ; verrunco_V : V ; @@ -36671,7 +36860,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { verticitas_F_N : N ; verticosus_A : A ; vertigo_F_N : N ; - verto_V : V ; + verto_V2 : V2 ; veru_N_N : N ; verum_Adv : Adv ; verum_N_N : N ; @@ -36704,7 +36893,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { vestigium_N_N : N ; vestigo_V : V ; vestimentum_N_N : N ; - vestio_V : V ; + vestio_V2 : V2 ; vestiplica_F_N : N ; vestis_F_N : N ; vestispica_F_N : N ; @@ -36805,7 +36994,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { vigentia_F_N : N ; vigeo_V : V ; vigerius_M_N : N ; - vigesco_V : V ; + vigesco_V2 : V2 ; vigies_Adv : Adv ; vigil_A : A ; vigil_M_N : N ; @@ -36851,9 +37040,9 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { vinaceus_A : A ; vinarium_N_N : N ; vinarius_M_N : N ; - vincio_V : V ; + vincio_V2 : V2 ; vinclum_N_N : N ; - vinco_V : V ; + vinco_V2 : V2 ; vinculum_N_N : N ; vindemia_F_N : N ; vindemiator_M_N : N ; @@ -36962,7 +37151,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { visitatorius_A : A ; visito_V : V ; visnetum_N_N : N ; - viso_V : V ; + viso_V2 : V2 ; visocaseta_F_N : N ; vison_M_N : N ; visorius_A : A ; @@ -37014,19 +37203,19 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { vituperabiliter_Adv : Adv ; vituperatio_F_N : N ; vitupero_V : V ; - vitus_F_N : N ; + vitus_F_N : N ; -- [FEXEK] :: rim; vitus_M_N : N ; vivarium_N_N : N ; vivatus_A : A ; vivax_A : A ; viverra_F_N : N ; - vivesco_V : V ; + vivesco_V2 : V2 ; vividus_A : A ; vivifico_V : V ; vivificus_A : A ; viviradix_F_N : N ; vivisco_V : V ; - vivo_V : V ; + vivo_V2 : V2 ; vivus_A : A ; vix_Adv : Adv ; vixdum_Adv : Adv ; @@ -37097,7 +37286,7 @@ abstract DictLatAbs = Cat,Structural-[here_Adv],Lexicon-[leg_N,man_N,do_V2] ** { vomitor_M_N : N ; vomitorius_A : A ; vomitus_M_N : N ; - vomo_V : V ; + vomo_V2 : V2 ; voracitas_F_N : N ; voraginosus_A : A ; vorago_F_N : N ; diff --git a/src/latin/ExtendLat.gf b/src/latin/ExtendLat.gf index cf9be2707..3fd492dee 100644 --- a/src/latin/ExtendLat.gf +++ b/src/latin/ExtendLat.gf @@ -1 +1,9 @@ -concrete ExtendLat of Extend = ExtendFunctor with (Grammar=GrammarLat); \ No newline at end of file +concrete ExtendLat of Extend = CatLat ** ExtendFunctor-[VPS,ComplDirectVQ,ComplDirectVS,CompIQuant,EmptyRelSlash,ExistsNP,ExistCN,ExistMassCN,ExistPluralCN,GenModNP,PredAPVP,PredIAdvVP,SlashBareV2S,StrandQuestSlash,StrandRelSlash] with (Grammar=GrammarLat) ** open MissingLat in { + lincat + VPS = Comp ; + lin + -- ComplDirectVS : VS -> Utt -> VP ; -- say: "today" + ComplDirectVS vs utt = AdvVP (UseV ) (lin Adv {s = \\_ => ":" ++ quoted utt.s}) ; -- DEFAULT complement added as Adv in quotes + -- ComplDirectVQ : VQ -> Utt -> VP ; -- ask: "when" + ComplDirectVQ vq utt = AdvVP (UseV ) (lin Adv {s = \\_ => ":" ++ quoted utt.s}) ; -- DEFAULT complement added as Adv in quotes +} ; \ No newline at end of file diff --git a/src/latin/ExtraLat.gf b/src/latin/ExtraLat.gf index 066283529..41e24af62 100644 --- a/src/latin/ExtraLat.gf +++ b/src/latin/ExtraLat.gf @@ -1,44 +1,43 @@ concrete ExtraLat of ExtraLatAbs = - CatLat, ExtraLexiconLat, ConjunctionLat ** + CatLat, ConjunctionLat ** open ResLat, ParadigmsLat, Coordination, Prelude in { lincat CS = Str ; lin - useS s = combineSentence s ! SPreO ! PreO ! SOV ; + useS s = combineSentence s ! SPreO ! PreO ! CPreV ! SOV ; -- PastPartAP : VPSlash -> AP ; -- lost (opportunity) ; (opportunity) lost in space -- PastPartAP vp = { s = vp.part ! VPassPerf } ; - UsePronNonDrop p = -- Pron -> NP - { - g = p.pers.g ; - n = p.pers.n ; - p = p.p ; - s = p.pers.s ! PronNonDrop ! PronNonRefl ; - adv = "" ; - preap, postap = { s = \\_ => "" } ; - det = { s = \\_,_ => "" ; sp = \\_,_ => "" ; n = p.pers.n } ; - } ; + -- UsePronNonDrop p = -- Pron -> NP + -- p.pers ** + -- { + -- p = p.p ; + -- s = \\_ => p.pers.s ! PronNonDrop ! PronNonRefl ; + -- adv = "" ; + -- preap, postap = { s = \\_ => "" } ; + -- det = { s = \\_,_ => "" ; sp = \\_,_ => "" ; n = p.pers.n } ; + -- } ; AdjCNPre ap cn = -- AP -> CN -> CN addAdjToCN (lin AP ap) (lin CN cn) Post ; - -- ConjNP : Conj -> ListNP -> NP ; -- she or we - ConjNPque conj nps = - { - s = case conj.c of { - And => case nps.isBase of { - False => (conjunctDistrTable Case conj (nps.l ! And)).s ; - True => \\c => (nps.l ! And).s1 ! c ++ (nps.l ! And).s2 ! c ++ BIND ++ "que" - } ; - c => (conjunctDistrTable Case conj (nps.l ! And)).s - } ; - n = case conj.c of { And => Pl ; _ => nps.n } ; - g = nps.g ; - p = nps.p ; - adv = nps.adv ; - preap = nps.preap ; - postap = nps.postap ; - det = { s = \\_,_ => "" ; sp = \\_,_ => "" ; n = nps.n }; - } ; + -- -- ConjNP : Conj -> ListNP -> NP ; -- she or we + -- ConjNPque conj nps = + -- { + -- s = case conj.c of { + -- Et => case nps.isBase of { + -- False => \\cse => coord conj.c {init = (nps.s ! Et).init ! cse ; last = (nps.s ! Et).last ! cse } ;-- (conjunctDistrTable Case conj (nps.s ! Et)).s ; + -- True => \\cse => (nps.s ! Et).init ! cse ++ (nps.s ! Et).last ! cse ++ BIND ++ "que" + -- } ; + -- c => \\cse => coord conj.c {init = (nps.s ! c).init ! cse ; last = (nps.s ! c).last ! cse } -- (conjunctDistrTable Case conj (nps.l ! Et)).s + -- } ; + -- n = case conj.c of { Et => Pl ; _ => nps.n } ; + -- g = nps.g ; + -- p = nps.p ; + -- adv = nps.adv ; + -- preap = nps.preap ; + -- postap = nps.postap ; + -- det = { s = \\_,_ => "" ; sp = \\_,_ => "" ; n = nps.n }; + -- } ; everybodyFem_NP = regNP "quisque" "quemque" "cuiusque" "cuique" "quoque" "quisque" Fem Sg ;-- regNP "quisquae" Sg ; -- L... somebodyFem_NP = regNP "aliquis" "aliquem" "alicuius" "clicui" "aliquo" "aliquis" Fem Sg ; -- Bayer-Lindauer 60.1 diff --git a/src/latin/ExtraLatAbs.gf b/src/latin/ExtraLatAbs.gf index c01f8d158..7bfe0fd33 100644 --- a/src/latin/ExtraLatAbs.gf +++ b/src/latin/ExtraLatAbs.gf @@ -1,5 +1,5 @@ abstract ExtraLatAbs = - Extra, ExtraLexiconLatAbs, Conjunction + Extra, Conjunction ** { cat CS ; fun diff --git a/src/latin/ExtraLexCaesar.gf b/src/latin/ExtraLexCaesar.gf deleted file mode 100644 index 93287990b..000000000 --- a/src/latin/ExtraLexCaesar.gf +++ /dev/null @@ -1,453 +0,0 @@ -concrete ExtraLexCaesar of ExtraLexCaesarAbs = CatLat ** open Prelude,ParadigmsLat,ResLat, IrregLat, LexiconLat,StructuralLat in { - lin - a_Prep = mkPrep "a" Abl ; - ab_Prep = mkPrep "ab" Abl ; - abdere_V = mkV "abdere" "abdo" "abdidi" "abditum"; - abducere_V = mkV "abducere" "abduco" "abduxi" "abductum" ; -- prefixVerb "ab" ducere_V; -- ab + ducere, missing abduci (inf VInfPassPres : abduceri) - abesse_V = prefixVerb "ab" be_V; -- ab + esse, missing absente? - abicere_V = mkV "abicere" "abicio" "abieci" "abiectum"; -- prefixVerb "ab" iacere_V; -- ab + iacere - abscisus_A = mkA "abscisus"; - absens_A = mkA "absens" "absentis"; -- missing absente - absimilis_A = mkA "absimilis" "absimile"; -- missing absimili (s Posit (Ag Masc Sg Dat) : absimii) - abstinere_V2 = mkV2 (mkV "abstinere"); -- prefixVerb2 "ab" tenere_V2 ; -- -- ab + tenere - abstrahere_V2 = mkV2 (mkV "abstrahere" "abstraho" "abstraxi" "abstractum");-- prefixVerb2 "ab" trahere_V2 ; -- ab + trahere --- ac_Conj = mkConj "" "ac" Sg ; - accedere_V = mkV "adcedere" "adcedo" "adcessi" "adcessum"; -- prefixVerb "ad" cedere_V ; -- ad + cedere - accendere_V = mkV "accendere" "accendo" "accendi" "accensum"; - accidere_V = mkV "accidere" "accido" "accidi" "accisum"; -- ad + caedere? - accipere_V = mkV "accipere" "accipio" "accepi" "acceptum"; -- prefixVerb "ad" capere_V; -- ad + capere - acclivis_A = mkA "acclivis" "acclive" ; - acclivitas_N = mkN "acclivitas" "acclivitatis" feminine; - accommodare_V = mkV "accommodare" ; - accommodatus_A = mkA "accommodatus" ; - accurrere_V = mkV "accurrere" "accurro" "accucurri" "accursum"; -- prefixVerb "ad" currere_V; -- ad + currere - accusare_V = mkV "accusare"; - acervus_N = mkN "acervus" ; - acies_N = mkN "acies" ; - acriter_Adv = ss "acriter"; -- comparison??? - ad_Prep = mkPrep "ad" Acc; - adaequare_V = mkV "adaequare"; -- ad + aequare? - adamare_V2 = mkV2 (mkV "adamare"); -- prefixVerb2 "ad" love_V2; -- ad + amare, missing adamassent (act (VAct VAnt (VImpf VConj) Pl P3) : adamavissent)? - adducere_V = mkV "adducere" "adduco" "adduxi" "adductum"; -- prefixVerb "ad" ducere_V; -- ad + ducere, missing adduci - adequitare_V = mkV "adequitare"; -- prefixVerb "ad" equitare_V; -- ad + equitare - adesse_V = prefixVerb "ad" be_V; -- ad + esse - adferre_V = prefixVerb "ad" ferre_V;-- ad + ferre - adfectus_A = mkA "adfectus"; - adfectus_N = mkN "adfectus" "adfectus" masculine; - adficere_V = mkV " adficere" "adfico" "adfeci" "adfectum"; -- ad + facere?, missing adficiebantur - adfigere_V = mkV " adfigere" "adfixi" "adfixum"; -- ad + figere?, missing adfixae - adfinitas_N = mkN "adfinitas" "adfinitatis" feminine; - adflictare_V = mkV "adflictare"; - adflictus_A = mkA "adflictus"; - adgredi_V = mkV "adgredi" "adgredior" "adgressus"; -- ad + gradior?, missing adgressi, adgressus - adgregare_V = mkV "adgregare"; -- ad + gregare? - adhibere_V = mkV "adhibere"; -- ad + habere? - adhuc_Adv = ss "adhuc"; - Adiatunnus_PN = mkPN (lin N (singularN (mkN "Adiatunnus"))); - adicere_V = mkV "adicere" "adieci" "adiectum"; -- ad + iacere?, missing adiecta - adigere_V = mkV "adigere" "adigo" "adegi" "adactum"; -- ad + agere?, missing adigi - adire_V = mkV "adire" "adeo" "" ""; -- prefixVerb "ad" ire_V; -- ad + ire, missing adiisset, aditus? - aditus_N = mkN "aditus" "aditus" masculine; - adiungere_V = mkV "adiungere" "adiungo" "adiunxi" "adiunctum"; -- ad + iungere? - adiuvare_V = mkV "adiuvare"; -- ad + iuvare? - administrare_V = mkV "administrare"; -- ad + ministrare - admirari_V = mkV "admirari" "admiror" "admiratus"; -- ad + mirari? - admittere_V = mkV "admittere" "admitto" "admisi" "admissum"; -- ad + mittere? - admodum_Adv = ss "admodum"; - adoriri_V = mkV "adoriri" "adorior" "adortus"; -- ad + oriri?, missing adorti, adortum, adortus - adpellere_V = mkV "adpellere" "adpello" "adpuli" "adpulsum"; -- ad + pelere? - adpetere_V = mkV "adpetere" "adpeto" "adpetivi" "adpetitum"; -- ad + petere?, missing adpetierit, adpetisse, adpetissent - adpropinquare_V = mkV " adpropinquare"; -- ad + propinquare? - -- adpulsare_V = mkV "adpulsare"; - adsciscere_V = mkV "adsciscere" "adscisco" "adscivi" "ascitum"; -- ad + sciscere? - adsuere_V = mkV "adsuere" "adsuo" "adsui" "adsutum"; -- ad + suere?, missing adsue - adsuefacere_V = mkV "adsuefacere" "adsuefacio" "adsuefeci" "adsuefactum"; -- possibly problematic - -- adtectus ??? - adulescentia_N = mkN "adulescentia"; - adulescentulus_N = mkN "adulescentulus"; - advenire_V = mkV "advenire" "advenio" "adveni" "adventum"; -- prefixVerb "ad" venire_V; -- ad + venire - advertere_V = mkV "advertere" "adverto" "adverti" "adversum"; -- ad + vertere? - adventus_N = mkN "adventus" "adventus" masculine; - aedificare_V = mkV "aedificare"; - aedificium_N = mkN "aedificium"; - aeger_A = mkA "aeger"; - aegre_Adv = ss "aegre"; -- comparison? - Aemilius_PN = mkPN (lin N (singularN (mkN "Aemilius"))); - aequaliter_Adv = ss "aequaliter"; - aequare_V = mkV " aequare"; - aequinoctium_N = mkN "aequinoctium"; - aequitas_N = mkN "aequitas" "aequitatis" feminine; - aequum_N = mkN "aequum"; - aequus_A = mkA "aequus"; - aerarius_A = mkA "aerarius"; - aerarius_N = mkN "aerarius"; - aer_f_N = mkN "aer" "aeris" feminine; - aer_m_N = mkN "aer" "aeris" masculine; - aes_N = mkN "aer" "aeris" neuter; - aestas_N = mkN "aestas" "aestatis" feminine; - aestimare_V = mkV "aestimare"; - aestuarium_N = mkN "aestuarium"; - aestus_N = mkN "aestus" "aestus" masculine; - aetas_N = mkN "aetas" "aetatis" feminine; - ager_N = mkN "ager"; - agere_V = mkV "agere" "ago" "egi" "actum"; - agger_N = mkN "agger" "aggeris" masculine; - agmen_N = mkN "agmen" "agminis" neuter; - alacer_A = mkA "alacer" "alacris"; - alacritas_N = mkN "alacritas" "alacritatis" feminine; - alarius_A = mkA "alarius"; - -- alduas_??? = ???; - alere_1_V = mkV "alere" "alo" "alui" "altum"; - alere_2_V = mkV "alere" "alo" "alui" "alitum"; - alienus_A = mkA "alienus"; --- alii_Conj = mkConj "alii" "alii" Sg ; - aliquam_Adv = ss "aliquam"; - aliquanto_Adv = ss "aliquanto"; - --aliqui_Pron = mkPron ???; --- aliquis_Pron = aliquis; - aliter_Adv = ss "aliter"; - alium_N = mkN "alium"; - alius_A = mkA (mkN "alius") (mkN "alia") (mkN "aliud" "alius" neuter); - Allobroges_PN = mkPN (lin N (pluralN (mkNoun "" "" "" "" "" "" "Allobroges" "Allobroges" "Allobrogum" "Allobrogibus" masculine))); -- missing Allobrogas - Alpes_PN = mkPN (lin N (pluralN (mkNoun "" "" "" "" "" "" "Alpes" "Alpes" "Alpium" "Alpibus" feminine))); - alter_A = mkA (mkN "alter") (mkN "altera") (mkN "alterum"); -- missing alterius - alterare_V = mkV "alterare"; - altitudo_N = mkN "altitudo" "altitudinis" feminine; - altus_A = mkA "altus"; - aluta_N = mkN "aluta"; - Ambarri_PN = mkPN (lin N (pluralN (mkN "Ambarrus"))); - Ambiani_PN = mkPN (lin N (pluralN (mkN "Ambianus"))); - Ambiliati_PN = mkPN (lin N (pluralN (mkN "Ambiliatus"))); - Ambivariti_PN = mkPN (lin N (pluralN (mkN "Ambivaritus"))); - amentia_N = mkN "amentia"; - amicitia_N = mkN "amicitia"; - amicus_A = mkA "amicus"; - amittere_V = mkV "amittere" "amitto" "amisi" "amissum"; - amplificare_V = mkV "amplificare"; - amplitudo_N = mkN "amplitudo" "amplitudinis" feminine; - amplus_A = mkA "amplus"; - anceps_A = mkA "anceps" "ancipitis"; - ancora_N = mkN "ancora"; - Andebrogius_PN = mkPN (lin N (singularN (mkN "Andebrogius"))); - --Andes_PN = ??? - angustia_N = mkN "angustia"; - angustiare_V = mkV "angustiare"; --- an_Conj = mkConj "" "an" Sg; --- an_an_Conj = mkConj "an" "an" Sg; - animadvertere_V = mkV "animadvertere" "animadverto" "animadverti" "animadversum"; - animus_N = mkN "animus"; - annuus_A = mkA "annuus"; - ante_Adv = ss "ante"; - ante_Prep = mkPrep "ante" Acc; - antea_Adv = ss "antea"; - antecedere_V = mkV "antecedere" "antecedo" "antecessi" "antecessum"; -- ante + cedere? - antemna_N = mkN "antemna"; - anteponere_V = mkV "anteponere" "antepono" "anteposui" "antepositum"; -- prefixVerb2 "ante" put_V2; -- ante + ponere - antiquitus_Adv = ss "antiquitus"; - antiquus_A = mkA "antiquus"; -- missing antiquissimum - aperire_V = mkV "aperire" "aperio" "aperui" "apertum"; -- missing aperta, apertis, apertissimis, apertissimo, aperto, apertum, apertus - apertare_V = mkV "apertare"; - Aprilis_PN = mkPN (lin N (singularN (mkN "Aprilis" "Aprilis" masculine))); -- missing Apr, April - appellare_V = mkV "appellare"; - aptus_A = mkA "aptus"; - apud_Prep = mkPrep "apud" Acc; - aquatio_N = mkN "aquatio" "aquationis" feminine; - aquila_N = mkN "aquila"; - Aquileia_PN = mkPN (lin N (singularN (mkN "Aquileia"))); - Aquitania_PN = mkPN (lin N (singularN (mkN "Aquitania"))); - Aquitanus_N = mkN "Aquitanus"; - Arar_PN = mkPN (lin N (singularN (mkN "Arar" "Araris" masculine))); -- missing Ararim - arbitrari_V = mkV "arbitrari"; - arbitrium_N = mkN "arbitrium"; - arcessere_V = mkV "arcessere" "arcesso" "arcessivi" "arcessitum"; - arduus_A = mkA "arduus"; - aries_N = mkN "aries" "arietis" masculine; - Ariovistus_PN = mkPN (lin N (singularN (mkN "Ariovistus"))); - armatus_A = mkA "armatus"; - arma_N = lin N (pluralN (mkNoun "" "" "" "" "" "" "arma" "arma" "armorum" "armis" neuter)); - armamentum_N = mkN "armamentum"; - armare_V = mkV "armare"; - armatura_N = mkN "armatura"; - armus_N = mkN "armus"; - arroganter_Adv = ss "arroganter"; -- comparison? - arrogantia_N = mkN "arrogantia"; - artus_A = mkA "artus"; - Arverni_PN = mkPN (lin N (pluralN (mkN "Arvernus"))); - arx_N = mkN "arx" "arcis" feminine; - ascendere_V = mkV "ascendere" "ascendo" "ascendi" "ascensum"; --- at_Conj = mkConj "at" "" Sg ; --- atque_Conj = mkConj "atque" "" Sg ; - Atrebates_PN = mkPN (mkN "Atrebas" "Atrebatis" masculine); - attingere_V = mkV "attingere" "attingo" "attigi" "attactum"; -- ad + tangere? - attribuere_V = mkV "attribuere" "attribuo" "attribui" "attributum"; -- ad + tribuere?, missing attribuant - -- auctibus ??? - auctor_N = mkN "auctor" "auctoris" masculine; - auctorare_V = mkV "auctorare"; - auctoritas_N = mkN "auctoritas" "auctoritatis" feminine; - auctus_A = mkA "auctus"; - audacter_Adv = ss "audacter"; -- comparison? - audax_A = mkA "audax" "audacis"; - audere_V = mkV "audere"; -- semi-deponent?, missing ausos - audire_V = mkV "audire" ; -- missing audierant, audierit - auditio_N = mkN "auditio" "auditionis" feminine; - augere_V = mkV "augere"; -- missing auxisse - Atuatuci_PN = mkPN (lin N (pluralN (mkN "Atuatucus"))); - Aulerci_PN = mkPN (lin N (pluralN (mkN "Aulercus"))); - Auriga_PN = mkPN (mkN "Auriga"); - Aurunculeius_PN = mkPN (lin N (singularN (mkN "Aurunculeius"))); - Ausci_PN = mkPN (lin N (pluralN (mkN "Auscus"))); --- aut_Conj = mkConj "aut" "" Sg ; --- autem_Conj = mkConj "autem" "" Sg ; - auxiliare_V = mkV "auxiliare"; - auxilium_N = mkN "auxilium"; - avaritia_N = mkN "avaritia"; - avertere_V = mkV "avertere" "averto" "averti" "aversum"; -- ab + vertere?, missing aventu (noun sg supine neut dat) - avus_N = mkN "avus"; - Axona_PN = mkPN (lin N (singularN (mkN "Axona"))); - baculus_N = mkN "baculus"; - Baleares_PN = mkPN (lin N (pluralN (mkN "Balear" "Balearis" masculine))); - barbarus_A = mkA "barbarus"; - barbarus_N = mkN "barbarus"; - batavus_A = mkA "batavus"; - Belgae_PN = mkPN (lin N (pluralN (mkN "Belga"))); -- missing Belgos - bellare_V = mkV "bellare"; - bellicosus_A = mkA "bellicosus"; - Bellovaci_PN = mkPN (lin N (pluralN (mkN "Bellovacus"))); - bellum_N = mkN "bellum"; - bellus_A = mkA "bellus"; - bene_Adv = ss "bene"; -- comparison? - beneficium_N = mkN "beneficium"; - Bibrax_PN = mkPN (lin N (singularN (mkN "Bibrax" "Bibractis" masculine))); - biduum_N = mkN "biduum"; - biduus_A = mkA "biduus"; - biennis_A = mkA "biennis" "bienne"; -- missing biennium - biennium_N = mkN "biennium"; - binus_A = mkA "binus"; - bipedalis_A = mkA "bipedalis" "bipedale"; -- missing bipedalibus - bipertitus_A = mkA "bipertitus"; - bis_Adv = ss "bis"; - Biturix_PN = mkPN (lin N (pluralN (mkN "Biturix" "Biturigis" masculine))); - -- boc ??? - Boduognatus_PN = mkPN (lin N (singularN (mkN "Boduognatus"))); - Boi_PN = mkPN (lin N (pluralN (mkN "Boius"))); -- missing Boi - bonitas_N = mkN "bonitas" "bonitatis" feminine; - bracchium_N = mkN "bracchium"; - Bratuspantium_PN = mkPN (lin N (singularN (mkN "Bratuspantium"))); - brevi_Adv = ss "brevi"; - breviare_V = mkV "breviare"; - brevis_A = mkA "brevis" "breve"; -- missing brevi - brevitas_N = mkN "brevitas" "brevitatis" feminine; - Britannia_PN = mkPN (mkN "Britannia"); - britannus_A = mkA "britannus"; - Brutus_PN = mkPN (lin N (singularN (mkN "Brutus"))); - cadaver_N = mkN "cadaver" "cadaveris" neuter; - cadere_V = mkV "cadere" "cado" "cecidi" "casum"; - Caesar_PN = mkPN (lin N (singularN (mkN "Caesar" "Caesaris" masculine))); -- missing Caesare - caespes_N = mkN "caespes" "caespitis" masculine; - calamitas_N = mkN "calamitas" "calamitatis" feminine; - calare_V = mkV "calare"; - calo_N = mkN "calo" "calonis" masculine; - campus_N = mkN "campus"; - capere_V = mkV "capere" "capio" "cepi" "captum"; -- missing capi - captivus_A = mkA "captivus"; - captivus_N = mkN "captivus"; - captus_N = mkN "captus" "captus" masculine; - carina_N = mkN "carina"; - carpere_V = mkV "carpere" "carpio" "carpsi" "carptum"; - carrus_N = mkN "carrus"; - castellum_N = mkN "castellum"; - castra_N = lin N (pluralN (mkNoun "" "" "" "" "" "" "castra" "castra" "castrorum" "castris" neuter)); - casus_N = mkN "casus" "casus" masculine; - catena_N = mkN "catena"; - causa_N = mkN "causa"; - causa_Prep = mkPostp "causa" Gen; - cavare_V = mkV "cavare"; - cavere_V = mkV "cavere"; - cedere_V = mkV "cedere" "cedo" "cessi" "cessum"; - celare_V = mkV "celare"; - celer_A = mkA "celer" "celeris"; -- strange? - celeritas_N = mkN "celeritas" "celeritatis" feminine; - celeriter_Adv = ss "celeriter"; -- comparison? missing celerius, celerrime - census_N = mkN "census" "census" masculine; - censere_V = mkV "censere"; - centuriare_V = mkV "centuriare"; - centurio_N = mkN "centurio" "centurionis" masculine; - cernere_V = mkV "cernere" "cerno" "crevi" "cretum"; - certare_V = mkV "certare"; - certamen_N = mkN "certamen" "certaminis" neuter; - certus_A = mkA "certus"; - ceterus_A = mkA "ceterus"; - cibarius_A = mkA "cibarius"; - cibus_N = mkN "cibus"; - ciere_V = mkV "ciere" "cio" "civi" "citum"; - cingere_V = mkV "cingere" "cingo" "cingi" "cinctum"; - circinare_V = mkV "circinare"; - circinus_N = mkN "circinus"; - circiter_Adv = ss "circiter"; - circiter_Prep = mkPrep "circiter" Acc; - circuitus_N = mkN "circuitus" "circuitus" masculine; - circum_Adv = ss "circum"; - circum_Prep = mkPrep "circum" Acc; - circumdare_V = mkV "circumdare" "circumdo" "circumdedi" "circumdatum"; -- prefixVerb "circum" dare_V; -- circum + dare, missing circumdederant, circumdederunt - circumducere_V = mkV "circumducere" "circumduco" "circumduxi" "circumductum"; -- prefixVerb "circum" ducere_V; circum + ducere - circumiectus_A = mkA "circumiectus"; - circumire_V = prefixVerb "circum" ire_V; - circummunire_V = mkV "circummunire"; - circumsistere_1_V = mkV "circumsistere" "circumsisto" "circumstiti" "circumstatum" ; -- prefixVerb "circum" sistere_1_V; -- circum + sistere --- circumsistere_2_V = prefixVerb "circum" sistere_2_V; -- circum + sistere - circumvenire_V = mkV "circumvenire" ; -- prefixVerb "circum" venire_V; -- circum + venire - cis_Prep = mkPrep "cis" Acc; - citare_V = mkV "citare"; - citer_A = mkA "citer"; -- missing citeriore, citeriorem, citerioris - citra_Adv = ss "citra"; - citus_A = mkA "citus"; - civitas_N = mkN "civitas" "civitatis" feminine; - colere_V = mkV "colere" "colo" "colui" "cultum"; - cooriri_V = mkV "cooriri" "coorior" "coortus"; -- prefixVerb "con" oriri_V; -- con + oriri, missing coorta - conferre_V = prefixVerb "con" ferre_V; -- con + ferre - --- - conspicere_V = mkV "conspicere" "conspicio" "conspexi" "conspectum"; -- prefixVerb "con" specere_V; -- con + specere - conspirare_V = mkV "conspirare"; -- con + spirare? - constanter_Adv = ss "constanter"; -- comparison - constantia_N = mkN "constantia"; - constare_V = mkV "constare"; -- prefixVerb "con" stare_V; -- con + stare, missing constiterant, constiterat, constiterunt, constitissent, constitisset, constitit --- consternare_V = mkV "consternare"; -- con + sternere ? - consternere_V = mkV "consternere" "consterno" "constravi" "constratum"; -- con + sternere? - constituere_V = mkV "constituere" "constituo" "constitui" "constitutum"; -- prefixVerb "con" statuere_V; -- con + statuere - constitutum_N = mkN "constitutum"; - consuere_V = mkV "consuere" "consuo" "consui" "consustum"; - consuescere_V = mkV "consuescere" "consuesco" "consuevi" "consuetum"; -- con + suescere?, missing consuesse, consuessent? - consuetudo_N = mkN "consuetudo" "consuetudinis" feminine; - consul_N = mkN "consul" "consulis" masculine; - consulatus_N = mkN "consulatus" "consulatus" masculine; - consulere_V = mkV "consulere" "consulo" "consului" "consultum"; - consultare_V = mkV "consultare"; - consultum_N = mkN "consultum"; - contemptio_N = mkN "contemptio" "contemptionis" feminine; - contemptus_A = mkA "contemptus"; - contemptus_N = mkN "contemptus" "contemptus" masculine; - contentio_N = mkN "contentio" "contentionis" feminine; - contendere_V = mkV "contendere" "contendo" "contendi" "contentum"; - contexere_V = mkV "contexere" "contexo" "contexui" "contextum"; -- prefixVerb "con" texere_V; -- con + texere - continens_N = mkN "continens" "continentis" feminine; - continenter_Adv = ss "continenter"; - continere_V2 = mkV2 (mkV "continere"); -- prefixVerb2 "con" tenere_V2; con + tenere - contingere_V = mkV "contingere" "contingo" "contigi" "contectum"; -- con + tangere? - continuatio_N = mkN "continuatio" "continuationis" feminine; - continuus_A = mkA "continuus"; - contra_Adv = ss "contra"; --- contrahere_V2 = -- prefixVerb2 "con" trahere_V2; -- con + trahere - contrarius_A = mkA "contrarius"; - contumelia_N = mkN "contumelia"; - convallis_N = mkN "convallis" "convallis" feminine; - convenire_V = prefixVerb "con" venire_V; -- missing convenerant, convenerat, convenerunt, convenisse, convenissent, convenisset, conventu, conventus - conversare_V = mkV "conversare"; - convertere_V = prefixVerb "con" vertere_V; -- con + vertere - convincere_V = prefixVerb "con" vincere_V; -- con + vincere - convocare_V = prefixVerb "con" vocare_V; -- con + vocare - copia_N = mkN "copia"; - copiosus_A = mkA "copiosus"; - copula_N = mkN "copula"; - cora_N = mkN "cora"; - corona_N = mkN "corona"; - corpus_N = mkN "corpus" "corporis" neuter; - cos_N = mkN "cos" "cotis" feminine; - cotidianus_A = mkA "cotidianus"; - cotidie_Adv = ss "cotidie"; - Cotta_PN = mkPN (lin N (singularN (mkN "Cotta"))); - crassitudo_N = mkN "crassitudo" "crassitudinis" feminine; - Crassus_PN = mkPN (lin N (singularN (mkN "Crassus"))); - cratis_N = mkN "cratis" "cratis" feminine; - creare_V = mkV "creare"; - creber_A = mkA "creber"; - credere_V = mkV "credere" "credo" "credidi" "creditum"; - cremare_V = mkV "cremare"; - crescere_V = mkV "crescere" "cresco" "crevi" "cretum"; - Creta_N = mkN "Creta"; - cruciare_V = mkV "cruciare"; - cruciatus_N = mkN "cruciatus" "cruciatus" masculine; - crudelitas_N = mkN "crudelitas" "crudelitatis" feminine; - crudeliter_Adv = ss "crudeliter"; -- comparison? - culmen_N = mkN "culmen" "culminis" neuter; - culpa_N = mkN "culpa"; - cultura_N = mkN "cultura"; - cultus_N = mkN "cultus" "cultus" masculine; - cum_Prep = mkPrep "cum" Abl; - cunctari_V = mkV "cunctari"; - cunctatio_N = mkN "cunctatio" "cunctationis" feminine; - cunctus_A = mkA "cunctus"; - cuniculus_N = mkN "cuniculus"; - cupere_V = mkV "cupere" "cupio" "cupivi" "cupitum"; - cupiditas_N = mkN "cupiditas" "cupiditatis" feminine; - cupidus_A = mkA "cupidus"; - cur_Adv = ss "cur"; - cura_N = mkN "cura"; - curare_V = mkV "curare"; -- missing curasset - currere_V = mkV "currere" "curro" "cucurri" "cursum"; - currus_N = mkN "currus" "currus" masculine; - custodia_N = mkN "custodia"; - damnare_V = mkV "damnare"; - damnatus_A = mkA "damnatus"; - dare_V = mkV "dare" "do" "dedi" "datum"; - datum_N = mkN "datum"; - de_Prep = mkPrep "de" Abl; - debere_VV = StructuralLat.must_VV; - ducere_V = mkV "ducere" "duco" "duxi" "ductum" ; - equitare_V = mkV "equitare"; - ferre_V = fixFerre (mkVerb "ferre" "fer" "fer" "fera" "fereba" "ferre" "fere" "fer" "tul" "tul" "tuleri" "tulera" "tulisse" "tuleri" "lat"); - iacere_V = mkV "iacere" "iacio" "ieci" "iactum"; - ire_V = LexiconLat.go_V; --- ne_an_Conj = mkConj (BIND ++ "ne") "an" Sg; --- nonne_an_Conj = mkConj "nonne" "an" Sg; --- num_an_Conj = mkConj "num" "an" Sg; - oriri_V = mkV "oriri" "orior" nonExist "ortus"; - qui_IP = StructuralLat.whatSg_IP; - sistere_1_V = mkV "sistere" "sisto" "stiti" "statum"; - sistere_2_V = mkV "sistere" "sisto" "steti" "statum"; - specere_V = mkV "specere" "speco" "spexi" "spectum"; - stare_V = LexiconLat.stand_V; - statuere_V = mkV "statuere" "statuo" "statui" "statutum"; - tenere_V2 = LexiconLat.hold_V2; - texere_V = mkV "texere" "texo" "texui" "textum"; - trahere_V2 = LexiconLat.pull_V2; --- utrum_an_Conj = mkConj "utrum" "an" Sg; - venire_V = LexiconLat.come_V; - vertere_V = mkV "vertere" "verto" "verti" "versum"; - vincere_V = mkV "vincere" "vinco" "vici" "victum"; - vocare_V = mkV "vocare"; - oper - fixFerre : Verb -> Verb = - \ferre -> - { - act = table - { - (VAct VSim (VPres VInd) Sg P2) => "fers"; - (VAct VSim (VPres VInd) Sg P3) => "fert"; - (VAct VSim (VPres VInd) Pl P1) => "ferimus"; - (VAct VSim (VPres VInd) Pl P2) => "fertis"; - rest => ferre.act ! rest - }; - ger = ferre.ger; - geriv = ferre.geriv; - imp = table - { - (VImp1 Sg) => "fer"; - (VImp1 Pl) => "ferte"; - (VImp2 Sg P2) => "ferto"; - (VImp2 Sg P3) => "ferto"; - (VImp2 Pl P2) => "fertote"; - rest => ferre.imp ! rest - }; - inf = ferre.inf; - part = ferre.part; - pass = table - { - VPass (VPres VInd) Sg P2 => "ferris"; - VPass (VPres VInd) Sg P3 => "fertur"; - rest => ferre.pass ! rest - }; - sup = ferre.sup; - - - } ; -} \ No newline at end of file diff --git a/src/latin/ExtraLexCaesarAbs.gf b/src/latin/ExtraLexCaesarAbs.gf deleted file mode 100644 index ee3638107..000000000 --- a/src/latin/ExtraLexCaesarAbs.gf +++ /dev/null @@ -1,417 +0,0 @@ -abstract ExtraLexCaesarAbs = Cat ** { - fun - a_Prep : Prep; - ab_Prep : Prep; - abdere_V : V; - abducere_V : V; - abesse_V : V; - abicere_V : V; - abscisus_A : A; - absens_A : A; - absimilis_A : A; - abstinere_V2 : V2; - abstrahere_V2 : V2; - ac_Conj : Conj ; - accedere_V : V; - accendere_V : V; - accidere_V : V; - accipere_V : V; - acclivis_A : A; - acclivitas_N : N; - accommodare_V : V; - accommodatus_A : A; - accurrere_V : V; - accusare_V : V; - acervus_N : N; - acies_N : N; - acriter_Adv : Adv; - ad_Prep : Prep; - adaequare_V : V; - adamare_V2 : V2; - adducere_V : V; - adequitare_V : V; - adesse_V : V; - adferre_V : V; - adfectus_A : A; - adfectus_N : N; - adficere_V : V; - adfigere_V : V; - adfinitas_N : N; - adflictare_V : V; - adflictus_A : A; - adgredi_V : V; - adgregare_V : V; - adhibere_V : V; - adhuc_Adv : Adv; - Adiatunnus_PN : PN; - adicere_V : V; - adigere_V : V; - adire_V : V; - aditus_N : N; - adiungere_V : V; - adiuvare_V : V; - administrare_V : V; - admirari_V : V; - admittere_V : V; - admodum_Adv : Adv; - adoriri_V : V; - adpellere_V : V; - adpetere_V : V; - adpropinquare_V : V; - adpulsare_V : V; - adsciscere_V : V; - adsuere_V : V; - adsuefacere_V : V; - adulescentia_N : N; - adulescentulus_N : N; - advenire_V : V; - adventus_N : N; - advertere_V : V; - aedificare_V : V; - aedificium_N : N; - aeger_A : A; - aegre_Adv : Adv; - Aemilius_PN : PN; - aequaliter_Adv : Adv; - aequare_V : V; - aequinoctium_N : N; - aequitas_N : N; - aequum_N : N; - aequus_A : A; - aerarius_A : A; - aerarius_N : N; - aer_f_N : N; - aer_m_N : N; - aes_N : N; - aestas_N : N; - aestimare_V : V; - aestuarium_N : N; - aestus_N : N; - aetas_N : N; --- afferre_V : V; - ager_N : N; - agere_V : V; - agger_N : N; - agmen_N : N; - alacer_A : A; - alacritas_N : N; - alarius_A : A; - -- alduas_??? : ???; - alere_1_V : V; - alere_2_V : V; - alienus_A : A; - alii_Conj : Conj; - aliquam_Adv : Adv; - aliquanto_Adv : Adv; --- aliqui_Pron : Pron; - aliquis_Pron : Pron; - aliter_Adv : Adv; - alium_N : N; - alius_A : A; - Allobroges_PN : PN; - Alpes_PN : PN; - alter_A : A; - alterare_V : V; - altitudo_N : N; - altus_A : A; - aluta_N : N; - Ambarri_PN : PN; - Ambiani_PN : PN; - Ambiliati_PN : PN; - Ambivariti_PN : PN; - amentia_N : N; - amicitia_N : N; - amicus_A : A; - amittere_V : V; - amplificare_V : V; - amplitudo_N : N; - amplus_A : A; - an_Conj : Conj; - an_an_Conj : Conj; - anceps_A : A; - ancora_N : N; - Andebrogius_PN : PN; - Andes_PN : PN; - angustiare_V : V; - angustia_N : N; - animadvertere_V : V; - animus_N : N; - annuus_A : A; - ante_Adv : Adv; - ante_Prep : Prep; - antea_Adv : Adv; - antecedere_V : V; - antemna_N : N; - anteponere_V : V; - antiquitus_Adv : Adv; - antiquus_A : A; - aperire_V : V; - apertare_V : V; - appellare_V : V; - Aprilis_PN : PN; - aptus_A : A; - apud_Prep : Prep; - aquatio_N : N; - aquila_N : N; - Aquileia_PN : PN; - Aquitanus_N : N; - Aquitania_PN : PN; - Arar_PN : PN; - arbitrari_V : V; - arbitrium_N : N; - arcessere_V : V; - arduus_A : A; - aries_N : N; - Ariovistus_PN : PN; - armatus_A : A; - arma_N : N; - armamentum_N : N; - armare_V : V; - armatura_N : N; - armus_N : N; - arroganter_Adv : Adv; - arrogantia_N : N; - artus_A : A; - Arverni_PN : PN; - arx_N : N; - ascendere_V : V; - at_Conj : Conj; - atque_Conj : Conj ; - Atrebates_PN : PN; - attingere_V : V; - attribuere_V : V; - Atuatuci_PN : PN; - auctor_N : N; - auctorare_V : V; - auctoritas_N : N; - auctus_A : A; - audacter_Adv : Adv; - audax_A : A; - audere_V : V; - audire_V : V; - auditio_N : N; - augere_V : V; - Aulerci_PN : PN; - Auriga_PN : PN; - Aurunculeius_PN : PN; - Ausci_PN : PN; - aut_Conj : Conj; - autem_Conj : Conj; - auxiliare_V : V; - auxilium_N : N; - avaritia_N : N; - avertere_V : V; - avus_N : N; - Axona_PN : PN; - baculus_N : N; - Baleares_PN : PN; - barbarus_A : A; - barbarus_N : N; - batavus_A : A; - Belgae_PN : PN; - bellare_V : V; - bellicosus_A : A; - Bellovaci_PN : PN; - bellum_N : N; - bellus_A : A; - bene_Adv : Adv; - beneficium_N : N; - Bibrax_PN : PN; - biduum_N : N; - biduus_A : A; - biennis_A : A; - biennium_N : N; - binus_A : A; - bipedalis_A : A; - bipertitus_A :A; - bis_Adv : Adv; - Biturix_PN : PN; - -- boc ??? - Boduognatus_PN : PN; - Boi_PN : PN; - bonitas_N : N; - bracchium_N : N; - Bratuspantium_PN : PN; - brevi_Adv : Adv; - breviare_V : V; - brevis_A : A; - brevitas_N : N; - Britannia_PN : PN; - britannus_A : A; - Brutus_PN : PN; - cadaver_N : N; - cadere_V : V; - Caesar_PN : PN; - caespes_N : N; - calamitas_N : N; - calare_V : V; - calo_N : N; - campus_N : N; - capere_V : V; - captivus_A : A; - captivus_N : N; - captus_N : N; - carina_N : N; - carpere_V : V; - carrus_N : N; - castellum_N : N; - castra_N : N; - casus_N : N; - catena_N : N; - causa_N : N; - causa_Prep : Prep; -- Postposition - cavare_V : V; - cavere_V : V; - cedere_V : V; - celare_V : V; - celer_A : A; - celeritas_N : N; - celeriter_Adv : Adv; - censere_V : V; - census_N : N; - centuriare_V : V; - centurio_N : N; - cernere_V : V; - certare_V : V; - certamen_N : N; - certus_A : A; - ceterus_A : A; - cibarius_A : A; - cibus_N : N; - ciere_V : V; - cingere_V : V; - circinare_V : V; - circinus_N : N; - circiter_Adv : Adv; - circiter_Prep : Prep; - circuitus_N : N; - circum_Adv : Adv; - circum_Prep : Prep; - circumdare_V : V; - circumducere_V : V; - circumiectus_A : A; - circumire_V : V; - circummunire_V : V; - circumsistere_1_V : V; --- circumsistere_2_V : V; - circumvenire_V : V; - cis_Prep : Prep; - citare_V : V; - citer_A : A; - citra_Adv : Adv; - citus_A : A; - civitas_N : N; - colere_V : V; - conferre_V : V; - --- - conspicere_V : V; - conspirare_V : V; - constanter_Adv : Adv; - constantia_N : N; - constare_V : V; --- consternare_V : V; - consternere_V : V; - constituere_V : V; - constitutum_N : N; - consuere_V : V; - consuescere_V : V; - consuetudo_N : N; - consul_N : N; - consulatus_N : N; - consulere_V : V; - consultare_V : V; - consultum_N : N; - contemptio_N : N; - contemptus_A : A; - contemptus_N : N; - contendere_V : V; - contentio_N : N; - contexere_V : V; - continens_N : N; - continenter_Adv : Adv; - continere_V2 : V2; - contingere_V : V; - continuatio_N : N; - continuus_A : A; - contra_Adv : Adv; - contrahere_V2 : V2; - contrarius_A : A; - contumelia_N : N; - convallis_N : N; - convenire_V : V; - conversare_V : V; - convertere_V : V; - convincere_V : V; - convocare_V : V; - cooriri_V : V; - copia_N : N; - copiosus_A : A; - copula_N : N; - cora_N : N; - corona_N : N; - corpus_N : N; - cos_N : N; - cotidianus_A : A; - cotidie_Adv : Adv; - Cotta_PN : PN; - crassitudo_N : N; - Crassus_PN : PN; - cratis_N : N; - creare_V : V; - creber_A : A; - credere_V : V; - cremare_V : V; - crescere_V : V; - Creta_N : N; - cruciare_V : V; - cruciatus_N : N; - crudelitas_N : N; - crudeliter_Adv : Adv; - culmen_N : N; - culpa_N : N; - cultura_N : N; - cultus_N : N; - cum_Prep : Prep; - cunctari_V : V; - cunctatio_N : N; - cunctus_A : A; - cuniculus_N : N; - cupere_V : V; - cupiditas_N : N; - cupidus_A : A; - cur_Adv : Adv; - cura_N : N; - curare_V : V; - currere_V : V; - currus_N : N; - custodia_N : N; - damnare_V : V; - damnatus_A : A; - dare_V : V; - datum_N : N; - de_Prep : Prep; - debere_VV : VV; - ducere_V : V; - equitare_V : V; - ferre_V : V; - iacere_V : V; - ire_V : V; - ne_an_Conj : Conj; - nonne_an_Conj : Conj; - num_an_Conj : Conj; - oriri_V : V; - qui_IP : IP; - sistere_1_V : V; - sistere_2_V : V; - specere_V : V; - stare_V : V; - statuere_V : V; - tenere_V2 : V2; - texere_V : V; - trahere_V2 : V2; - utrum_an_Conj : Conj; - venire_V : V; - vertere_V : V; - vincere_V : V; - vocare_V : V; -} \ No newline at end of file diff --git a/src/latin/ExtraLexiconLat.gf b/src/latin/ExtraLexiconLat.gf deleted file mode 100644 index 8d3161fc4..000000000 --- a/src/latin/ExtraLexiconLat.gf +++ /dev/null @@ -1,28 +0,0 @@ -concrete ExtraLexiconLat of ExtraLexiconLatAbs = CatLat ** open ParadigmsLat in { - lin - friend_Fem_N = mkN "amica" ; -- -i/-ae m./f. (Langenscheidts) - baby_Fem_N = mkN "infans" "infantis" feminine ; -- Ranta; -antis m./f. (Langenscheidts) - blue_Var_A = mkA "caeruleus" ; -- 3 (Langenscheidts) - boss_Fem_N = mkN "dux" "ducis" feminine ; -- ducis m./f. (Langenscheidts) - bread_Neutr_N = mkN "pane" "panis" neuter ; -- -is m./n. (Langenscheidts) - cat_Var_N = mkN "felis" "felis" feminine ; -- -is f. (Langenscheidts) - cousin_Fem_N = mkN "consobrina" ; -- -i/-ae m./f. (Langenscheidts) - cow_Fem_N = mkN "bos" "bovis" feminine ; -- bovis (gen. pl. boum, dat./abl. pl. bobus/bubus) m./f. (Langenscheidts) - dog_Fem_N = mkN "canis" "canis" feminine ; -- -is m./f. (Langenscheidts) - enemy_Fem_N = mkN "hostis" "hostis" feminine ; -- -is m./f. (Langenscheidts) - policeman_Fem_N = mkN "custos" "custodis" feminine ; -- -odis m./f. (Langenscheidts) - priest_Fem_N = mkN "sacerdos" "sacerdotis" feminine ; -- -dotis m./f. (Langenscheidts) - snake_Fem_N = mkN "serpens" "serpentis" feminine ; -- -entis m./f. (Langenscheidts) - student_Fem_N = mkN "discipula" ; -- -i/-ae m./f. (Langenscheidts) - switch8on_Var_V2 = mkV2 (mkV "exstinguere" ) ; -- -ingo, -inxi, -inctum 3 (Langenscheidts) - bark_Fem_N = mkN "cortex" "corticis" feminine ; -- -icis m./(f.) (Langenscheidts) - blood_Var_N = mkN "sangis" "sanginis" masculine ; -- -inis m. (Langenscheidts) - day_Fem_N = mkN "dies" "diei" feminine ; -- -ei m./f. (Langenscheidts) - horn_Var_N = mkN "cornu" "cornus" neuter ; -- -us n. (Langenscheidts) - liver_Var_N = mkN "iocur" "iocineris" neuter ; -- iecoris/iocineris n. (Langenscheidts) - louse_Fem_N = mkN "pedis" "pedis" feminine ; -- -is m./f. (Langenscheidts) - nose_Neutr_N = mkN "nasum" ; -- -i m./n. (Langenscheidts) - rope_Fem_N = mkN "funis" "funis" feminine ; -- -is m.(/f.) (Langenscheidts) - salt_Neutr_N = mkN "sal" "salis" neuter ; -- salis m./n. (Langenscheidts) - stick_Neutr_N = mkN "baculum" ; -- -i n./m. -}; \ No newline at end of file diff --git a/src/latin/ExtraLexiconLatAbs.gf b/src/latin/ExtraLexiconLatAbs.gf deleted file mode 100644 index 7a5271948..000000000 --- a/src/latin/ExtraLexiconLatAbs.gf +++ /dev/null @@ -1,29 +0,0 @@ -abstract ExtraLexiconLatAbs = Cat, Lexicon, ExtraLexCaesarAbs ** { - fun - -- Ambigous entries from main lexicon - friend_Fem_N : N ; - baby_Fem_N : N ; - blue_Var_A : A ; - boss_Fem_N : N ; - bread_Neutr_N : N ; - cat_Var_N : N ; - cousin_Fem_N : N ; - cow_Fem_N : N ; - dog_Fem_N : N ; - enemy_Fem_N : N ; - policeman_Fem_N : N ; - priest_Fem_N : N ; - snake_Fem_N : N ; - student_Fem_N : N ; - switch8on_Var_V2 : V2 ; - bark_Fem_N : N ; - blood_Var_N : N ; - day_Fem_N : N ; - horn_Var_N : N ; - liver_Var_N : N ; - louse_Fem_N : N ; - nose_Neutr_N : N ; - rope_Fem_N : N ; - salt_Neutr_N : N ; - stick_Neutr_N : N ; -}; \ No newline at end of file diff --git a/src/latin/IdiomLat.gf b/src/latin/IdiomLat.gf index 4ebe790d5..688a99629 100644 --- a/src/latin/IdiomLat.gf +++ b/src/latin/IdiomLat.gf @@ -8,7 +8,7 @@ concrete IdiomLat of Idiom = CatLat ** open Prelude, ResLat in { -- -- CleftNP np rs = mkClause "it" (agrP3 Sg) -- (insertObj (\\_ => rs.s ! np.a) --- (insertObj (\\_ => np.s ! rs.c) (predAux auxBe))) ; +-- (insertObj (\\_ => combineNounPhrase np ! PronNonDrop ! rs.c) (predAux auxBe))) ; -- -- CleftAdv ad s = mkClause "it" (agrP3 Sg) -- (insertObj (\\_ => conjThat ++ s.s) @@ -16,7 +16,7 @@ concrete IdiomLat of Idiom = CatLat ** open Prelude, ResLat in { -- -- ExistNP np = -- mkClause "there" (agrP3 (fromAgr np.a).n) --- (insertObj (\\_ => np.s ! Acc) (predAux auxBe)) ; +-- (insertObj (\\_ => combineNounPhrase np ! PronNonDrop ! Acc) (predAux auxBe)) ; -- -- ExistIP ip = -- mkQuestion (ss (ip.s ! Nom)) diff --git a/src/latin/LexiconLat.gf b/src/latin/LexiconLat.gf index 4e1018133..644756ba0 100644 --- a/src/latin/LexiconLat.gf +++ b/src/latin/LexiconLat.gf @@ -154,7 +154,7 @@ lin open_V2 = mkV2 (mkV "aperire") ; -- aperio, aperui, apertum 4 (Langenscheidts) paint_V2A = mkV2A (mkV "pingere" "pingo" "pinxi" "pictum" ) Acc_Prep ; -- pingo, pinxi, pictum 3 (Langenscheidts) paper_N = mkN "charta" ; -- -ae f. (http://la.wikipedia.org/wiki/Charta / Pons) - paris_PN = mkPN (mkN "Lutetia") ; -- -ae f. (http://la.wikipedia.org/wiki/Lutetia) + paris_PN = mkPN (mkN "Lutetia") singular ; -- -ae f. (http://la.wikipedia.org/wiki/Lutetia) peace_N = mkN "pax" "pacis" feminine ; -- pacis f. (Langenscheidts) pen_N = mkN "stilus" ; -- -i m. (Langenscheidts) planet_N = mkN "planeta" ; -- -ae m. (http://la.wikipedia.org/wiki/Planeta) @@ -178,7 +178,7 @@ lin say_VS = mkVS (mkV "dicere" "dico" "dixi" "dictum") ; -- dico, dixi, dictum 3 (Langenscheidts) school_N = mkN "schola" ; -- -ae f. (Langenscheidts) -- Irregular - science_N = R.pluralN (mkN "litera" ) ; -- only pl. (Langenscheidts) + science_N = pluralN (mkN "litera" ) ; -- only pl. (Langenscheidts) sea_N = mkN "mare" "maris" neuter ; -- -is n. (Langenscheidts) seek_V2 = mkV2 (mkV "quaerere" "quaero" "quaesivi" "quaesitum" ) ; -- quaero, quaesivi, quaesitum 3 (Langenscheidts) see_V2 = mkV2 (mkV "videre") ; -- video, vidi, visum 2 (Langenscheidts) @@ -384,7 +384,7 @@ lin rule_N = mkN "regula" ; -- -ae f. (Langenscheidts) -- added 4/6/2007 - john_PN = mkPN (mkN "Iohannes") ; -- (http://en.wikipedia.org/wiki/John_(given_name)) + john_PN = mkPN (mkN "Iohannes") singular ; -- (http://en.wikipedia.org/wiki/John_(given_name)) question_N = mkN "rogatio" "rogationis" feminine; -- -onis f. (Langenscheidts) ready_A = mkA "paratus" ; -- 3 (Langenscheidts) reason_N = mkN "causa" ; -- -ae f. (Langenscheidts) diff --git a/src/latin/MissingLat.gf b/src/latin/MissingLat.gf index cebb075ef..269a950b4 100644 --- a/src/latin/MissingLat.gf +++ b/src/latin/MissingLat.gf @@ -6,17 +6,18 @@ oper AdvCN : CN -> Adv -> CN = notYet "AdvCN" ; oper AdvIAdv : IAdv -> Adv -> IAdv = notYet "AdvIAdv" ; oper AdvIP : IP -> Adv -> IP = notYet "AdvIP" ; oper AdvSlash : ClSlash -> Adv -> ClSlash = notYet "AdvSlash" ; +oper BaseAP : AP -> AP -> ListAP = notYet "BaseAP" ; oper BaseRS : RS -> RS -> ListRS = notYet "BaseRS" ; -oper BaseS : S -> S -> ListS = notYet "BaseS" ; oper CleftAdv : Adv -> S -> Cl = notYet "CleftAdv" ; oper CleftNP : NP -> RS -> Cl = notYet "CleftNP" ; oper CompIP : IP -> IComp = notYet "CompIP" ; oper ComplN2 : N2 -> NP -> CN = notYet "ComplN2" ; oper ComplN3 : N3 -> NP -> N2 = notYet "ComplN3" ; +oper ConjAdv : Conj -> ListAdv -> Adv = notYet "ConjAdv" ; +oper ConjAP : Conj -> ListAP -> AP = notYet "ConjAP" ; oper ConjRS : Conj -> ListRS -> RS = notYet "ConjRS" ; -oper ConjS : Conj -> ListS -> S = notYet "ConjS" ; +oper ConsAP : AP -> ListAP -> ListAP = notYet "ConsAP" ; oper ConsRS : RS -> ListRS -> ListRS = notYet "ConsRS" ; -oper ConsS : S -> ListS -> ListS = notYet "ConsS" ; oper DetQuantOrd : Quant -> Num -> Ord -> Det = notYet "DetQuantOrd" ; oper EmbedQS : QS -> SC = notYet "EmbedQS" ; oper EmbedS : S -> SC = notYet "EmbedS" ; @@ -33,18 +34,11 @@ oper ImpersCl : VP -> Cl = notYet "ImpersCl" ; oper ImpPl1 : VP -> Utt = notYet "ImpPl1" ; oper ImpVP : VP -> Imp = notYet "ImpVP" ; oper NumDigits : Digits -> Card = notYet "NumDigits" ; +oper NumNumeral : Numeral -> Card = notYet "NumNumeral" ; oper OrdDigits : Digits -> Ord = notYet "OrdDigits" ; +oper OrdNumeral : Numeral -> Ord = notYet "OrdNumeral" ; oper OrdSuperl : A -> Ord = notYet "OrdSuperl" ; oper PossPron : Pron -> Quant = notYet "PossPron" ; -oper pot1 : Digit -> Sub100 = notYet "pot1" ; -oper pot110 : Sub100 = notYet "pot110" ; -oper pot111 : Sub100 = notYet "pot111" ; -oper pot1plus : Digit -> Sub10 -> Sub100 = notYet "pot1plus" ; -oper pot1to19 : Digit -> Sub100 = notYet "pot1to19" ; -oper pot2 : Sub10 -> Sub1000 = notYet "pot2" ; -oper pot2plus : Sub10 -> Sub100 -> Sub1000 = notYet "pot2plus" ; -oper pot3 : Sub1000 -> Sub1000000 = notYet "pot3" ; -oper pot3plus : Sub1000 -> Sub1000 -> Sub1000000 = notYet "pot3plus" ; oper PPartNP : NP -> V2 -> NP = notYet "PPartNP" ; oper PredSCVP : SC -> VP -> Cl = notYet "PredSCVP" ; oper PrepIP : Prep -> IP -> IAdv = notYet "PrepIP" ; @@ -78,27 +72,28 @@ oper AdvIP : IP -> Adv -> IP = notYet "AdvIP" ; oper AdvQVP : VP -> IAdv -> QVP = notYet "AdvQVP" ; oper AdvSlash : ClSlash -> Adv -> ClSlash = notYet "AdvSlash" ; oper BaseAdV : AdV -> AdV -> ListAdV = notYet "BaseAdV" ; +oper BaseAP : AP -> AP -> ListAP = notYet "BaseAP" ; oper BaseCN : CN -> CN -> ListCN = notYet "BaseCN" ; oper BaseDAP : DAP -> DAP -> ListDAP = notYet "BaseDAP" ; oper BaseIAdv : IAdv -> IAdv -> ListIAdv = notYet "BaseIAdv" ; oper BaseRS : RS -> RS -> ListRS = notYet "BaseRS" ; -oper BaseS : S -> S -> ListS = notYet "BaseS" ; oper CompIP : IP -> IComp = notYet "CompIP" ; oper ComplN2 : N2 -> NP -> CN = notYet "ComplN2" ; oper ComplN3 : N3 -> NP -> N2 = notYet "ComplN3" ; oper ComplSlashIP : VPSlash -> IP -> QVP = notYet "ComplSlashIP" ; +oper ConjAdv : Conj -> ListAdv -> Adv = notYet "ConjAdv" ; oper ConjAdV : Conj -> ListAdV -> AdV = notYet "ConjAdV" ; +oper ConjAP : Conj -> ListAP -> AP = notYet "ConjAP" ; oper ConjCN : Conj -> ListCN -> CN = notYet "ConjCN" ; oper ConjDet : Conj -> ListDAP -> Det = notYet "ConjDet" ; oper ConjIAdv : Conj -> ListIAdv -> IAdv = notYet "ConjIAdv" ; oper ConjRS : Conj -> ListRS -> RS = notYet "ConjRS" ; -oper ConjS : Conj -> ListS -> S = notYet "ConjS" ; oper ConsAdV : AdV -> ListAdV -> ListAdV = notYet "ConsAdV" ; +oper ConsAP : AP -> ListAP -> ListAP = notYet "ConsAP" ; oper ConsCN : CN -> ListCN -> ListCN = notYet "ConsCN" ; oper ConsDAP : DAP -> ListDAP -> ListDAP = notYet "ConsDAP" ; oper ConsIAdv : IAdv -> ListIAdv -> ListIAdv = notYet "ConsIAdv" ; oper ConsRS : RS -> ListRS -> ListRS = notYet "ConsRS" ; -oper ConsS : S -> ListS -> ListS = notYet "ConsS" ; oper CountNP : Det -> NP -> NP = notYet "CountNP" ; oper DetDAP : Det -> DAP = notYet "DetDAP" ; oper DetQuantOrd : Quant -> Num -> Ord -> Det = notYet "DetQuantOrd" ; @@ -112,21 +107,14 @@ oper IdetIP : IDet -> IP = notYet "IdetIP" ; oper IdetQuant : IQuant -> Num -> IDet = notYet "IdetQuant" ; oper ImpVP : VP -> Imp = notYet "ImpVP" ; oper NumDigits : Digits -> Card = notYet "NumDigits" ; +oper NumNumeral : Numeral -> Card = notYet "NumNumeral" ; oper OrdDigits : Digits -> Ord = notYet "OrdDigits" ; +oper OrdNumeral : Numeral -> Ord = notYet "OrdNumeral" ; oper OrdNumeralSuperl : Numeral -> A -> Ord = notYet "OrdNumeralSuperl" ; oper OrdSuperl : A -> Ord = notYet "OrdSuperl" ; oper PartNP : CN -> NP -> CN = notYet "PartNP" ; oper PossNP : CN -> NP -> CN = notYet "PossNP" ; oper PossPron : Pron -> Quant = notYet "PossPron" ; -oper pot1 : Digit -> Sub100 = notYet "pot1" ; -oper pot110 : Sub100 = notYet "pot110" ; -oper pot111 : Sub100 = notYet "pot111" ; -oper pot1plus : Digit -> Sub10 -> Sub100 = notYet "pot1plus" ; -oper pot1to19 : Digit -> Sub100 = notYet "pot1to19" ; -oper pot2 : Sub10 -> Sub1000 = notYet "pot2" ; -oper pot2plus : Sub10 -> Sub100 -> Sub1000 = notYet "pot2plus" ; -oper pot3 : Sub1000 -> Sub1000000 = notYet "pot3" ; -oper pot3plus : Sub1000 -> Sub1000 -> Sub1000000 = notYet "pot3plus" ; oper PPartNP : NP -> V2 -> NP = notYet "PPartNP" ; oper PredSCVP : SC -> VP -> Cl = notYet "PredSCVP" ; oper PrepIP : Prep -> IP -> IAdv = notYet "PrepIP" ; diff --git a/src/latin/MissingTranslateLat.gf b/src/latin/MissingTranslateLat.gf deleted file mode 100644 index 92e8fcd14..000000000 --- a/src/latin/MissingTranslateLat.gf +++ /dev/null @@ -1,5 +0,0 @@ -resource MissingTranslateLat = open GrammarLat, Prelude in { - --- temporary definitions to enable the compilation of RGL Translate - -} diff --git a/src/latin/NounLat.gf b/src/latin/NounLat.gf index f30af7726..b7d759e8e 100644 --- a/src/latin/NounLat.gf +++ b/src/latin/NounLat.gf @@ -6,7 +6,7 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { -- DetCN : Det -> CN -> NP ; -- the man DetCN det cn = { - s = \\c => cn.s ! det.n ! c ; + s = \\_,c => cn.s ! det.n ! c ; n = det.n ; g = cn.g ; p = P3 ; adv = cn.adv ; preap = cn.preap ; @@ -16,32 +16,26 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { -- UsePN : PN -> NP ; -- John UsePN pn = - lin NP - { - s = pn.s ! Sg ; - g = pn.g ; - n = Sg ; - p = P3 ; - adv = "" ; - preap, postap = { s = \\_ => "" } ; - det = { s,sp = \\_,_ => "" ; n = Sg } - } ; + pn ** + { + s = \\_ => pn.s ; + p = P3 ; + adv = "" ; + preap, postap = { s = \\_ => "" } ; + det = { s,sp = \\_,_ => "" ; n = Sg } + } ; -- UsePron : Pron -> NP ; -- he UsePron p = - { - g = p.pers.g ; - n = p.pers.n ; + p.pers ** + { p = p.p ; - s = \\c => case c of { - Nom => p.pers.s ! PronDrop ! PronNonRefl ; -- Drop pronoun in nominative case - _ => p.pers.s ! PronNonDrop ! PronNonRefl -- but don't drop it otherwise - } ! c ; + s = \\pd,c => p.pers.s ! pd ! PronNonRefl ! c; adv = "" ; preap, postap = { s = \\_ => "" } ; det = { s,sp = \\_,_ => "" ; n = p.pers.n } ; } ; - + -- PredetNP : Predet -> NP -> NP ; -- only the man PredetNP predet np = np ** { @@ -50,7 +44,7 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { -- PPartNP : NP -> V2 -> NP ; -- the man seen -- PPartNP np v2 = { --- s = \\c => np.s ! c ++ v2.s ! VPPart ; +-- s = \\c => (combineNounPhrase np) ! PronNonDrop ! c ++ v2.s ! VPPart ; -- a = np.a -- } ; -- @@ -58,7 +52,7 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { -- AdvNP : NP -> Adv -> NP ; -- Paris today AdvNP np adv = np ** { adv = np.adv ++ (adv.s ! Posit) } ; -- { - -- s = \\c => np.s ! c ; + -- s = \\pd,c => combineNounPhrase np ! pd ! c ; -- g = np.g ; n = np.n; p = np.p ; -- adv = cc2 np.adv adv ; -- preap = np.preap ; @@ -74,7 +68,7 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { -- DetNP : Det -> NP ; -- these five DetNP det = { - s = det.s ! Neutr ; + s = \\_ => det.s ! Neutr ; g = Neutr ; n = det.n ; p = P3 ; @@ -111,8 +105,8 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { -- OrdDigits n = {s = n.s ! NOrd} ; -- lin - NumNumeral numeral = numeral.card ; - OrdNumeral numeral = numeral.ord ; +-- NumNumeral numeral = numeral.s ; +-- OrdNumeral numeral = numeral.ord ; -- -- AdNum adn num = {s = adn.s ++ num.s ; n = num.n} ; -- @@ -129,15 +123,11 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { } ; MassNP cn = - { - s = cn.s ! Sg ; + cn ** { + s = \\_ => cn.s ! Sg ; -- s = case cn.massable of { True => cn.s ! Sg ; False => \\_ => nonExist } ; - g = cn.g ; n = Sg ; p = P3 ; - adv = cn.adv ; - preap = cn.preap ; - postap = cn.postap ; det = { s,sp = \\_,_ => "" ; n = Sg } ; }; @@ -183,11 +173,8 @@ concrete NounLat of Noun = CatLat ** open ResLat, Prelude, ConjunctionLat in { -- -- ApposCN : CN -> NP -> CN ApposCN cn np = + cn ** { - s = \\n,c => cn.s ! n ! c ++ np.det.s ! np.g ! c ++ np.preap.s ! (Ag np.g n c) ++ np.s ! c ++ np.postap .s ! (Ag np.g n c) ++ np.det.sp ! np.g ! c ; - g = cn.g ; - preap = cn.preap ; - postap = cn.postap ; - adv = cn.adv + s = \\n,c => cn.s ! n ! c ++ (combineNounPhrase np) ! PronNonDrop ! c ; } ; -- massable = cn.massable } ; } diff --git a/src/latin/NumeralLat.gf b/src/latin/NumeralLat.gf index d50034e86..075915b62 100644 --- a/src/latin/NumeralLat.gf +++ b/src/latin/NumeralLat.gf @@ -1,45 +1,168 @@ -concrete NumeralLat of Numeral = CatLat ** open ResLat,ParadigmsLat in { +concrete NumeralLat of Numeral = CatLat, ParamX[Number] ** open ParadigmsLat, Prelude, ResLat, Predef in { lincat - Digit = Numeral ; - Sub10 = Numeral ; - Sub100 = Numeral ; - Sub1000 = Numeral ; - Sub1000000 = Numeral ; + Digit = TDigit ; + Sub10 = TNumeral ; + Sub100 = TNumeral ; + Sub1000 = TNumeral ; + Sub1000000 = TNumeral ; lin num x = x ; - n2 = lin Numeral ( mkNum "duo" "secundus" ) ; - n3 = lin Numeral ( mkNum "tres" "tertius" ) ; - n4 = lin Numeral ( mkNum "quattuor" "quartus" ) ; - n5 = lin Numeral ( mkNum "quinque" "quintus" ) ; - n6 = lin Numeral ( mkNum "sex" "sextus" ) ; - n7 = lin Numeral ( mkNum "septem" "septimus" ) ; - n8 = lin Numeral ( mkNum "octo" "ocatvus" ) ; - n9 = lin Numeral ( mkNum "novem" "nonus" ) ; + n2 = lin Digit ( mkDigit "duo" "duodecim" "viginti" "ducenti" "secundus" "triginta" Yes ) ; + n3 = lin Digit ( mkDigit "tres" "tredecim" "triginta" "trecenti" "tertius" "quadraginta" Yes ) ; + n4 = lin Digit ( mkDigit "quattuor" "quattuordecim" "quadraginta" "quadringenti" "quartus" "quinquaginta" Yes ) ; + n5 = lin Digit ( mkDigit "quinque" "quindecim" "quinquaginta" "quingenti" "quintus" "sexaginta" Yes ) ; + n6 = lin Digit ( mkDigit "sex" "sedecim" "sexaginta" "sescenti" "sextus" "septuaginta" Yes ) ; + n7 = lin Digit ( mkDigit "septem" "septendecim" "septuaginta" "septingenti" "septimus" "octoginta" Yes ) ; + n8 = lin Digit ( mkDigit "octo" "duodeviginti" "octoginta" "octingenti" "ocatvus" "nonaginta" No8 ) ; + n9 = lin Digit ( mkDigit "novem" "undeviginti" "nonaginta" "nongenti" "nonus" "centum" No9 ) ; + + -- 1 + pot01 = { s = n1.s ! one ; d = n1.s ; n = singular ; below8 = n1.below8 } ; + -- d * 1 + pot0 d = { + s = d.s ! one ; + d = table { + thousand => \\g,c => d.s ! one ! g ! c ++ d.s ! thousand ! g ! c ; + u => \\g,c => d.s ! u ! g ! c + } ; + n = plural ; + below8 = d.below8 + } ; + -- 10 + pot110 = { + s = n1.s ! ten ; + d = table { + thousand => \\g,c => n1.s ! ten ! g ! c ++ n1.s ! thousand ! g ! c ; + u => \\g,c => n1.s ! u ! g ! c + } ; + n = singular ; + below8 = Yes + } ; + -- 11 + pot111 = pot1to19 n1 ; + -- 10 + d + pot1to19 d = { + s = d.s ! eleven ; + d = table { + thousand => \\g,c => d.s ! eleven ! g ! c ++ n1.s ! thousand ! g ! c ; + u => \\g,c => d.s ! u ! g ! c + } ; + n = plural ; + below8 = Ign + } ; + -- coercion of 1..9 + pot0as1 n = n ; + -- d * 10 + pot1 d = { + s = d.s ! ten ; + d = table { + thousand => \\g,c => d.s ! ten ! g ! c ++ n1.s ! thousand ! g ! c ; + u => \\g,c => d.s ! u ! g ! c + } ; + n = plural ; + below8 = Yes + } ; + -- d * 10 + n + pot1plus d n = + let + newS : Gender => Case => Str = \\g,c => case n.below8 of { + No8 => "duo" ++ Prelude.BIND ++ "-" ++ Prelude.BIND ++ "de" ++ Prelude.BIND ++ "-" ++ Prelude.BIND ++ d.tenNext ; + No9 => "un" ++ Prelude.BIND ++ "-" ++ Prelude.BIND ++ "de" ++ Prelude.BIND ++ "-" ++ Prelude.BIND ++ d.tenNext ; + _ => d.s ! ten ! g ! c ++ n.s ! g ! c + } in + { + s = newS ; + d = table { + thousand => \\g,c => newS ! g ! c ++ n1.s ! thousand ! g ! c ; + u => \\g,c => n.d ! u ! g ! c + } ; + below8 = Ign ; + n = plural + } ; + -- coercion of 1..99 + pot1as2 n = n ; + -- m * 100 + pot2 n = { + s = n.d ! hundred ; + d = table { + thousand => \\g,c => n.d ! hundred ! g ! c ++ n1.s ! thousand ! g ! c ; + u => \\g,c => n.d ! u ! g ! c + } ; + n = plural ; + below8 = Yes} ; + -- d * 100 + n + pot2plus d n = + let + newS : Gender => Case => Str = \\g,c => d.d ! hundred ! g ! c ++ "et" ++ n.s ! g ! c + in + { + s = newS ; + d = table { + thousand => \\g,c => newS ! g ! c ++ n1.s ! thousand ! g ! c ; + u => \\g,c => n.d ! u ! g ! c + } ; + below8 = Ign ; + n = plural + } ; + -- coercion of 1..999 + pot2as3 n = n ; + -- m * 1000 + pot3 n = { + s = \\g,c => n.s ! g ! c ++ n.d ! thousand ! g ! c ; + d = table { thousand => \\g,c => n.s ! g ! c ++ n.d ! thousand ! g ! c ; + u => \\g,c => n.d ! u ! g ! c + } ; + below8 = Ign ; + n = plural + } ; + + -- d * 1000 + n + pot3plus d n = { + s = \\g,c => d.d ! thousand ! g ! c ++ "et" ++ n.s ! g ! c ; + d = n.d ; + below8 = Ign ; + n = plural + } ; + + oper + mkDigit : (ones, eleven, tens, hundreds, ord : Str) -> Str -> Below8 -> TDigit = + \ones, eleven, tens, hundreds, ord -> + case of { + <"decem",_> => fullDigit ones eleven tens hundreds ord "decimus" "centesimus" ; + <"viginti",_> => fullDigit ones eleven tens hundreds ord "vicesimus" "ducentesimus" ; + <"triginta",_> => fullDigit ones eleven tens hundreds ord "tricesimus" "trecentesimus" ; + => fullDigit ones eleven tens hundreds ord (quadra + "gesimus") (quadringent + "esimus") ; + _ => Predef.error "Invalid number" + } ; + fullDigit : (ones, eleven, tens, hundreds, ord1,ord10,ord100, tenNext : Str) -> Below8 -> TDigit = + \ones, eleven, tens, hundreds, ord1,ord10,ord100,tenNext,b8 -> + { s = table { one => cardFlex ones ; + eleven => cardFlex eleven ; + ten => cardFlex tens ; + hundred => cardFlex hundreds ; + thousand => cardFlex "milia" ; + ten_thousand => \\_,_ => nonExist ; + hundred_thousand => \\_,_ => nonExist + } ; +-- n = case ones of { "unus" => singular ; _ => plural } ; + -- ord = + -- \\_,_ => [] ; + -- -- table { one => (mkA ord1).s ! Posit; + -- -- ten => (mkA ord10).s ! Posit ; + -- -- hundred => (mkA ord100).s ! Posit ; + -- -- thousand => \\_,_ => nonExist ; + -- -- ten_thousand => \\_ => nonExist ; + -- -- hundred_thousand => \\_ => nonExist } ; + tenNext = tenNext ; + below8 = b8 + } ; + n1 : Digit = lin Digit ( fullDigit "unus" "decem" "undecim" "primus" "decimus" "centesimus" "millesimus" "viginti" Yes ) ; - lin pot01 = lin Numeral ( mkNum "unus" "primus" ) ; - lin pot0 d = d ; ---lin pot110 = regCardOrd "ten" ** {n = Pl} ; ---lin pot111 = regCardOrd "eleven" ** {n = Pl} ; ---lin pot1to19 d = {s = d.s ! teen} ** {n = Pl} ; - lin pot0as1 n = n ; ---lin pot1 d = {s = d.s ! ten} ** {n = Pl} ; ---lin pot1plus d e = { --- s = \\c => d.s ! ten ! NCard ++ "-" ++ e.s ! unit ! c ; n = Pl} ; - pot1as2 n = n ; ---lin pot2 d = {s = \\c => d.s ! unit ! NCard ++ mkCard c "hundred"} ** {n = Pl} ; ---lin pot2plus d e = { --- s = \\c => d.s ! unit ! NCard ++ "hundred" ++ "and" ++ e.s ! c ; n = Pl} ; - pot2as3 n = n ; ---lin pot3 n = { --- s = \\c => n.s ! NCard ++ mkCard c "thousand" ; n = Pl} ; ---lin pot3plus n m = { --- s = \\c => n.s ! NCard ++ "thousand" ++ m.s ! c ; n = Pl} ; --- -- numerals as sequences of digits lincat - Dig = TDigit ; + Dig = TDig ; lin IDig d = {s = d.s ! one; unit = ten} ; @@ -49,30 +172,31 @@ concrete NumeralLat of Numeral = CatLat ** open ResLat,ParadigmsLat in { unit = inc i.unit } ; - D_0 = mkDig "" "" "" "" "" "" ; - D_1 = mkDig "I" "X" "C" "M" "(X)" "(C)" ; - D_2 = mkDig "II" "XX" "CC" "MM" "(XX)" "(CC)" ; - D_3 = mkDig "III" "XXX" "CCC" "MMM" "(XXX)" "(CCC)" ; - D_4 = mkDig "IV" "XL" "CD" "(IV)" "(XL)" "(CD)" ; - D_5 = mkDig "V" "L" "D" "(V)" "(L)" "(D)" ; - D_6 = mkDig "VI" "LX" "DC" "(VI)" "(LX)" "(DC)" ; - D_7 = mkDig "VII" "LXX" "DCC" "(VII)" "(LXX)" "(DCC)" ; - D_8 = mkDig "VIII" "LXXX" "DCCC" "(VIII)" "(LXXX)" "(DCCC)" ; - D_9 = mkDig "IX" "XC" "CM" "(IX)" "(XC)" "(CM)" ; + D_0 = mkDig "" "" "" "" "" "" "" ; + D_1 = mkDig "I" "XI" "X" "C" "M" "(X)" "(C)" ; + D_2 = mkDig "II" "XII" "XX" "CC" "MM" "(XX)" "(CC)" ; + D_3 = mkDig "III" "XIII" "XXX" "CCC" "MMM" "(XXX)" "(CCC)" ; + D_4 = mkDig "IV" "XIV" "XL" "CD" "(IV)" "(XL)" "(CD)" ; + D_5 = mkDig "V" "XV" "L" "D" "(V)" "(L)" "(D)" ; + D_6 = mkDig "VI" "XVI" "LX" "DC" "(VI)" "(LX)" "(DC)" ; + D_7 = mkDig "VII" "XVII" "LXX" "DCC" "(VII)" "(LXX)" "(DCC)" ; + D_8 = mkDig "VIII" "XVIII" "LXXX" "DCCC" "(VIII)" "(LXXX)" "(DCCC)" ; + D_9 = mkDig "IX" "XIX" "XC" "CM" "(IX)" "(XC)" "(CM)" ; oper - TDigit = { + TDig = { s : Unit => Str } ; - mkDig : Str -> Str -> Str -> Str -> Str -> Str -> TDigit = - \one,ten,hundred,thousand,ten_thousand,hundred_thousand -> { - s = table Unit [one;ten;hundred;thousand;ten_thousand;hundred_thousand] + mkDig : Str -> Str -> Str -> Str -> Str -> Str -> Str -> TDig = + \one,eleven,ten,hundred,thousand,ten_thousand,hundred_thousand -> { + s = table Unit [one;eleven;ten;hundred;thousand;ten_thousand;hundred_thousand] } ; inc : Unit -> Unit = \u -> case u of { one => ten ; + eleven => hundred ; ten => hundred ; hundred => thousand ; thousand => ten_thousand ; diff --git a/src/latin/ParadigmsLat.gf b/src/latin/ParadigmsLat.gf index c0fc1b1c9..360789ab9 100644 --- a/src/latin/ParadigmsLat.gf +++ b/src/latin/ParadigmsLat.gf @@ -34,6 +34,10 @@ oper abl : Case = Abl ; voc : Case = ResLat.Voc ; + plural : Number = Pl ; + singular : Number = Sg ; + missing : Coordinator = Missing ; + mkN = overload { mkN : (verbum : Str) -> N = \n -> lin N ( noun n ) ; @@ -41,6 +45,10 @@ oper = \x,y,z -> lin N ( noun_ngg x y z ) ; } ; + pluralN : N -> N = \n -> lin N (ResLat.pluralNoun n) ; + singularN : N -> N = \n -> lin N (ResLat.singularNoun n) ; + constN : Str -> Gender-> N = \s,g -> lin N (ResLat.constNoun s g); + mkA = overload { mkA : (verbum : Str) -> A -- Nominative masculine = \n -> lin A ( adj n ** {isPre = False } ) ; @@ -65,7 +73,7 @@ oper False => let a = adj n in { s = table { Posit => a.s ! Posit ; _ => \\_ => nonExist } ; adv = a.adv } } ** { isPre = False } ) } ; - + constA : Str -> A = \s -> lin A (ResLat.constAdj s) ; mkV = overload { mkV : (tacere : Str) -> V @@ -79,7 +87,7 @@ oper V0 : Type = V; mkV0 = overload { mkV0 : V -> V0 = \v -> lin V0 v ; -- Same as in english, don't know if it's working - mkV0 : Str -> V0 = \v -> lin V0 (mkImpersonal v) ; + mkV0 : Str -> V0 = \v -> lin V0 (impersonalVerb v) ; } ; mkV2 = overload { @@ -91,6 +99,7 @@ oper = \v,p -> lin V2 ( v ** { c = p } ) ; } ; + constV : Str -> Verb = \s -> lin V (ResLat.constVerb s) ; mkAdv = overload { mkAdv : Str -> Adv @@ -101,18 +110,25 @@ oper = \p,c -> lin Adv (mkFullAdverb p c nonExist); }; - pluralN = ResLat.pluralN ; - singularN = ResLat.singularN ; - mkConj : Str -> Str -> Number -> Coordinator -> Conjunction = mkConjunction ; + + mkConj = overload { + mkConj : Str -> Str -> Str -> Number -> Coordinator -> Conjunction = mkConjunction ; + mkConj : Str -> Str -> Number -> Coordinator -> Conjunction = \s1,s2,n,c -> mkConjunction s1 s2 [] n c ; + mkConj : Str -> Coordinator -> Conjunction = \s,c -> mkConjunction [] s [] Sg c ; + } ; mkPrep : Str -> Case -> Preposition = mkPreposition ; mkPron = mkPronoun ; - mkNum = mkNumeral ; + -- mkNum = overload { + -- mkNum : Str -> Str -> Str -> Str -> Num = \s1,s2,s3,s4 -> lin Num (mkNumeral s1 s2 s3 s4 ); + -- mkNum : Str -> Str -> Str -> Str -> Str -> Str -> Num = \s1,s2,s3,s4,s5,s6 -> lin Num (fullNumeral s1 s2 s3 s4 s5 s6 ) ; + -- } ; + -- To be implemented, just place holders - mkPN : N -> PN = \n -> lin PN n ; + mkPN : N -> Number -> PN = \noun,num -> lin PN (noun ** { s = noun.s ! num ; n = num } ) ; mkN2 : N -> Prep -> N2 = \n,p -> lin N2 ( n ** { c = p } ); mkN3 : N -> Prep -> Prep -> N3 = \n,p1,p2 -> lin N3 ( n **{ c = p1 ; c2 = p2 } ) ; mkV2S : V -> Prep -> V2S = \v,p -> lin V2S ( v ** { c = p } ) ; diff --git a/src/latin/PhraseLat.gf b/src/latin/PhraseLat.gf index 527384e70..fa6fd9df0 100644 --- a/src/latin/PhraseLat.gf +++ b/src/latin/PhraseLat.gf @@ -3,7 +3,7 @@ concrete PhraseLat of Phrase = CatLat ** open Prelude, ResLat in { PhrUtt pconj utt voc = {s = pconj.s ++ utt.s ++ voc.s} ; -- -- UttS : S -> Utt - UttS s = { s = combineSentence s ! SPreS ! PreS ! SOV }; + UttS s = { s = combineSentence s ! SPreS ! PreS ! CPreV ! SOV }; -- UttQS : QS -> Utt UttQS qs = {s = qs.s ! QDir } ; @@ -18,7 +18,7 @@ concrete PhraseLat of Phrase = CatLat ** open Prelude, ResLat in { -- UttIAdv : IAdv -> Utt UttIAdv iadv = iadv ; -- UttNP : NP -> Utt - UttNP np = {s = np.adv ++ np.det.s ! np.g ! Nom ++ np.preap.s ! (Ag np.g np.n Nom) ++ np.s ! Nom ++ np.postap.s ! (Ag np.g np.n Nom) ++ np.det.sp ! np.g ! Nom} ; + UttNP np = {s = np.adv ++ (combineNounPhrase np) ! PronNonDrop ! Nom} ; -- UttVP : VP -> Utt UttVP vp = ss (vp.inf ! VInfActPres) ; @@ -36,6 +36,6 @@ concrete PhraseLat of Phrase = CatLat ** open Prelude, ResLat in { PConjConj conj = {s = conj.s2} ; --- -- NoVoc = {s = []} ; - VocNP np = {s = "," ++ np.s ! ResLat.Voc} ; ---- what is the compiler error here? AR 1/2/2014 -- answer: clash with the type name Voc 3/2 + VocNP np = {s = "," ++ (combineNounPhrase np) ! PronNonDrop ! ResLat.Voc} ; ---- what is the compiler error here? AR 1/2/2014 -- answer: clash with the type name Voc 3/2 -- } diff --git a/src/latin/QuestionLat.gf b/src/latin/QuestionLat.gf index 6a039d248..6c0865242 100644 --- a/src/latin/QuestionLat.gf +++ b/src/latin/QuestionLat.gf @@ -4,19 +4,21 @@ concrete QuestionLat of Question = CatLat ** open ResLat, IrregLat, Prelude in { --` lin -- QuestCl : Cl -> QCl ; -- does John walk - -- TO FIX - -- QuestCl cl = { - -- s = \\t,a,p => - -- let cls = (combineClause cl PreS).s ! t ! a ! p - -- in table { - -- QDir => cls ! VQTrue ! VSO ! PreV ; -- cls ! OQuest ; - -- QIndir => "" -- "if" ++ cls ! ODir -- TODO - -- } - -- } ; + QuestCl cl = cl ** { + v = \\t,a,_,ap,cp => cl.v ! t ! a ! VQTrue ! ap ! cp ; + q = "" + } ; -- QuestVP : IP -> VP -> QCl ; -- who walks - -- TO FIX - -- QuestVP ip vp = + QuestVP ip vp = + { + s = \\_ => "" ; + adv = "" ; + neg = \\_,_ => "" ; + o = \\_ => vp.obj ; + q = ip.s ! Nom ; + v = \\t,a,_,ap,cp => vp.s ! VAct (anteriorityToVAnter a) (tenseToVTense t) ip.n P3 ! VQFalse + } ; -- let qcl = mkQuestion { s = ip.s ! Nom } ( mkClause emptyNP vp ) -- in {s = \\t,a,b,qd => qcl.s ! t ! a ! b ! qd} ; @@ -26,12 +28,19 @@ concrete QuestionLat of Question = CatLat ** open ResLat, IrregLat, Prelude in { -- QuestSlash ip slash = -- mkQuestion (ss ( ip.s ! Acc) ) slash ; - -- TO FIX - -- QuestIAdv iadv cl = mkQuestion iadv cl ; --- - -- TO FIX - -- QuestIComp icomp np = - -- mkQuestion icomp (mkClause np (predV be_V) ) ; + -- QuestIAdv : IAdv -> Cl -> QCl + QuestIAdv iadv cl = cl ** { q = iadv.s } ; + + -- QuestIComp : IComp -> NP -> QCl ; + QuestIComp icomp np = + { + s = \\_ => "" ; + adv = "" ; + neg = \\_,_ => "" ; + o = \\_ => combineNounPhrase np ! PronNonDrop ! Nom ; -- Should probably not go into the object field + q = icomp.s ; + v = \\t,a,_,ap,cp => esseAux.act ! VAct (anteriorityToVAnter a) (tenseToVTense t) np.n P3 ; + } ; -- -- -- PrepIP p ip = {s = p.s ++ ip.s ! Acc} ; diff --git a/src/latin/RelativeLat.gf b/src/latin/RelativeLat.gf index 960aeff58..c3b3fa045 100644 --- a/src/latin/RelativeLat.gf +++ b/src/latin/RelativeLat.gf @@ -33,7 +33,7 @@ concrete RelativeLat of Relative = CatLat ** open ResLat in { -- } ; -- -- FunRP p np rp = { --- s = \\c => np.s ! Acc ++ p.s ++ rp.s ! RPrep (fromAgr np.a).g ; +-- s = \\c => (combineNounPhrase np) ! PronNonDrop ! Acc ++ p.s ++ rp.s ! RPrep (fromAgr np.a).g ; -- a = RAg np.a -- } ; -- diff --git a/src/latin/ResLat.gf b/src/latin/ResLat.gf index 24ae61f3b..75a76ea3c 100644 --- a/src/latin/ResLat.gf +++ b/src/latin/ResLat.gf @@ -15,7 +15,7 @@ param Noun : Type = {s : Number => Case => Str ; g : Gender } ; -- massable : Bool } ; NounPhrase : Type = { - s : Case => Str ; + s : PronDropForm => Case => Str ; g : Gender ; n : Number ; p : Person ; @@ -27,6 +27,7 @@ param param Order = SVO | VSO | VOS | OSV | OVS | SOV ; AdvPos = PreS | PreV | PreO | PreNeg | InV | InS ; -- | InO + ComplPos = CPreV | CPostV ; SAdvPos = SPreS | SPreV | SPreO | SPreNeg ; param Agr = Ag Gender Number Case ; -- Agreement for NP et al. @@ -55,7 +56,7 @@ param -- massable = cn.massable; } ; - pluralN : Noun -> Noun = \n -> + pluralNoun : Noun -> Noun = \n -> { s = table { Pl => n.s ! Pl ; @@ -67,7 +68,7 @@ param -- massable = n.massable ; }; - singularN : Noun -> Noun = \n -> + singularNoun : Noun -> Noun = \n -> lin N { s = table { Sg => n.s ! Sg ; @@ -78,6 +79,8 @@ param postap = n.postap -- massable = n.massable ; }; + constNoun : Str -> Gender -> Noun = \s,g -> + { s = \\_,_ => s ; g = g } ; param AdjPos = Pre | Post ; @@ -132,7 +135,7 @@ param regNP : (_,_,_,_,_,_ : Str) -> Gender -> Number -> NounPhrase = \nom,acc,gen,dat,abl,voc,g,n -> { - s = table Case [ nom ; acc ; gen ; dat ; abl ; voc ] ; + s = \\_ => table Case [ nom ; acc ; gen ; dat ; abl ; voc ] ; g = g ; n = n ; p = P3; @@ -143,7 +146,10 @@ param dummyNP : Str -> NounPhrase = \s -> regNP s s s s s s Masc Sg ; - emptyNP : NounPhrase = { s = \\_ => ""; g = Masc; n = Sg; p = P1 ; adv = "" ; preap, postap = { s = \\_ => "" } ; det = { s = \\_,_ => "" ; sp = \\_,_ => "" ; n = Sg } ;}; + emptyNP : NounPhrase = { s = \\_,_ => ""; g = Masc; n = Sg; p = P1 ; adv = "" ; preap, postap = { s = \\_ => "" } ; det = { s = \\_,_ => "" ; sp = \\_,_ => "" ; n = Sg } ;}; + + combineNounPhrase : NounPhrase -> PronDropForm => Case => Str = \np -> + \\pd,c => np.det.s ! np.g ! c ++ np.adv ++ np.preap.s ! (Ag np.g np.n c) ++ np.s ! pd ! c ++ np.postap.s ! (Ag np.g np.n c) ++ np.det.sp ! np.g ! c ; -- also used for adjectives and so on -- adjectives @@ -151,7 +157,8 @@ param AdjectivePhrase : Type = { s : Agr => Str ; -- isPre : Bool ; -- should have no use in latin because adjectives can appear variably before and after nouns - } ; + } ; + mkAdjective : (bonus,bona,bonum : Noun) -> ( (Agr => Str) * Str ) -> ( (Agr => Str) * Str ) -> @@ -186,11 +193,58 @@ param audaces audaces (audac + "ium") (audac + "ibus") g ; + regAdj : Str -> Gender => Number => Case => Str = \s -> + case s of { + un + "us" => \\g,n,c => un + (regAdjSuffixes s g n c) + } ; + regAdjSuffixes : Str -> Gender -> Number -> Case -> Str = \str,g,n,c -> + case of { + => "us" ; + => "i" ; + => "o" ; + => "um" ; + => "o" ; + => case str of { _ + "ius" => "i" ; _ => "e" } ; + => "i" ; + => "orum" ; + => "is" ; + => "os" ; + => "is" ; + => "i" ; + => "um" ; + => "i" ; + => "o" ; + => "um" ; + => "o" ; + => "um"; + => "a" ; + => "orum" ; + => "is" ; + => "os" ; + => "is" ; + => "a" ; + => "a" ; + => "ae" ; + => "ae" ; + => "am" ; + => "a" ; + => "a"; + => "ae" ; + => "arum" ; + => "is" ; + => "as" ; + => "is" ; + => "ae" + } ; + emptyAdj : Adjective = { s = \\_,_ => "" ; comp_adv = "" ; super_adv = "" ; adv = { s = \\_ => "" } } ; --- verbs + constAdj : Str -> Adjective = \a -> + { s = \\_,_ => a ; comp_adv = "" ; super_adv = "" ; adv = { s = \\_ => "" } } ; + + -- verbs param VActForm = VAct VAnter VTense Number Person ; @@ -377,6 +431,7 @@ param VPass VFut Pl P3 => -- Future I ( case fut_I_base of { _ + "bi" => ( init fut_I_base ) + "u" ; + "eri" => "eru" ; -- handle copula properly _ => fut_I_base } ) + passPresEnding Pl P3 ; @@ -745,7 +800,7 @@ param } ; -- at the moment only fills present tense - mkImpersonal : Str -> Verb = \s -> + impersonalVerb : Str -> Verb = \s -> { act = table { VAct VSim (VPres VInd) Sg P1 => s ; @@ -759,7 +814,20 @@ param part = \\_,_ => nonExist ; sup = \\_ => nonExist ; } ; - + + constVerb : Str -> Verb = \s -> + { + act = table { + _ => s + } ; + pass = \\_ => nonExist ; + imp = \\_ => nonExist ; + inf = \\_ => nonExist ; + ger = \\_ => nonExist ; + geriv = \\_ => nonExist ; + part = \\_,_ => nonExist ; + sup = \\_ => nonExist ; + } ; actPresEnding : Number -> Person -> Str = useEndingTable <"m", "s", "t", "mus", "tis", "nt"> ; @@ -1001,7 +1069,7 @@ param param PronReflForm = PronRefl | PronNonRefl ; - PronDropForm = PronDrop | PronNonDrop; + PronDropForm = PronDrop | PronNonDrop ; -- PronIndefUsage = PronSubst | PronAdj ; -- PronIndefPol = PronPos | PronNeg ; -- PronIndefMeaning = PronSomeone | PronCertainOne | PronEvery ; @@ -1157,10 +1225,11 @@ oper Preposition : Type = {s : Str ; c : Case ; isPost : Bool } ; -- conjunctions -param Coordinator = And | Or | If | Neither | Because | Comma | Colon | Empty ; +param Coordinator = Aut | Et | Sed | Si | Vel | Comma | Colon | Empty | Missing ; -- Missing means not implemented yet oper - Conjunction : Type = { s1 : Str ; s2 : Str ; n : Number ; c : Coordinator }; - mkConjunction : Str -> Str -> Number -> Coordinator -> Conjunction = \s1,s2,num,coord -> { s1 = s1; s2 = s2 ; n = num ; c = coord } ; + Conjunction : Type = { s1 : Str ; s2 : Str ; s3 : Str ; n : Number ; c : Coordinator } ; -- s1 is in the beginning of the coordination phrase, s2 in the middle and s3 is a potential enclitic, s is the prefered number of the coordination phrase and c is the parameter to define which string to put within the phrase + mkConjunction : Str -> Str -> Str -> Number -> Coordinator -> Conjunction = +\s1,s2,s3,num,coord -> { s1 = s1; s2 = s2 ; s3 = s3 ; n = num ; c = coord } ; VPSlash = VerbPhrase ** {c : Preposition} ; @@ -1187,7 +1256,7 @@ oper part = vp.part ; imp = vp.imp ; inf = vp.inf ; - obj = np.det.s ! np.g ! prep.c ++ np.preap.s ! (Ag np.g np.n prep.c) ++ (appPrep prep np.s) ++ np.postap.s ! (Ag np.g np.n prep.c) ++ np.det.sp ! np.g ! prep.c ++ vp.obj ; + obj = np.det.s ! np.g ! prep.c ++ np.preap.s ! (Ag np.g np.n prep.c) ++ (appPrep prep (np.s ! PronNonDrop)) ++ np.postap.s ! (Ag np.g np.n prep.c) ++ np.det.sp ! np.g ! prep.c ++ vp.obj ; compl = vp.compl ; adv = vp.adv ++ np.adv } ; @@ -1197,7 +1266,7 @@ oper part = vp.part ; imp = vp.imp ; inf = vp.inf ; - obj = np.det.s ! np.g ! vp.c.c ++ np.preap.s ! (Ag np.g np.n vp.c.c) ++ (appPrep vp.c np.s) ++ np.postap.s ! (Ag np.g np.n vp.c.c) ++ np.det.sp ! np.g ! vp.c.c ++ vp.obj ; + obj = np.det.s ! np.g ! vp.c.c ++ np.preap.s ! (Ag np.g np.n vp.c.c) ++ (appPrep vp.c (np.s ! PronNonDrop)) ++ np.postap.s ! (Ag np.g np.n vp.c.c) ++ np.det.sp ! np.g ! vp.c.c ++ vp.obj ; compl = vp.compl ; c = vp.c ; adv = vp.adv ++ np.adv @@ -1226,19 +1295,22 @@ oper -- clauses Sentence = { - s,o,v,neg : AdvPos => Str ; -- Subject, verbphrase, object and negation particle plus potential adverb + s,o,neg : AdvPos => Str ; -- Subject, verbphrase, object and negation particle plus potential adverb + v : AdvPos => ComplPos => Str ; t : C.Tense ; -- tense marker p : C.Pol ; -- polarity marker sadv : Str -- sentence adverbĀ” } ; - Clause = {s,o : AdvPos => Str ; v : Tense => Anteriority => VQForm => AdvPos => Str ; neg : Polarity => AdvPos => Str ; adv : Str } ; + Clause = {s,o : AdvPos => Str ; v : Tense => Anteriority => VQForm => AdvPos => ComplPos => Str ; neg : Polarity => AdvPos => Str ; adv : Str } ; QClause = {s : C.Tense => Anteriority => C.Pol => QForm => Str} ; mkClause : NounPhrase -> VerbPhrase -> Clause = \np,vp -> let -- combines adverbs from noun phrase and verb phrase adv = np.adv ++ vp.adv ; + -- extracts the complement from the verb phrase + compl = vp.compl ! Ag np.g np.n Nom ; -- helper functions to either place the adverb in the designated position -- or an empty string instead pres : AdvPos -> Str = \ap -> case ap of { PreS => adv ; _ => [] } ; @@ -1246,33 +1318,38 @@ oper preo : AdvPos -> Str = \ap -> case ap of { PreO => adv ; _ => [] } ; preneg : AdvPos -> Str = \ap -> case ap of { PreNeg => adv ; _ => [] } ; ins : AdvPos -> Str = \ap -> case ap of { InS => adv ; _ => [] } ; - inv : AdvPos -> Str = \ap -> case ap of { InV => adv ; _ => [] } + inv : AdvPos -> Str = \ap -> case ap of { InV => adv ; _ => [] } ; + cprev : ComplPos -> Str = \cp -> case cp of { CPreV => compl ; _ => [] } ; + cpostv : ComplPos -> Str = \cp -> case cp of { CPostV => compl ; _ => [] } in { -- subject part of the clause: - -- ap is the adverb position in the clause - s = \\ap => - pres ap ++ -- adverbs can be placed in the beginning of the clause + -- advpos is the adverb position in the clause + s = \\advpos => + pres advpos ++ -- adverbs can be placed in the beginning of the clause np.det.s ! np.g ! Nom ++ -- the determiner, if any np.preap.s ! (Ag np.g np.n Nom) ++ -- adjectives which come before the subject noun, agreeing with it - ins ap ++ -- adverbs can be placed within the subject noun phrase - np.s ! Nom ++ -- the noun of the subject noun phrase in nominative + ins advpos ++ -- adverbs can be placed within the subject noun phrase + np.s ! PronDrop ! Nom ++ -- the noun of the subject noun phrase in nominative np.postap .s ! (Ag np.g np.n Nom) ++ -- adjectives which come after the subject noun, agreeing with it np.det.sp ! np.g ! Nom ; -- second part of split determiners -- verb part of the clause: -- tense and anter(ority) for the verb tense -- vqf is the VQForm parameter which defines if the ordinary verbform or the quistion form with suffix "-ne" will be used - -- ap is the adverb position in the clause - v = \\tense,anter,vqf,ap => - prev ap ++ -- adverbs can be placed in the before the verb phrase - vp.compl ! Ag np.g np.n Nom ++ -- verb phrase complement, e.g. predicative expression, agreeing with the subject - inv ap ++ -- adverbs can be placed within the verb phrase + -- advposis the adverb position in the clause + -- comppos is the position of the verb complement + v = \\tense,anter,vqf,advpos,complpos => + prev advpos ++ -- adverbs can be placed in the before the verb phrase + cprev complpos ++ -- verb phrase complement, e.g. predicative expression, agreeing with the subject, can go before the verb + inv advpos ++ -- adverbs can be placed within the verb phrase -- verb form with conversion between different forms of tense and aspect - vp.s ! VAct ( anteriorityToVAnter anter ) ( tenseToVTense tense ) np.n np.p ! vqf ; + vp.s ! VAct ( anteriorityToVAnter anter ) ( tenseToVTense tense ) np.n np.p ! vqf ++ + cpostv complpos ; -- complement can also go after the verb + -- object part of the clause - o = \\ap => preo ap ++ vp.obj ; + o = \\advpos => preo advpos ++ vp.obj ; -- optional negation particle, adverbs can be placed before the negation - neg = \\pol,ap => preneg ap ++ negation pol ; + neg = \\pol,advpos => preneg advpos ++ negation pol ; adv = "" } ; @@ -1286,20 +1363,23 @@ oper p = pol } ; - combineSentence : Sentence -> ( SAdvPos => AdvPos => Order => Str ) = \s -> + combineSentence : Sentence -> ( SAdvPos => AdvPos => ComplPos => Order => Str ) = \s -> let pres : SAdvPos -> Str = \ap -> case ap of { SPreS => s.sadv ; _ => [] } ; prev : SAdvPos -> Str = \ap -> case ap of { SPreV => s.sadv ; _ => [] } ; preo : SAdvPos -> Str = \ap -> case ap of { SPreO => s.sadv ; _ => [] } ; preneg : SAdvPos -> Str = \ap -> case ap of { SPreNeg => s.sadv ; _ => [] } in - \\sap,ap,order => case order of { - SVO => s.t.s ++ s.p.s ++ pres sap ++ s.s ! ap ++ preneg sap ++ s.neg ! ap ++ prev sap ++ s.v ! ap ++ preo sap ++ s.o ! ap; - VSO => s.t.s ++ s.p.s ++ preneg sap ++ s.neg ! ap ++ prev sap ++ s.v ! ap ++ pres sap ++ s.s ! ap ++ preo sap ++ s.o ! ap; - VOS => s.t.s ++ s.p.s ++ preneg sap ++ s.neg ! ap ++ prev sap ++ s.v ! ap ++ preo sap ++ s.o ! ap ++ pres sap ++ s.s ! ap ; - OSV => s.t.s ++ s.p.s ++ preo sap ++ s.o ! ap ++ pres sap ++ s.s ! ap ++ preneg sap ++ s.neg ! ap ++ prev sap ++ s.v ! ap; - OVS => s.t.s ++ s.p.s ++ preo sap ++ s.o ! ap ++ preneg sap ++ s.neg ! ap ++ prev sap ++ s.v ! ap ++ pres sap ++ s.s ! ap ; - SOV => s.t.s ++ s.p.s ++ pres sap ++ s.s ! ap ++ preo sap ++ s.o ! ap ++ preneg sap ++ s.neg ! ap ++ prev sap ++ s.v ! ap + -- sap is the position of the sentence adverbial + -- ap is the position of the adverb + -- cp is the position of the verb complement + \\sap,ap,cp,order => case order of { + SVO => s.t.s ++ s.p.s ++ pres sap ++ s.s ! ap ++ preneg sap ++ s.neg ! ap ++ prev sap ++ s.v ! ap ! cp ++ preo sap ++ s.o ! ap; + VSO => s.t.s ++ s.p.s ++ preneg sap ++ s.neg ! ap ++ prev sap ++ s.v ! ap ! cp ++ pres sap ++ s.s ! ap ++ preo sap ++ s.o ! ap; + VOS => s.t.s ++ s.p.s ++ preneg sap ++ s.neg ! ap ++ prev sap ++ s.v ! ap ! cp ++ preo sap ++ s.o ! ap ++ pres sap ++ s.s ! ap ; + OSV => s.t.s ++ s.p.s ++ preo sap ++ s.o ! ap ++ pres sap ++ s.s ! ap ++ preneg sap ++ s.neg ! ap ++ prev sap ++ s.v ! ap ! cp; + OVS => s.t.s ++ s.p.s ++ preo sap ++ s.o ! ap ++ preneg sap ++ s.neg ! ap ++ prev sap ++ s.v ! ap ! cp ++ pres sap ++ s.s ! ap ; + SOV => s.t.s ++ s.p.s ++ pres sap ++ s.s ! ap ++ preo sap ++ s.o ! ap ++ preneg sap ++ s.neg ! ap ++ prev sap ++ s.v ! ap ! cp } ; @@ -1307,8 +1387,8 @@ oper -- questions mkQuestion : SS -> Clause -> QClause = \ss,cl -> { s = \\tense,anter,pol,form => case form of { - QDir => ss.s ++ (combineSentence (combineClause cl tense anter pol VQFalse)) ! SPreS ! PreS ! OVS ; - QIndir => ss.s ++ (combineSentence (combineClause cl tense anter pol VQFalse)) ! SPreO ! PreO ! OSV + QDir => ss.s ++ (combineSentence (combineClause cl tense anter pol VQFalse)) ! SPreS ! PreS ! CPreV ! OVS ; + QIndir => ss.s ++ (combineSentence (combineClause cl tense anter pol VQFalse)) ! SPreO ! PreO ! CPreV ! OSV } }; @@ -1387,49 +1467,55 @@ oper { s = table { Posit => p ; Compar => c ; Super => s } }; -- numerals param - CardOrd = NCard | NOrd ; - Unit = one | ten | hundred | thousand | ten_thousand | hundred_thousand ; + -- CardOrd = NCard | NOrd ; + Unit = one | eleven | ten | hundred | thousand | ten_thousand | hundred_thousand ; + Below8 = Yes | No8 | No9 | Ign ; oper - Cardinal : Type = {s : Gender => Case => Str ; n : Number}; - Ordinal : Type = { s : Gender => Number => Case => Str } ; - Numeral : Type = { card : Cardinal ; ord : Ordinal } ; + -- Numerals are by default cardinal numbers but have a field for ordinal numbers + TDigit : Type = { s : Unit => Gender => Case => Str ; tenNext : Str ; below8 : Below8 } ; -- ord : Unit => Agr => Str } ; + TNumeral : Type = { s : Gender => Case => Str ; d : Unit => Gender => Case => Str ; n : Number ; below8 : Below8 } ; -- ord : Unit => Agr => Str } ; + + -- Inflection for cardinal numbers + cardFlex : Str -> Gender => Case => Str = + \c -> case c of { "unus" => \\gen,cas => case of { + => "unus" ; => "unum" ; => "uno" ; + => "una" ; => "unam" ; + => "unum" ; => "uno" ; + <_, Gen> => "unius" ; <_, Dat> => "uni" + } ; + "duo" => table { + Masc | Neutr => table Case [ "duo" ; "duo" ; "duorum" ; "duobus" ; "duobus" ; "duo" ] ; + Fem => table Case [ "duae" ; "duas" ; "duarum" ; "duabus" ; "duabus" ; "duae" ] } ; + "tres" => \\gen,cas => case of { + => "tria" ; <_, Nom | Acc | Voc > => "tres" ; + <_, Gen> => "trium" ; <_, Dat | Abl > => "tribus" + } ; + tre + "centi" => \\g,c => regAdj (tre + "centus") ! g ! Pl ! c ; + "milia" => table { + _ => table Case [ "milia" ; "milia" ; "milium" ; "milibus" ; "milibus" ; "milia" ] + } ; + _ => \\_,_ => c + } ; + -- ordFlex : Gender => Number => Case => Str = + -- case o of { + -- stem + "us" => table { + -- Masc => table Number [ table Case [ stem + "us" ; stem + "um" ; stem + "i" ; stem + "o" ; stem + "o" ; stem + "e" ] ; + -- table Case [ stem + "i" ; stem + "os" ; stem + "orum" ; stem + "is" ; stem + "is" ; stem + "i" ] ; + -- ]; + -- Fem => table Number [ table Case [ stem + "a" ; stem + "am" ; stem + "ae" ; stem + "ae" ; stem + "a" ; stem + "a" ] ; + -- table Case [ stem + "ae" ; stem + "as" ; stem + "arum" ; stem + "is" ; stem + "is" ; stem + "ae" ] ; + -- ] ; + -- Neutr => table Number [ table Case [ stem + "um" ; stem + "um" ; stem + "i" ; stem + "o" ; stem + "o" ; stem + "um" ] ; + -- table Case [ stem + "a" ; stem + "a" ; stem + "orum" ; stem + "is" ; stem + "is" ; stem + "a" ] ; + -- ] + -- } ; + -- _ => error "unsupported ordinal form" + -- } + -- in + -- { s = cardFlex ; n = case c of { "unus" => Sg ; _ => Pl } ; ord = ordFlex } ; + + -- fixedNumeral : Str -> Str -> Numeral = \c,o -> + -- { s = \\_,_,_=> c ; n = Pl ; ord = \\g,n,c => (mkA o).s ! Posit ! Ag g n c} ; + - mkNumeral : Str -> Str -> Numeral = \c,o -> -- cardinal and ordinal form - let - cardFlex : Gender => Case => Str = case c of { "unus" => \\gen,cas => case of { - => "unus" ; => "unum" ; => "uno" ; - => "una" ; => "unam" ; - => "unum" ; => "uno" ; - <_, Gen> => "unius" ; <_, Dat> => "uni" - } ; - "duo" => table { - Masc | Neutr => table Case [ "duo" ; "duo" ; "duorum" ; "duobus" ; "duobus" ; "duo" ] ; - Fem => table Case [ "duae" ; "duas" ; "duarum" ; "duabus" ; "duabus" ; "duae" ] } ; - "tres" => \\gen,cas => case of { - => "tria" ; <_, Nom | Acc | Voc > => "tres" ; - <_, Gen> => "trium" ; <_, Dat | Abl > => "tribus" - } ; - "milia" => table { - Neutr => table Case [ "milia" ; "milia" ; "milium" ; "milibus" ; "milibus" ; "milia" ] ; - _ => \\_ => nonExist - } ; - _ => \\_,_ => c - } ; - ordFlex : Gender => Number => Case => Str = - case o of { - stem + "us" => table { - Masc => table Number [ table Case [ stem + "us" ; stem + "um" ; stem + "i" ; stem + "o" ; stem + "o" ; stem + "e" ] ; - table Case [ stem + "i" ; stem + "os" ; stem + "orum" ; stem + "is" ; stem + "is" ; stem + "i" ] ; - ]; - Fem => table Number [ table Case [ stem + "a" ; stem + "am" ; stem + "ae" ; stem + "ae" ; stem + "a" ; stem + "a" ] ; - table Case [ stem + "ae" ; stem + "as" ; stem + "arum" ; stem + "is" ; stem + "is" ; stem + "ae" ] ; - ] ; - Neutr => table Number [ table Case [ stem + "um" ; stem + "um" ; stem + "i" ; stem + "o" ; stem + "o" ; stem + "um" ] ; - table Case [ stem + "a" ; stem + "a" ; stem + "orum" ; stem + "is" ; stem + "is" ; stem + "a" ] ; - ] - } ; - _ => error "unsupported ordinal form" - } - in - { card = { s = cardFlex ; n = case c of { "unus" => Sg ; _ => Pl } } ; ord = { s = ordFlex } } ; } diff --git a/src/latin/SentenceLat.gf b/src/latin/SentenceLat.gf index 9e09bff47..b5294b3e5 100644 --- a/src/latin/SentenceLat.gf +++ b/src/latin/SentenceLat.gf @@ -36,7 +36,7 @@ concrete SentenceLat of Sentence = CatLat ** open Prelude, ResLat in { SlashPrep cl prep = cl ** {c2 = prep.s} ; -- -- SlashVS np vs slash = --- mkClause (np.s ! Nom) np.a +-- mkClause (combineNounPhrase np ! PronNonDrop ! Nom) np.a -- (insertObj (\\_ => conjThat ++ slash.s) (predV vs)) ** -- {c2 = slash.c2} ; -- @@ -47,10 +47,15 @@ concrete SentenceLat of Sentence = CatLat ** open Prelude, ResLat in { UseCl t p cl = -- Temp -> Pol-> Cl -> S (combineClause cl (lin Tense t) t.a (lin Pol p) VQFalse) ; - -- TO FIX - --UseQCl t p cl = - -- s = \\q => t.s ++ p.s ++ cl.s ! t.t ! t.a ! p ! q - -- { s = \\q => combineSentence (combineClause cl t t.a p VQFalse) ! PreV ! VSO } ; + -- UseQCl : Temp -> Pol -> QCl -> QS -- maybe use mkQuestion + UseQCl t p cl = + { + s = let qs = combineClause cl t t.a p VQTrue in + \\q => case q of { + QDir => cl.q ++ combineSentence qs ! SPreS ! PreV ! CPostV ! SVO ; -- t.s ++ p.s ++ cl.q ++ cl.s ! PreV ++ cl.v ! t.t ! t.a ! VQTrue ! PreV ! CPostV ++ cl.o ! PreV ; + QIndir => cl.q ++ combineSentence qs ! SPreS ! PreV ! CPostV ! SOV -- t.s ++ p.s ++ cl.q ++ cl.s ! PreV ++ cl.o ! PreV ++ cl.v ! t.t ! t.a ! VQTrue ! PreV ! CPostV + } + } ; -- UseRCl t p cl = { -- s = \\r => t.s ++ p.s ++ cl.s ! t.t ! t.a ! ctr p.p ! r ; diff --git a/src/latin/StructuralLat.gf b/src/latin/StructuralLat.gf index f639cfd71..146133261 100644 --- a/src/latin/StructuralLat.gf +++ b/src/latin/StructuralLat.gf @@ -11,21 +11,21 @@ concrete StructuralLat of Structural = CatLat ** almost_AdA, almost_AdN = ss "quasi" ; -- L... although_Subj = ss "quamquam" ; -- L... always_AdV = ss "semper" ; -- L... - and_Conj = mkConj [] "et" Pl And ; -- L... + and_Conj = mkConj [] "et" Pl Et ; -- L177 -----b and_Conj = ss "and" ** {n = Pl} ; because_Subj = ss "cum" ; -- L... before_Prep = mkPrep "ante" Acc ; -- acc. L... behind_Prep = mkPrep "a tergo" Acc ; -- acc. L... between_Prep = mkPrep "inter" Acc ; -- acc. L... - both7and_DConj = mkConj "et" "et" Pl And; --L... + both7and_DConj = mkConj "et" "et" Pl Et ; --L177 but_PConj = ss "sed" ; -- L... by8agent_Prep = mkPrep "per" Abl ; -- L... by8means_Prep = mkPrep "" Abl ; -- L... - can8know_VV, can_VV = mkVV IrregLat.can_V True ; --L... + can8know_VV, can_VV = mkVV (mkV "scire" "scio" "scivi" "scitum") False ; --L... during_Prep = mkPrep "inter" Acc ; -- L... - either7or_DConj = mkConj "aut" "aut" Sg Or ; -- L... + either7or_DConj = mkConj "aut" "aut" Sg Aut ; -- L177 everybody_NP = regNP "quisque" "quemque" "cuiusque" "cuique" "quoque" "quisque" Masc Sg ;-- regNP "quisquae" Sg ; -- L... - every_Det = mkDeterminer ( mkA "omnis" ) Pl ; -- Pons + every_Det = mkDeterminer ( mkA "omnis" ) Sg ; -- Pons everything_NP = regNP "omnia" "omnia" "omnium" "omnis" "omnis" "omnia" Neutr Pl ; --regNP "omnia" Pl ; -- L... everywhere_Adv = mkAdv "ubique" ; -- L... few_Det = mkDeterminer ( mkA "paulus" ) Pl ; -- L... @@ -55,7 +55,7 @@ concrete StructuralLat of Structural = CatLat ** on_Prep = mkPrep "in" Acc ; -- L... ------ one_Quant = mkDeterminer Sg "one" ; -- DEPRECATED only_Predet = ss "solum" ; -- L... - or_Conj = mkConj [] "aut" Sg Or ; -- L... + or_Conj = mkConj [] "aut" Sg Aut ; -- L177 otherwise_PConj = ss "praeterea" ; -- Pons part_Prep = mkPrep [] Gen ; -- Bayer-Lindauer 127 please_Voc = ss "queso" ; -- L... @@ -101,7 +101,7 @@ concrete StructuralLat of Structural = CatLat ** -----b whichPl_IDet = mkDeterminer Pl ["which"] ; -----b whichSg_IDet = mkDeterminer Sg ["which"] ; whoSg_IP = { s =pronForms "quis" "quem" "cuius" "cui" "quo" ; n = Sg } ; -- only feminine or masculine Bayer-Lindauer 59.1 - whoPl_IP = { s = \\_ => "" ; n = Pl } ; -- no plural forms Bayer-Lindauer 59.1 + whoPl_IP = { s = pronForms "qui" "quos" "quorum" "quibus" "quibus" ; n = Pl } ; why_IAdv = ss "cur" ; -- L... without_Prep = mkPrep "sine" Abl ; -- abl. L.. @@ -113,7 +113,7 @@ concrete StructuralLat of Structural = CatLat ** no_Quant = { s , sp = ( mkA "nullus" ).s ! Posit } ; -- nullus L... not_Predet = ss "non" ; -- L... - if_then_Conj = mkConj "si" [] Sg If ; -- no word in s2 field L... + if_then_Conj = mkConj "si" [] Sg Si ; -- no word in s2 field L... at_least_AdN = ss "saltem" ; -- L... at_most_AdN = ss "summum" ; -- Pons nobody_NP = regNP "nemo" "neminem" "neminis" "nemini" "nemine" "nemo" Masc Sg ; -- Bayer Lindauer 60.4 diff --git a/src/latin/SymbolLat.gf b/src/latin/SymbolLat.gf index 6dffa96d3..81c68d94c 100644 --- a/src/latin/SymbolLat.gf +++ b/src/latin/SymbolLat.gf @@ -3,26 +3,49 @@ concrete SymbolLat of Symbol = CatLat ** open Prelude, ResLat, ParadigmsLat, TenseX in { lin - SymbPN i = {s = \\n,c => i.s ; g = Neutr} ; --- c - IntPN i = {s = \\n,c => i.s ; g = Neutr} ; --- c - FloatPN i = {s = \\n,c => i.s ; g = Neutr} ; --- c - NumPN i = {s = \\n,c => i.s ! Neutr ! c; g = Neutr} ; --- c --- CNIntNP cn i = { --- s = \\c => (cn.s ! Sg ! Nom ++ i.s) ; --- a = agrgP3 Sg cn.g --- } ; --- CNSymbNP det cn xs = { + SymbPN i = {s = \\c => i.s ; g = Neutr ; n = Sg } ; --- c + IntPN i = {s = \\c => i.s ; g = Neutr ; n = Sg } ; --- c + FloatPN i = {s = \\c => i.s ; g = Neutr ; n = Sg } ; --- c + NumPN i = {s = \\c => i.s ! Neutr ! c; g = Neutr ; n = Pl } ; --- c + CNIntNP cn i = { + s = \\_,c => (cn.s ! Sg ! Nom ++ i.s) ; + g = cn.g ; + n = Sg ; + adv = [] ; + det = { s = \\_,_ => [] ; n = Sg ; sp = \\_,_ => [] } ; + p = P3 ; + postap = { s = \\_ => [] } ; + preap = { s = \\_ => [] } ; + } ; + CNSymbNP det cn xs = { + s = \\_,c => (cn.s ! Sg ! Nom ++ xs.s ) ; + g = cn.g ; + n = det.n ; + adv = [] ; + det = det ; + p = P3 ; + postap = { s = \\_ => [] } ; + preap = { s = \\_ => [] } ; + } ; -- s = \\c => det.s ++ cn.s ! det.n ! c ++ xs.s ; -- a = agrgP3 det.n cn.g -- } ; --- CNNumNP cn i = { --- s = \\c => (cn.s ! Sg ! Nom ++ i.s) ; --- a = agrgP3 Sg cn.g --- } ; + -- } ; + CNNumNP cn i = { + s = \\_,c => (cn.s ! Sg ! Nom ++ i.s ! cn.g ! Nom ) ; + g = cn.g ; + n = Sg ; + adv = [] ; + det = { s = \\_,_ => [] ; n = Sg ; sp = \\_,_ => [] } ; + p = P3 ; + postap = { s = \\_ => [] } ; + preap = { s = \\_ => [] } ; + } ; -- - SymbS sy = { s = \\_ => sy.s ; neg = \\_ => "" ; o = \\_ => "" ; p = PPos ; sadv = "" ; t = TPres ; v = \\_ => "" } ; + + SymbS sy = { s = \\_ => sy.s ; neg = \\_ => "" ; o = \\_ => "" ; p = PPos ; sadv = "" ; t = TPres ; v = \\_,_ => "" } ; -- - -- SymbNum sy = {s = sy.s ; n = Pl ; hasCard = True} ; + SymbNum sy = {s = \\_,_ => sy.s ; n = Pl } ; SymbOrd sy = { s = \\g,n,c => sy.s } ; -- does not inflect properly lincat @@ -31,6 +54,6 @@ lincat lin MkSymb s = s ; --- BaseSymb = infixSS "and" ; --- ConsSymb = infixSS "," ; + BaseSymb = infixSS "et" ; + ConsSymb = infixSS "et" ; } diff --git a/src/latin/VerbLat.gf b/src/latin/VerbLat.gf index c25c85220..8c8f30ebd 100644 --- a/src/latin/VerbLat.gf +++ b/src/latin/VerbLat.gf @@ -17,10 +17,21 @@ concrete VerbLat of Verb = CatLat ** open (S=StructuralLat),ResLat,IrregLat,Extr } ; -- ComplVS : VS -> S -> VP ; -- say that she runs - ComplVS v s = insertObj ( dummyNP (S.that_Subj.s ++ s.s ! PreS)) Nom_Prep (predV v) ; - + ComplVS vs s = -- insertObj ( dummyNP (S.that_Subj.s ++ s.s ! PreS)) Nom_Prep (predV v) ; + vs ** { + s = \\af,qf => vs.act ! af ; + compl = \\ag => combineSentence s ! SPreS ! PreV ! CPostV ! SOV ; -- s.s ! QIndir ; + adv = [] ; + obj = [] + } ; -- ComplVQ : VQ -> QS -> VP ; -- wonder who runs - ComplVQ v q = insertObj (dummyNP (q.s ! QIndir)) Nom_Prep (predV v) ; + ComplVQ vq qs = -- insertObj (dummyNP (q.s ! QIndir)) Nom_Prep (predV v) ; + vq ** { + s = \\af,qf => vq.act ! af ; + compl = \\ag => qs.s ! QIndir ; + adv = [] ; + obj = [] + } ; -- ComplVA : VA -> AP -> VP ; -- they become red ComplVA v ap = (predV v) ** { compl = ap.s } ; @@ -57,7 +68,7 @@ concrete VerbLat of Verb = CatLat ** open (S=StructuralLat),ResLat,IrregLat,Extr -- SlashV2VNP : V2V -> NP -> VPSlash -> VPSlash ; -- beg me to buy -- SlashV2VNP vv np vp = --- insertObjPre (\\_ => vv.c2 ++ np.s ! Acc) +-- insertObjPre (\\_ => vv.c2 ++ (combineNounPhrase np) ! PronNonDrop ! Acc) -- (insertObjc (\\a => infVP vv.isAux vp a) (predVc vv)) ** -- {c2 = vp.c2} ; @@ -103,7 +114,9 @@ concrete VerbLat of Verb = CatLat ** open (S=StructuralLat),ResLat,IrregLat,Extr CompAP ap = ap ; -- CompNP : NP -> Comp ; -- (be) the man - CompNP np = {s = \\_ => let a = Ag np.g np.n Nom in np.preap.s ! a ++ np.s ! Nom ++ np.postap.s ! a } ; + CompNP np = {s = \\_ => + (combineNounPhrase np) ! PronNonDrop ! Nom + } ; -- CompAdv : Adv -> Comp ; -- (be) here CompAdv a = {s = \\_ => a.s ! Posit } ; diff --git a/src/latin/mkMissing.hs b/src/latin/mkMissing.hs new file mode 100644 index 000000000..83b1790c4 --- /dev/null +++ b/src/latin/mkMissing.hs @@ -0,0 +1,10 @@ +import PGF +import System.Environment + +main = + do + args <- getArgs -- first one should be pgf file and second one should be the file containing the errors/warnings about missing things + pgf <- PGF.readPGF (args !! 0) -- "tmp/Lang.pgf" + ms <- readFile (args !! 1) {- "tmp/MissingLat.tmp" -} >>= return . map (last . words) . lines + let ts = [PGF.showType [] t | m <- ms, Just t <- [PGF.functionType pgf (PGF.mkCId m)]] + putStrLn $ unlines ["oper " ++ f ++ " : " ++ t ++ " = notYet \"" ++ f ++ "\" ;" | (f,t) <- zip ms ts] diff --git a/src/latin/mkMissing.sh b/src/latin/mkMissing.sh new file mode 100755 index 000000000..d4370fdae --- /dev/null +++ b/src/latin/mkMissing.sh @@ -0,0 +1,18 @@ +#!/bin/sh +echo "Create tmp dir" +mkdir tmp/ +echo "Remove old file" +echo "resource MissingLat = {} " > MissingLat.gf +echo "Look for missing functions" +# gf -src -i .. -batch TryLat.gf 2>&1 | grep "Warning: no linearization of" | sort -u > tmp/MissingLat.tmp +gf -src -i .. -batch ../api/TryLat.gf 2>&1 | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[mGK]//g" | grep -E "constant not found|no linearization of" | sort -u > tmp/MissingLat.tmp +echo "Compile grammar" +gf -src -make -D tmp LangLat.gf &> /dev/null +echo "Create placeholders for missing functions" +echo "resource MissingLat = open GrammarLat, Prelude in {" > MissingLat.gf +echo "" >> MissingLat.gf +echo "-- temporary definitions to enable the compilation of RGL API" >> MissingLat.gf +runghc mkMissing.hs "tmp/Lang.pgf" "tmp/MissingLat.tmp">> MissingLat.gf +echo "}" >> MissingLat.gf +echo "Cleanup" +rm -Rf tmp \ No newline at end of file